Open GoogleCodeExporter opened 9 years ago
Original comment by samu...@chromium.org
on 21 Feb 2015 at 12:18
Unable to reproduce issue with chromedriver:2.14, chrome:v41 Windows 7 / Ubuntu
Sample Code:
System.setProperty("webdriver.chrome.driver",
"drivers/chromedriver");
WebDriver driver = new ChromeDriver();
driver.navigate().to("http://www.google.com");
Map<Object, Object> temp =(Map<Object, Object>)
((JavascriptExecutor)driver).executeScript(":takeHeapSnapshot");
PrintWriter pw = new PrintWriter("output/chromeheapsnapshot.txt");
for(Object obj:temp.keySet()){
pw.write(obj.toString()+"\t"+temp.get(obj));
}
pw.flush();
pw.close();
System.out.println("completed");
Original comment by ssudunag...@chromium.org
on 27 Mar 2015 at 5:07
I have faced the similar issue:
Test method Testing.EndToEnd.MsTest.SWRCanClickFromDashboardCountsToSWR.TheSWRCanClickFromDashboardCountsToSWRTest threw exception: OpenQA.Selenium.WebDriverException: A exception with a null response was thrown sending an HTTP request to the remote WebDriver server for URL http://localhost:50530/session/25b322b6e78bd4824810e3e7ebc895a9/element/0.9115849656278625-2/css/background-color. The status of the exception was ConnectFailure, and the message was: Unable to connect to the remote server ---> System.Net.WebException: Unable to connect to the remote server ---> System.Net.Sockets.SocketException: No connection could be made because the target machine actively refused it 127.0.0.1:50530
Original issue reported on code.google.com by
RPW...@gmail.com
on 10 Apr 2014 at 2:10Attachments: