SlideShare a Scribd company logo
www.edureka.co/testing-with-selenium-webdriver
Designing automation framework with Selenium
Slide 2
www.edureka.co/testing-with-selenium-webdriver
What are we going to learn today ?
At the end of the session you will be able to understand :
 What is Automation Testing
 Selenium Suite
 Selenium IDE
 Selenium RC
 Selenium WebDriver
 Selenium Grid
 How to design a Test Framework
 Keyword Driven
 Data Driven
 Demo on designing a Selenium Test Framework
Slide 3 www.edureka.co/testing-with-selenium-webdriver
Manual Testing
It’s boring and tedious !!
I have to do the same process
again and again with multiple
sets of data. There is no change
in the application as well
Slide 4 www.edureka.co/testing-with-selenium-webdriver
Auto-generation of
result file
Automated execution
through test scripts
Automation Testing
Taking Screenshot and Auto-
generation of report
Slide 5 www.edureka.co/testing-with-selenium-webdriver
Thanks to Automation Testing
Amazing !!
Now I don’t have to do the same
process again and again with
different sets of data. Everything
is handled by the tool itself. Even
execution flow is too fast.
Automation Testing (Contd.)
Slide 6 www.edureka.co/testing-with-selenium-webdriver
Cost
Reduction
Reusability
Fast
Unattended
Execution
Reliability
Better
Quality
Automation Testing Advantages
Slide 7 www.edureka.co/testing-with-selenium-webdriver
Selenium is a suite of tools to automate web browsers across many platforms
Selenium features
 Support for different programming languages - Java, Python, PHP, Ruby, Perl, JavaScript
 Support for different Operating Systems - Windows, Mac, Linux, iOS, Android
 Support for different browsers – IE, Firefox, Chrome, Safari, Opera
What is Selenium?
Slide 8 www.edureka.co/testing-with-selenium-webdriver
Who uses Selenium?
Slide 9 www.edureka.co/testing-with-selenium-webdriver
Who uses Selenium?
Understanding Selenium Suite
Slide 10 www.edureka.co/testing-with-selenium-webdriver
Selenium Suite
Selenium
Suite
WebDriver
Selenium
RC
Selenium
IDE
Selenium
Grid
Selenium
2
Merged
Slide 11 www.edureka.co/testing-with-selenium-webdriver
Selenium Suite – Selenium IDE
Selenium IDE is a Firefox plugin which records and plays
back user interactions with the browser
Using Selenium IDE you can export the programming code
in different languages like Java, Ruby, Python etc.
It allows to record and play back tests conveniently that
were recorded previously in Selenium IDE
Selenium IDE is not the best solution for production testing
Slide 12 www.edureka.co/testing-with-selenium-webdriver
Selenium Suite – Selenium RC
Selenium Remote Control (RC) is a test tool
that allows you to write web application tests
in any programming language
RC Server receives the Selenium commands
called Selenese from test program using
simple HTTP GET/POST requests
Selenium RC Architecture
Slide 13 www.edureka.co/testing-with-selenium-webdriver
Selenium Suite – Web Driver
Selenium WebDriver is a compact Object Oriented API when compared to Selenium 1.0
It interacts with browser directly while Selenium RC needs help of RC Server to interact with browser which
makes it slow
Selenium WebDriver overcomes the limitations of Selenium 1, like file upload or download, pop-ups and dialogs
barrier
Slide 14 www.edureka.co/testing-with-selenium-webdriver
Selenium Suite – Selenium Grid
 Selenium-Grid runs multiple
tests at the same time
against different machines
running different browsers
and operating systems
Node 1: IE
on Windows
Node 2:
Android
Node 3: Safari
on Mac
Node 4: Firefox
in Ubuntu
Slide 15 www.edureka.co/testing-with-selenium-webdriver
Selenium Suite – Selenium Grid
 Selenium-Grid runs multiple
tests at the same time
against different machines
running different browsers
and operating systems
Node 1: IE
on Windows
Node 2:
Android
Node 3: Safari
on Mac
Node 4: Firefox
in Ubuntu
Designing Selenium Test Framework
Slide 16
www.edureka.co/testing-with-selenium-webdriver
While testing a web application using Selenium its very important to design a flexible test framework that can easily be
modified and reused
Selenium offers flexibility to create different types of test framework that can be reused
Selenium Test Framework
KeywordDriven
Framework runs
on list of
keywords
HybridFramework
Keyword Driven
+
Data Driven
DataDriven
Recursively tests
application using
large data pool
Slide 17
www.edureka.co/testing-with-selenium-webdriver
Types of Test Framework
Slide 18
www.edureka.co/testing-with-selenium-webdriver
In this framework flow of the automation is dependent on keywords
Each keyword in keyword driven framework has a specific meaning like
» Wait: Wait for some specific time
» Verify: Validation of text, object, value, or more
» Store: Store the value from web application
» Scroll Down: Scroll down in application
» Click, Enter Text, Select  They are actions
Keyword Driven Framework
Slide 19
www.edureka.co/testing-with-selenium-webdriver
Keyword Driven Framework (Contd.)
Slide 20
www.edureka.co/testing-with-selenium-webdriver
The above snapshot is of test script for Keyword Driven Framework
Test Case to test framework will not change only data in excel will change with corresponding action
Object Name  Gives a picture what is there in that step
Value  If any value has to be entered then it has to be passed or else blank
Action  What action to be performed
Property Type  which identifier is used to find an object
Property Value  identifier value
Status  If action performed successfully then Pass or else Fail
Keyword Driven Framework (Contd.)
Slide 21 www.edureka.co/testing-with-selenium-webdriver
Selenium Suite – Selenium Grid
 Selenium-Grid runs multiple
tests at the same time
against different machines
running different browsers
and operating systems
Node 1: IE
on Windows
Node 2:
Android
Node 3: Safari
on Mac
Node 4: Firefox
in Ubuntu
Hands-On
Slide 22
www.edureka.co/testing-with-selenium-webdriver
Data driven framework is almost same as keyword driven framework but in this framework we deal with variable data
Executing test case with different sets of data
Data driven framework is very helpful when we want to test the application with different sets of data and doing it
manually is a difficult and error prone task
Data Driven Framework
Slide 23
www.edureka.co/testing-with-selenium-webdriver
Data Driven Framework (Contd.)
Slide 24
www.edureka.co/testing-with-selenium-webdriver
In second column of DataDriven tab values are in curly braces({,})
which tells the tool that this field is dynamic and it’s value has to
be fetched from dataset tab
Data Driven Framework (Contd.)
Total Number of Execution = Number of Rows in dataset
Slide 25 www.edureka.co/testing-with-selenium-webdriver
Selenium Suite – Selenium Grid
 Selenium-Grid runs multiple
tests at the same time
against different machines
running different browsers
and operating systems
Node 1: IE
on Windows
Node 2:
Android
Node 3: Safari
on Mac
Node 4: Firefox
in Ubuntu
Hands-On
Slide 26
www.edureka.co/testing-with-selenium-webdriver
Survey
Your feedback is important to us, be it a compliment, a suggestion or a complaint.
It helps us to make the course better!
Please spare few minutes to take the survey after the webinar
Thank You …
Questions/Queries/Feedback
Recording and presentation will be made available to you within 24 hours

More Related Content

What's hot (20)

PPT
Selenium
Ruturaj Doshi
 
PPTX
Selenium Webdriver
Muhammad Bilal
 
PPTX
Automation Testing by Selenium Web Driver
Cuelogic Technologies Pvt. Ltd.
 
PDF
Selenium - Introduction
Amr E. Mohamed
 
PPTX
Introduction to selenium
Archana Krushnan
 
PPTX
Selenium web driver
Sun Technlogies
 
PDF
Selenium Framework using Java | Selenium Tutorial | Selenium Training Online ...
Edureka!
 
PPT
Selenium
Kalyan ch
 
PPTX
Tech talks (Automation on Selenium Web Driver. How to begin & implement)
Taras Lytvyn
 
PPTX
Python selenium
Ducat
 
PDF
Introduction to Selenium | Selenium Tutorial for Beginners | Selenium Trainin...
Edureka!
 
PDF
Automated Web Testing With Selenium
Deepak Mittal
 
PDF
Designing an effective hybrid apps automation framework
Andrea Tino
 
PPTX
Selenium web driver
Roman Savitskiy
 
PPTX
Selenium ppt
Aneesh Rangarajan
 
PPT
Selenium
Sun Technlogies
 
PPS
Selenium Demo
ankitslide
 
PPT
Selenium Concepts
Swati Bansal
 
PPT
Understanding Selenium/RC, Webdriver Architecture and developing the page obj...
Atirek Gupta
 
PPTX
Automated Testing for Websites With Selenium IDE
Robert Greiner
 
Selenium
Ruturaj Doshi
 
Selenium Webdriver
Muhammad Bilal
 
Automation Testing by Selenium Web Driver
Cuelogic Technologies Pvt. Ltd.
 
Selenium - Introduction
Amr E. Mohamed
 
Introduction to selenium
Archana Krushnan
 
Selenium web driver
Sun Technlogies
 
Selenium Framework using Java | Selenium Tutorial | Selenium Training Online ...
Edureka!
 
Selenium
Kalyan ch
 
Tech talks (Automation on Selenium Web Driver. How to begin & implement)
Taras Lytvyn
 
Python selenium
Ducat
 
Introduction to Selenium | Selenium Tutorial for Beginners | Selenium Trainin...
Edureka!
 
Automated Web Testing With Selenium
Deepak Mittal
 
Designing an effective hybrid apps automation framework
Andrea Tino
 
Selenium web driver
Roman Savitskiy
 
Selenium ppt
Aneesh Rangarajan
 
Selenium
Sun Technlogies
 
Selenium Demo
ankitslide
 
Selenium Concepts
Swati Bansal
 
Understanding Selenium/RC, Webdriver Architecture and developing the page obj...
Atirek Gupta
 
Automated Testing for Websites With Selenium IDE
Robert Greiner
 

Viewers also liked (20)

PPTX
Data driven Automation Framework with Selenium
Edureka!
 
DOC
Hybrid framework for test automation
srivinayak
 
PPT
Hybrid framework
Sudhakar Mangi
 
PPT
Hybrid Automation Framework Development introduction
Ganuka Yashantha
 
PPT
Test Automation Framework Designs
Sauce Labs
 
PPTX
Hybrid automation framework
doai tran
 
PDF
Data Driven Testing
Maveryx
 
PPT
Meet the expert
Karthik Subramanian
 
PDF
Deployment automation framework with selenium
Wenhua Wang
 
PPT
Hybrid Automation Framework Developement
Glasdon Falcao
 
PPT
Data driven automation testing of web applications using selenium
anandseelan
 
PPS
Final Automation Testing
priya_trivedi
 
PPTX
Nasdanika WebTest - Modular functional testing of Web and Mobile Applications
Pavel Vlasov
 
PPTX
selenium-cucumber
Sameer Sawant
 
PPT
Testing The Keyword Method
EmmaDyck
 
PPTX
Selenium and Cucumber Automation Services
LMS Solutions (India) Pvt.Ltd.
 
PDF
Selenium 1july
Edureka!
 
PDF
Liquid Day - Capitalizando la automatizacion sin programar
Software Guru
 
PDF
Keyword driven testing
automated-testing.info
 
Data driven Automation Framework with Selenium
Edureka!
 
Hybrid framework for test automation
srivinayak
 
Hybrid framework
Sudhakar Mangi
 
Hybrid Automation Framework Development introduction
Ganuka Yashantha
 
Test Automation Framework Designs
Sauce Labs
 
Hybrid automation framework
doai tran
 
Data Driven Testing
Maveryx
 
Meet the expert
Karthik Subramanian
 
Deployment automation framework with selenium
Wenhua Wang
 
Hybrid Automation Framework Developement
Glasdon Falcao
 
Data driven automation testing of web applications using selenium
anandseelan
 
Final Automation Testing
priya_trivedi
 
Nasdanika WebTest - Modular functional testing of Web and Mobile Applications
Pavel Vlasov
 
selenium-cucumber
Sameer Sawant
 
Testing The Keyword Method
EmmaDyck
 
Selenium and Cucumber Automation Services
LMS Solutions (India) Pvt.Ltd.
 
Selenium 1july
Edureka!
 
Liquid Day - Capitalizando la automatizacion sin programar
Software Guru
 
Keyword driven testing
automated-testing.info
 
Ad

Similar to Designing keyword and Data Driven Automation framework with Selenium (20)

PDF
Webinar: Selenium WebDriver - Automation Uncomplicated
Edureka!
 
PDF
Automation Using Selenium Webdriver
Edureka!
 
PDF
Selenium Interview Questions and Answers For Freshers And Experienced | Edureka
Edureka!
 
PPTX
Selenium
abiramimaya
 
PPTX
Selenium Tutorial For Beginners | What Is Selenium? | Selenium Automation Tes...
Edureka!
 
PDF
Automate Web Apps With Selenium
Edureka!
 
PPTX
Automated Testing on Web Applications
Samuel Borg
 
PPTX
Selenium IDE Tutorial For Beginners | What Is Selenium IDE? | Selenium Tutori...
Edureka!
 
PPTX
Test automation using selenium
Cynoteck Technology Solutions Private Limited
 
PDF
Why Automation is Required in Software Testing - OSSCamp 2014
OSSCube
 
PPTX
Automated Web Testing With Selenium
Jodie Miners
 
PPT
Selenium Java for Beginners by Sujit Pathak
Software Testing Board
 
PPTX
Selenium Automation
Anuradha Malalasena
 
PPT
Selenium using C# by Yogesh Kumar
Software Testing Board
 
PPTX
Selenium
傑倫 鍾
 
PDF
Selenium Automation Testing - A Complete Guide
Abhay Kumar
 
PDF
Ijetcas14 413
Iasir Journals
 
PPTX
Web UI Tests: Introduce UI tests using Selenium
Peyman Fakharian
 
PPTX
4&5.pptx SOFTWARE TESTING UNIT-4 AND UNIT-5
hemasubbu08
 
PDF
Intelligent Testing Tool: Selenium Web Driver
IRJET Journal
 
Webinar: Selenium WebDriver - Automation Uncomplicated
Edureka!
 
Automation Using Selenium Webdriver
Edureka!
 
Selenium Interview Questions and Answers For Freshers And Experienced | Edureka
Edureka!
 
Selenium
abiramimaya
 
Selenium Tutorial For Beginners | What Is Selenium? | Selenium Automation Tes...
Edureka!
 
Automate Web Apps With Selenium
Edureka!
 
Automated Testing on Web Applications
Samuel Borg
 
Selenium IDE Tutorial For Beginners | What Is Selenium IDE? | Selenium Tutori...
Edureka!
 
Test automation using selenium
Cynoteck Technology Solutions Private Limited
 
Why Automation is Required in Software Testing - OSSCamp 2014
OSSCube
 
Automated Web Testing With Selenium
Jodie Miners
 
Selenium Java for Beginners by Sujit Pathak
Software Testing Board
 
Selenium Automation
Anuradha Malalasena
 
Selenium using C# by Yogesh Kumar
Software Testing Board
 
Selenium
傑倫 鍾
 
Selenium Automation Testing - A Complete Guide
Abhay Kumar
 
Ijetcas14 413
Iasir Journals
 
Web UI Tests: Introduce UI tests using Selenium
Peyman Fakharian
 
4&5.pptx SOFTWARE TESTING UNIT-4 AND UNIT-5
hemasubbu08
 
Intelligent Testing Tool: Selenium Web Driver
IRJET Journal
 
Ad

More from Edureka! (20)

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

Recently uploaded (20)

PDF
Automating the Geo-Referencing of Historic Aerial Photography in Flanders
Safe Software
 
