selenium-iedriver Questions

2

Solved

I am trying to test in java selenium with IE but my problem is I have to keep on configuring the settings in protected Mode, is the an alternative to the deprecated function WebDriver driver = ne...

2

Solved

IE ignore zoom setting doesn't work, my code as below, why it doesn't work? I got the error message (selenium.common.exceptions.SessionNotCreatedException: Message: Unexpected error launching Inter...

2

I'm trying to use Java and Selenium to test a website that requires a client certificate. When I browse to my site I get a popup like the one below to select the correct certificate. My requirem...

5

Solved

I am trying to launch IE11 browser on my local machine using the following code. try{System.setProperty("webdriver.ie.driver", "src/main/resources/bin/IEDriverServer.exe"); } catch (Exception ex...

3

Solved

For Chrome, public class Chrome { public static void main(String[] args) { System.setProperty("webdriver.chrome.driver", "E://chromedriver.exe"); WebDriver driver = new ChromeDriver(); driv...

11

Firefox and chrome is working fine but with IE 11, the sendkeys are extremely slow. How do you fix this issue ? My Environment: Running IE 11.103 Operating System Windows 10 I'm using eclipse(Ve...
Otis asked 16/11, 2016 at 8:1

1

Solved

driver = webdriver.Ie("C:\\IEDriverServer.exe") driver.get(testurl) driver.refresh() time.sleep(5) data = driver.find_element_by_id("__content0-value-scr") So I'm trying to find an element by it'...
Constituency asked 22/11, 2018 at 21:31

1

Solved

Having opened the file chooser dialog in IE, self.webDiver.switch_to_alert().accept() Tried the above line but does not click the open button. IE Version 11.2580.14393.0; Windows Server 2016 Stan...
Lexeme asked 15/11, 2018 at 6:32

1

Solved

So I am automating a web application in IE11 (Three cheers for government contracting!) and I am following the instructions on the Selenium Wiki to configure the thing because we have had a bunch o...

7

I have written a sample code to launch IE browser and load google page. public class Sample { public static void main(String[] args) { // TODO Auto-generated method stub System.setProperty("...
Fisherman asked 6/7, 2016 at 10:52

1

Solved

My project includes Selenium webdriver, JAVA, Maven, TestNG, Jenkins, Allure (reports). I have a few suites of tests with 100+ test cases, and I iterate them through 3 different browsers (the tests...

1

Solved

using System; using OpenQA.Selenium.IE; using OpenQA.Selenium.Remote; using OpenQA.Selenium; namespace CSharpAutomationFramework.Tests { public class BrowserSource { var options = new InternetE...

1

Solved

I have a simple code where I click on a link and it opens up a new window. But while executing the script, single click acts as double click on the same element and 2 windows are opened. I am usin...

2

OS: Windows 10 Browser: IE11 Selenium (Python) package: 3.0.1 IEWebDriverServer.exe: 3.1.0 We are getting ready to migrate our automation nodes to Windows 10 and during our tests, we found that ...

3

I am using Selenium Grid to start an InternetExplorerDriver-Instance remotely. Therefore I use the following code: DesiredCapabilities capability = (DesiredCapabilities) DesiredCapabilities.intern...
Haustorium asked 4/1, 2012 at 13:26

2

Solved

I'm using Selenium's IWebDriver to write Unit Tests in C#. Such is an example: IWebDriver defaultDriver = new InternetExplorerDriver(); var ddl = driver.FindElements(By.TagName("select")); The ...
Whiteside asked 11/1, 2011 at 12:12
1

© 2022 - 2024 — McMap. All rights reserved.