com.github.kazurayam.visualtestinginks
Owner: KAZUAKI URAYAMA (MATSUHASHI)
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.0
0.1.0
Created 23 April 2019.
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.
Using the plugins DSL:
plugins {
id("com.github.kazurayam.visualtestinginks") version "0.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.kazurayam:visualtestinginks:0.1.0")
}
}
apply(plugin = "com.github.kazurayam.visualtestinginks")
Using the plugins DSL:
plugins {
id "com.github.kazurayam.visualtestinginks" version "0.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.kazurayam:visualtestinginks:0.1.0"
}
}
apply plugin: "com.github.kazurayam.visualtestinginks"