Template for aquality-selenium-java library.
- src/test/java/aquality/selenium/template/
- configuration/: classes that used to fetch project config from src/test/resources/environment folder
- models/: classes that represent data models of the application under the test (POJO classes)
- forms/: Page Objects
- glue/
- hooks/: Cucumber hooks
- stepdefinitions/: step definition classes
- transformations/: Cucumber data transformations
- features/: Cucumber feature files with test scenarios
- runners/: Cucumber test runners
- src/test/resources/: resource files such as configurations and test data
settings.json file contains settings of Aquality Selenium library. Additional information you can find here.
allure.properties is a part of Allure Report configuration. See details here.
Scenarios from feature files can be executed with TestNG plugin for IDE (Intellij Idea, Eclipse) or with Maven command mvn clean test where you can specify all necessary arguments.
Allure Framework is used as a reporting tool. Report data will be places in target/allure-results/ folder (you can change it in allure.properties file).
Run maven command mvn allure:serve to build and open report in web browser.