Created
August 5, 2016 10:56
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Created by PhpStorm. | |
* User: root | |
* Date: 05.08.16 | |
* Time: 10:58 | |
*/ | |
class GitHubSearchTest extends PHPUnit_Framework_TestCase | |
{ | |
/** | |
* @var RemoteWebDriver | |
*/ | |
protected $_webdriver; | |
protected $_url = 'https://github.com'; | |
public function setUp() | |
{ | |
$capabilities = [ | |
\WebDriverCapabilityType::BROWSER_NAME=>'chrome', | |
\WebDriverCapabilityType::BROWSER_NAME=>'firefox' | |
]; | |
$this->_webdriver = RemoteWebDriver::create('http://localhost:4443/wd/hub', $capabilities); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment