---
tags: English
---
# SideeX to CrossBrowserTesting
1. Open [CrossBrowserTesting](https://crossbrowsertesting.com/) official website
2. Register an account and login
3. Click on the `Automated Testing` in `Product`

4. Click `Getting Started` in `Automation`

5. Use Capabilities Configurator of Javascript
6. Toggle `View Full Script` to find username and authkey in the script
7. Replace all `'` to `"` and then manually add username and password field in capability
```json
{
"name": "Basic Test Example",
"build": "1.0",
"browserName": "Chrome",
"version": "77x64",
"platform": "Windows 10",
"screenResolution": "1366x768",
"username": "your_user_name",
"password": "your_auth_key"
}
```
8. Open SideeX and press the setting button
9. Toggle Playback through WebDriver

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

11. Fill in **Server URL** with `hub.crossbrowsertesting.com` and port `80`

12. Click on Capability Editor  and paste the capability 
13. Play the test case. A browser window will be automatically triggered by CrossBrowserTesting.
