Selenium Forum: Functional And Regression Testing Tool.
Would you like to react to this message? Create an account in a few clicks or log in to continue.
Search
Display results as :
Advanced Search
Latest topics
AEM Training | Free Online DemoWed Apr 21, 2021 5:45 pmazharuddin
c# PageFactory - issue initializing elementsFri Nov 01, 2019 8:40 pmthegoatboy
Selenium making automatic connection to random urlsMon Jul 08, 2019 12:58 pmrepairtechsolutions1
How can we design the custom framework in Selenium RCMon Jun 24, 2019 2:26 pmrandybonnettes
What are the new features in Selenium 3.0Tue Jun 18, 2019 5:37 pmpappyvicky
What are you using Selenium for? Fri Apr 12, 2019 3:52 amzhl
LIMITATIONS OF SELENIUMWed Apr 10, 2019 11:23 amswara
Navigation
 Portal
 Index
 Memberlist
 Profile
 FAQ
 Search

Go down
avatar
Swaram
Posts : 2
Join date : 2016-03-29

Selenium : NoSuchElementException in IE11 JAVA Empty Selenium : NoSuchElementException in IE11 JAVA

Tue Mar 29, 2016 3:49 pm
Hi
I am trying to execute selenium webdriver java code in IE11 , it throws "NoSuchElementException" even after the page is loaded completely.
[list="margin-right: 0px; margin-bottom: 1em; margin-left: 30px; padding-right: 0px; padding-left: 0px; border: 0px; font-size: 15px; color: rgb(34, 36, 38); font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif; line-height: 19.5px; background-color: rgb(255, 255, 255);"]
[*]Web driver : IEDriverServer_Win32_2.53.0

[*]IE version : 11

[*]selenium : selenium-server-standalone-2.53.0.jar

[*]java : jdk1.8

[/list]
The application consists of LoginPage and home page. In Home Page, customers details can be added after clicking "Add customer" button.
Logging into the application is executing successfully in IE11. After log in, NoSuchElementException is thrown for "Add customer" button.
The following is the selenium Java code:
Code:
    driver.findElement(By.id("btnAddCustToQueue")).click();
The following is the jsp code :
Code:
    <DIV class="blueButton floatLeft pie_first-child" id=btnAddCustToQueue onclick=openAddCustomer() _pieId="_158">Add<BR>Customer </DIV>
Below is the exception thrown :
Code:
Exception in thread "main" org.openqa.selenium.NoSuchElementException: Unable to find element with id == btnAddCustToQueue (WARNING: The server did not provide any stacktrace information)
I have used explicit wait for the "Add customer" button to load. In this case, "TimeOutException" as show below:
Code:
    Exception in thread "main" org.openqa.selenium.TimeoutException: Timed out after 30 seconds waiting for element to be clickable: By.id: btnAddCustToQueue
The same code works fine with CHROME browser. I am not sure whether there is problem with latest IE.
Thanks in advance.
Back to top
Permissions in this forum:
You cannot reply to topics in this forum