Skip to content

Instantly share code, notes, and snippets.

@aslakhellesoy
Last active December 15, 2015 19:19
Show Gist options
  • Select an option

  • Save aslakhellesoy/5310313 to your computer and use it in GitHub Desktop.

Select an option

Save aslakhellesoy/5310313 to your computer and use it in GitHub Desktop.
Cucumber configuration
{
"options": {
"glue": "classpath:com/company/app/stepdefs",
"format": ["pretty", "json:target/cucumber.json"]
},
"environments": {
"firefox": {"driver": "org.openqa.selenium.firefox.FirefoxDriver"},
"chrome": {"driver": "org.openqa.selenium.chrome.ChromeDriver"}
}
}
[options]
glue = "classpath:com/company/app/stepdefs",
format = ["pretty", "json:target/cucumber.json"]
[environments.firefox]
driver = "org.openqa.selenium.firefox.FirefoxDriver"
[environments.chrome]
driver = "org.openqa.selenium.chrome.ChromeDriver"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment