Internet Explorer Driver Server is required to execute Selenium WebDriver tests in IE
Questions tagged [iedriverserver]
98 questions
0
votes
1 answer
setting proxy in selenium in python for IE browser
My question is about setting proxy in selenium coding in python (3.6) for IE browser.
from selenium import webdriver
PROXY = "94.56.171.137"
PORT = 8080
base_url = "https://google.com"
desired_capability =…

Sahu
- 1
- 1
0
votes
1 answer
Setproperty selenium for selenium
I am a new learner to Selenium and its frameworks, need help in the following:
I had used set property as shown below in Program 1 as i was facing issues while sending keys. The keys were being sent very slow, but by using setProperty the issue was…

siby21t
- 11
- 1
- 5
0
votes
2 answers
Internet Explorer not selecting Elements on Webpage
I am running Selenium to test a specific area of my companies webpage. What I am trying to do seems relatively easy in theory, but I have ran into several obstacles. Can someone please tell me why the URL is opening but won't select the "Services"…

Mr. Mayonnaise
- 159
- 1
- 2
- 13
0
votes
2 answers
How to find an element within a frame in IE?
Code trials:
driver.switchTo().frame(driver.findElement(By.xpath("//iframe[contains(@src,'path')]")));
driver.findElement(By.id());
Switching to Frame is may be successful but it didn't throw any NoSuchFrameException.
The same is working in Chrome…

Ray
- 65
- 1
- 9
0
votes
1 answer
Unable to create new remote session. desired capabilities = Capabilities [{ie.ensureCleanSession=true}], required capabilities while launching IE
I have updated IE Driver to 3.12.0.0 and it is not working. I get the below error message
Code:
DesiredCapabilities cap = new DesiredCapabilities();
cap.setCapability(InternetExplorerDriver.IE_ENSURE_CLEAN_SESSION,…

johnsonambrose
- 115
- 1
- 2
- 15
0
votes
2 answers
Is InvalidArgumentException ensureCleanSession a known IEDriverServer 3.12.0 issue or am I instantiating it incorrectly?
When I attempt to instantiate IEDriverServer 3.12.0 like this:
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.ie.InternetExplorerDriver;
public class StartInternetExplorer {
public static void main(String[] args) {
//…

Neon Flimsy
- 23
- 4
0
votes
2 answers
Selenium driver: -Dwebdriver.driver="iexplorer" invokes safari
When I try to run my Serenity test automation, I called following maven command:
mvn clean verify -Dentry_point="**/*SmokeTestSuite.java" -Dwebdriver.driver="iexplorer" -Dwebdriver.ie.driver="\IEDriverServer.exe"
I supplied the iexplorer…

user3053729
- 3
- 2
0
votes
0 answers
Internet Explorer not launching , with selenium driver 3.11.0 and ie driver 3.11.1
*I am not able to launch IE with the configuration , IE Driver 3.11.1 and selenium 3.11.0.
This same code is working with Selenium WebDriver 3.6.0 , but fails for 3.7.0 and above.
Code:-
InternetExplorerOptions options=new…

aditya rawat
- 129
- 2
- 18
0
votes
0 answers
Selenium webdriver: IE crashes with “Command line server for the IE driver has stopped working”
When I try to clear all cookies in the Internet explorer, the webdriver (IEDriverServer) crashes. The error does not appear in other scenarios.
View screenshot
.Net (c#) code:
public override IWebDriver CreateRemoteDriver()
{
var…

Richardok
- 31
- 5
0
votes
0 answers
Switch control to new window when new window is opening only after closing the existing window
How to switch control to new window if new window is opening only after closing the existing window?
I am using Selenium and Internet Explorer.
for (String h : webDriver.getWindowHandles()) {
webDriver.switchTo().window(h);}
WebElement…

A.Mishra
- 1
0
votes
1 answer
How to accept physical location alert in IE
In my project I am getting the below alert in IE after navigating to the Location tab.
Now I would like to accept the same and for that I had added the below capabilities but it is not…

Arijit Biswas
- 81
- 1
- 3
- 16
0
votes
0 answers
When open new window,the ieDriverServer can not be closed
@AfterClass
public void aClass(){
LogUtil.info("-------Finished Test Class-----------");
if (action != null)
action.tearDown("-------Finished Test Class-----------");
}
and the tearDown(String ) is below:
public void…

dy20082250
- 11
- 4
0
votes
3 answers
Unable to launch IE browser using Selenium Webdriver
I am trying invoke IE browser using Selenium Webdriver and have used the below code to invoke:
System.setProperty("webdriver.ie.driver", driverPath+"IEDriverServer.exe");
driver = new InternetExplorerDriver();
But while execution I am getting error…

Arijit Biswas
- 81
- 1
- 3
- 16
0
votes
0 answers
IEDriverserver.exe crashes sometimes using selenium. Looks it's related to memory, how can I increase it?
I hava a maven project which runs selenium tests using IEDriver.exe. Sometimes IEDriver crashes with the message "The instruction at 0x6b5bebe4 referenced memory at 0x6aaa6830". Looks like it's related to memory, should I increase the the memory…

Carolina Herrera
- 84
- 2
- 11
0
votes
0 answers
Getting Error: UnsupportedOperationError: mouseMoveTo when trying to perform mouseMove() in IE through protractor
I am trying to perform mouseMove() action in one of my test scripts in protractor.
It works fine for chrome and older version of Firefox(46), but it fails in IE and latest version of firefox with the below error message:
Exception has occurred:…

Prashant
- 1
- 2