---
tags: English
---
# SideeX to BrowserStack
1. Open [BrowserStack](https://www.browserstack.com/) official website
2. Register an account and login
3. Click on `Automate` in `Products` page

4. On the left side you can get Username and Access Key

5. Use the [Capabilities Generator](https://www.browserstack.com/automate/capabilities) of BrowserStack with NodeJS and then replace all `'` to `"`
```json
{
"os" : "Windows",
"os_version" : "10",
"browserName" : "Chrome",
"browser_version" : "78.0 beta",
"browserstack.local" : "false",
"browserstack.selenium_version" : "3.5.2",
"browserstack.user" : "your_user_name",
"browserstack.key" : "your_access_keys"
}
```
6. Open SideeX and press the setting button
7. Toggle Playback through WebDriver

8. Add a new service and then add a new browser

9. Fill in **Server URL** with `hub-cloud.browserstack.com` and port `80`

10. Click on Capability Editor  and paste the generated capability

11. Play the test case. A browser window will be automatically triggered by BrowserStack.
