SlideShare a Scribd company logo
What Is Selenium? | Selenium Basics For Beginners | Introduction To Selenium | Selenium |Simplilearn
What’s in it for you?
Manual testing and its challenges
Advent of Selenium
What is Selenium?
Selenium suite of tools
Advantages of Selenium testing
Limitations of Selenium testing
Selenium jobs and salary
Manual testing and its challenges
What is manual testing?
Manual testing mainly involves physical execution of test cases against
various applications to detect bugs and errors
What is manual testing?
One of the primitive methods of testing
a software
What is manual testing?
One of the primitive methods of testing
a software
Execution of test cases without using
automation tools
What is manual testing?
One of the primitive methods of testing
a software
Execution of test cases without using
automation tools
Does not require the knowledge
of a testing tool
What is manual testing?
One of the primitive methods of testing
a software
Execution of test cases without using
automation tools
Does not require the knowledge
of a testing tool
Can practically test any
application
Challenges of Manual testing
Extremely time
consuming
High risk of error Requires presence of
tester at all times
Manual creation of
logs and
repositories
Limited scope
No support for
performance and batch
testing
Extremely time
consuming
High risk of error Requires presence of
tester 24/7
Manual creation of
logs and
repositories
Limited scope
No support for
performance and batch
testing
Considering all the drawbacks, a desperate
need to automate the testing process was on
demand
Challenges of Manual testing
Advent of Selenium
Advent of Selenium
Jason Huggins, an engineer at ThoughtWorks,
Chicago found the repetitious work of manual testing
strenuous and monotonous
Advent of Selenium
He developed a JavaScript program to automate the
testing of a web application
Advent of Selenium
He developed a JavaScript program to automate the
testing of a web application
The program was called JavaScriptTestRunner
Advent of Selenium
He developed a JavaScript program to automate the
testing of a web application
The program was called JavaScriptTestRunner
Initially, the new invention was deployed by the inmates at
Thoughtworks. However, in 2004 it was renamed as
Selenium and was made open source
Advent of Selenium
Since its inception, Selenium has been a powerful
automation testing tool to test various web applications
across different platforms
Real Life Applications of Machine Learning
What is Selenium?
What is Selenium?
Selenium is an automated testing tool used to test web applications across various
browsers
What is Selenium?
Selenium is an automated testing tool used to test web applications across various
browsers
Open source
What is Selenium?
Selenium is an automated testing tool used to test web applications across various
browsers
Consists of a set of software tools
that facilitate testing
Open source
What is Selenium?
Selenium is an automated testing tool used to test web applications across various
browsers
Consists of a set of software tools
that facilitate testing
Primarily developed in JavaScript
Open source
What is Selenium?
Selenium is an automated testing tool used to test web applications across various
browsers
Consists of a set of software tools
that facilitate testing
Primarily developed in JavaScript
Provides a record/playback tool for authoring
tests without learning a test scripting
language
Open source
What is Selenium?
Selenium is an automated testing tool used to test web applications across various
browsers
Consists of a set of software tools
that facilitate testing
Primarily developed in JavaScript
Provides a record/playback tool for authoring
tests without learning a test scripting
language
Can be coded in many programming
languages
Open source
What is Selenium?
Selenium is an automated testing tool used to test web applications across various
browsers
Open source
Consists of a set of software tools
that facilitate testing
Primarily developed in JavaScript
Provides a record/playback tool for authoring
tests without learning a test scripting
language
Can be coded in many programming
languages
Browser and platform independent
Real Life Applications of Machine Learning
Selenium suite of tools
Selenium suite of tools
Selenium
suite
Selenium IDE
Selenium Remote Control (RC)
Selenium WebDriver
Selenium Grid
Selenium suite of tools
Selenium
suite
• Developed by Shinya Kasatani
• Firefox or Chrome extension that can automate the browser
functionality
• Records user interactions on the browser and exports them as a
reusable script
• Selenese commands can be used to modify the test script
generated after recording
• Selenium IDE deploys on Windows, Linux, and MacOS platforms
Selenium Integrated development environment (IDE)
Selenium suite of tools
Selenium
suite
Selenium Integrated development environment (IDE)
• Selenium IDE ceased to exist in August 2017
• A robust version of IDE was released in 2018 by Applitools
• The new IDE deploys a Selenium Side Runner that allows all IDE
tests to run on any browser, in parallel, and on a grid without
needing to write any code.
• Selenium IDE is integrated with other suite components to provide a
robust interface for application testing
Selenium suite of tools
Selenium
suite
Record and playback
feature
Selenium suite of tools
Selenium
suite
Selenese commands
showing the actions
performed on the browser
Selenium suite of tools
Selenium
suite
Log indicating the
execution of every
command
Selenium suite of tools
Selenium
suite
Saves the executable script
in the side format
Selenium suite of tools
Selenium
suite
Selenium Remote Control (RC)
• Paul Hammant developed Selenium RC
• Selenium RC is a server written in Java
• RC makes provision for writing application tests in various
programming languages like Java, C#, Perl, PHP, Python
etc.
• The RC server accepts commands from the user program
and passes them to the browser as Selenium-Core
JavaScript commands
• The browser behaves accordingly
Selenium suite of tools
Selenium
suite
Selenium Remote Control (RC)
RC Server
Web browser injected
with Selenium core
Selenium test script
Selenium suite of tools
Selenium
suite
Selenium Remote Control (RC)
test.js
RC Server
Web browser injected
with Selenium core
• Consider a JavaScript program test.js used by google.com.
• The program can access pages within google.com like
google.com/mail, google.com/login
Selenium suite of tools
Selenium
suite
Selenium Remote Control (RC)
test.js
RC Server
Web browser injected
with Selenium core
• However, it cannot access elements of other domains like
yahoo.com
• Local copies of Selenium core and the web browser had to be
installed so that they belonged to the same domain
Selenium suite of tools
Selenium
suite
Selenium Remote Control (RC)
test.js
RC Server
Web browser injected
with Selenium core
This is called Same Origin Policy and Selenium RC was introduced
to address this limitation. The server acts as a client configured HTTP
proxy and "tricks" the browser into believing that Selenium Core and
the web application being tested come from the same origin
Selenium
suite
Selenium WebDriver
• Simon Stewart developed WebDriver in 2006
• The first cross-platform testing framework
• Programming interface to create and run test cases
• Makes provision to act on web elements
• Does not require a core engine like RC and interacts natively
with the browser applications
• Supports Java, C#, PHP, Python, Perl, Ruby, etc.
• Supports frameworks like TestNG, JUnit, NUnit
Selenium suite of tools
Selenium suite of tools
Selenium
suite
Selenium WebDriver
Selenium WebDriver does not require an additional RC. It directly interacts
with browser and controls its working
Selenium suite of tools
Selenium
suite
Selenium Grid
• Developed by Patrick Lightbody
• The main objective of Grid is to minimize test execution time
• Grid was designed to distribute commands to different
machines simultaneously
• Selenium Grid allows the parallel execution of tests on
different browsers and different operating systems
• Grid is exceptionally flexible and is integrated with other suite
components for simultaneous execution
Selenium suite of tools
Selenium
suite
Selenium Grid
The Grid consists of a hub connected to several nodes. It
receives the test to be executed along with information about
the operating system and browser to be run on
Selenium suite of tools
Selenium
suite
Selenium Grid
The hub picks a node that conforms to the requirements
(browser and platform) and passes the test to that node
Selenium suite of tools
Selenium
suite
Selenium Grid
The node runs the browser and executes the selenium
commands within it
Selenium 1
Selenium 2
Selenium 3
Selenium 4
Selenium IDE Selenium RC Grid
Selenium IDE *Selenium RC Grid
Selenium IDE
Selenium
WebDriver
Grid
Selenium
WebDriver
Version 4 is just around the corner. However, Alpha has been released!
Selenium versions
Real Life Applications of Machine Learning
Advantages of Selenium testing
Advantages of Selenium testing
Speed and Accuracy
Speed and Accuracy
Open source
Advantages of Selenium testing
Speed and Accuracy
Open source
Supports wide spectrum of
programming languages
Advantages of Selenium testing
Speed and Accuracy
Open source
Supports wide spectrum of
programming languages
Supports various browsers
and operating systems
Advantages of Selenium testing
Speed and Accuracy
Open source
Supports wide spectrum of
programming languages
Supports various browsers
and operating systems
Ease of implementation
Advantages of Selenium testing
Speed and Accuracy
Open source
Supports wide spectrum of
programming languages
Supports various browsers
and operating systems
Ease of implementation
Reusability and Add-ons
Advantages of Selenium testing
Real Life Applications of Machine Learning
Limitations of Selenium testing
Limitations of Selenium testing
No reliable tech
support
Limitations of Selenium testing
No reliable tech
support
Tests web
applications only
Limitations of Selenium testing
No reliable tech
support
Limited support for
image testing
Tests web
applications only
Limitations of Selenium testing
No reliable tech
support
Limited support for
image testing
Tests web
applications only
No built in reporting
facility
Limitations of Selenium testing
No reliable tech
support
Limited support for
image testing
Tests web
applications only
No built in reporting
facility
Limited test
management
Limitations of Selenium testing
No reliable tech
support
Limited support for
image testing
Tests web
applications only
No built in reporting
facility
Limited test
management
May require knowledge of
programming languages
Selenium jobs and salary
Selenium jobs and salary
Job role
• To develop test cases to detect bugs and
errors
• Automation framework design and
implementation according to project
structure
• To improve and automate test practices
• To participate in communicating best
practices
• Define test strategies and test manuals for
tracking and fixing software issues
Selenium jobs and salary
Job role
• To develop test cases to detect bugs and
errors
• Automation framework design and
implementation according to project
structure
• To improve and automate test practices
• To participate in communicating best
practices
• Define test strategies and test manuals for
tracking and fixing software issues
The average salary of an Automation engineer
in India is ₹5,24,000 per annum
277k 1m
524k
$90.4k
$21k $157k
The average salary of an Automation
engineer in the USA is $90,390 per annum
Source- indeed.com
Source- payscale.com
Companies deploying Selenium
Key Takeaways
Key Takeaways
What Is Selenium? | Selenium Basics For Beginners | Introduction To Selenium | Selenium |Simplilearn

