Questions tagged [selenium-iedriver]

The InternetExplorerDriver functions as a standalone server that enacts WebDriver's wire protocol.

How can I disable image loading in Internet Explorer using Selenium and Java?

In an effort to enhance the efficiency of our automation process, I am looking into disabling image loading. I have managed to find a solution for Firefox and Chrome (Reference: Selenium WebDriver/Firefox|Chrome/Java How to disable image loading), but not ...

The input speed of text using Selenium on the search field is extremely slow with IEDriverServer

Currently, I'm utilizing selenium with Python on a Windows 7 system. This is the code snippet I am using: import os from selenium import webdriver ie_driver_path = "C:Python36ScriptsIEDriverServer.exe" driver = webdriver.Ie(ie_driver_path) driver.im ...

Issue with dropdown selection in IE 11 when using Selenium 3.0.0

While using the IE driver, I have noticed that it often selects the wrong item in the dropdown box. This issue seems to occur specifically with the items located towards the end of the dropdown list. For instance, when attempting to choose item 9 from the ...

Problem encountered with SendKeys in the use of IEDriverServer for selenium automation

While testing a web application, I encountered an issue with the login function. It works perfectly fine in Chrome but when attempting to run the test in Internet Explorer, a problem arose: The email being sent for login is: Driver.FindElement(By.Id("xxx ...

Concealing Command Prompt Output with PowerShell and Selenium

Currently, I am utilizing Selenium in conjunction with PowerShell to launch a dashboard display using Internet Explorer on a large office monitor. The process is initiated as follows: $seleniumOptions = New-Object OpenQA.Selenium.IE.InternetExplorerOption ...