You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What steps will reproduce the problem?
1. Use chromedriver download from google code project
2. Use php-webdriver-bindings to communicate with chromedriver
This is probably an issue with the chromedriver project more than this project,
but I was able to fix it with a small modification to WebDriver.php that does
not change the behavior--just allows an override of the request url.
It seems that chrome driver expects post requests to come in to URL "/",
instead of "/wd/hub".
I changed lines 26 and 27 in WebDriver.php to allow that override from a client
object:
function __construct($host, $port, $url = "/wd/hub") {
parent::__construct("http://" . $host . ":" . $port . $url);
It works fine for me so I thought I would share it.
Original issue reported on code.google.com by [email protected] on 24 Jan 2013 at 2:45
The text was updated successfully, but these errors were encountered:
Is this issue with specific version of ChromeDriver as well? What version of
Chrome, ChromeDriver, and Selenium?
I had no issues with Chrome v27, Selenium 2.28, and not recent/latest version
of ChromeDriver (don't recall specific version).
Original issue reported on code.google.com by
[email protected]
on 24 Jan 2013 at 2:45The text was updated successfully, but these errors were encountered: