How can I resolve NoSuchElementException error thrown by findElement function in Selenium Webdriver

0 votes

How can I resolve NoSuchElementException error thrown by findElement() function in Selenium Webdriver?

Jul 4, 2019 in Selenium by Dinesh
3,420 views

1 answer to this question.

0 votes

Hello Dinesh, this error usually occurs when browser isn't able to find the element on the webpage due to incomplete loading of the webpage. To resolve the issue, you can use Thread.sleep(time_in_miliseconds) to sleep/pause the execution, so that the page can be loaded completely before findElement method starts finding the required element. Take a look at the following code to understand better:

import org.openqa.selenium.By;

import org.openqa.selenium.WebDriver;

import org.openqa.selenium.chrome.ChromeDriver;

public class TestClass {

    public static void main(String s[]) throws InterruptedException  {

        System.setProperty("webdriver.chrome.driver", "D:/chromedriver.exe");

        WebDriver driver = new ChromeDriver();         

        driver.get("http://google.com");         

        driver.findElement(By.name("q")).sendKeys("Selenium");         

        Thread.sleep(5000);

        driver.findElement(By.xpath("//div[@class='sbsb_a']//ul/li[4]")).click();         

    }

}
answered Jul 4, 2019 by Anvi
• 14,150 points
Thanks a lot dude, it worked perfectly.

Related Questions In Selenium

0 votes
1 answer

How can I add Cucumber Jar files in Eclipse to use with Selenium Webdriver?

Hey Eshan, follow these steps to add ...READ MORE

answered May 23, 2019 in Selenium by Abha
• 28,140 points
5,569 views
0 votes
1 answer

How can I clear the text in a text box using Selenium WebDriver?

Hello Akriti, you can clear the text ...READ MORE

answered May 29, 2019 in Selenium by Anvi
• 14,150 points
6,157 views
0 votes
1 answer
0 votes
1 answer
0 votes
2 answers

Finding WebDriver element with Class Name in java

The better way to handle this element ...READ MORE

answered Apr 10, 2018 in Selenium by nsv999
• 5,500 points
12,617 views
0 votes
2 answers

Problem while using InternetExplorerDriver in Selenium WebDriver

enable trusted connection  in internet explorer by ...READ MORE

answered Aug 31, 2020 in Selenium by Sri
• 3,190 points
8,572 views
0 votes
1 answer

Geo-location microphone camera pop up

To Allow or Block the notification, access using Selenium and you have to ...READ MORE

answered May 11, 2018 in Selenium by Samarpit
• 5,910 points
6,629 views
0 votes
2 answers

How to use such xpath to find web elements

xpath are two types. 1) Absolute XPath:    /html/b ...READ MORE

answered Sep 3, 2020 in Selenium by Sri
• 3,190 points
7,519 views
0 votes
1 answer

How can I create a POM test case in Selenium Webdriver?

Hey Akshay, follow these steps to create ...READ MORE

answered May 13, 2019 in Selenium by Anvi
• 14,150 points
1,203 views
0 votes
1 answer

How can I refresh a browser window in different ways using Selenium Webdriver?

Hello Piyush, you can refresh a browser ...READ MORE

answered May 29, 2019 in Selenium by Anvi
• 14,150 points
2,894 views
webinar REGISTER FOR FREE WEBINAR X
REGISTER NOW
webinar_success Thank you for registering Join Edureka Meetup community for 100+ Free Webinars each month JOIN MEETUP GROUP