More Related Content

What's hot (20)

Automation - web testing with selenium
Automation - web testing with seleniumAutomation - web testing with selenium
Automation - web testing with selenium
Tzirla Rozental
 
Test Automation and Selenium
Test Automation and SeleniumTest Automation and Selenium
Test Automation and Selenium
Karapet Sarkisyan
 
Introduction to selenium
Introduction to seleniumIntroduction to selenium
Introduction to selenium
Archana Krushnan
 
Selenium
SeleniumSelenium
Selenium
mdfkhan625
 
Selenium
SeleniumSelenium
Selenium
Adam Goucher
 
Selenium Concepts
Selenium ConceptsSelenium Concepts
Selenium Concepts
Swati Bansal
 
Web application testing with Selenium
Web application testing with SeleniumWeb application testing with Selenium
Web application testing with Selenium
Kerry Buckley
 
Selenium ppt
Selenium pptSelenium ppt
Selenium ppt
Naga Dinesh
 
Selenium
SeleniumSelenium
Selenium
Kalyan ch
 
Test automation using selenium
Test automation using seleniumTest automation using selenium
Test automation using selenium
Cynoteck Technology Solutions Private Limited
 
Automation Testing using Selenium
Automation Testing using SeleniumAutomation Testing using Selenium
Automation Testing using Selenium
Naresh Chintalcheru
 
Selenium WebDriver training
Selenium WebDriver trainingSelenium WebDriver training
Selenium WebDriver training
Vijay Krishnan Ramaswamy
 
Selenium
SeleniumSelenium
Selenium
Batch2016
 
Selenium
SeleniumSelenium
Selenium
eduquer
 
SELENIUM PPT.pdf
SELENIUM PPT.pdfSELENIUM PPT.pdf
SELENIUM PPT.pdf
RebelSnowball
 
Python selenium
Python seleniumPython selenium
Python selenium
Ducat
 
Web automation using selenium.ppt
Web automation using selenium.pptWeb automation using selenium.ppt
Web automation using selenium.ppt
Ana Sarbescu
 
Selenium ppt
Selenium pptSelenium ppt
Selenium ppt
Pavan Kumar
 
Selenium ppt
Selenium pptSelenium ppt
Selenium ppt
Aneesh Rangarajan
 
Introduction to Selenium | Selenium Tutorial for Beginners | Selenium Trainin...
Introduction to Selenium | Selenium Tutorial for Beginners | Selenium Trainin...Introduction to Selenium | Selenium Tutorial for Beginners | Selenium Trainin...
Introduction to Selenium | Selenium Tutorial for Beginners | Selenium Trainin...
Edureka!
 
Automation - web testing with selenium
Automation - web testing with seleniumAutomation - web testing with selenium
Automation - web testing with selenium
Tzirla Rozental
 
Test Automation and Selenium
Test Automation and SeleniumTest Automation and Selenium
Test Automation and Selenium
Karapet Sarkisyan
 
Web application testing with Selenium
Web application testing with SeleniumWeb application testing with Selenium
Web application testing with Selenium
Kerry Buckley
 
Automation Testing using Selenium
Automation Testing using SeleniumAutomation Testing using Selenium
Automation Testing using Selenium
Naresh Chintalcheru
 
Selenium
SeleniumSelenium
Selenium
eduquer
 
Python selenium
Python seleniumPython selenium
Python selenium
Ducat
 
Web automation using selenium.ppt
Web automation using selenium.pptWeb automation using selenium.ppt
Web automation using selenium.ppt
Ana Sarbescu
 
