io.github.usefulness.screenshot-testing-plugin
Owner: Mateusz Kwieciński
Generate fast deterministic screenshots during Android instrumentation tests. The plugin works Configuration Cache support!
https://github.com/usefulness/screenshot-tests-for-android/
Sources: https://github.com/usefulness/screenshot-tests-for-android.git
Version 0.17.2
0.17.2
Created 06 December 2023.
Generate fast deterministic screenshots during Android instrumentation tests. Configuration Cache compatibility included
Using the plugins DSL:
plugins {
id("io.github.usefulness.screenshot-testing-plugin") version "0.17.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.usefulness:screenshot-testing-plugin:0.17.2")
}
}
apply(plugin = "io.github.usefulness.screenshot-testing-plugin")
Using the plugins DSL:
plugins {
id "io.github.usefulness.screenshot-testing-plugin" version "0.17.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.usefulness:screenshot-testing-plugin:0.17.2"
}
}
apply plugin: "io.github.usefulness.screenshot-testing-plugin"