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.21 (latest)

Created 12 June 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.21"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("com.github.kazurayam.visualtestinginks:com.github.kazurayam.visualtestinginks.gradle.plugin:0.1.21")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.github.kazurayam.visualtestinginks")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.github.kazurayam.visualtestinginks:com.github.kazurayam.visualtestinginks.gradle.plugin:0.1.21")
      }
    }
    
    apply(plugin = "com.github.kazurayam.visualtestinginks")
  • Applying plugins to all subprojects .