Introduction to Selenium | Selenium Tutorial for Beginners | Selenium Trainin...
Introduction to Selenium | Selenium Tutorial for Beginners | Selenium Trainin...Introduction to Selenium | Selenium Tutorial for Beginners | Selenium Trainin...
Introduction to Selenium | Selenium Tutorial for Beginners | Selenium Trainin...
Edureka!
 

Similar to What Is Selenium? | Selenium Basics For Beginners | Introduction To Selenium | Selenium |Simplilearn (20)

Test Automation Using Selenium
Test Automation Using SeleniumTest Automation Using Selenium
Test Automation Using Selenium
Nikhil Kapoor
 
Selenium
SeleniumSelenium
Selenium
Jahan Murugassan
 
What is Selenium Introduction to Selenium Testing.pptx
What is Selenium Introduction to Selenium Testing.pptxWhat is Selenium Introduction to Selenium Testing.pptx
What is Selenium Introduction to Selenium Testing.pptx
Syntax Technologies
 
Selenium
SeleniumSelenium
Selenium
Satyam Pandey
 
test-automation-selenium-160216124839.pptx
test-automation-selenium-160216124839.pptxtest-automation-selenium-160216124839.pptx
test-automation-selenium-160216124839.pptx
SyedZaeem9
 
Selenium.pptxgsjdxhasdjhckcjjkdcbdcbvdciosdc
Selenium.pptxgsjdxhasdjhckcjjkdcbdcbvdciosdcSelenium.pptxgsjdxhasdjhckcjjkdcbdcbvdciosdc
Selenium.pptxgsjdxhasdjhckcjjkdcbdcbvdciosdc
sumanthveeramallu9
 
Selenium introduction
Selenium introductionSelenium introduction
Selenium introduction
Pankaj Dubey
 
A Simple Guide to Selenium Software Testing
A Simple Guide to Selenium Software TestingA Simple Guide to Selenium Software Testing
A Simple Guide to Selenium Software Testing
Calidad Infotech
 
Selenium
SeleniumSelenium
Selenium
conect2krish
 
Demystifying Selenium framework
Demystifying Selenium frameworkDemystifying Selenium framework
Demystifying Selenium framework
kunalgate125
 
Basics of Selenium IDE,Core, Remote Control
Basics of Selenium IDE,Core, Remote ControlBasics of Selenium IDE,Core, Remote Control
Basics of Selenium IDE,Core, Remote Control
usha kannappan
 
Selenium
SeleniumSelenium
Selenium
jagdishdevabhaipatel
 
SKILLWISE_SELENIUM
SKILLWISE_SELENIUMSKILLWISE_SELENIUM
SKILLWISE_SELENIUM
Skillwise Consulting
 
Selenium And Its Types
Selenium And Its TypesSelenium And Its Types
Selenium And Its Types
PriyanshuDutta2
 
Selenium Introduction
Selenium IntroductionSelenium Introduction
Selenium Introduction
Mayur Khairnar
 
Selenium
SeleniumSelenium
Selenium
Daksh Sharma
 
Selenium
SeleniumSelenium
Selenium
BugRaptors
 
Selenium- A Software Testing Tool
Selenium- A Software Testing ToolSelenium- A Software Testing Tool
Selenium- A Software Testing Tool
Zeba Tahseen
 
Selenium introduction
Selenium introductionSelenium introduction
Selenium introduction
Deepak Kumar Digar
 
Selenium
SeleniumSelenium
Selenium
Mayuresh Wadekar
 
Test Automation Using Selenium
Test Automation Using SeleniumTest Automation Using Selenium
Test Automation Using Selenium
Nikhil Kapoor
 
What is Selenium Introduction to Selenium Testing.pptx
What is Selenium Introduction to Selenium Testing.pptxWhat is Selenium Introduction to Selenium Testing.pptx
What is Selenium Introduction to Selenium Testing.pptx
Syntax Technologies
 
test-automation-selenium-160216124839.pptx
test-automation-selenium-160216124839.pptxtest-automation-selenium-160216124839.pptx
test-automation-selenium-160216124839.pptx
SyedZaeem9
 
Selenium.pptxgsjdxhasdjhckcjjkdcbdcbvdciosdc
Selenium.pptxgsjdxhasdjhckcjjkdcbdcbvdciosdcSelenium.pptxgsjdxhasdjhckcjjkdcbdcbvdciosdc
Selenium.pptxgsjdxhasdjhckcjjkdcbdcbvdciosdc
sumanthveeramallu9
 
Selenium introduction
Selenium introductionSelenium introduction
Selenium introduction
Pankaj Dubey
 
A Simple Guide to Selenium Software Testing
A Simple Guide to Selenium Software TestingA Simple Guide to Selenium Software Testing
A Simple Guide to Selenium Software Testing
Calidad Infotech
 
Demystifying Selenium framework
Demystifying Selenium frameworkDemystifying Selenium framework
Demystifying Selenium framework
kunalgate125
 
Basics of Selenium IDE,Core, Remote Control
Basics of Selenium IDE,Core, Remote ControlBasics of Selenium IDE,Core, Remote Control
Basics of Selenium IDE,Core, Remote Control
usha kannappan
 
Selenium- A Software Testing Tool
Selenium- A Software Testing ToolSelenium- A Software Testing Tool
Selenium- A Software Testing Tool
Zeba Tahseen
 
Ad

More from Simplilearn (20)

Top 50 Scrum Master Interview Questions | Scrum Master Interview Questions & ...
Top 50 Scrum Master Interview Questions | Scrum Master Interview Questions & ...Top 50 Scrum Master Interview Questions | Scrum Master Interview Questions & ...
Top 50 Scrum Master Interview Questions | Scrum Master Interview Questions & ...
Simplilearn
 
Bagging Vs Boosting In Machine Learning | Ensemble Learning In Machine Learni...
Bagging Vs Boosting In Machine Learning | Ensemble Learning In Machine Learni...Bagging Vs Boosting In Machine Learning | Ensemble Learning In Machine Learni...
Bagging Vs Boosting In Machine Learning | Ensemble Learning In Machine Learni...
Simplilearn
 
Future Of Social Media | Social Media Trends and Strategies 2025 | Instagram ...
Future Of Social Media | Social Media Trends and Strategies 2025 | Instagram ...Future Of Social Media | Social Media Trends and Strategies 2025 | Instagram ...
Future Of Social Media | Social Media Trends and Strategies 2025 | Instagram ...
Simplilearn
 
SQL Query Optimization | SQL Query Optimization Techniques | SQL Basics | SQL...
SQL Query Optimization | SQL Query Optimization Techniques | SQL Basics | SQL...SQL Query Optimization | SQL Query Optimization Techniques | SQL Basics | SQL...
SQL Query Optimization | SQL Query Optimization Techniques | SQL Basics | SQL...
Simplilearn
 
