Sha256: 480250200da9bb45b47f16d9389cc4fe2329f0b2b58ad69a7a2600c6ba14834e
Contents?: true
Size: 1.16 KB
Versions: 15
Compression:
Stored size: 1.16 KB
Contents
## Getting Started ## ### Installing gems ### To install gems type: ```shell bundle install ``` ### Drivers: ### Install and include in PATH - [chromedriver](https://sites.google.com/a/chromium.org/chromedriver/) - [phantomjs](http://phantomjs.org/) - [internetExplorerDriver](http://www.seleniumhq.org/download/) - [Firefox Geckodriver](https://developer.mozilla.org/en-US/docs/Mozilla/QA/Marionette/WebDriver) Install [Webdriver Safari extension](http://selenium-release.storage.googleapis.com/2.48/SafariDriver.safariextz). ### Run tests in DEV with Chrome### Type this in the tests folder: ```shell bundle exec cucumber -p ci -p html -p headless -p dev ``` ### Run tests in DEV with headless### Type this in the tests folder: ```shell bundle exec cucumber -p ci -p html -p headless -p dev ``` ### Run tests in HMG with Chrome### Type this in the tests folder: ```shell bundle exec cucumber -p pretty -p html -p no_headless -p hmg ``` ### Run tests in HMG with headless### Type this in the tests folder: ```shell bundle exec cucumber -p ci -p html -p headless -p hmg ``` ### Run with tags### Type this in the tests folder: ```shell bundle exec cucumber --tags @run ```
Version data entries
15 entries across 15 versions & 2 rubygems