Shashikant86 / BehatDemo

New enhancements in Behat
26 stars 7 forks source link

this is the initial start page for the webdriver server #2

Open alnutile opened 11 years ago

alnutile commented 11 years ago

Using Web-Driver (selenium2) I only get that page on the browser and then the URL never get's visited. This is an issue overall and not really with your demo but just wondering if you have run this lately. Here is a screenshot. screen shot 2013-10-02 at 1 29 45 pm

The sauce-rc one works fine which is Selenium1

sanpizi commented 10 years ago

me too...help~~~~~

andrewmatsa commented 9 years ago

http://code.google.com/p/selenium/wiki/InternetExplorerDriver#Required_Configuration http://sqa.stackexchange.com/questions/3513/ie-always-opens-with-random-local-host-and-msgthis-is-the-initial-start-page-f

nappps commented 9 years ago

I had same problem.

I used debug mode and got the following message :

message":"Unexpected error launching Internet Explorer. Browser zoom level was set to 110%. It should be set to 100%"

**debug mode : DesiredCapabilities caps = new DesiredCapabilities(); caps.setCapability(InternetExplorerDriver.LOG_LEVEL, "DEBUG");

yevgeniy-mikhailov commented 6 years ago

It helps me: DesiredCapabilities capability = DesiredCapabilities.internetExplorer(); capability.setCapability(InternetExplorerDriver.INITIAL_BROWSER_URL, ""); Configuration.browserCapabilities = capability;

anxx15 commented 6 years ago

I also got the msg about the Protected mode. However, after fixing that and the zoom to 100%, the error remained as it is. Has anyone tried anything else?

ashwinnayak commented 6 years ago

Check the IEServerDriver Version, try using the same version as your selenium version.