The InternetExplorerDriver is a standalone server which implements WebDriver's wire protocol.
Questions tagged [selenium-iedriver]
257 questions
2
votes
1 answer
Driver.getWindowHandles() is always returning 1 in IE11 on Windows 10, although there are two windows open
Code in Context:
Set handles = driver.getWindowHandles();
String firstWinHandle = driver.getWindowHandle();
handles.remove(firstWinHandle);
String winHandle=handles.iterator().next();
if…

Sachin Bansal
- 21
- 4
2
votes
5 answers
Selenium sendkeys not inputting the text
I have the below code which will click on a button in window. On clicking the button,the current window is closed and new window will be opened. Some text will be inputted in a textbox in new window.
WebElement element=null;
try {
…

manutd
- 291
- 1
- 5
- 18
2
votes
1 answer
File path declaration not visible to Method call in Main method
I'm working on developing an application that will be used to automate form-filling operations in Java with Selenium. I've currently got both set up to be portable on a thumbdrive. My code is below:
package AutoFill;
import java.io.File;
import…

drs
- 35
- 6
1
vote
3 answers
InternetExplorerDriver may have died - Selenium issue
I am using Selenium Grid to start an InternetExplorerDriver-Instance remotely. Therefore I use the following code:
DesiredCapabilities capability = (DesiredCapabilities) DesiredCapabilities.internetExplorer();
RemoteWebDriver driver = new…

tester
- 3,977
- 5
- 39
- 59
1
vote
0 answers
Selenium 4 C# Edge IEMode - WindowHandles funtion does not increase number of handles when new browser window appears
I updated Selenium to 4. I test legacy app that runs only on IE. Now IE will be closed down and I need to switch to MS Egde in capability mode.
My tests during execution need to switch to new browser windows and uses function…

Lukasz
- 31
- 4
1
vote
1 answer
Unexpected error launching Internet Explorer. IELaunchURL() returned HRESULT 80070005 ('Access is denied.') using IEDriverServer v3.150.1
When I try to run the protractor scripts using IEWebdriver3.150 am getting Access denied Error as:
Error:
E/launcher - Unexpected error launching Internet Explorer. IELaunchURL() returned HRESULT 80070005 ('Access is denied.') for URL…

Mahather Mohamed
- 35
- 1
- 6
1
vote
0 answers
Python Internet Explorer driver using its own proxy instead of the proxy I have set
The browser traverses all the webpages correctly but is listening on a different port in spite of specifying the port in the below code. I am trying to initiate the internet explorer driver using selenium and browsermob-proxy with the following…

Ananya Roy
- 11
- 1
1
vote
0 answers
Selenium (C# Binding) IEDriver flaky behavior when waiting for dynamic elements to appear in DOM
When working with the IEDriver (C# Selenium Bindings), I'm experiencing some very flaky behavior while waiting for my React components to appear on the screen. All resources I've looked at so far suggest using an explicit wait on the element, before…

Nox
- 35
- 1
- 10
1
vote
1 answer
Selenium, InternetExplorerDriver, ForceCreateProcessApi, timeout or no browser launch?
We've been using Selenium to automate some browser testing in Internet Explorer. On Windows 7 32-bit it works fine. However we're testing it on Windows 10 64-bit and it fails miserably.
Sometimes the browser doesn't even launch
If i change the…

Captain_Planet
- 1,228
- 1
- 12
- 28
1
vote
2 answers
selenium unable to get page after opening it with python
I have this code:
from selenium import webdriver
from selenium.webdriver.common.desired_capabilities import DesiredCapabilities
from selenium.webdriver.support.ui import Select
from selenium.webdriver.common.by import By
# import…

Henry-G
- 131
- 1
- 8
1
vote
2 answers
Unable to Launch IE from Selenium - Protected Mode settings are not the same for all zones
I am trying to lauch IE using below code :
driver = webdriver.Ie("IEDriverServer.exe")
driver.get("https://www.google.com")
This was working earlier, But i tried changing the security level in internet options, and after that it is giving below…

anandhu
- 686
- 2
- 13
- 40
1
vote
1 answer
IE webdriver of Selenium Python loads the webpage and goes to a halt state
Hey there Python Experts,
I have used Beautiful Soup and REquests to scrape data from static web for my project. But for Dynamic contents i am unable to do the same. I have installed selenium for the same. But when i execute the below code; The code…

Alwyn Miranda
- 370
- 3
- 5
- 18
1
vote
2 answers
How to handle IE browser with Zoom other than 100%?
Some of the teams are using IE for which we added ie capabilities including the one specified below:
cap.setCapability("ignoreZoomSetting", true);
Now if my zoom is set to 100%, I don't face any issues with execution. But in case my zoom setting is…

VJ4Testing
- 81
- 1
- 9
1
vote
3 answers
How IEDriver bit is determined for the execution
We have 2 machines in which we run IE selenium Test scripts. In both the machine IE 32 bit is configured. In one machine it types faster and in another machine it types each word. So in that machine i changed the IEDriver bit version as 64 and it…

Kaushik
- 89
- 1
- 12
1
vote
2 answers
org.openqa.selenium.NoSuchWindowException: Unable to get browser while trying to open Internet Explorer 11 through Selenium and IEDriverServer
I'm unable to launch Internet Explorer browser with the selenium webdriver. Facing the below error, can anyone please help
Error occured:
Started InternetExplorerDriver server (32-bit)
3.14.0.0
Listening on port 45640
Only local connections are…

Prashanth Nagendra
- 31
- 6