Questions tagged [selenium-iedriver]

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

257 questions
0
votes
1 answer

Selenium 3 InternetExplorerDriver Setup

I'm trying to set up a type of boiler-plate code for WebDriver that I can give to anyone in my QA team to help them test. My problem is that I can't seem to get Internet Explorer working. It's throwing errors and I have no idea how to fix them or if…
0
votes
3 answers

Webelement.Click() - Getting exception on Webelement.Click() though it clicks the Element

Meta OS: Windows Selenium Version: 2.53.1.0 IDE: Visual Studio 2013 Browser: Internet Explorer 11 version 11.420 I am getting an exception when i tried to click an element on webpage. This happens when a link is clicked and it opens a dialog.…
0
votes
1 answer

How to execute selenium test cases on multiple node on IE11 browser

I am facing an issue like when try to execute selenium test case on two separate nodes on IE11 browser then it gets to hang on both node after open login page on IE browser. node configuration is: java -jar…
0
votes
1 answer

Could not install package 'IEDriver 2.0.0'

I'm doing an UIAutomation Project in C# using Selenium. The automation is to be done in Internet Explorer. So I tried downloading IEDriver.exe from NuGet Package Manager but faced following error: Severity Code Description Project File Line …
sigdelsanjog
  • 528
  • 1
  • 11
  • 30
0
votes
2 answers

How to handle Security Alert popus in IE using Selenium

As part of integration testing of our JS bundle, I wrote a local HTML page which has few buttons, clicking on those either loads the JS bundle or performs different actions by calling appropriate functions in the loaded JS bundle. I am using the…
0
votes
1 answer

Selenium IEDriver dosen't work on VPN

My selenium script work on both driver Chromedriver , IEDriver When I'm not connected to VPN. But when i try to run same script while i'm connected to VPN It works with Chromedriver only , For IEDriver just browser open , maximized , get URL and…
Devang
  • 365
  • 2
  • 6
  • 26
0
votes
2 answers

How can selenium run in IE do not show the browser windows?

The operating system is windows10, the programming language is JAVA ,the browser is IE11. How can selenium running without the browser windows?
eagin
  • 11
  • 3
0
votes
2 answers

WebDriverException generated from Webdriver.SendKeys in InternetExplorer on Selenium Grid

When I attempt to run my IE tests on the Grid I get this stack trace If I run the tests locally off the grid things run fine. My chrome and firefox tests both run on the grid with no issue, it just seems to be IE. Not sure what other information…
Buster
  • 685
  • 1
  • 5
  • 28
0
votes
1 answer

Selenium IEDriverServer logging

I have the below code which will set the property for webdriver before starting the IE Driver. My intent is to capture the info,fatal and error logs. System.setProperty("webdriver.ie.driver", "C:\\IEDriverServer.exe"); …
manutd
  • 291
  • 1
  • 5
  • 18
0
votes
1 answer

IE 11 performance in robot framework

The performance of my scripts is very slow when running on IE11. Some of my scripts run on chrome in 2-3 mins and that takes more than 25 minutes on IE. I am using Robot Framework and most of my locators are xpath. My application does not have ID…
user3262242
  • 184
  • 1
  • 3
  • 14
0
votes
2 answers

ChromeDriver.exe does not exist when running on teamcity

I have created 3 Test Server, IE, Chrome and Firefox. In TeamCity i created 3 build configuration IE, Chrome and Firefox. I have 3 Agents AgentIE, AgentChrome and AgentFirefox. Each agent is assign to specific build configuration example Build…
0
votes
2 answers

When running webdriver with IE browser, I'm getting message “Only local connections are allowed” although browser launches properly

My code is below System.setProperty("webdriver.ie.driver", "C:\\Selenium_Software\\IEDriverServer.exe"); DesiredCapabilities capabilities = new DesiredCapabilities(); capabilities.setCapability(CapabilityType.ACCEPT_SSL_CERTS, true); driver =…
user1635105
  • 41
  • 1
  • 4
0
votes
2 answers

Extracting resource entries in InternetExplorerDriver

I'm using Selenium Webdriver and am working with IE11. I'd like to access the window performance resources from an HTML page. From chrome I can do that easily with IJavaScriptExecutor js = _webDriver as…
SlightlyKosumi
  • 701
  • 2
  • 8
  • 24
0
votes
1 answer

Selenium-RC loading empty frame

As stated above, I am running out an automated test on a website. I am use selenium RC to do that but I'm just not sure why I am unable to open the website (actually i did open it), but its content is not showing. There are just a few empty frame…
fj123
  • 963
  • 1
  • 8
  • 11
-1
votes
1 answer

Selenium python program freezes at get() function

A simple python program freezes on the get() function of the selenium driver and does not return. Please find below the written code: self.browser = webdriver.Ie("IEDriver\\IEDriverServer.exe") self.browser.get() …