The InternetExplorerDriver is a standalone server which implements WebDriver's wire protocol.
Questions tagged [selenium-iedriver]
257 questions
18
votes
2 answers
How to make Selenium WebDriver select client certificates dynamically without visually detecting the popup
I'm trying to use Java and Selenium to test a website that requires a client certificate.
When I browse to my site I get a popup like the one below to select the correct certificate.
My requirements are as follows:
Select a certificate by name
On…

neXus
- 2,005
- 3
- 29
- 53
9
votes
3 answers
Why do we need to set the System Property for Chrome And IE Browser and Not For Firefox Browser
For Chrome,
public class Chrome {
public static void main(String[] args) {
System.setProperty("webdriver.chrome.driver", "E://chromedriver.exe");
WebDriver driver = new ChromeDriver();
…

SacTan
- 379
- 2
- 5
- 18
7
votes
2 answers
Selenium 3.0.1 with IE11 not finding elements on Windows 10 (Works fine on Windows 7 with IE11)
OS: Windows 10
Browser: IE11
Selenium (Python) package: 3.0.1
IEWebDriverServer.exe: 3.1.0
We are getting ready to migrate our automation nodes to Windows 10 and during our tests, we found that although our scripts work fine on Win7 on FF, IE, and…

derekmw
- 375
- 1
- 5
- 13
7
votes
11 answers
How to fix the slow sendkeys on IE 11 with Selenium Webdriver 3.0.0?
Firefox and chrome is working fine but with IE 11, the sendkeys are extremely slow. How do you fix this issue ?
My Environment:
Running IE 11.103
Operating System Windows 10
I'm using eclipse(Version: Neon Release (4.6.0)) with java 1.8
selenium…

Shaun Cromie
- 339
- 1
- 3
- 16
6
votes
2 answers
Using Selenium 2's IWebDriver to interact with elements on the page
I'm using Selenium's IWebDriver to write Unit Tests in C#.
Such is an example:
IWebDriver defaultDriver = new InternetExplorerDriver();
var ddl = driver.FindElements(By.TagName("select"));
The last line retrieves the select HTML element wrapped in…

Andreas Grech
- 105,982
- 98
- 297
- 360
6
votes
1 answer
NoSuchWindowException - Unable to find element on closed window in Selenium on IE in spite of following the configuration advice in other answers
This is related to my other recent question on Selenium (that question was about a Firefox-specific issue, this one is about an IE-specific issue).
Basically, when I ran the following…

EJoshuaS - Stand with Ukraine
- 11,977
- 56
- 49
- 78
6
votes
7 answers
Unable to launch IE browser in selenium webdriver
I have written a sample code to launch IE browser and load google page.
public class Sample {
public static void main(String[] args)
{
// TODO Auto-generated method stub
…

Suraj
- 61
- 1
- 1
- 2
5
votes
1 answer
How does the registry entry HKEY_LOCAL_MACHINE\...\FEATURE_BFCACHE for InternetExplorerDriver solves the Internet Explorer 11 issue?
So I am automating a web application in IE11 (Three cheers for government contracting!) and I am following the instructions on the Selenium Wiki to configure the thing because we have had a bunch of weird and wonky behavior. I am at this step here…

Friendbot
- 77
- 1
- 8
5
votes
1 answer
How to use DesiredCapabilities class through IEDriverServer in Selenium and Python
I have been struggling with a simple python script working in IE11 for some reason it was unable to find any elemnt, however by setting some desired capabilities in a java code it worked:
System.setProperty("webdriver.ie.driver",…

Meryem
- 477
- 7
- 17
5
votes
5 answers
Selenium: Unexpected error launching IE. Browser zoom level was set to 122%. It should be set to 100%
I am trying to launch IE11 browser on my local machine using the following code.
try{System.setProperty("webdriver.ie.driver", "src/main/resources/bin/IEDriverServer.exe");
}
catch (Exception ex){
…

ChanChow
- 1,346
- 7
- 28
- 57
4
votes
3 answers
Selenium Issue with Internet Explorer : org.openqa.selenium.NoSuchElementException : Unable to find element with xpath
I am trying to run Selenium (Selenium standalone server 3.141.59) for my system in Internet Explorer (IE 11). It works till the login.
After the login it opens a new window and I use following line to open the desired…

Dilhan Nakandala
- 301
- 5
- 24
4
votes
1 answer
Selenium IE driver hangs after navigating to URL
I have simple Selenium xUnit Test as below
[Fact]
public void Test()
{
var driver = new InternetExplorerDriver(@"C:\Users\myusername\.nuget\packages\selenium.webdriver.iedriver\3.150.1\driver");
…

LP13
- 30,567
- 53
- 217
- 400
4
votes
1 answer
UnsupportedOperationError: sendKeysToActiveElement error while invoking sendKeys(Key.ENTER) with Protractor and Internet Explorer 11
The environment I'm using is
Protractor 5.3.1
Cucumber 4.2.1
IE11
selenium-webdriver 3.6.0
On the page in the application I am testing there is no button to click on, you need to enter text into an input field then send the ENTER key. The…

AutoTester
- 41
- 1
- 3
4
votes
4 answers
java.net.ConnectException: Failed to connect to localhost error with Selenium 3.11.0 with IEDriverServer and IE 11 on Windows 10
I am very new to selenium and trying to set up selenium in my laptop to begin. I am unable to invoke IE from my simple code. The details are given below. Can you please help me to understand where the issue is
IE version: IE 11,
IE Driver: 64-bit,…

Divakar Ragupathy
- 191
- 1
- 6
- 20
4
votes
0 answers
Unable to trigger "mouseover" and "mouseout" events in IE11 in WebdriverIO
Injecting JavaScript snippet to trigger the "mouseover" and "mouseout" events. Works well with Chrome, Firefox and Safari (both locally and remotely).
For IE11, I can verify that it works in console. But when trying to automate it, throws error:…

T Gurung
- 333
- 1
- 7