SQL INterview Questions .pTop 45 SQL Interview Questions And Answers In 2025 ...
SQL INterview Questions .pTop 45 SQL Interview Questions And Answers In 2025 ...SQL INterview Questions .pTop 45 SQL Interview Questions And Answers In 2025 ...
SQL INterview Questions .pTop 45 SQL Interview Questions And Answers In 2025 ...
Simplilearn
 
How To Start Influencer Marketing Business | Influencer Marketing For Beginne...
How To Start Influencer Marketing Business | Influencer Marketing For Beginne...How To Start Influencer Marketing Business | Influencer Marketing For Beginne...
How To Start Influencer Marketing Business | Influencer Marketing For Beginne...
Simplilearn
 
Cyber Security Roadmap 2025 | How To Become Cyber Security Engineer In 2025 |...
Cyber Security Roadmap 2025 | How To Become Cyber Security Engineer In 2025 |...Cyber Security Roadmap 2025 | How To Become Cyber Security Engineer In 2025 |...
Cyber Security Roadmap 2025 | How To Become Cyber Security Engineer In 2025 |...
Simplilearn
 
How To Become An AI And ML Engineer In 2025 | AI Engineer Roadmap | AI ML Car...
How To Become An AI And ML Engineer In 2025 | AI Engineer Roadmap | AI ML Car...How To Become An AI And ML Engineer In 2025 | AI Engineer Roadmap | AI ML Car...
How To Become An AI And ML Engineer In 2025 | AI Engineer Roadmap | AI ML Car...
Simplilearn
 
What Is GitHub Copilot? | How To Use GitHub Copilot? | How does GitHub Copilo...
What Is GitHub Copilot? | How To Use GitHub Copilot? | How does GitHub Copilo...What Is GitHub Copilot? | How To Use GitHub Copilot? | How does GitHub Copilo...
What Is GitHub Copilot? | How To Use GitHub Copilot? | How does GitHub Copilo...
Simplilearn
 
Top 10 Data Analyst Certification For 2025 | Best Data Analyst Certification ...
Top 10 Data Analyst Certification For 2025 | Best Data Analyst Certification ...Top 10 Data Analyst Certification For 2025 | Best Data Analyst Certification ...
Top 10 Data Analyst Certification For 2025 | Best Data Analyst Certification ...
Simplilearn
 
Complete Data Science Roadmap For 2025 | Data Scientist Roadmap For Beginners...
Complete Data Science Roadmap For 2025 | Data Scientist Roadmap For Beginners...Complete Data Science Roadmap For 2025 | Data Scientist Roadmap For Beginners...
Complete Data Science Roadmap For 2025 | Data Scientist Roadmap For Beginners...
Simplilearn
 
Top 7 High Paying AI Certifications Courses For 2025 | Best AI Certifications...
Top 7 High Paying AI Certifications Courses For 2025 | Best AI Certifications...Top 7 High Paying AI Certifications Courses For 2025 | Best AI Certifications...
Top 7 High Paying AI Certifications Courses For 2025 | Best AI Certifications...
Simplilearn
 
Data Cleaning In Data Mining | Step by Step Data Cleaning Process | Data Clea...
Data Cleaning In Data Mining | Step by Step Data Cleaning Process | Data Clea...Data Cleaning In Data Mining | Step by Step Data Cleaning Process | Data Clea...
Data Cleaning In Data Mining | Step by Step Data Cleaning Process | Data Clea...
Simplilearn
 
Top 10 Data Analyst Projects For 2025 | Data Analyst Projects | Data Analysis...
Top 10 Data Analyst Projects For 2025 | Data Analyst Projects | Data Analysis...Top 10 Data Analyst Projects For 2025 | Data Analyst Projects | Data Analysis...
Top 10 Data Analyst Projects For 2025 | Data Analyst Projects | Data Analysis...
Simplilearn
 
AI Engineer Roadmap 2025 | AI Engineer Roadmap For Beginners | AI Engineer Ca...
AI Engineer Roadmap 2025 | AI Engineer Roadmap For Beginners | AI Engineer Ca...AI Engineer Roadmap 2025 | AI Engineer Roadmap For Beginners | AI Engineer Ca...
AI Engineer Roadmap 2025 | AI Engineer Roadmap For Beginners | AI Engineer Ca...
Simplilearn
 
Machine Learning Roadmap 2025 | Machine Learning Engineer Roadmap For Beginne...
Machine Learning Roadmap 2025 | Machine Learning Engineer Roadmap For Beginne...Machine Learning Roadmap 2025 | Machine Learning Engineer Roadmap For Beginne...
Machine Learning Roadmap 2025 | Machine Learning Engineer Roadmap For Beginne...
Simplilearn
 
Kotter's 8-Step Change Model Explained | Kotter's Change Management Model | S...
Kotter's 8-Step Change Model Explained | Kotter's Change Management Model | S...Kotter's 8-Step Change Model Explained | Kotter's Change Management Model | S...
Kotter's 8-Step Change Model Explained | Kotter's Change Management Model | S...
Simplilearn
 
Gen AI Engineer Roadmap For 2025 | How To Become Gen AI Engineer In 2025 | Si...
Gen AI Engineer Roadmap For 2025 | How To Become Gen AI Engineer In 2025 | Si...Gen AI Engineer Roadmap For 2025 | How To Become Gen AI Engineer In 2025 | Si...
Gen AI Engineer Roadmap For 2025 | How To Become Gen AI Engineer In 2025 | Si...
Simplilearn
 
Top 10 Data Analyst Certification For 2025 | Best Data Analyst Certification ...
Top 10 Data Analyst Certification For 2025 | Best Data Analyst Certification ...Top 10 Data Analyst Certification For 2025 | Best Data Analyst Certification ...
Top 10 Data Analyst Certification For 2025 | Best Data Analyst Certification ...
Simplilearn
 
Complete Data Science Roadmap For 2025 | Data Scientist Roadmap For Beginners...
Complete Data Science Roadmap For 2025 | Data Scientist Roadmap For Beginners...Complete Data Science Roadmap For 2025 | Data Scientist Roadmap For Beginners...
Complete Data Science Roadmap For 2025 | Data Scientist Roadmap For Beginners...
Simplilearn
 
Top 50 Scrum Master Interview Questions | Scrum Master Interview Questions & ...
Top 50 Scrum Master Interview Questions | Scrum Master Interview Questions & ...Top 50 Scrum Master Interview Questions | Scrum Master Interview Questions & ...
Top 50 Scrum Master Interview Questions | Scrum Master Interview Questions & ...
Simplilearn
 
Bagging Vs Boosting In Machine Learning | Ensemble Learning In Machine Learni...
Bagging Vs Boosting In Machine Learning | Ensemble Learning In Machine Learni...Bagging Vs Boosting In Machine Learning | Ensemble Learning In Machine Learni...
Bagging Vs Boosting In Machine Learning | Ensemble Learning In Machine Learni...
Simplilearn
 
