Skip to content
Open
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
31 changes: 5 additions & 26 deletions lib/Chrome/ChromeDriver.php
Original file line number Diff line number Diff line change
Expand Up @@ -55,47 +55,26 @@ public function startSession(DesiredCapabilities $desired_capabilities)
$this->sessionID = $response->getSessionID();
}

/**
* Always throws an exception. Use ChromeDriver::start() instead.
*
* @param string $selenium_server_url
* @param DesiredCapabilities|array $desired_capabilities
* @param int|null $connection_timeout_in_ms
* @param int|null $request_timeout_in_ms
* @param string|null $http_proxy
* @param int|null $http_proxy_port
* @param DesiredCapabilities $required_capabilities
* @throws WebDriverException
* @return RemoteWebDriver
*/

public static function create(
$selenium_server_url = 'http://localhost:4444/wd/hub',
$selenium_server_url = 'http://localhost:3200/wd/hub',
$desired_capabilities = null,
$connection_timeout_in_ms = null,
$request_timeout_in_ms = null,
$http_proxy = null,
$http_proxy_port = null,
DesiredCapabilities $required_capabilities = null
) {
throw new WebDriverException('Please use ChromeDriver::start() instead.');
throw new WebDriverException('Please use ChromeDriver::Start() instead.');
}

/**
* Always throws an exception. Use ChromeDriver::start() instead.
*
* @param string $session_id The existing session id
* @param string $selenium_server_url The url of the remote Selenium WebDriver server
* @param int|null $connection_timeout_in_ms Set timeout for the connect phase to remote Selenium WebDriver server
* @param int|null $request_timeout_in_ms Set the maximum time of a request to remote Selenium WebDriver server
* @throws WebDriverException
* @return RemoteWebDriver|void
*/

public static function createBySessionID(
$session_id,
$selenium_server_url = 'http://localhost:4444/wd/hub',
$connection_timeout_in_ms = null,
$request_timeout_in_ms = null
) {
throw new WebDriverException('Please use ChromeDriver::start() instead.');
throw new WebDriverException('Please use ChromeDriver::Start() instead.');
}
}