com.pledgecomputers.gradle.selenium
Owner: Scott Pledger
This plugin allows you to easily spawn a Selenium server for testing.
https://gitlab.com/pledgecomputers/gradle-selenium-plugin
Sources: https://gitlab.com/pledgecomputers/gradle-selenium-plugin
Version 1.0.8 (latest)
1.0.8
Created 17 April 2016.
This plugin allows you to easily spawn a Selenium server for testing.
Using the plugins DSL:
plugins {
id("com.pledgecomputers.gradle.selenium") version "1.0.8"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.pledgecomputers:gradle-selenium-plugin:1.0.8")
}
}
apply(plugin = "com.pledgecomputers.gradle.selenium")
Using the plugins DSL:
plugins {
id "com.pledgecomputers.gradle.selenium" version "1.0.8"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.pledgecomputers:gradle-selenium-plugin:1.0.8"
}
}
apply plugin: "com.pledgecomputers.gradle.selenium"