Skip to content

Instantly share code, notes, and snippets.

@nddipiazza
Created September 1, 2017 17:52
Show Gist options
  • Select an option

  • Save nddipiazza/aa23e1f4cfa182c6664c629f0e85f566 to your computer and use it in GitHub Desktop.

Select an option

Save nddipiazza/aa23e1f4cfa182c6664c629f0e85f566 to your computer and use it in GitHub Desktop.
Gradle file for the headlessfirefox selenium example
group 'com.mozilla'
version '1.0'
apply plugin: 'java'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
dependencies {
compile('org.seleniumhq.selenium:selenium-api:3.5.3')
compile('org.seleniumhq.selenium:selenium-remote-driver:3.5.3')
compile('org.seleniumhq.selenium:selenium-server:3.5.3')
testCompile group: 'junit', name: 'junit', version: '4.12'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment