SlideShare a Scribd company logo
Handle Exceptions in Selenium Webdriver | Edureka
WHAT IS EXCEPTION HANDLING?
EXCEPTION HIERARCHY
CHECKED VS UNCHECKED EXCEPTION
BASIC EXCEPTION EXAMPLE
EXCEPTION METHODS
DEMO
TYPES OF EXCEPTIONS
www.edureka.co/testing-with-selenium-webdriver
www.edureka.co/testing-with-selenium-webdriver
www.edureka.co/testing-with-selenium-webdriver
Exception is a event that disrupts the normal flow of execution of the program.
www.edureka.co/testing-with-selenium-webdriver
EXCEPTION
HIERARCHY
Object
Throwable
Errors
Virtual Machine Error
Assertion Error
Checked Exceptions
Unchecked Exceptions
Exceptions Errors
Checked Exceptions
Unchecked Exceptions
Exceptions
Virtual Machine Error
Errors
Checked Exceptions
Unchecked Exceptions
Exceptions
www.edureka.co/testing-with-selenium-webdriver
www.edureka.co/testing-with-selenium-webdriver
CHECKED VS
UNCHECKED
EXCEPTION
Checked
Exceptions
Unchecked
▪ An exception that is checked by the compiler
at compilation-time.
▪ These exceptions cannot simply be ignored,
the programmer should handle these
exceptions.
▪ An exception that occurs at the time of
execution.
▪ These are also called as Runtime Exceptions.
▪ Runtime exceptions are ignored at the time of
compilation.
www.edureka.co/testing-with-selenium-webdriver
www.edureka.co/testing-with-selenium-webdriver
.
class Exception{
public static void main(String args[]){
try{
//code that may raise exception
}
catch(Exception e){
// rest of the program
}
}
}
www.edureka.co/testing-with-selenium-webdriver
www.edureka.co/testing-with-selenium-webdriver
TYPES OF
EXCEPTION
WebDriverException1
NoSuchElementException2
NoSuchFrameException3
NoAlertFoundException4
TimeoutException5
www.edureka.co/testing-with-selenium-webdriver
www.edureka.co/testing-with-selenium-webdriver
METHODS OF
EXCEPTION
try1
catch2
throw3
throws4
finally5
www.edureka.co/testing-with-selenium-webdriver
try1
catch2
throw3
throws4
finally5
Used to specify a block where we should place exception
code.
try{
//code that throws exception
}catch(Exception_class_Name){}
www.edureka.co/testing-with-selenium-webdriver
try1
catch2
throw3
throws4
finally5
Used to handle the exception.
try {// Protected code}
catch(ExceptionName e1)
// Catch block}
www.edureka.co/testing-with-selenium-webdriver
try1
catch2
throw3
throws4
finally5
Used to throw an exception.
catch (Exception e) {
System.out.println("Register element
is not found.");
throw(e);
}
www.edureka.co/testing-with-selenium-webdriver
try1
catch2
throw3
throws4
finally5
Used to declare exception.
public static void main(String[] args)
throws InterruptedException{ }
www.edureka.co/testing-with-selenium-webdriver
try1
catch2
throw3
throws4
finally5
Used to execute the important code of the program.
try
{// Protected code}
catch(Exception e1)
{// Catch block}
finally{
// This block is always executed}
www.edureka.co/testing-with-selenium-webdriver
www.edureka.co/testing-with-selenium-webdriver

More Related Content

PDF
Page Object Model and Implementation in Selenium
PDF
Functional Tests Automation with Robot Framework
PDF
Cucumber ppt
PDF
What is WebElement in Selenium | Web Elements & Element Locators | Edureka
PDF
PUC SE Day 2019 - SpringBoot
PPT
Automation testing
PPT
Test automation principles, terminologies and implementations
PDF
Introduction to jmeter
Page Object Model and Implementation in Selenium
Functional Tests Automation with Robot Framework
Cucumber ppt
What is WebElement in Selenium | Web Elements & Element Locators | Edureka
PUC SE Day 2019 - SpringBoot
Automation testing
Test automation principles, terminologies and implementations
Introduction to jmeter

What's hot (20)

PPTX
Robot framework Gowthami Goli
PDF
Selenium IDE LOCATORS
PPTX
Java 8 Lambda and Streams
PPT
Automated Web Testing Using Selenium
PDF
An Introduction to Test Driven Development
PPTX
Test Automation Framework with BDD and Cucumber
PDF
Karate - powerful and simple framework for REST API automation testing
PDF
Performance Testing Using JMeter | Edureka
PDF
Unit and integration Testing
PPT
Qtp Basics
PPTX
Apresentacao Testes de Unidade
PPTX
Cucumber presenation
PPTX
Hybrid automation framework
PPTX
Load testing jmeter
PPTX
Jasmine framework
PDF
What is Integration Testing? | Edureka
PPTX
TestNG Framework
PPTX
TypeScript Overview
PPT
Spring Boot in Action
PPTX
Karate for Complex Web-Service API Testing by Peter Thomas
Robot framework Gowthami Goli
Selenium IDE LOCATORS
Java 8 Lambda and Streams
Automated Web Testing Using Selenium
An Introduction to Test Driven Development
Test Automation Framework with BDD and Cucumber
Karate - powerful and simple framework for REST API automation testing
Performance Testing Using JMeter | Edureka
Unit and integration Testing
Qtp Basics
Apresentacao Testes de Unidade
Cucumber presenation
Hybrid automation framework
Load testing jmeter
Jasmine framework
What is Integration Testing? | Edureka
TestNG Framework
TypeScript Overview
Spring Boot in Action
Karate for Complex Web-Service API Testing by Peter Thomas
Ad

Similar to Handle Exceptions in Selenium Webdriver | Edureka (20)

PPTX
#ATATalk - Episode 1 : Session on Selenium Exceptions by Pallavi Sharma
PDF
Exception handling
PPSX
Exception Handling
PPTX
Exceptions
PPTX
Exceptions
PPTX
Exception Handling s the process of responding to unwanted or unexpected even...
PPTX
EXCEPTION HANDLING in prograaming
PPTX
Exception and its handling mechanism.pptx
PPT
06 exceptions
PPTX
Maheen oop
PPT
Java: Exception
PPTX
Java SE 11 Exception Handling
PPTX
Exception handling in java
PPTX
Chapter 5
PDF
Java - Exception Handling Concepts
PPTX
Exceptionhandling
PDF
Exception handling
PPT
Exception handling
PDF
Design byexceptions
PDF
Introduction to Exception
#ATATalk - Episode 1 : Session on Selenium Exceptions by Pallavi Sharma
Exception handling
Exception Handling
Exceptions
Exceptions
Exception Handling s the process of responding to unwanted or unexpected even...
EXCEPTION HANDLING in prograaming
Exception and its handling mechanism.pptx
06 exceptions
Maheen oop
Java: Exception
Java SE 11 Exception Handling
Exception handling in java
Chapter 5
Java - Exception Handling Concepts
Exceptionhandling
Exception handling
Exception handling
Design byexceptions
Introduction to Exception
Ad

More from Edureka! (20)

PDF
What to learn during the 21 days Lockdown | Edureka
PDF
Top 10 Dying Programming Languages in 2020 | Edureka
PDF
Top 5 Trending Business Intelligence Tools | Edureka
PDF
Tableau Tutorial for Data Science | Edureka
PDF
Python Programming Tutorial | Edureka
PDF
Top 5 PMP Certifications | Edureka
PDF
Top Maven Interview Questions in 2020 | Edureka
PDF
Linux Mint Tutorial | Edureka
PDF
How to Deploy Java Web App in AWS| Edureka
PDF
Importance of Digital Marketing | Edureka
PDF
RPA in 2020 | Edureka
PDF
Email Notifications in Jenkins | Edureka
PDF
EA Algorithm in Machine Learning | Edureka
PDF
Cognitive AI Tutorial | Edureka
PDF
AWS Cloud Practitioner Tutorial | Edureka
PDF
Blue Prism Top Interview Questions | Edureka
PDF
Big Data on AWS Tutorial | Edureka
PDF
A star algorithm | A* Algorithm in Artificial Intelligence | Edureka
PDF
Kubernetes Installation on Ubuntu | Edureka
PDF
Introduction to DevOps | Edureka
What to learn during the 21 days Lockdown | Edureka
Top 10 Dying Programming Languages in 2020 | Edureka
Top 5 Trending Business Intelligence Tools | Edureka
Tableau Tutorial for Data Science | Edureka
Python Programming Tutorial | Edureka
Top 5 PMP Certifications | Edureka
Top Maven Interview Questions in 2020 | Edureka
Linux Mint Tutorial | Edureka
How to Deploy Java Web App in AWS| Edureka
Importance of Digital Marketing | Edureka
RPA in 2020 | Edureka
Email Notifications in Jenkins | Edureka
EA Algorithm in Machine Learning | Edureka
Cognitive AI Tutorial | Edureka
AWS Cloud Practitioner Tutorial | Edureka
Blue Prism Top Interview Questions | Edureka
Big Data on AWS Tutorial | Edureka
A star algorithm | A* Algorithm in Artificial Intelligence | Edureka
Kubernetes Installation on Ubuntu | Edureka
Introduction to DevOps | Edureka

Recently uploaded (20)

PPT
Teaching material agriculture food technology
PDF
Building Integrated photovoltaic BIPV_UPV.pdf
PDF
NewMind AI Weekly Chronicles - August'25 Week I
PDF
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
PDF
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
PDF
cuic standard and advanced reporting.pdf
PDF
Approach and Philosophy of On baking technology
PDF
Encapsulation_ Review paper, used for researhc scholars
PDF
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
PDF
Empathic Computing: Creating Shared Understanding
PDF
Reach Out and Touch Someone: Haptics and Empathic Computing
PDF
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
PDF
KodekX | Application Modernization Development
PDF
Chapter 3 Spatial Domain Image Processing.pdf
PDF
Advanced methodologies resolving dimensionality complications for autism neur...
PDF
Diabetes mellitus diagnosis method based random forest with bat algorithm
PPT
“AI and Expert System Decision Support & Business Intelligence Systems”
PPTX
Spectroscopy.pptx food analysis technology
PDF
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
PDF
Encapsulation theory and applications.pdf
Teaching material agriculture food technology
Building Integrated photovoltaic BIPV_UPV.pdf
NewMind AI Weekly Chronicles - August'25 Week I
Optimiser vos workloads AI/ML sur Amazon EC2 et AWS Graviton
7 ChatGPT Prompts to Help You Define Your Ideal Customer Profile.pdf
cuic standard and advanced reporting.pdf
Approach and Philosophy of On baking technology
Encapsulation_ Review paper, used for researhc scholars
Peak of Data & AI Encore- AI for Metadata and Smarter Workflows
Empathic Computing: Creating Shared Understanding
Reach Out and Touch Someone: Haptics and Empathic Computing
Blue Purple Modern Animated Computer Science Presentation.pdf.pdf
KodekX | Application Modernization Development
Chapter 3 Spatial Domain Image Processing.pdf
Advanced methodologies resolving dimensionality complications for autism neur...
Diabetes mellitus diagnosis method based random forest with bat algorithm
“AI and Expert System Decision Support & Business Intelligence Systems”
Spectroscopy.pptx food analysis technology
How UI/UX Design Impacts User Retention in Mobile Apps.pdf
Encapsulation theory and applications.pdf

Handle Exceptions in Selenium Webdriver | Edureka