Questions tagged [selenium-iedriver]

The InternetExplorerDriver is a standalone server which implements WebDriver's wire protocol.

257 questions
-1
votes
1 answer

How to set zoom level for MS-Edge in IE MODE browser using selenium 3.141.59 on windows 11?

I am automating a web application in ME-Edge in IE Mode on Windows 11. I have to set zoom level to 80% for same requirement for all end to end test cases. I tried with multiple given code // To zoom out 3 times for(int i=0; i<3;…
Prashant
  • 1,351
  • 3
  • 20
  • 32
-1
votes
1 answer

handling dtype in for loop from an Excel file

I'm trying to extract columns from an excel file onto a website by using pandas for loop. However, not all data from a specific column have the same data type, so sometimes it can't output due to "datatype" issue and there are even null value in the…
-1
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…
-1
votes
1 answer

The element type "link" must be terminated by the matching end-tag "" while trying to parse PageSource from Selenium through getPagesource

I am generating page source through selenium getpagesource() method for firefox and ie browser , but pagesource is not getting parse and message is displayed as: The element type "link" must be terminated by the matching end-tag "" like…
-1
votes
1 answer

Unable to detect elements inside iframe in Internet explorer selenium driver

This failed with the error : Unable to find element with xpath == //body It fails to find elements under frame in internet explorer. This code works fine in Chrome. Please help me to figure out the issue. Thanks in advance. var descFrame=…
Renjila
  • 11
  • 4
-1
votes
1 answer

After updating the selenium jar and IE driver executable files. My script is running very slow

It is finding the element very fast but taking so much time to perform the actions like click or sendkeys. Currently updated files are Selenium Jar-3.7.1 and IEDriverExecutable-3.8.0
-1
votes
1 answer

Facing issue with IE 11 on windows 10, browser is launched but does not enter URL

Selenium Code: System.setProperty("webdriver.ie.driver","D:\\Automation\\Drivers\\IEDriverServer.exe"); DesiredCapabilities capabilities = DesiredCapabilities.internetExplorer(); capabilities.setCapability("ignoreZoomSetting", true); WebDriver…
Sagar
  • 31
  • 1
  • 1
  • 7
-1
votes
1 answer

Selenium IE driver returns tab count as 1 while using getWindowHandles method on multiple tabs of same window

I'm automating a portal using selenium web driver + Internet Explorer, was able to open a multiple new tabs on existing window but was not able to pass URL to newly opened tab, IE isn't recognizing new tabs and getWindowHandles() returns count as 1,…
-1
votes
3 answers

Selenium Server and IE web driver for Java 8

Previously I was using selenium-server-standalone-2.46.0 and IEDriverServer 2.46.0.0 (IE 11 version) for testing my web application running with jdk 1.6. Now the application is compatible to run with Java 8. So could someone advise as to what latest…
DeeJay007
  • 469
  • 4
  • 30
-1
votes
3 answers

Kill instances of Internet Explorer remotely from linux machine using Java

I have several Selenium tests being run remotely from Jenkins (on Linux) to a Windows machine using Selenium Grid. I need a way to reliably kill all instances of IE before a test even begins. These tests all run end-to-end using TestNG, so this…
kroe761
  • 3,296
  • 9
  • 52
  • 81
-1
votes
2 answers

NoSuchWindowException - Selenium 3.4.0 - IE 11

I have launched IE 11 browser, I have navigated to a initial URL --> done mouse over and clicked a link --> it redirects to another page. In that page, I have to click a button, but it is throwing an exception…
-1
votes
2 answers

Not able to open IE browser.code and error both are in description?

import org.openqa.selenium.WebDriver; import org.openqa.selenium.ie.InternetExplorerDriver; public class IEdrivercode { public static void main(String[] args) { String driverpath = "path of IE Browser"; …
Madhusudhan R
  • 301
  • 1
  • 5
  • 17
-1
votes
1 answer

I am writing a selenium script and i am not able to write the xpath for the below code

I am writing a selenium script and i am not able to write the xpath for the below code
Success: You have added
user4934574
-1
votes
1 answer

How to multi select the items in table without using action class for IE browser

IE browser does not support Action class. Is it possible to multi select the items in a table using any other way? If any, please share. Please find the sample structure of the table to select the values. Now i want to select the Text1, Text3 &…
-1
votes
2 answers

Selenium XPath not found for IEDriver when I add URL/Domain in compatibility view

When I execute my script using IEDriver without compatibility view, my test script is running without any problem. But, If I execute the same script after adding domain in compatibility view, then some elements are not found and I'm getting…
Devang
  • 365
  • 2
  • 6
  • 26
1 2 3
17
18