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

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.

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.kazurayam:visualtestinginks:0.1.3")
  }
}

apply(plugin = "com.github.kazurayam.visualtestinginks")

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.kazurayam:visualtestinginks:0.1.3"
  }
}

apply plugin: "com.github.kazurayam.visualtestinginks"

Learn how to apply plugins to subprojects