Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 19 additions & 1 deletion src/Codeception/Module/WebDriver.php
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@
*
* ### ChromeDriver
*
* To run tests in Chrome browser you may connect to ChromeDriver directly, without using Selenium Server.
* To run tests in Chrome/Chromium you may connect to ChromeDriver directly, without using Selenium Server.
*
* 1. Install [ChromeDriver](https://sites.google.com/a/chromium.org/chromedriver/getting-started).
* 2. Launch ChromeDriver: `chromedriver --url-base=/wd/hub`
Expand All @@ -98,6 +98,24 @@
*
* Additional [Chrome options](https://sites.google.com/a/chromium.org/chromedriver/capabilities) can be set in `goog:chromeOptions` capabilities. Note that Selenium 3.8 renamed this capability from `chromeOptions` to `goog:chromeOptions`.
*
* ### GeckoDriver
*
* To run tests in Firefox you may connect to GeckoDriver directly, without using Selenium Server.
*
* 1. Install [GeckoDriver](https://github.com/mozilla/geckodriver).
* 2. Launch GeckoDriver: `geckodriver`
* 3. Configure this module:
*
* ```yaml
* modules:
* enabled:
* - WebDriver:
* url: 'http://localhost/'
* browser: firefox
* path: ''
* capabilities:
* acceptInsecureCerts: true # allow self-signed certificates
* ```
*
* ### PhantomJS
*
Expand Down