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

All Questions

0 votes
1 answer
52 views

Getting 'object doesn't support property or method "evaluate" ' in selenium | IE

I am automating a web app on IE(Internet Explorer) browser. I am getting the below error when I am trying to find any element on the page after the page is loaded. selenium.common.exceptions....
subham chomal's user avatar
1 vote
1 answer
110 views

Selenium Javascript executor don't finish - IE11, Edge IE mode

Hello I have problem with javascript excecutor in Selenium Browser: Edge IE mode;IE11. Script don't finish working. I run button where after click show window Windows10 I use method: public void ...
Kamil Surma's user avatar
0 votes
0 answers
981 views

Edge Browser in IE Mode is throwing an Error Message "Internet Explorer cant be found. You need to re-install or re-enable Internet Explorer""

My application doesn't work in the Edge browser. but works fine in the Edge Browser(Version 105) with IE Compatibility Mode. Am using Selenium 4 with below code to launch the Edge Browser in IE Mode ...
Selenium Lover's user avatar
0 votes
1 answer
321 views

IE mode with InternetExplorerDriver

Now Im using selenium version 4.8.1 With the following Code: var ieOptions = new InternetExplorerOptions { }; ieOptions.AttachToEdgeChrome = true; ieOptions....
Xia's user avatar
  • 1
0 votes
2 answers
433 views

High memory leakage is observed in EDGE IE11 mode as compared to IE with Selenium

Recently, we have upgraded our Selenium version from 2.53 to 4.1.2 to enable testing of our application on MS EDGE IE11 mode. The reason behind running our application on EDGE IE11 mode is because IE ...
Gaurank Verma 's user avatar
0 votes
2 answers
621 views

clear() method doesn't clears the field in MS EDGE IE11 with Selenium-4.1.2

Recently, I have upgraded my Selenium version from 2.53 to 4.1.2 to enable testing of our application on MS EDGE IE11. But we are continuously facing issue when we are clearing any TextBox field using ...
Gaurank Verma 's user avatar
0 votes
0 answers
105 views

using python selenium IE11, python(jupyter notebook) finds compeletly different element of HTML

I am building a crawling code on a web page running only on IE11. My problem is that python selenium,selenium.webdriver.Ie, find completely different element of HTML element = driver....
Chan's user avatar
  • 1
-1 votes
2 answers
1k views

Using Excel VBA to load a website that is incompatible with IE11

In Excel VBA to load a website and get it into a sheet I have been using the following: Dim IE As Object Set IE = CreateObject("InternetExplorer.Application") IE .navigate "https://...
drb01's user avatar
  • 301
2 votes
2 answers
371 views

Python - How to get Selenium send_keys to work in IE11

I am building a web scraper to download PDF files from a public school database site, and the script itself works fine with Chrome, which is what I would prefer. However, the site will ONLY allow you ...
Cheems's user avatar
  • 31
0 votes
1 answer
101 views

Driver.getWindowHandles() is always returning 1 in IE11 on Windows 10

I know this question is duplicate with below question. Driver.getWindowHandles() is always returning 1 in IE11 on Windows 10, although there are two windows open Selenium - getWindowHandles() is ...
Cuong Euro's user avatar
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
1 answer
59 views

click() is not working in IE11 driver using selenium

Code: webBrowser = webdriver.Ie(r'C:\Users\XYZ\WebDriver\IEDriverServer.exe') webBrowser.get(URL) webBrowser.implicitly_wait(15) webBrowser.find_element_by_xpath('//input[@id="number_id"]')....
Mr.A I's user avatar
  • 45
0 votes
1 answer
620 views

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 ...
Kamil Surma's user avatar
3 votes
3 answers
831 views

Selenium Issue with Internet Explorer : org.openqa.selenium.NoSuchElementException : Unable to find element with xpath

I am trying to run Selenium (Selenium standalone server 3.141.59) for my system in Internet Explorer (IE 11). It works till the login. After the login it opens a new window and I use following line to ...
Dilhan Nakandala's user avatar
1 vote
0 answers
390 views

Selenium with Edge Chromium in IE11 compatibility mode

We are trying to setup Selenium with Edge browser, but with IE11 compatibility mode in Java. Is this possible? We tried various settings with various driver versions, setting capabilities, but with no ...
omniflash's user avatar
  • 191