PDF
Quantum AI Discoveries: Fractal Patterns Consciousness and Cyclical Universes
Saikat Basu
 
PDF
Optimizing the trajectory of a wheel loader working in short loading cycles
Reno Filla
 
PDF
''Taming Explosive Growth: Building Resilience in a Hyper-Scaled Financial Pl...
Fwdays
 
PDF
Redefining Work in the Age of AI - What to expect? How to prepare? Why it mat...
Malinda Kapuruge
 
PPTX
Paycifi - Programmable Trust_Breakfast_PPTXT
FinTech Belgium
 
PDF
The Future of Product Management in AI ERA.pdf
Alyona Owens
 
PDF
ArcGIS Utility Network Migration - The Hunter Water Story
Safe Software
 
PDF
Kubernetes - Architecture & Components.pdf
geethak285
 
PDF
“Scaling i.MX Applications Processors’ Native Edge AI with Discrete AI Accele...
Edge AI and Vision Alliance
 
PDF
5 Things to Consider When Deploying AI in Your Enterprise
Safe Software
 
PPTX
MARTSIA: A Tool for Confidential Data Exchange via Public Blockchain - Pitch ...
Michele Kryston
 
PDF
Bridging CAD, IBM TRIRIGA & GIS with FME: The Portland Public Schools Case
Safe Software
 
PDF
Understanding The True Cost of DynamoDB Webinar
ScyllaDB
 
PPSX
Usergroup - OutSystems Architecture.ppsx
Kurt Vandevelde
 
PPTX
Smart Factory Monitoring IIoT in Machine and Production Operations.pptx
Rejig Digital
 
PPTX
Practical Applications of AI in Local Government
OnBoard
 
PDF
Why aren't you using FME Flow's CPU Time?
Safe Software
 
PPTX
2025 HackRedCon Cyber Career Paths.pptx Scott Stanton
Scott Stanton
 
PDF
GDG Cloud Southlake #44: Eyal Bukchin: Tightening the Kubernetes Feedback Loo...
James Anderson
 
Automating the Geo-Referencing of Historic Aerial Photography in Flanders
Safe Software
 
Quantum AI Discoveries: Fractal Patterns Consciousness and Cyclical Universes
Saikat Basu
 
Optimizing the trajectory of a wheel loader working in short loading cycles
Reno Filla
 
''Taming Explosive Growth: Building Resilience in a Hyper-Scaled Financial Pl...
Fwdays
 
Redefining Work in the Age of AI - What to expect? How to prepare? Why it mat...
Malinda Kapuruge
 
Paycifi - Programmable Trust_Breakfast_PPTXT
FinTech Belgium
 
The Future of Product Management in AI ERA.pdf
Alyona Owens
 
ArcGIS Utility Network Migration - The Hunter Water Story
Safe Software
 
Kubernetes - Architecture & Components.pdf
geethak285
 
“Scaling i.MX Applications Processors’ Native Edge AI with Discrete AI Accele...
Edge AI and Vision Alliance
 
5 Things to Consider When Deploying AI in Your Enterprise
Safe Software
 
MARTSIA: A Tool for Confidential Data Exchange via Public Blockchain - Pitch ...
Michele Kryston
 
Bridging CAD, IBM TRIRIGA & GIS with FME: The Portland Public Schools Case
Safe Software
 
Understanding The True Cost of DynamoDB Webinar
ScyllaDB
 
Usergroup - OutSystems Architecture.ppsx
Kurt Vandevelde
 
Smart Factory Monitoring IIoT in Machine and Production Operations.pptx
Rejig Digital
 
Practical Applications of AI in Local Government
OnBoard
 
Why aren't you using FME Flow's CPU Time?
Safe Software
 
2025 HackRedCon Cyber Career Paths.pptx Scott Stanton
Scott Stanton
 
GDG Cloud Southlake #44: Eyal Bukchin: Tightening the Kubernetes Feedback Loo...
James Anderson
 

Designing keyword and Data Driven Automation framework with Selenium