JUnit Integration with BrowserStack.
- Clone the repo
- Install dependencies
mvn install
- Update
browserstack.yml
files inside the root directory with your BrowserStack Username and Access Key.
- To run a parallel test, run
mvn test -P sample
- To run local tests, set
browserStackLocal: true
inbrowserstack.yml
and runmvn test -P local
Understand how many parallel sessions you need by using our Parallel Test Calculator
- If using Gradle, Java v9+ is required.
- Clone the repo
- Update
browserstack.yml
files inside the root directory with your BrowserStack Username and Access Key.
- To run a parallel test, run
gradle sampleTest
- To run local tests, set
browserStackLocal: true
inbrowserstack.yml
and rungradle sampleLocalTest
Understand how many parallel sessions you need by using our Parallel Test Calculator
-
You can view your test results on the BrowserStack Automate dashboard
-
To test on a different set of browsers, check out our platform configurator
-
You can export the environment variables for the Username and Access Key of your BrowserStack account.
- For Unix-like or Mac machines:
export BROWSERSTACK_USERNAME=<browserstack-username> && export BROWSERSTACK_ACCESS_KEY=<browserstack-access-key>
- For Windows:
set BROWSERSTACK_USERNAME=<browserstack-username> set BROWSERSTACK_ACCESS_KEY=<browserstack-access-key>