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...
Krispin asked 7/8, 2018 at 14:29
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...
Selfseeker asked 12/4, 2018 at 5:57
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...
Tsang asked 30/10, 2017 at 11:7
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...
Ouabain asked 19/9, 2016 at 1:10
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...
Brambling asked 9/2, 2016 at 6:54
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...
Spinozism asked 30/7, 2018 at 18:24
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...
Gastrotrich asked 7/8, 2018 at 11:51
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...
Winters asked 16/4, 2018 at 5:59
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...
Lightman asked 26/7, 2017 at 5:53
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 ...
Dragnet asked 1/3, 2017 at 21:38
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.