Try   HackMD

SideeX to Sauce Labs

  1. Open Sauce Labs 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, select WebDriver(W3C) and then choose your divice , operating system, browser and select node.js format, and then replace all ' to "

    ​​​​{
    ​​​​    "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

    ​​​​{
    ​​​​    "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

    ​​​​{
    ​​​​    "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.