Skip to content
This repository was archived by the owner on Nov 29, 2018. It is now read-only.
This repository was archived by the owner on Nov 29, 2018. It is now read-only.

IEDriverServer does not work with IE11 on Windows 8.1 and Server 2012 x64 #7516

Open
@lukeis

Description

@lukeis

Originally reported on Google Code with ID 7516

Also see case 7440:

What steps will reproduce the problem?
run the following unit test on visual studio 2013 test explorer on windows 8.1 x64
or 2012 R2 against the default IE version:
            driver.Navigate().GoToUrl("demo.asna.com/carolina");            
            driver.Manage().Window.Maximize();            
            WebDriverWait wait = new WebDriverWait(driver, TimeSpan.FromSeconds(10));
            wait.Until<IWebElement>((d) => { return d.FindElement(By.Id("AppBody__HomeMenu_B1_S1"));
});
            driver.FindElement(By.Id("AppBody__HomeMenu_B1_S1")).Click();
            wait.Until<IWebElement>((d) => { return d.FindElement(By.Id("AppBody__BodySize"));
});

Second wait crashes because the click event never is executed. Another note: We cannot
certify our software as fully supported on IE11 just because of this, we would have
to look for other software available on the market and translate all our test.

Selenium version: strong named API version 2.42 C#
OS: Windows 8.1 x64
Browser: Internet Explorer
Browser version: 11.0.9600.17107 (update version 11.0.8)

Any suggestions or questions please don't doubt on asking.

Thanks,
Carlos Ocasio
QA and RE Manager @ ASNA inc.



Reported by Carlos.Ocasio on 2014-06-18 15:11:20

Metadata

Metadata

Assignees

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions