Skip to content

Files

Latest commit

Jan 22, 2025
c6c9acf · Jan 22, 2025

History

History
57 lines (43 loc) · 2.47 KB
·

README.md

File metadata and controls

57 lines (43 loc) · 2.47 KB
·

junit5-browserstack

Master branch contains Selenium 4 - W3C protocol samples, for Selenium 3 please checkout selenium-3 branch

Using Maven

Setup

Running your tests

  • To run a single test, run mvn test -P single
  • To run local tests, run mvn test -P local

Understand how many parallel sessions you need by using our Parallel Test Calculator

Using Gradle

Prerequisites

  • If using Gradle, Java v9+ is required.

Setup

  • Clone the repository
  • Install dependencies gradle build

Running your tests

  • To run the single test, run gradle sampleTest
  • To run local tests, run gradle sampleLocalTest

Understand how many parallel sessions you need by using our Parallel Test Calculator

Notes

  • 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>
    

Open Issues