https://github.com/browserstack/browserstack-cucumber-testng-load-testing-sample
Sample repository for cucumber-testng framework to do load testing.
https://github.com/browserstack/browserstack-cucumber-testng-load-testing-sample
Last synced: 7 days ago
JSON representation
Sample repository for cucumber-testng framework to do load testing.
- Host: GitHub
- URL: https://github.com/browserstack/browserstack-cucumber-testng-load-testing-sample
- Owner: browserstack
- Created: 2025-09-19T05:33:37.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2026-06-19T13:10:58.000Z (26 days ago)
- Last Synced: 2026-06-28T23:02:24.541Z (17 days ago)
- Language: Java
- Size: 11.7 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Codeowners: CODEOWNERS
Awesome Lists containing this project
README
# browserstack-cucumber-testng-load-testing-sample

## Getting Started
### Run Sample Build
1. **Clone the repository**
```sh
git clone git@github.com:browserstack/browserstack-cucumber-testng-load-testing-sample.git
```
2. **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=x64)
- **Linux ARM**
[browserstack-cli-linux-arm](https://load-api.browserstack.com/api/v1/binary?os=linux&arch=arm64)
> Place the downloaded `browserstack-cli` binary in the root of your project.
4. **Run tests using BrowserStack CLI**
```sh
./browserstack-cli load run
```
5. **View Test Results**
Visit the [BrowserStack Load-Testing Dashboard](https://load.browserstack.com/projects) to monitor and analyze your test runs.
---