---
tags: English
---
# SideeX to Sauce Labs
1. Open [Sauce Labs](https://saucelabs.com/) official website
2. Register an account and login
3. Click User Setting in the menu with your profile name to get access key

4. Click Dashboard and then click Automated Tests
5. Use [Capabilities Generator](https://wiki.saucelabs.com/display/DOCS/Platform+Configurator#/), select WebDriver(W3C) and then choose your divice , operating system, browser and select node.js format, and then replace all `'` to `"`
```json
{
"browserName": "chrome",
"browserVersion": "78.0",
"platformName": "macOS 10.13",
"sauce:options": {
}
}
```
6. Change `browserVersion` and `platformName` to `version` and `platform` if your browser is not the followings (W3C Capabilities support):
* Firefox - v.53+
* Chrome - v.61+
* Internet Explorer 11
7. If your browser is W3C Capabilities supported , fill your username and accesskey in `sauce:options`
```json
{
"browserName": "chrome",
"browserVersion": "78.0",
"platformName": "macOS 10.13",
"sauce:options": {
"accesskey": "your_accesskey",
"username": "your_user_name"
}
}
```
8. Otherwise, remove `sauce:options` and manually add `username` and `accesskey` on top level
```json
{
"browserName": "chrome",
"version": "78.0",
"platform": "macOS 10.13",
"accesskey": "your_accesskey",
"username": "your_user_name"
}
```
9. Open SideeX and press the setting button
10. Toggle Playback through WebDriver

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

12. Fill in **Server URL** with `ondemand.saucelabs.com` and port `80`

13. Click on Capability Editor  and paste the capability

14. Play the test case. A browser window will be automatically triggered by Sauce Labs.
