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

All Questions

0 votes
2 answers
40 views

Normalise style attribute in javascript

In IE11 when we block.getAttribute('style') we return border-bottom-width: 1pt; border-bottom-style: dotted; border-bottom-color: rgb(10, 49, 132) But in chrome it returns border-bottom: 1pt dotted ...
Ahmed Yaslem's user avatar
0 votes
2 answers
4k views

Download files automatically in Internet Explorer 11 with Python and Selenium

I am trying to download some Excels files throught multiple Internet Explorer 11 windows at the same time by using Python and Selenium. The problem appens when the "Save As" Pop Up appears and the ...
Nach's user avatar
  • 1
0 votes
0 answers
533 views

Python action stucked when launching Selenium IE11 WebDriver or when executing JS

My apologies to bother all respectable professional here, I have been struggled in this issue few weeks and can't find any similar solution on others posts, I have done the correct settings in IE, ...
J. David's user avatar
0 votes
1 answer
248 views

XPathEvaluator is undefined’ script error in Microsoft Dynamics CRM using IEDriverServer and Internet Explorer through Selenium and Java

I am testing a CRM application using Selenium Java. There is a button on the CRM application which when clicked opens a new window. When I run the test for this functionality, the new window opens ...
PratikshaB's user avatar
0 votes
4 answers
1k views

Selenium WebDriver - Unable to drag and drop element in IE11

I am trying to drag and drop an element from side panel to form. Drag and drop code what I wrote is like below. Actions builder = new Actions(driver); builder.dragAndDrop(source, target).build()....
Chandresh Parmar's user avatar
0 votes
2 answers
2k views

Unable to execute Javascript Executor in InternetExplorer 11

I am trying to use javascript executor to sendKeys for the given xpath but it's not working on browser IE 11.Since this is an hidden xpath iam using the javascript executor.I am using Eclipse tool ...
raman san's user avatar
0 votes
1 answer
47 views

Internet Explorer 11 issue

I am working on selenium automation through IE web browser. Sometimes while invoking browser the actions are done very slowly. For example, If I comment a user id(abcd), IE typing like a(taking a ...
Siva Kumaravel's user avatar
0 votes
1 answer
190 views

Unable to read logs message from IE console tab using selenium

I want to read console messages(info,warning and error) in IE 11 using selenium webdriver(C#). I tried alot with LogType.Browser but no success. Is there any possible way to fetch and read the console ...
Noman Masood'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
1 answer
1k views

IE11 fails with "Netscape is not supported please used internet explorer" error when launch by Selenium

I have a quite old website to be maintained, supports IE8 and above. Now I've a plan to do some test automation on the site, using Selenium WebDriver (version 3.7.1). Almost everything works well, ...
giang.asl.8's user avatar
0 votes
1 answer
180 views

How to reproduce Internet Explorer Basic authentication with Javascript

I am actually facing an issue when it comes to login to our web apps using JavaScript. This is for Selenium test purpose When manually browsing to the app, IE shoes the Auth popup, where user should ...
Skipper's user avatar
1 vote
1 answer
12k views

JavaScriptexecutor setAttribute value on selenium

I was executing a selenium automation on IE11. Now for an Element, say ele; ele.sendKeys(characters) are not working directly. So I was trying to change the 'value' attribute for that <input> ...
RCode's user avatar
  • 119
0 votes
0 answers
387 views

Watir::Browser#execute_script and "Element no longer valid"

I'm writing some automation for a website of ours in Internet Explorer (it has to be IE :< ) and I ran into some issues with execute_script. I need to move a vertical splitbar over 200px so it ...
redcodefinal's user avatar
24 votes
4 answers
43k views

findIndex() method issue with internet explorer

I am doing some tests with differents browsers using the Selenium::Remote::Driver module. I would like to check if I find some item in my web site list, list from a framework JavaScript (which ...
Chaoui05's user avatar
  • 288