After Launching browser in selenium
web driver using Java and windows not passing URL in web address and it does not open URL.
Thanks
After Launching browser in selenium
web driver using Java and windows not passing URL in web address and it does not open URL.
Thanks
Try to give protocol http
in driver.get()
as
driver.get("http://google.co.in");
If not will throw webDriverException
driver.get("google.co.in");
will not work.
You should specify the protocol that you will be using like http or https.
Use driver.get("http://google.co.in");
Check the compatibility of Firefox version and Selenium version.
Try out Firefox 30 with Selenium 2.45 and use
driver.get("http://www.google.co.in");
It will work.
Please refer to the same error reported earlier in stackoverflow Webdriver Unable to connect to host 127.0.0.1 on port 7055 after 45000 ms
hope this helps.
Is firefox browser launching? which OS are you using. Also please refer to my earlier answer, did you try
driver.get("http://www.google.co.in");