Different types of Selenium WebDriver Common Exceptions
Selenium Testing | Selenium Webdriver Exceptions | Selenium UI Testing

Get Started

with $0/mo FREE Test Plan Builder or a 14-day FREE TRIAL of Test Manager

What is an Exception?

  1. Checked Exception: Checked exceptions are handled during compile time, and if they are not caught and handled during compile time, they cause a compilation problem.
  2. Unchecked Exception: A compiler does not need handling of unchecked exceptions. During compilation, the compiler ignores it.
  3. Error: When a scenario becomes fatal and the software is unable to recover

Example for Exception:

Example of an Exception in Java:

Statement1;
Statement2;
Statement3;  //Exception occurred at this 3rd line
Statement4;  //This line won't be executed
Statement5;  //This line won't be executed

Example for Handling an Exception in Java:

Different types of Exceptions in Selenium WebDriver

  1. NoSuchElementException
  2. ElementNotVisibleException
  3. NoSuchFrameException
  4. NoAlertPresentException
  5. NoSuchWindowException
  6. SessionNotFoundException
  7. StaleElementReferenceException
  8. InvalidSelectorException
  9. ElementNotSelectableException
  10. TimeOutException

In summary

Newest Articles

Software Testisng Functional and Non-Functional Testing Case Examples
10 Real Case Examples for Software Test Plans
Software testing is a critical phase in the software development lifecycle, ensuring that the final product meets the desired quality standards. To… Continue reading 10 Real Case Examples for Software Test Plans
Practical Guide to Defect management in Software Testing
Introduction In the dynamic realm of software development, defect management plays a pivotal role in ensuring the delivery of high-quality… Continue reading Practical Guide to Defect management in Software Testing
Best Unit Testing Frameworks in Selenium for Test Automation
Unit testing ensures that every feature or component of a program functions as intended. Unit testing is carried out by developers… Continue reading Best Unit Testing Frameworks in Selenium for Test Automation

© 2025 Bitmodern Inc. All Rights Reserved.