Future Of Social Media | Social Media Trends and Strategies 2025 | Instagram ...
Future Of Social Media | Social Media Trends and Strategies 2025 | Instagram ...Future Of Social Media | Social Media Trends and Strategies 2025 | Instagram ...
Future Of Social Media | Social Media Trends and Strategies 2025 | Instagram ...
Simplilearn
 
SQL Query Optimization | SQL Query Optimization Techniques | SQL Basics | SQL...
SQL Query Optimization | SQL Query Optimization Techniques | SQL Basics | SQL...SQL Query Optimization | SQL Query Optimization Techniques | SQL Basics | SQL...
SQL Query Optimization | SQL Query Optimization Techniques | SQL Basics | SQL...
Simplilearn
 
SQL INterview Questions .pTop 45 SQL Interview Questions And Answers In 2025 ...
SQL INterview Questions .pTop 45 SQL Interview Questions And Answers In 2025 ...SQL INterview Questions .pTop 45 SQL Interview Questions And Answers In 2025 ...
SQL INterview Questions .pTop 45 SQL Interview Questions And Answers In 2025 ...
Simplilearn
 
How To Start Influencer Marketing Business | Influencer Marketing For Beginne...
How To Start Influencer Marketing Business | Influencer Marketing For Beginne...How To Start Influencer Marketing Business | Influencer Marketing For Beginne...
How To Start Influencer Marketing Business | Influencer Marketing For Beginne...
Simplilearn
 
Cyber Security Roadmap 2025 | How To Become Cyber Security Engineer In 2025 |...
Cyber Security Roadmap 2025 | How To Become Cyber Security Engineer In 2025 |...Cyber Security Roadmap 2025 | How To Become Cyber Security Engineer In 2025 |...
Cyber Security Roadmap 2025 | How To Become Cyber Security Engineer In 2025 |...
Simplilearn
 
How To Become An AI And ML Engineer In 2025 | AI Engineer Roadmap | AI ML Car...
How To Become An AI And ML Engineer In 2025 | AI Engineer Roadmap | AI ML Car...How To Become An AI And ML Engineer In 2025 | AI Engineer Roadmap | AI ML Car...
How To Become An AI And ML Engineer In 2025 | AI Engineer Roadmap | AI ML Car...
Simplilearn
 
What Is GitHub Copilot? | How To Use GitHub Copilot? | How does GitHub Copilo...
What Is GitHub Copilot? | How To Use GitHub Copilot? | How does GitHub Copilo...What Is GitHub Copilot? | How To Use GitHub Copilot? | How does GitHub Copilo...
What Is GitHub Copilot? | How To Use GitHub Copilot? | How does GitHub Copilo...
Simplilearn
 
Top 10 Data Analyst Certification For 2025 | Best Data Analyst Certification ...
Top 10 Data Analyst Certification For 2025 | Best Data Analyst Certification ...Top 10 Data Analyst Certification For 2025 | Best Data Analyst Certification ...
Top 10 Data Analyst Certification For 2025 | Best Data Analyst Certification ...
Simplilearn
 
Complete Data Science Roadmap For 2025 | Data Scientist Roadmap For Beginners...
Complete Data Science Roadmap For 2025 | Data Scientist Roadmap For Beginners...Complete Data Science Roadmap For 2025 | Data Scientist Roadmap For Beginners...
Complete Data Science Roadmap For 2025 | Data Scientist Roadmap For Beginners...
Simplilearn
 
Top 7 High Paying AI Certifications Courses For 2025 | Best AI Certifications...
Top 7 High Paying AI Certifications Courses For 2025 | Best AI Certifications...Top 7 High Paying AI Certifications Courses For 2025 | Best AI Certifications...
Top 7 High Paying AI Certifications Courses For 2025 | Best AI Certifications...
Simplilearn
 
Data Cleaning In Data Mining | Step by Step Data Cleaning Process | Data Clea...
Data Cleaning In Data Mining | Step by Step Data Cleaning Process | Data Clea...Data Cleaning In Data Mining | Step by Step Data Cleaning Process | Data Clea...
Data Cleaning In Data Mining | Step by Step Data Cleaning Process | Data Clea...
Simplilearn
 
Top 10 Data Analyst Projects For 2025 | Data Analyst Projects | Data Analysis...
Top 10 Data Analyst Projects For 2025 | Data Analyst Projects | Data Analysis...Top 10 Data Analyst Projects For 2025 | Data Analyst Projects | Data Analysis...
Top 10 Data Analyst Projects For 2025 | Data Analyst Projects | Data Analysis...
Simplilearn
 
AI Engineer Roadmap 2025 | AI Engineer Roadmap For Beginners | AI Engineer Ca...
AI Engineer Roadmap 2025 | AI Engineer Roadmap For Beginners | AI Engineer Ca...AI Engineer Roadmap 2025 | AI Engineer Roadmap For Beginners | AI Engineer Ca...
AI Engineer Roadmap 2025 | AI Engineer Roadmap For Beginners | AI Engineer Ca...
Simplilearn
 
Machine Learning Roadmap 2025 | Machine Learning Engineer Roadmap For Beginne...
Machine Learning Roadmap 2025 | Machine Learning Engineer Roadmap For Beginne...Machine Learning Roadmap 2025 | Machine Learning Engineer Roadmap For Beginne...
Machine Learning Roadmap 2025 | Machine Learning Engineer Roadmap For Beginne...
Simplilearn
 
Kotter's 8-Step Change Model Explained | Kotter's Change Management Model | S...
Kotter's 8-Step Change Model Explained | Kotter's Change Management Model | S...Kotter's 8-Step Change Model Explained | Kotter's Change Management Model | S...
Kotter's 8-Step Change Model Explained | Kotter's Change Management Model | S...
Simplilearn
 
Gen AI Engineer Roadmap For 2025 | How To Become Gen AI Engineer In 2025 | Si...
Gen AI Engineer Roadmap For 2025 | How To Become Gen AI Engineer In 2025 | Si...Gen AI Engineer Roadmap For 2025 | How To Become Gen AI Engineer In 2025 | Si...
Gen AI Engineer Roadmap For 2025 | How To Become Gen AI Engineer In 2025 | Si...
Simplilearn
 
Top 10 Data Analyst Certification For 2025 | Best Data Analyst Certification ...
Top 10 Data Analyst Certification For 2025 | Best Data Analyst Certification ...Top 10 Data Analyst Certification For 2025 | Best Data Analyst Certification ...
Top 10 Data Analyst Certification For 2025 | Best Data Analyst Certification ...
Simplilearn
 
Complete Data Science Roadmap For 2025 | Data Scientist Roadmap For Beginners...
Complete Data Science Roadmap For 2025 | Data Scientist Roadmap For Beginners...Complete Data Science Roadmap For 2025 | Data Scientist Roadmap For Beginners...
Complete Data Science Roadmap For 2025 | Data Scientist Roadmap For Beginners...
Simplilearn
 
