Skip to content
This repository has been archived by the owner on Dec 30, 2019. It is now read-only.

Latest commit

 

History

History
63 lines (48 loc) · 2.48 KB

File metadata and controls

63 lines (48 loc) · 2.48 KB

NOTE:
This project is not maintained anymore by Sauce Labs, samples on how to use WebdriverIO with Sauce Labs and other frameworks can be found on the Sauce-service and frameworks site of WebdriverIO.

JS-CucumberJS-WebdriverIO

This code is provided on an "AS-IS” basis without warranty of any kind, either express or implied, including without limitation any implied warranties of condition, uninterrupted use, merchantability, fitness for a particular purpose, or non-infringement. Your tests and testing environments may require you to modify this framework. Issues regarding this framework should be submitted through GitHub. For questions regarding Sauce Labs integration, please see the Sauce Labs documentation at https://wiki.saucelabs.com/. This framework is not maintained by Sauce Labs Support.

Environment Setup

  1. Global Dependencies
    $ brew install node
    
    • Install Grunt Globally
    $ npm install -g grunt-cli
    
  2. Sauce Credentials
    • In the terminal export your Sauce Labs Credentials as environmental variables:
    $ export SAUCE_USERNAME=<your Sauce Labs username>
    $ export SAUCE_ACCESS_KEY=<your Sauce Labs access key>
    
  3. Project Dependencies
    • Install Node modules
    $ npm install
    

Running Tests

  • Tests in Parallel:
     $ grunt
    
  • Single Feature
    ./node_modules/.bin/cucumber.js features/homepage.feature
    

Sauce Labs Dashboard

Advice/Troubleshooting

  1. There may be additional latency when using a remote webdriver to run tests on Sauce Labs. Timeouts or Waits may need to be increased.

Resources

  • A great resource to search for issues not explicitly covered by documentation