From 92f0580548d1d474c34cf5e020977d4a2f9cd255 Mon Sep 17 00:00:00 2001 From: sidradchandran <44175548+sidradchandran@users.noreply.github.com> Date: Wed, 31 Oct 2018 23:40:23 +0530 Subject: [PATCH] Update ChromeDriver.php --- lib/Chrome/ChromeDriver.php | 31 +++++-------------------------- 1 file changed, 5 insertions(+), 26 deletions(-) diff --git a/lib/Chrome/ChromeDriver.php b/lib/Chrome/ChromeDriver.php index 107854b4a..df17110cc 100644 --- a/lib/Chrome/ChromeDriver.php +++ b/lib/Chrome/ChromeDriver.php @@ -55,21 +55,9 @@ 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, @@ -77,25 +65,16 @@ public static function create( $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.'); } }