https://github.com/browserstack/browserstack-selenium-load-testing-sample
Sample repository for Selenium load-testing test
https://github.com/browserstack/browserstack-selenium-load-testing-sample
Last synced: 7 days ago
JSON representation
Sample repository for Selenium load-testing test
- Host: GitHub
- URL: https://github.com/browserstack/browserstack-selenium-load-testing-sample
- Owner: browserstack
- Created: 2025-08-04T09:52:03.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2026-06-19T13:10:53.000Z (27 days ago)
- Last Synced: 2026-06-28T23:02:25.561Z (17 days ago)
- Language: Java
- Size: 51.8 KB
- Stars: 0
- Watchers: 0
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Codeowners: CODEOWNERS
Awesome Lists containing this project
README
# browserstack-selenium-load-testing-sample

## Getting Started
### Run Sample Build
1. **Clone the repository**
```sh
git clone https://github.com/browserstack/browserstack-selenium-load-testing-sample.git
cd browserstack-selenium-load-testing-sample
```
2. **Choose the framework to run**
cd into the the respective framework folder, for instance to run the testng sample:
```sh
cd testng
```
3. **Install Maven dependencies**
```sh
mvn compile
```
4. **Install BrowserStack CLI**
Download the appropriate BrowserStack CLI binary based on your operating system:
- **macOS x86**
[browserstack-cli-macOS-x86](https://load-api.browserstack.com/api/v1/binary?os=macos&arch=x64)
- **macOS ARM**
[browserstack-cli-macOS-arm](https://load-api.browserstack.com/api/v1/binary?os=macos&arch=arm64)
- **Windows x86**
[browserstack-cli-windows](https://load-api.browserstack.com/api/v1/binary?os=win&arch=x64)
- **Linux x86**
[browserstack-cli-linux-x86](https://load-api.browserstack.com/api/v1/binary?os=linux&arch=arm64)
- **Linux ARM**
[browserstack-cli-linux-arm](https://load-api.browserstack.com/api/v1/binary?os=linux&arch=x64)
> Place the downloaded `browserstack-cli` binary in the root of your project.
5. **Run tests using BrowserStack CLI**
```sh
./browserstack-cli load run
```
6. **View Test Results**
Visit the [BrowserStack Load-Testing Dashboard](https://load.browserstack.com/projects) to monitor and analyze your test runs.
---