com.liferay.gs.testFramework
Owner: Manoel Cyreno
lfrgs-selenium-commons: Selenium framework for Liferay GS projects!
https://github.com/manoelcyreno/selenium-commons
Sources: https://github.com/manoelcyreno/lfrgs-selenium-commons
Version 3.0.2 (latest)
3.0.2
Created 10 July 2020.
Selenium framework for web projects!
Using the plugins DSL:
plugins {
id("com.liferay.gs.testFramework") version "3.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.liferay.gs:selenium-commons:3.0.2")
}
}
apply(plugin = "com.liferay.gs.testFramework")
Using the plugins DSL:
plugins {
id "com.liferay.gs.testFramework" version "3.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.liferay.gs:selenium-commons:3.0.2"
}
}
apply plugin: "com.liferay.gs.testFramework"