Questions tagged [iedriverserver]

Internet Explorer Driver Server is required to execute Selenium WebDriver tests in IE

90 questions
1
vote
1 answer

Unable to launch IE 11 when running selenium with IEDriverServer 3.9.0.0

I'm having issues launching IE 11 when I run my selenium tests. Here is the code I am using to setup my browser if (browser.equalsIgnoreCase("ie")) { System.setProperty("webdriver.ie.driver", "IEDriverServer.exe"); driver = new…
1
vote
1 answer

actions.MoveToElement() not working on ie 11

The same method used in the test automation project I wrote in c # does not work in internet explorer 11 even though the movement method I use is chrome, firefox and edge. It does not give any errors, but the next action is fail log.Debug("fare " +…
1
vote
1 answer

How to ignore zoom setting

IE ignore zoom setting doesn't work, my code as below, why it doesn't work? I got the error message (selenium.common.exceptions.SessionNotCreatedException: Message: Unexpected error launching Internet Explorer. Browser zoom level was set to 125%. It…
1
vote
0 answers

Error: [hasElementById("xx")] Error response status: 17,JavaScriptError - An error occurred while executing user supplied JavaScript. Selenium error:

I am working on Selenium with InternetExplorerDriver 32-bit to test my webapp on Windows 2016. My code is written in javascript. I am using amdc/wd as webdriver. The code works well on the Chrome and Safari browsers but on IE, I see the following…
1
vote
0 answers

Robot Test not selecting new window

the application under test is an internal site. i am not able to select the new window when i run the test in IE. this is the part of my test that is having the error Run report input text txtSearchKey TestProduct click element …
1
vote
3 answers

Very slow text entry using Selenium IEDriverServer?

Running Selenium IEDriverServer 3.5.1 32bit, I am experiencing very, very slow text entry in Internet Explorer v11. Oddly, if I switch to IEDriverServer 3.4.0 (also 32bit) it is not slow, but overall test execution slows down somewhat (this issue…
kroe761
  • 2,228
  • 7
  • 32
  • 64
1
vote
1 answer

Setting up selenium to work with internet explorer

I have created a python script that I can execute and does exactly what I want under the Google Chromedriver. However, to make sure that my executable can work on all PCs, I would like to have my script work with the internet explorer driver but I…
1
vote
4 answers

Set zoom level to 100% in Selenium WebDriver when default is not 100

I'm running into an issue with Selenium WebDriver in Java, where I can't set the IE browser zoom level to 100% when the user has a different default value. Ctrl + 0 does not work since this sets the zoom to the default. I've tried setting zoom…
0
votes
0 answers

IEDriverServer with laptop and monitor

I am at a temporary location for a couple weeks. I have my laptop and I HDMI to an LG monitor maybe twice the size. Most programs I automate are Chrome so it does not matter. However, for a few programs they have to run in IE. The problem is I…
Tony
  • 991
  • 11
  • 24
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…
0
votes
0 answers

Intermittent issues in launch internet explorer using internet explorer driver

I am using internet explorer driver version 3.141.59.0 (64-bit) to start a new session using selenium create session API. I am currently having intermittent issues in launch internet explorer using internet explorer driver server. Any hints what…
0
votes
0 answers

Why is not updating IE_ENSURE_CLEAN_SESSION=true Desire Capabilities in log file while launching IE browser?

Why is not updating IE_ENSURE_CLEAN_SESSION=true DesiredCapabilities in log file while launching IE browser ? I gave IE_ENSURE_CLEAN_SESSION=true in DesiredCapabilities but false is updating log file. Can you please let me know why is true not…
0
votes
0 answers

Protractor automation - Disable w3c for IE Driver

I have a usecase where I can't access a control's pageobject to enter data into it. So I am trying to achieve that with a keypress without page object. Using protractor, I was able to do this in chrome browser by disabling the w3c by setting the…
Ramprakash
  • 11
  • 2
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
  • 319
  • 4
  • 24
0
votes
2 answers

Using IE selenium driver with python

im trying to define IE web driver to work with python and i have some errors that i cant undetrstand. maby i have to change some security setting at internet explorer ? i have interent explorer version 11 thank you . from selenium import…