https://github.com/hiltas73/selenium-grid-demo
Selenium Grid DEMO project for parallel test execution using Maven commands
https://github.com/hiltas73/selenium-grid-demo
Last synced: 7 months ago
JSON representation
Selenium Grid DEMO project for parallel test execution using Maven commands
- Host: GitHub
- URL: https://github.com/hiltas73/selenium-grid-demo
- Owner: hiltas73
- Created: 2024-06-04T13:11:36.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-06-25T17:02:48.000Z (over 1 year ago)
- Last Synced: 2025-02-01T11:32:52.995Z (8 months ago)
- Language: Java
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# simple-cucumber-demo
Basic cucumber framework used for running automation tests on Jenkins.## Running locally
To run locally and generate HTML reports, use this maven goal verify. HTML reports should be generated under target/cucumber-html-reports
`mvn verify`## Jenkins
Install [Cucumber HTML report plugin](https://plugins.jenkins.io/cucumber-reports/). Create a simple job and use this repository in the repository url field. In the post build actions, select option Cucumber reports and point to the location of the cucumber json report. Run the project as a maven goal test.
`mvn test`## Tags
You can pass a custom tag using terminal. Available tags are @smoke, @regression.
`mvn test -Dcucumber.filter.tags="@smoke"`## Browsers
You can pass change using command line argument BROWSER
`mvn test -DBROWSER=firefox`## Will work on and improve the project in time