Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
fixes #4157
  • Loading branch information
DavertMik committed May 10, 2017
1 parent e791342 commit cdf20f0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/Codeception/Module/WebDriver.php
Expand Up @@ -89,7 +89,7 @@
* browser: phantomjs
* ```
*
* #### Headless Selenium in Docker
* ### Headless Selenium in Docker
*
* Docker can ship Selenium Server with all its dependencies and browsers inside a single container.
* Running tests inside Docker is as easy as pulling [official selenium image](https://github.com/SeleniumHQ/docker-selenium) and starting a container with Chrome:
Expand Down Expand Up @@ -1292,6 +1292,7 @@ public function _initializeSession()
public function _loadSession($session)
{
$this->webDriver = $session;
$this->setBaseElement();
}

public function _backupSession()
Expand Down
2 changes: 1 addition & 1 deletion tests/data/app/db
@@ -1 +1 @@
a:0:{}
a:1:{s:6:"params";a:0:{}}
1 change: 1 addition & 0 deletions tests/web/FriendsLeaveCept.php
Expand Up @@ -8,6 +8,7 @@
$I->amOnPage('/');
$I->seeInCurrentUrl('/');
});
$I->see('Information', 'h1');
$jon->leave();

$I->see('Don\'t do that at home');

0 comments on commit cdf20f0

Please sign in to comment.