Internet Explorer Driver Server is required to execute Selenium WebDriver tests in IE
Questions tagged [iedriverserver]
98 questions
0
votes
0 answers
Is there a way to hide console window selenium IEDriverserver
I have made EXE File using pyinstaller, and option is
pyinstaller ams.py -w -F --icon=icon.ico --add-binary "IEDriverServer.exe";"." --noconsole.
And python code is,
if getattr(sys, 'frozen', False):
IEdriver_path = os.path.join(sys._MEIPASS,…

hyun
- 1
- 1
0
votes
0 answers
Unable to launch IEDriverServer - Failed to start server with: port=xxxxx
We are trying to launch an IE browser using the RemoteWebDriver interface.
On the client side, we run the following command to start the selenium-standalone-server.jar
java -Dwebdriver.ie.driver=IEDriverServer.exe -jar…

Sriram Sridharan
- 720
- 18
- 43
0
votes
1 answer
IEDriver Server 4.0.0.0 doesn't provide any response when running using Selenium Java
I recently upgraded the IE Driver server to version 4.0.0.0 32- bit. When I run my test case it launches the browser but never shows any error or responds.
Selenium Version - 3.141.59 IE Version:
IE Webbrowser after launching:
Below Capabilities…

Zee
- 1
- 1
0
votes
2 answers
Is there a way to open HTTP web in Edge using selenium and iedriver?
So i'm using this code but if the web is HTTP it opens on IE instead of Edge.
var ieOptions = new InternetExplorerOptions();
ieOptions.EdgeExecutablePath = "C:/Program Files (x86)/Microsoft/Edge/Application/msedge.exe";
IWebDriver…

Leo Angelo
- 1
- 1
0
votes
1 answer
Selenium.InternetExplorer.WebDriver does not continue after do "GoToUrl" with some pages (google, elmundo.es, etc)
Package: Selenium.InternetExplorer.WebDriver
Version: 3.12.0, 3.150.0
InternetExplorerOptions options = new InternetExplorerOptions();
driver = new InternetExplorerDriver(options);
driver.Navigate().GoToUrl("http://www.google.com");
string hello =…

dlopezgonzalez
- 4,217
- 5
- 31
- 42
0
votes
0 answers
Why drag and drop is not working in IE 11 using Selenium Web driver (3.14.0)?
I am trying to perform drag and drop on IE browser (Version 11).
public void DragAndDrop(String source, String target) throws InterruptedException, IOException {
try {
String basePath = new File("").getAbsolutePath();
//…

Prashant
- 1,351
- 3
- 20
- 32
0
votes
1 answer
Failed to navigate to http://10.22.32.185 This usually means that a call to the COM method IWebBrowser2::Navigate2() using IE 11 on Win10 and Selenium
I have problem with start webdriver IE 11 in Selenium , Windows 10 version 20H2.
[ERROR] Tests run: 23, Failures: 3, Errors: 0, Skipped: 0, Time elapsed: 820.596 s <<< FAILURE! - in TestSuite
[ERROR] test.TestTrunkIE.firstTestIE Time elapsed: 0.07…

Kamil Surma
- 11
- 1
- 4
0
votes
1 answer
Selenium Automation fails if Browser Already Open (Edge Chromium/VB.NET/C#)
I am using the below VB.NET code op open Edge Chromium(In IE Capability Mode). It works if there are no existing Edge windows open, Other wise, it just opens another tab in the existing window and just displays This is the initial start page for the…

anandhu
- 686
- 2
- 13
- 40
0
votes
1 answer
webdriver hangs for some url on .get (IE)
I have Selenium 3.14.4
IEDriver 3.15
For some url when I call driver.get(), webdriver just sits there even though the page is done loading. In the end we get the error "Command line server for IE driver has stopped working"
I've tried both 32bit…

Vivian Yung
- 79
- 1
- 9
0
votes
0 answers
Selenium Webdriver does not proceed with execution after URL is loaded. The response from server is never returned and execution stays in hung state
IEDriverServer 3.0.0 have also used multiple versions to see if it's a config issue.
Selenium WebDriver - 3.12.0
Once the request to open the URL is sent, the control is never returned back from server.
URL gets loaded but nothing happens after…

V.Verma
- 1
- 3
0
votes
1 answer
Selenium Web driver IE 11
I am new to selenium and trying to execute my selenium web-driver script on IE 11 with window 10 combination sometime its run really slow and most of the time test fails with exceptions.
Exception:
System info: host: 'REF16U1ABJUN', ip:…

Mirfan
- 1
- 1
- 2
0
votes
1 answer
Selenium performance with InternetExplorerDriver and IE11
I am facing a very slow response when running my scripts on IE11. Sometimes, I get FocusWindowsClosed, ElementIsNotClickable. I have changed the zoom settings for all zones, created feature BFCACHE for IE in feature control, added capabilities into…

Alex Alex
- 27
- 4
0
votes
2 answers
"This is the initial start page for the WebDriver server" - Unable to resolve in Selenium/Python program using IE 11
After running my Selenium/Python program, browser opened with below message:
This is the initial start page for the WebDriver server
I have done below steps to resolve this:
In IE Options -> Security tab, Enable Protected Mode check box is ticked…

murthymrk
- 51
- 1
- 2
- 10
0
votes
1 answer
Facing challenge with selenium webdriver on Win 10 system
I am trying to automate login on a website using selenium. (Windows 10 64 bit os)
Using the below code I am able to open a link,
But once webpage loads the get cmd does not release my python interpreter
next…

rahul desai
- 49
- 8
0
votes
0 answers
Getting black screenshot for ie driver server
I have recently upgraded selenium version to 3.141.59
IEdriver 3.14
When I trigger the scripts to execute under Jenkins remote machine, getting black screenshot and timeout exception occurred as I wait for next element.
Could you please explain…

Ravi
- 1