Ad

Recently uploaded (20)

IDF 30min presentation - December 2, 2024.pptx
IDF 30min presentation - December 2, 2024.pptxIDF 30min presentation - December 2, 2024.pptx
IDF 30min presentation - December 2, 2024.pptx
ArneeAgligar
 
THERAPEUTIC COMMUNICATION included definition, characteristics, nurse patient...
THERAPEUTIC COMMUNICATION included definition, characteristics, nurse patient...THERAPEUTIC COMMUNICATION included definition, characteristics, nurse patient...
THERAPEUTIC COMMUNICATION included definition, characteristics, nurse patient...
parmarjuli1412
 
Nice Dream.pdf /
Nice Dream.pdf                              /Nice Dream.pdf                              /
Nice Dream.pdf /
ErinUsher3
 
Parenting Teens: Supporting Trust, resilience and independence
Parenting Teens: Supporting Trust, resilience and independenceParenting Teens: Supporting Trust, resilience and independence
Parenting Teens: Supporting Trust, resilience and independence
Pooky Knightsmith
 
LDMMIA Free Reiki Yoga S9 Grad Level Intuition II
LDMMIA Free Reiki Yoga S9 Grad Level Intuition IILDMMIA Free Reiki Yoga S9 Grad Level Intuition II
LDMMIA Free Reiki Yoga S9 Grad Level Intuition II
LDM & Mia eStudios
 
Pests of Rice: Damage, Identification, Life history, and Management.pptx
Pests of Rice: Damage, Identification, Life history, and Management.pptxPests of Rice: Damage, Identification, Life history, and Management.pptx
Pests of Rice: Damage, Identification, Life history, and Management.pptx
Arshad Shaikh
 
Analysis of Quantitative Data Parametric and non-parametric tests.pptx
Analysis of Quantitative Data Parametric and non-parametric tests.pptxAnalysis of Quantitative Data Parametric and non-parametric tests.pptx
Analysis of Quantitative Data Parametric and non-parametric tests.pptx
Shrutidhara2
 
How to Manage Upselling of Subscriptions in Odoo 18
How to Manage Upselling of Subscriptions in Odoo 18How to Manage Upselling of Subscriptions in Odoo 18
How to Manage Upselling of Subscriptions in Odoo 18
Celine George
 
june 10 2025 ppt for madden on art science is over.pptx
june 10 2025 ppt for madden on art science is over.pptxjune 10 2025 ppt for madden on art science is over.pptx
june 10 2025 ppt for madden on art science is over.pptx
roger malina
 
Optimization technique in pharmaceutical product development.pptx
Optimization technique in pharmaceutical product development.pptxOptimization technique in pharmaceutical product development.pptx
Optimization technique in pharmaceutical product development.pptx
UrmiPrajapati3
 
Black and White Illustrative Group Project Presentation.pdf (1).pdf
Black and White Illustrative Group Project Presentation.pdf (1).pdfBlack and White Illustrative Group Project Presentation.pdf (1).pdf
Black and White Illustrative Group Project Presentation.pdf (1).pdf
AnnasofiaUrsini
 
Rai dyansty Chach or Brahamn dynasty, History of Dahir History of Sindh NEP.pptx
Rai dyansty Chach or Brahamn dynasty, History of Dahir History of Sindh NEP.pptxRai dyansty Chach or Brahamn dynasty, History of Dahir History of Sindh NEP.pptx
Rai dyansty Chach or Brahamn dynasty, History of Dahir History of Sindh NEP.pptx
Dr. Ravi Shankar Arya Mahila P. G. College, Banaras Hindu University, Varanasi, India.
 
Adam Grant: Transforming Work Culture Through Organizational Psychology
Adam Grant: Transforming Work Culture Through Organizational PsychologyAdam Grant: Transforming Work Culture Through Organizational Psychology
Adam Grant: Transforming Work Culture Through Organizational Psychology
Prachi Shah
 
LDMMIA Reiki Yoga Next Week Grad Updates
LDMMIA Reiki Yoga Next Week Grad UpdatesLDMMIA Reiki Yoga Next Week Grad Updates
LDMMIA Reiki Yoga Next Week Grad Updates
LDM & Mia eStudios
 
Strengthened Senior High School - Landas Tool Kit.pptx
Strengthened Senior High School - Landas Tool Kit.pptxStrengthened Senior High School - Landas Tool Kit.pptx
Strengthened Senior High School - Landas Tool Kit.pptx
SteffMusniQuiballo
 
Pfeiffer "Secrets to Changing Behavior in Scholarly Communication: A 2025 NIS...
Pfeiffer "Secrets to Changing Behavior in Scholarly Communication: A 2025 NIS...Pfeiffer "Secrets to Changing Behavior in Scholarly Communication: A 2025 NIS...
Pfeiffer "Secrets to Changing Behavior in Scholarly Communication: A 2025 NIS...
National Information Standards Organization (NISO)
 
Final Sketch Designs for poster production.pptx
Final Sketch Designs for poster production.pptxFinal Sketch Designs for poster production.pptx
Final Sketch Designs for poster production.pptx
bobby205207
 
Trends Spotting Strategic foresight for tomorrow’s education systems - Debora...
Trends Spotting Strategic foresight for tomorrow’s education systems - Debora...Trends Spotting Strategic foresight for tomorrow’s education systems - Debora...
Trends Spotting Strategic foresight for tomorrow’s education systems - Debora...
EduSkills OECD
 
How to Manage Maintenance Request in Odoo 18
How to Manage Maintenance Request in Odoo 18How to Manage Maintenance Request in Odoo 18
How to Manage Maintenance Request in Odoo 18
Celine George
 
Different pricelists for different shops in odoo Point of Sale in Odoo 17
Different pricelists for different shops in odoo Point of Sale in Odoo 17Different pricelists for different shops in odoo Point of Sale in Odoo 17
Different pricelists for different shops in odoo Point of Sale in Odoo 17
Celine George
 
IDF 30min presentation - December 2, 2024.pptx
IDF 30min presentation - December 2, 2024.pptxIDF 30min presentation - December 2, 2024.pptx
IDF 30min presentation - December 2, 2024.pptx
ArneeAgligar
 
THERAPEUTIC COMMUNICATION included definition, characteristics, nurse patient...
THERAPEUTIC COMMUNICATION included definition, characteristics, nurse patient...THERAPEUTIC COMMUNICATION included definition, characteristics, nurse patient...
THERAPEUTIC COMMUNICATION included definition, characteristics, nurse patient...
parmarjuli1412
 
Nice Dream.pdf /
Nice Dream.pdf                              /Nice Dream.pdf                              /
Nice Dream.pdf /
ErinUsher3
 
Parenting Teens: Supporting Trust, resilience and independence
Parenting Teens: Supporting Trust, resilience and independenceParenting Teens: Supporting Trust, resilience and independence
Parenting Teens: Supporting Trust, resilience and independence
Pooky Knightsmith
 
