Questions tagged [iedriverserver]

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

98 questions
0
votes
0 answers

selenium no such session excpetion: session does not exist in IEDriverServer

I have a few selenium tests on a react application. All tests are passing for chrome and firefox without any error. However, in IE (internet explorer v11) - all tests pass, but fails at the tearDown method: - teardown method: - @AfterClass public…
0
votes
0 answers

Selenium IE Driver opens link on a new window and not on new tab

I am using IE11 for my selenium tests. I Am clicking on a link which when done manually opens up the link on a new tab. When I am trying to do the same thing with Selenium, it does not open the link on a new tab rather, it opens up on a new…
0
votes
3 answers

Selenium - Internet explorer - Java - How to disable images loading?

To improve the performance of the automation, trying to disable image loading. I found a way to do it in Firefox & Chrome (Ref: Selenium WebDriver/Firefox|Chrome/Java How to disable image loading), not Internet Explorer. Please help me out here.
0
votes
0 answers

Difference in IE browser interactions through Selenium and launching manually

Application in my project is very complex with number of backend systems and heavily written on javascript for frontend. Application works only in internet explorer and hence I am using InternetExplorerDriver. I was successful in automating single…
0
votes
0 answers

Facing slowness on executing selenium script through Jenkins(remotely) on IE11 browser

I am facing slowness on trying to execute my selenium script remotely on IE11 However, this is comparatively working fine with local execution Selenium version: 3.141 IE driver: 3.14.0 I am working on a healthcare project and the supported browser…
0
votes
2 answers

Click method behaves differently when using ChromeDriver with Chrome and IEDriverServer with Internet Explorer 11

I have created xpath on chrome as : "//a[@href[contains(.,'moduleCode=MASTER')]]" This xpath is working fine for chromedriver. However, when the same Xpath is being executed for IEDriverServer it throws error as…
0
votes
5 answers

Why is selenium web driver doesn't find the textfield on this website?

What should happen is that these textfields for login should be filled and the the login button should be pressed (some sort of auto login) Here is the link to the webpage: Telekom Email Login Page This are the three methods I'm using: public String…
0
votes
1 answer

Is there any alternative location to download IEDriverServer binary for Selenium

The links at https://www.seleniumhq.org/download/ appear broken, and the other location I found http://selenium-release.storage.googleapis.com/index.html is put in the blockedlist. Does anyone have alternative please?
0
votes
1 answer

Which is the compatible version of IEDriverServer for IE11 and Selenium 3.13?

I am automating tests with IE11 and Selenium 3.13 and I was testing different version of IEDriverServer but every version has a bug. I want a stable version to combine IEDriverServer with IE11 and Selenium 3.13 I'm using this code to launch the…
0
votes
1 answer

Selenium FileUpload accept() is not clicking button

Having opened the file chooser dialog in IE, self.webDiver.switch_to_alert().accept() Tried the above line but does not click the open button. IE Version 11.2580.14393.0; Windows Server 2016 Standard The dialog that gets displayed is "Choose File…
dank8
  • 361
  • 4
  • 20
0
votes
1 answer

Protractor webdriver-manager error: "WebDriverError: Unable to determine type from: E. Last 1 characters read: E"

I have been running Protractor tests against Chrome and I have recently encountered a need to test against IE. I follow the standard procedure to set up the selenium server(webdriver-manager update=>webdriver-manager start), then I run my tests…
0
votes
1 answer

Error build VSTS - VSTest task - OpenQA.Selenium.WebDriverException: The HTTP request to the remote WebDriver server for URL

In my build the following error is occurring: [error]Error Message: [error] Test method PROJECTXPTO.FeatureBDD.NameFeature.NameTestCase_Variant0 threw exception: [error]OpenQA.Selenium.WebDriverException: The HTTP request to the remote WebDriver…
mribeiro
  • 197
  • 11
0
votes
1 answer

Issue 'Modal Dialog Present' happening after latest update with Internet Explorer 11 (KB4021558)

I am getting 'Modal dialog present' exception while running my test cases which was working fine till 23rd July. On 24th July, Microsoft rolled out an update KB4021558 regarding some vulnerability fix for IE 11. After this update, I am getting an…
0
votes
3 answers

How to switch between windows in selenium?

I am working on a application which is desired for IE only. Once after login into application a new new window is opened which is the home page. Now my issue is I am not able to locate any element in homepage through IE driver. Not sure if the…
0
votes
0 answers

Get data from iedriverserver/browsermob-proxy | Python 3 coding

I have made a script to scrap a website for my company. Everything was more or less fine, until I get the information that selenium wasn't made to collect trafic and performance data. That was what made me know about browsermob-proxy. I tried to use…