Selenium Forum: Functional And Regression Testing Tool.
Would you like to react to this message? Create an account in a few clicks or log in to continue.
Search
Display results as :
Advanced Search
Latest topics
AEM Training | Free Online DemoWed Apr 21, 2021 5:45 pmazharuddin
c# PageFactory - issue initializing elementsFri Nov 01, 2019 8:40 pmthegoatboy
Selenium making automatic connection to random urlsMon Jul 08, 2019 12:58 pmrepairtechsolutions1
How can we design the custom framework in Selenium RCMon Jun 24, 2019 2:26 pmrandybonnettes
What are the new features in Selenium 3.0Tue Jun 18, 2019 5:37 pmpappyvicky
What are you using Selenium for? Fri Apr 12, 2019 3:52 amzhl
LIMITATIONS OF SELENIUMWed Apr 10, 2019 11:23 amswara
Navigation
 Portal
 Index
 Memberlist
 Profile
 FAQ
 Search

Go down
avatar
Chetan_24
Posts : 2
Join date : 2011-10-18
Age : 39
Location : Mumbai
http://www.blogger.com/profile/05047554522031928312

Issue with Selenium Webdriver and Chrome with Grid Empty Issue with Selenium Webdriver and Chrome with Grid

Wed Nov 16, 2011 8:45 pm
Hello All,

I am able to run my script with IE and FF in parallel mode with selenium grid, but having some issues with chrome

I have downloaded the "chromedriver.exe" and placed to the location and set up the system property

now my webdriver instance is launching but it's not able to connect with the selenium hum

I am using following code


@BeforeClass
public void setup(String browser) throws MalformedURLException, InterruptedException, IOException {
DesiredCapabilities capability=new DesiredCapabilities();

System.setProperty("webdriver.chrome.driver", "C:/pathto chromedriver/chromedriver.exe");


if(browser.equalsIgnoreCase("chrome")){

driver = new ChromeDriver(capability);
capability.setVersion(capability.getVersion());

capability.setPlatform(org.openqa.selenium.Platform.ANY);

capability.setBrowserName(DesiredCapabilities.chrome().getBrowserName());



}

driver = new RemoteWebDriver(new URL("http://localhost:4444/wd/hub"), capability);
driver.navigate().to("http://google.com");
}

it launches the instance of chrome but not able to connect with grid and given following exception on consol

Started ChromeDriver
port=19526
version=16.0.902.0
Started ChromeDriver
port=51188
version=16.0.902.0
Nov 16, 2011 7:13:33 PM org.apache.http.impl.client.DefaultRequestDirector tryExecute
INFO: I/O exception (org.apache.http.NoHttpResponseException) caught when processing request: The target server failed to respond
Nov 16, 2011 7:13:33 PM org.apache.http.impl.client.DefaultRequestDirector tryExecute
INFO: Retrying request
Trying to start test session with: Capabilities [{platform=ANY, browserName=chrome, version=null}]
Nov 16, 2011 7:13:33 PM org.apache.http.impl.client.DefaultRequestDirector tryExecute
INFO: I/O exception (org.apache.http.NoHttpResponseException) caught when processing request: The target server failed to respond
Nov 16, 2011 7:13:33 PM org.apache.http.impl.client.DefaultRequestDirector tryExecute
INFO: Retrying request
Trying to start test session with: Capabilities [{platform=ANY, browserName=chrome, version=null}]
Back to top
Permissions in this forum:
You cannot reply to topics in this forum