Questions tagged [selenium-iedriver]

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

257 questions
0
votes
0 answers

Issues with Selenium title validation in C# using xpath

I have the following HTML below that I am trying to verify the title is present when I land on the page. This is in IE 11
Geezus
  • 39
  • 3
  • 11
0
votes
0 answers

Selenium webdriver sockettime out exception

I am executing a test plan which contains around 117 test cases. This test plan fails randomly in one or the other test case. Thorows the below exception: 2017-03-31 00:17:52,904 ERROR [Log] Error occured during IE browser execution:…
manutd
  • 291
  • 1
  • 5
  • 18
0
votes
1 answer

Cannot open IE through selenium

I am trying to run my automation script in IE and have downloaded IE driver and giving that in path but some reason its not opening and getting error org.openqa.selenium.SessionNotCreatedException: Unable to create new remote session I am setting…
0
votes
2 answers

InvocationTargetException thrown with java/selenium webdriver action class

I'm using IE driver with java. I've done this fine in c# but trying java and hitting a snag. I instantiate the driver with a singleton pattern at the class level and then begin a junit test with the @Test. I separated the finding of the element…
mutt
  • 783
  • 1
  • 7
  • 11
0
votes
1 answer

How to control selection of Internet Explorer Driver 32bit from Serenity BDD

Currently I have IEDriver 32 and 64 bit executable files in m system path. When I initiate tests from Serenity BDD it automatically selects 64bit version. Can I control this selection using any specific property?
Saikat
  • 14,222
  • 20
  • 104
  • 125
0
votes
1 answer

onlick submit button working properly on chrome driver, but redirecting to login page in IE driver

While using selenium webdriver in chrome, the submit button works properly and all the data from the form is displayed properly when it is clicked. But when i use IE , the button momentarily redirects to the desired page but then to the login…
rojosa
  • 55
  • 2
  • 11
0
votes
1 answer

Is it possible to take screenshot of visible part of page in InternetExplorerDriver?

I need to take screenshot of only visible part of the page in IEDriver to have consistency with other drivers. With other drivers I use "scroll and stitch" method to get full height page image, but in some cases there can be differences - for…
Mateusz Marchel
  • 772
  • 4
  • 14
0
votes
2 answers

How to Select img tags title or alt withing td using Selenium with C#

I am having the below table with five columns. out of five columns column#5 have image icon which changes randomly with back-end data.Image don't have id or class which is static. CSS as below: With below code I able to get column#4 text. var temp…
Ashok
  • 1,868
  • 6
  • 36
  • 70
0
votes
1 answer

Browserstack - NoSuchWindowException in IE 11

I am running my tests on browserstack and for IE 11 I am getting following error when it tries to find element. The same test runs successfully in IE 10. Code:…
0
votes
1 answer

WebElement.Click() not working in Chrome and IE driver

Action: i want to check the checkbox with the following xpath WebElement checkBoxSelection = driver.findElement(By.xpath("//*[@id='tblusref']/tbody/tr[1]/td[2]/input")); checkBoxSelection.click(); my xpath was correct, also verified with chrome…
Prabu
  • 3,550
  • 9
  • 44
  • 85
0
votes
2 answers

C# Protractor AngularJS IEDriverServer Click() Exception "Timed out waiting for page to load"

I'm using Protractor to test our AngularJS application (with both Chrome and IE drivers). The IEDriverServer works OK on most pages, except for this one page where pretty much all of the Click() event will result in an exception of "Timed out…
AngieM
  • 735
  • 6
  • 27
0
votes
3 answers

make Selenium not think something is loading in IE

I have some tests that work fine on chrome and firefox but with IE they seem to get to some page (not always the same one) and then stay there for a long time doing nothing. I am using IE 11(latest version ) on windows 7 and selenium 3.0.1 and ie…
mosaad
  • 2,276
  • 5
  • 27
  • 49
0
votes
1 answer

Accepting alerts triggered by JavaScript

Why isn't it possible (using the InternetExplorerDriver) to accept alerts which have been triggered by explicitly executing JavaScript? driver.ExecuteJavaScript("myfuncTriggeringAnAlert()"); var wait = new WebDriverWait(driver,…
D.R.
  • 20,268
  • 21
  • 102
  • 205
0
votes
1 answer

Selenium 3.0.0 - Wrong item is selected in dropdownbox when using IE 11 browser

When I run the IE driver then it keeps selecting the wrong item in the dropdownbox. It looks like it is only happening at the items that are last in the drop down box. for example I want to select item 9 in the dropdownbox but when I run the code…
Shaun Cromie
  • 339
  • 1
  • 3
  • 16
0
votes
1 answer

Nightwatch.js navigate behaves differently across drivers

I want to use Nightwatch.js v.0.9.8 for E2E testing. My page object: module.exports = { url() { return path.join(this.api.launchUrl, 'Home/Index'); } }; My test: module.exports = { 'Sample 1'(client) { client.page.home() …