Search Gradle plugins

com.github.kazurayam.visualtestinginks

With this Gradle Plugin you can import the components (Test Cases, Test Suites, Test Listener, Keywords) into your own Katalon Studio project and make it capable of running WebUI screenshot comparison testings.

https://github.com/kazurayam/visualtestinginks-gradle-plugin

Sources: https://github.com/kazurayam/visualtestinginks-gradle-plugin.git

Version 0.1.3

0.1.3

Created 28 April 2019.

With this Gradle Plugin you can import the components of "Visual Testing in Katalon Studio"(Test Cases, Test Suites, Test Listener, Keywords) into your own Katalon Studio project and make it capable of running WebUI screenshot comparison testings.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.github.kazurayam.visualtestinginks") version "0.1.3"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.kazurayam:visualtestinginks:0.1.3")
      }
    }
    
    apply(plugin = "com.github.kazurayam.visualtestinginks")
  • Applying plugins to all subprojects .