LDMMIA Free Reiki Yoga S9 Grad Level Intuition II
LDMMIA Free Reiki Yoga S9 Grad Level Intuition IILDMMIA Free Reiki Yoga S9 Grad Level Intuition II
LDMMIA Free Reiki Yoga S9 Grad Level Intuition II
LDM & Mia eStudios
 
Pests of Rice: Damage, Identification, Life history, and Management.pptx
Pests of Rice: Damage, Identification, Life history, and Management.pptxPests of Rice: Damage, Identification, Life history, and Management.pptx
Pests of Rice: Damage, Identification, Life history, and Management.pptx
Arshad Shaikh
 
Analysis of Quantitative Data Parametric and non-parametric tests.pptx
Analysis of Quantitative Data Parametric and non-parametric tests.pptxAnalysis of Quantitative Data Parametric and non-parametric tests.pptx
Analysis of Quantitative Data Parametric and non-parametric tests.pptx
Shrutidhara2
 
How to Manage Upselling of Subscriptions in Odoo 18
How to Manage Upselling of Subscriptions in Odoo 18How to Manage Upselling of Subscriptions in Odoo 18
How to Manage Upselling of Subscriptions in Odoo 18
Celine George
 
june 10 2025 ppt for madden on art science is over.pptx
june 10 2025 ppt for madden on art science is over.pptxjune 10 2025 ppt for madden on art science is over.pptx
june 10 2025 ppt for madden on art science is over.pptx
roger malina
 
Optimization technique in pharmaceutical product development.pptx
Optimization technique in pharmaceutical product development.pptxOptimization technique in pharmaceutical product development.pptx
Optimization technique in pharmaceutical product development.pptx
UrmiPrajapati3
 
Black and White Illustrative Group Project Presentation.pdf (1).pdf
Black and White Illustrative Group Project Presentation.pdf (1).pdfBlack and White Illustrative Group Project Presentation.pdf (1).pdf
Black and White Illustrative Group Project Presentation.pdf (1).pdf
AnnasofiaUrsini
 
Adam Grant: Transforming Work Culture Through Organizational Psychology
Adam Grant: Transforming Work Culture Through Organizational PsychologyAdam Grant: Transforming Work Culture Through Organizational Psychology
Adam Grant: Transforming Work Culture Through Organizational Psychology
Prachi Shah
 
LDMMIA Reiki Yoga Next Week Grad Updates
LDMMIA Reiki Yoga Next Week Grad UpdatesLDMMIA Reiki Yoga Next Week Grad Updates
LDMMIA Reiki Yoga Next Week Grad Updates
LDM & Mia eStudios
 
Strengthened Senior High School - Landas Tool Kit.pptx
Strengthened Senior High School - Landas Tool Kit.pptxStrengthened Senior High School - Landas Tool Kit.pptx
Strengthened Senior High School - Landas Tool Kit.pptx
SteffMusniQuiballo
 
Final Sketch Designs for poster production.pptx
Final Sketch Designs for poster production.pptxFinal Sketch Designs for poster production.pptx
Final Sketch Designs for poster production.pptx
bobby205207
 
Trends Spotting Strategic foresight for tomorrow’s education systems - Debora...
Trends Spotting Strategic foresight for tomorrow’s education systems - Debora...Trends Spotting Strategic foresight for tomorrow’s education systems - Debora...
Trends Spotting Strategic foresight for tomorrow’s education systems - Debora...
EduSkills OECD
 
How to Manage Maintenance Request in Odoo 18
How to Manage Maintenance Request in Odoo 18How to Manage Maintenance Request in Odoo 18
How to Manage Maintenance Request in Odoo 18
Celine George
 
Different pricelists for different shops in odoo Point of Sale in Odoo 17
Different pricelists for different shops in odoo Point of Sale in Odoo 17Different pricelists for different shops in odoo Point of Sale in Odoo 17
Different pricelists for different shops in odoo Point of Sale in Odoo 17
Celine George
 

