org.gebish.browserstack
Owner: Marcin Erdmann
A plugin that simplifies running Geb tests at BrowserStack
https://gebish.org/manual/current/#gradle-plugins
Sources: https://github.com/geb/geb
Version 5.2-M1
5.2-M1
Created 22 November 2021.
A plugin that simplifies running Geb tests at BrowserStack
Using the plugins DSL:
plugins {
id("org.gebish.browserstack") version "5.2-M1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.gebish:geb-gradle:5.2-M1")
}
}
apply(plugin = "org.gebish.browserstack")
Using the plugins DSL:
plugins {
id "org.gebish.browserstack" version "5.2-M1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.gebish:geb-gradle:5.2-M1"
}
}
apply plugin: "org.gebish.browserstack"