Open GoogleCodeExporter opened 9 years ago
I am experiencing the same issue. Will there be a fix for this soon?
Original comment by mmical...@gmail.com
on 26 Jul 2011 at 2:19
This issue is detailed here:
http://code.google.com/p/selenium/issues/detail?id=2091
A fix:
In file WebDriver.php, look for:
public function connect($browserName="firefox", $version="", $caps=array()) {
...
...
...
$this->preparePOST($session, $postargs);
curl_setopt($session, CURLOPT_HEADER, true);
ADD THIS LINE -> curl_setopt($session, CURLOPT_HTTPHEADER,
array('application/json;charset=UTF-8', 'Accept: application/json'));
$response = curl_exec($session);
$header = curl_getinfo($session);
$this->requestURL = $header['url'];
...
Original comment by jaruz...@gmail.com
on 18 Apr 2012 at 1:13
...
Original issue reported on code.google.com by
sergey.t...@gmail.com
on 20 Jul 2011 at 12:24