What Is Selenium? | Selenium Basics For Beginners | Introduction To Selenium | Selenium |Simplilearn

  • 2. What’s in it for you? Manual testing and its challenges Advent of Selenium What is Selenium? Selenium suite of tools Advantages of Selenium testing Limitations of Selenium testing Selenium jobs and salary
  • 3. Manual testing and its challenges
  • 4. What is manual testing? Manual testing mainly involves physical execution of test cases against various applications to detect bugs and errors
  • 5. What is manual testing? One of the primitive methods of testing a software
  • 6. What is manual testing? One of the primitive methods of testing a software Execution of test cases without using automation tools
  • 7. What is manual testing? One of the primitive methods of testing a software Execution of test cases without using automation tools Does not require the knowledge of a testing tool
  • 8. What is manual testing? One of the primitive methods of testing a software Execution of test cases without using automation tools Does not require the knowledge of a testing tool Can practically test any application
  • 9. Challenges of Manual testing Extremely time consuming High risk of error Requires presence of tester at all times Manual creation of logs and repositories Limited scope No support for performance and batch testing
  • 10. Extremely time consuming High risk of error Requires presence of tester 24/7 Manual creation of logs and repositories Limited scope No support for performance and batch testing Considering all the drawbacks, a desperate need to automate the testing process was on demand Challenges of Manual testing
  • 12. Advent of Selenium Jason Huggins, an engineer at ThoughtWorks, Chicago found the repetitious work of manual testing strenuous and monotonous
  • 13. Advent of Selenium He developed a JavaScript program to automate the testing of a web application
  • 14. Advent of Selenium He developed a JavaScript program to automate the testing of a web application The program was called JavaScriptTestRunner
  • 15. Advent of Selenium He developed a JavaScript program to automate the testing of a web application The program was called JavaScriptTestRunner Initially, the new invention was deployed by the inmates at Thoughtworks. However, in 2004 it was renamed as Selenium and was made open source
  • 16. Advent of Selenium Since its inception, Selenium has been a powerful automation testing tool to test various web applications across different platforms
  • 17. Real Life Applications of Machine Learning What is Selenium?
  • 18. What is Selenium? Selenium is an automated testing tool used to test web applications across various browsers
  • 19. What is Selenium? Selenium is an automated testing tool used to test web applications across various browsers Open source
  • 20. What is Selenium? Selenium is an automated testing tool used to test web applications across various browsers Consists of a set of software tools that facilitate testing Open source
  • 21. What is Selenium? Selenium is an automated testing tool used to test web applications across various browsers Consists of a set of software tools that facilitate testing Primarily developed in JavaScript Open source
  • 22. What is Selenium? Selenium is an automated testing tool used to test web applications across various browsers Consists of a set of software tools that facilitate testing Primarily developed in JavaScript Provides a record/playback tool for authoring tests without learning a test scripting language Open source
  • 23. What is Selenium? Selenium is an automated testing tool used to test web applications across various browsers Consists of a set of software tools that facilitate testing Primarily developed in JavaScript Provides a record/playback tool for authoring tests without learning a test scripting language Can be coded in many programming languages Open source
  • 24. What is Selenium? Selenium is an automated testing tool used to test web applications across various browsers Open source Consists of a set of software tools that facilitate testing Primarily developed in JavaScript Provides a record/playback tool for authoring tests without learning a test scripting language Can be coded in many programming languages Browser and platform independent
  • 25. Real Life Applications of Machine Learning Selenium suite of tools
  • 26. Selenium suite of tools Selenium suite Selenium IDE Selenium Remote Control (RC) Selenium WebDriver Selenium Grid
  • 27. Selenium suite of tools Selenium suite • Developed by Shinya Kasatani • Firefox or Chrome extension that can automate the browser functionality • Records user interactions on the browser and exports them as a reusable script • Selenese commands can be used to modify the test script generated after recording • Selenium IDE deploys on Windows, Linux, and MacOS platforms Selenium Integrated development environment (IDE)
  • 28. Selenium suite of tools Selenium suite Selenium Integrated development environment (IDE) • Selenium IDE ceased to exist in August 2017 • A robust version of IDE was released in 2018 by Applitools • The new IDE deploys a Selenium Side Runner that allows all IDE tests to run on any browser, in parallel, and on a grid without needing to write any code. • Selenium IDE is integrated with other suite components to provide a robust interface for application testing
  • 29. Selenium suite of tools Selenium suite Record and playback feature
  • 30. Selenium suite of tools Selenium suite Selenese commands showing the actions performed on the browser
  • 31. Selenium suite of tools Selenium suite Log indicating the execution of every command
  • 32. Selenium suite of tools Selenium suite Saves the executable script in the side format
  • 33. Selenium suite of tools Selenium suite Selenium Remote Control (RC) • Paul Hammant developed Selenium RC • Selenium RC is a server written in Java • RC makes provision for writing application tests in various programming languages like Java, C#, Perl, PHP, Python etc. • The RC server accepts commands from the user program and passes them to the browser as Selenium-Core JavaScript commands • The browser behaves accordingly
  • 34. Selenium suite of tools Selenium suite Selenium Remote Control (RC) RC Server Web browser injected with Selenium core Selenium test script
  • 35. Selenium suite of tools Selenium suite Selenium Remote Control (RC) test.js RC Server Web browser injected with Selenium core • Consider a JavaScript program test.js used by google.com. • The program can access pages within google.com like google.com/mail, google.com/login
  • 36. Selenium suite of tools Selenium suite Selenium Remote Control (RC) test.js RC Server Web browser injected with Selenium core • However, it cannot access elements of other domains like yahoo.com • Local copies of Selenium core and the web browser had to be installed so that they belonged to the same domain
  • 37. Selenium suite of tools Selenium suite Selenium Remote Control (RC) test.js RC Server Web browser injected with Selenium core This is called Same Origin Policy and Selenium RC was introduced to address this limitation. The server acts as a client configured HTTP proxy and "tricks" the browser into believing that Selenium Core and the web application being tested come from the same origin
  • 38. Selenium suite Selenium WebDriver • Simon Stewart developed WebDriver in 2006 • The first cross-platform testing framework • Programming interface to create and run test cases • Makes provision to act on web elements • Does not require a core engine like RC and interacts natively with the browser applications • Supports Java, C#, PHP, Python, Perl, Ruby, etc. • Supports frameworks like TestNG, JUnit, NUnit Selenium suite of tools
  • 39. Selenium suite of tools Selenium suite Selenium WebDriver Selenium WebDriver does not require an additional RC. It directly interacts with browser and controls its working
  • 40. Selenium suite of tools Selenium suite Selenium Grid • Developed by Patrick Lightbody • The main objective of Grid is to minimize test execution time • Grid was designed to distribute commands to different machines simultaneously • Selenium Grid allows the parallel execution of tests on different browsers and different operating systems • Grid is exceptionally flexible and is integrated with other suite components for simultaneous execution
  • 41. Selenium suite of tools Selenium suite Selenium Grid The Grid consists of a hub connected to several nodes. It receives the test to be executed along with information about the operating system and browser to be run on
  • 42. Selenium suite of tools Selenium suite Selenium Grid The hub picks a node that conforms to the requirements (browser and platform) and passes the test to that node
  • 43. Selenium suite of tools Selenium suite Selenium Grid The node runs the browser and executes the selenium commands within it
  • 44. Selenium 1 Selenium 2 Selenium 3 Selenium 4 Selenium IDE Selenium RC Grid Selenium IDE *Selenium RC Grid Selenium IDE Selenium WebDriver Grid Selenium WebDriver Version 4 is just around the corner. However, Alpha has been released! Selenium versions
  • 45. Real Life Applications of Machine Learning Advantages of Selenium testing
  • 46. Advantages of Selenium testing Speed and Accuracy
  • 47. Speed and Accuracy Open source Advantages of Selenium testing
  • 48. Speed and Accuracy Open source Supports wide spectrum of programming languages Advantages of Selenium testing
  • 49. Speed and Accuracy Open source Supports wide spectrum of programming languages Supports various browsers and operating systems Advantages of Selenium testing
  • 50. Speed and Accuracy Open source Supports wide spectrum of programming languages Supports various browsers and operating systems Ease of implementation Advantages of Selenium testing
  • 51. Speed and Accuracy Open source Supports wide spectrum of programming languages Supports various browsers and operating systems Ease of implementation Reusability and Add-ons Advantages of Selenium testing
  • 52. Real Life Applications of Machine Learning Limitations of Selenium testing
  • 53. Limitations of Selenium testing No reliable tech support
  • 54. Limitations of Selenium testing No reliable tech support Tests web applications only
  • 55. Limitations of Selenium testing No reliable tech support Limited support for image testing Tests web applications only
  • 56. Limitations of Selenium testing No reliable tech support Limited support for image testing Tests web applications only No built in reporting facility
  • 57. Limitations of Selenium testing No reliable tech support Limited support for image testing Tests web applications only No built in reporting facility Limited test management
  • 58. Limitations of Selenium testing No reliable tech support Limited support for image testing Tests web applications only No built in reporting facility Limited test management May require knowledge of programming languages
  • 60. Selenium jobs and salary Job role • To develop test cases to detect bugs and errors • Automation framework design and implementation according to project structure • To improve and automate test practices • To participate in communicating best practices • Define test strategies and test manuals for tracking and fixing software issues
  • 61. Selenium jobs and salary Job role • To develop test cases to detect bugs and errors • Automation framework design and implementation according to project structure • To improve and automate test practices • To participate in communicating best practices • Define test strategies and test manuals for tracking and fixing software issues The average salary of an Automation engineer in India is ₹5,24,000 per annum 277k 1m 524k $90.4k $21k $157k The average salary of an Automation engineer in the USA is $90,390 per annum Source- indeed.com Source- payscale.com

Editor's Notes