--- 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 ![](https://i.imgur.com/foPia8q.png =150x) 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 ![](https://imgur.com/krsIS5i.png =300x) 11. Add a new service and then add a new browser ![](https://imgur.com/VLJBxqd.png =500x) 12. Fill in **Server URL** with `ondemand.saucelabs.com` and port `80` ![](https://i.imgur.com/BHJIuWV.png =500x) 13. Click on Capability Editor ![](https://imgur.com/r37xnFK.png =35x) and paste the capability ![](https://i.imgur.com/MufY2RY.png =500x) 14. Play the test case. A browser window will be automatically triggered by Sauce Labs. ![](https://i.imgur.com/dxYlbjZ.png =500x)