31 lines
752 B
Properties
31 lines
752 B
Properties
# Define the default driver
|
|
#webdriver.driver=phantomjs
|
|
|
|
# Appears at the top of the reports
|
|
serenity.project.name = Demo Project using Serenity and JUnit
|
|
webdriver.autodownload = false
|
|
webdriver.driver = chrome
|
|
headless.mode = false
|
|
|
|
drivers {
|
|
windows {
|
|
webdriver.chrome.driver = src/test/resources/webdriver/windows/chromedriver.exe
|
|
}
|
|
}
|
|
|
|
|
|
|
|
# Root package for any JUnit acceptance tests
|
|
serenity.test.root=org.example.features
|
|
|
|
# Customise your riequirements hierarchy
|
|
#serenity.requirement.types=feature, story
|
|
|
|
# Run the tests without calling webdriver - useful to check your JUnit wireing
|
|
#serenity.dry.run=true
|
|
|
|
# Customise browser size
|
|
#serenity.browser.height = 1200
|
|
#serenity.browser.width = 1200
|
|
|