Skip to main content
The 2024 Developer Survey results are live! See the results

All Questions

0 votes
1 answer
176 views

How to find out xpath of elements in client server based web application in IE11?

I am trying to find out xpath in web application with developer tools of IE but developer tools not open due to security reasons in IE. so now i am facing problem to find out xpath of elements in IE. ...
Ashish Tikarye's user avatar
0 votes
1 answer
2k views

Javascript Selenium Internet Explorer 11 Options

I currently have my selenium javascript test set up with the chromedriver configuration below: const {Builder, By, Key, until} = require('..'); const webdriver = require('selenium-webdriver'); ...
Melissa's user avatar
  • 43
1 vote
0 answers
517 views

Cannot click on a button that is under a div with Internet Explorer

Internet Explorer 11 does not detect that there is an element over the element that I want to click. The use case is a page with a fixed div, that is a nav bar, and a button that is scrolled under ...
Andre Altran's user avatar
0 votes
1 answer
2k views

IE11 is failing to find element by using xpath while it works fine in Chrome in Selenium

HTML <tr> <td class="label" width="30%" valign="bottom">SOID: </td> <td class="desc" valign="top">123456789</td> </tr> Iam intersted in the value "...
Suvasish Sarker's user avatar
1 vote
1 answer
2k views

Selenium tests don't work in IE11

I'm working with automation tests on C# + Selenium WebDriver. I stucked with the problem, tests on IE11 don't work, but work on Firefox, Chrome, IE10. The problem is in the next part of code: try ...
Yurii Rozhkov's user avatar
0 votes
2 answers
308 views

Selenium and webdriver for IE11 not passing ajax call

I am having difficulties to get my ajax call to come to the back end. I am using webdriver 2.50.1 on windows 8 (well, i try them all from 2.44) start java -jar selenium-server-standalone-2.50.0.jar -...
FredyK's user avatar
  • 299
15 votes
7 answers
37k views

Unable to find element on closed window on IE 11 with Selenium

I'm trying to run tests on Internet Explorer 11 working with Selenium WebDriver. The code is: System.setProperty("webdriver.ie.driver", "Path/to//IEDriverServer.exe"); WebDriver driver = new ...
Alex's user avatar
  • 151