WebdriverCurlException with php, selenium, and chromedriver WebdriverCurlException with php, selenium, and chromedriver selenium selenium

WebdriverCurlException with php, selenium, and chromedriver


You can set the $request_timeout_in_ms as the 4th parameter when creating the client with Driver::create.E.g.:

Driver::create('http://localhost:4444/wd/hub', $capabilities, 60000, 60000);

will set the connection and the request timeout to 60 seconds.