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 1.2.1 (latest)
1.2.1
Created 09 October 2024.
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 "1.2.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.usefulness:screenshot-testing-plugin:1.2.1")
}
}
apply(plugin = "io.github.usefulness.screenshot-testing-plugin")
Using the plugins DSL:
plugins {
id "io.github.usefulness.screenshot-testing-plugin" version "1.2.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.usefulness:screenshot-testing-plugin:1.2.1"
}
}
apply plugin: "io.github.usefulness.screenshot-testing-plugin"