-1 votes
1 answer
140 views

Assistance with selenium send key python

I am new to python scripting and am not understanding why I am getting this error. For some reason, I cannot get it to send_keys to that element. ERROR: raise TimeoutException(message, screen, ...
Tim Hamner's user avatar
0 votes
0 answers
128 views

I cant get the element locator in Ie to work with Selenium

Can someone help with why I am getting this error? I am new to scripting but this has had me stuck for a few days now. (I have to use internet explorer). Thanks so much for all your help! ERROR: ...
Tim Hamner's user avatar
0 votes
0 answers
90 views

Not able to run the test cases continuously using IE 11and C#

I'm Currently working in Automation test scripts in visual studio for IE browser version 11 using c#. My test cases not able to run continuously one after the other.It working fine for only one test ...
Thiya's user avatar
  • 75
2 votes
3 answers
195 views

Unable to retrieve page_source using IE11 and Selenium using Python

driver = webdriver.Ie() driver.implicitly_wait(5) url = "http://nontax.hebcz.cn" driver.get(url) driver.maximize_window() print("=======") print(driver.page_source) print("====...
user5524535's user avatar
0 votes
1 answer
360 views

Failed to navigate to https://www.google.ca. This usually means that a call to the COM method IWebBrowser2::Navigate2() with Python Unittest Selenium

from selenium import webdriver import unittest from selenium.webdriver.support.ui import WebDriverWait from selenium.webdriver.support import expected_conditions as EC from selenium.webdriver....
vormier's user avatar
  • 13
0 votes
1 answer
208 views

When Selenium test execution is triggered in Azure devops server screenshots are not captured for Internet explorer browser

We have few test cases automated using Selenium and C#. We need to run our tests in Internet Explorer 11. Test case executes perfectly in local systems but when we do the test run remotely using Azure ...
avinash subramanya's user avatar
0 votes
1 answer
120 views

NoSuchElementError when selecting element following form-triggered navigation in Internet Explorer 11

I have the following Selenium script, which works correctly in Chrome and Firefox: await driver.get("http://localhost:44180/"); await driver.wait(until.titleIs(RP_LOGIN_TITLE), TIMEOUT); ...
dstaley's user avatar
  • 1,012
0 votes
1 answer
281 views

Selenium IWebElement.Click() doesn't work intermittently

So this is similar to Click() method will not always work but there are several vital differences: Not a timing issue because I repeatedly try to click it until success No exception is thrown, just ...
sashoalm's user avatar
  • 78.1k
0 votes
0 answers
165 views

Disabling XSS Filter for IE11 on BrowserStack

Greetins all, I am working on cross-browser testing via browserstack. I have an inssue with Internet Explorer 11 or earlier versions. My test code requires me to send some scripts in the url. To be ...
pdrersin's user avatar
  • 311
0 votes
2 answers
184 views

Selenium check IE11 memory usage

How can I check how much memory is used by an IE11 process that is associated with a given InternetExplorerDriver in Selenium? I'd like to restart IE11 if its memory usage exceeds a certain value (...
sashoalm's user avatar
  • 78.1k
1 vote
2 answers
107 views

Selenium Webdriver sendKeys enters values in IE11 32 bit but then removes it

I have to enter text in a input box in a selenium test in java. I am using below code to do that and it enters the characters but then deletes it: WebElement depart=webControls.getDriver()....
Sneh Tripathi's user avatar
2 votes
0 answers
317 views

Running Capybara tests against Internet Explorer via Browserstack

I have a Rails app with a suite of Cucumber tests that run via Capybara on a headless Chrome browser. I'd like to find a way of running these tests (or at least a subset of them) on IE11, and have ...
griswoldbar'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
43 views

Selenium IE11 file download - Non Robot framework solution

I'm looking for a solution in a Java Selenium test to interact with the IE11 download file dialog without needing to use Robot framework. Our team needs to be able to run a large number of tests ...
Dili's user avatar
  • 586
0 votes
0 answers
48 views

Internet Explorer WebDriver hangs for an hour during CreateSession API Call

Internet Explorer Driver hangs for an hour during CreateSession Call. It hangs for an hour to find window handle for Internet Explorer Server and this issues happens intermittently. Has anyone ...
geek2geek_AWS's user avatar

15 30 50 per page
1
2 3 4 5
8