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
Ad

More Related Content

What's hot (20)

Selenium WebDriver training
Selenium WebDriver trainingSelenium WebDriver training
Selenium WebDriver training
Vijay Krishnan Ramaswamy
 
Selenium WebDriver Tutorial | Selenium WebDriver Tutorial For Beginner | Sele...
Selenium WebDriver Tutorial | Selenium WebDriver Tutorial For Beginner | Sele...Selenium WebDriver Tutorial | Selenium WebDriver Tutorial For Beginner | Sele...
Selenium WebDriver Tutorial | Selenium WebDriver Tutorial For Beginner | Sele...
Simplilearn
 
Selenium Concepts
Selenium ConceptsSelenium Concepts
Selenium Concepts
Swati Bansal
 
Selenium Presentation at Engineering Colleges
Selenium Presentation at Engineering CollegesSelenium Presentation at Engineering Colleges
Selenium Presentation at Engineering Colleges
Vijay Rangaiah
 
Automation Testing using Selenium
Automation Testing using SeleniumAutomation Testing using Selenium
Automation Testing using Selenium
Naresh Chintalcheru
 
Web application testing with Selenium
Web application testing with SeleniumWeb application testing with Selenium
Web application testing with Selenium
Kerry Buckley
 
Automation - web testing with selenium
Automation - web testing with seleniumAutomation - web testing with selenium
Automation - web testing with selenium
Tzirla Rozental
 
Test automation using selenium
Test automation using seleniumTest automation using selenium
Test automation using selenium
shreyas JC
 
Selenium
SeleniumSelenium
Selenium
Kalyan ch
 
Selenium test automation
Selenium test automationSelenium test automation
Selenium test automation
Srikanth Vuriti
 
Selenium Maven With Eclipse | Edureka
Selenium Maven With Eclipse | EdurekaSelenium Maven With Eclipse | Edureka
Selenium Maven With Eclipse | Edureka
Edureka!
 
Automation Testing by Selenium Web Driver
Automation Testing by Selenium Web DriverAutomation Testing by Selenium Web Driver
Automation Testing by Selenium Web Driver
Cuelogic Technologies Pvt. Ltd.
 
Automated Web Testing Using Selenium
Automated Web Testing Using SeleniumAutomated Web Testing Using Selenium
Automated Web Testing Using Selenium
Weifeng Zhang
 
Selenium
SeleniumSelenium
Selenium
Batch2016
 
Selenium IDE Tutorial For Beginners | Selenium IDE Tutorial | What Is Seleniu...
Selenium IDE Tutorial For Beginners | Selenium IDE Tutorial | What Is Seleniu...Selenium IDE Tutorial For Beginners | Selenium IDE Tutorial | What Is Seleniu...
Selenium IDE Tutorial For Beginners | Selenium IDE Tutorial | What Is Seleniu...
Simplilearn
 
Selenium ppt
Selenium pptSelenium ppt
Selenium ppt
Naga Dinesh
 
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!
 
Selenium
SeleniumSelenium
Selenium
Adam Goucher
 
QSpiders - Automation using Selenium
QSpiders - Automation using SeleniumQSpiders - Automation using Selenium
QSpiders - Automation using Selenium
Qspiders - Software Testing Training Institute
 
Automation Testing using Selenium Webdriver
Automation Testing using Selenium WebdriverAutomation Testing using Selenium Webdriver
Automation Testing using Selenium Webdriver
Pankaj Biswas
 
Selenium WebDriver Tutorial | Selenium WebDriver Tutorial For Beginner | Sele...
Selenium WebDriver Tutorial | Selenium WebDriver Tutorial For Beginner | Sele...Selenium WebDriver Tutorial | Selenium WebDriver Tutorial For Beginner | Sele...
Selenium WebDriver Tutorial | Selenium WebDriver Tutorial For Beginner | Sele...
Simplilearn
 
Selenium Presentation at Engineering Colleges
Selenium Presentation at Engineering CollegesSelenium Presentation at Engineering Colleges
Selenium Presentation at Engineering Colleges
Vijay Rangaiah
 
Automation Testing using Selenium
Automation Testing using SeleniumAutomation Testing using Selenium
Automation Testing using Selenium
Naresh Chintalcheru
 
Web application testing with Selenium
Web application testing with SeleniumWeb application testing with Selenium
Web application testing with Selenium
Kerry Buckley
 
Automation - web testing with selenium
Automation - web testing with seleniumAutomation - web testing with selenium
Automation - web testing with selenium
Tzirla Rozental
 
Test automation using selenium
Test automation using seleniumTest automation using selenium
Test automation using selenium
shreyas JC
 
Selenium test automation
Selenium test automationSelenium test automation
Selenium test automation
Srikanth Vuriti
 
Selenium Maven With Eclipse | Edureka
Selenium Maven With Eclipse | EdurekaSelenium Maven With Eclipse | Edureka
Selenium Maven With Eclipse | Edureka
Edureka!
 
Automated Web Testing Using Selenium
Automated Web Testing Using SeleniumAutomated Web Testing Using Selenium
Automated Web Testing Using Selenium
Weifeng Zhang
 
Selenium IDE Tutorial For Beginners | Selenium IDE Tutorial | What Is Seleniu...
Selenium IDE Tutorial For Beginners | Selenium IDE Tutorial | What Is Seleniu...Selenium IDE Tutorial For Beginners | Selenium IDE Tutorial | What Is Seleniu...
Selenium IDE Tutorial For Beginners | Selenium IDE Tutorial | What Is Seleniu...
Simplilearn
 
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 Testing using Selenium Webdriver
Automation Testing using Selenium WebdriverAutomation Testing using Selenium Webdriver
Automation Testing using Selenium Webdriver
Pankaj Biswas
 

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

Selenium
SeleniumSelenium
Selenium
Satyam Pandey
 
Test Automation and Selenium
Test Automation and SeleniumTest Automation and Selenium
Test Automation and Selenium
Karapet Sarkisyan
 
Selenium Automation Testing - A Complete Guide
Selenium Automation Testing - A Complete GuideSelenium Automation Testing - A Complete Guide
Selenium Automation Testing - A Complete Guide
Abhay Kumar
 
test-automation-selenium-160216124839.pptx
test-automation-selenium-160216124839.pptxtest-automation-selenium-160216124839.pptx
test-automation-selenium-160216124839.pptx
SyedZaeem9
 
Selenium
SeleniumSelenium
Selenium
Jahan Murugassan
 
Selenium.pptxgsjdxhasdjhckcjjkdcbdcbvdciosdc
Selenium.pptxgsjdxhasdjhckcjjkdcbdcbvdciosdcSelenium.pptxgsjdxhasdjhckcjjkdcbdcbvdciosdc
Selenium.pptxgsjdxhasdjhckcjjkdcbdcbvdciosdc
sumanthveeramallu9
 
Selenium Automation Testing - A Complete Guide.pdf
Selenium Automation Testing - A Complete Guide.pdfSelenium Automation Testing - A Complete Guide.pdf
Selenium Automation Testing - A Complete Guide.pdf
kalichargn70th171
 
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 Automation Testing - A Complete Guide.pdf
Selenium Automation Testing - A Complete Guide.pdfSelenium Automation Testing - A Complete Guide.pdf
Selenium Automation Testing - A Complete Guide.pdf
flufftailshop
 
Python selenium
Python seleniumPython selenium
Python selenium
Ducat
 
selenium
selenium selenium
selenium
ayeshsiddika
 
white and grey modern website application education project group school pres...
white and grey modern website application education project group school pres...white and grey modern website application education project group school pres...
white and grey modern website application education project group school pres...
DreamTheory
 
Test Automation Using Selenium
Test Automation Using SeleniumTest Automation Using Selenium
Test Automation Using Selenium
Nikhil Kapoor
 
Selenium Primer
Selenium PrimerSelenium Primer
Selenium Primer
gueste1e4db
 
11-01-2023.pptx
11-01-2023.pptx11-01-2023.pptx
11-01-2023.pptx
AshokKumar424042
 
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
 
What is selenium
What is seleniumWhat is selenium
What is selenium
sachin patil
 
Introduction to selenium
Introduction to seleniumIntroduction to selenium
Introduction to selenium
Khaja Moiz Uddin
 
Selenium PPT 2.pptx
Selenium PPT 2.pptxSelenium PPT 2.pptx
Selenium PPT 2.pptx
ssusere4c6aa
 
Introduction to selenium
Introduction to seleniumIntroduction to selenium
Introduction to selenium
Khaja Moiz Uddin
 
Test Automation and Selenium
Test Automation and SeleniumTest Automation and Selenium
Test Automation and Selenium
Karapet Sarkisyan
 
Selenium Automation Testing - A Complete Guide
Selenium Automation Testing - A Complete GuideSelenium Automation Testing - A Complete Guide
Selenium Automation Testing - A Complete Guide
Abhay Kumar
 
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 Automation Testing - A Complete Guide.pdf
Selenium Automation Testing - A Complete Guide.pdfSelenium Automation Testing - A Complete Guide.pdf
Selenium Automation Testing - A Complete Guide.pdf
kalichargn70th171
 
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 Automation Testing - A Complete Guide.pdf
Selenium Automation Testing - A Complete Guide.pdfSelenium Automation Testing - A Complete Guide.pdf
Selenium Automation Testing - A Complete Guide.pdf
flufftailshop
 
Python selenium
Python seleniumPython selenium
Python selenium
Ducat
 
white and grey modern website application education project group school pres...
white and grey modern website application education project group school pres...white and grey modern website application education project group school pres...
white and grey modern website application education project group school pres...
DreamTheory
 
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
 
Selenium PPT 2.pptx
Selenium PPT 2.pptxSelenium PPT 2.pptx
Selenium PPT 2.pptx
ssusere4c6aa
 
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)

Fundamentals of PR: Wk 4 - Strategic Communications
Fundamentals of PR: Wk 4 - Strategic CommunicationsFundamentals of PR: Wk 4 - Strategic Communications
Fundamentals of PR: Wk 4 - Strategic Communications
Jordan Williams
 
New Microsoft PowerPoint Presentation.pptx
New Microsoft PowerPoint Presentation.pptxNew Microsoft PowerPoint Presentation.pptx
New Microsoft PowerPoint Presentation.pptx
milanasargsyan5
 
Quality Contril Analysis of Containers.pdf
Quality Contril Analysis of Containers.pdfQuality Contril Analysis of Containers.pdf
Quality Contril Analysis of Containers.pdf
Dr. Bindiya Chauhan
 
Open Access: Revamping Library Learning Resources.
Open Access: Revamping Library Learning Resources.Open Access: Revamping Library Learning Resources.
Open Access: Revamping Library Learning Resources.
Rishi Bankim Chandra Evening College, Naihati, North 24 Parganas, West Bengal, India
 
Marie Boran Special Collections Librarian Hardiman Library, University of Gal...
Marie Boran Special Collections Librarian Hardiman Library, University of Gal...Marie Boran Special Collections Librarian Hardiman Library, University of Gal...
Marie Boran Special Collections Librarian Hardiman Library, University of Gal...
Library Association of Ireland
 
Metamorphosis: Life's Transformative Journey
Metamorphosis: Life's Transformative JourneyMetamorphosis: Life's Transformative Journey
Metamorphosis: Life's Transformative Journey
Arshad Shaikh
 
Vitamins Chapter-7, Biochemistry and clinical pathology, D.Pharm 2nd year
Vitamins Chapter-7, Biochemistry and clinical pathology, D.Pharm 2nd yearVitamins Chapter-7, Biochemistry and clinical pathology, D.Pharm 2nd year
Vitamins Chapter-7, Biochemistry and clinical pathology, D.Pharm 2nd year
ARUN KUMAR
 
Ultimate VMware 2V0-11.25 Exam Dumps for Exam Success
Ultimate VMware 2V0-11.25 Exam Dumps for Exam SuccessUltimate VMware 2V0-11.25 Exam Dumps for Exam Success
Ultimate VMware 2V0-11.25 Exam Dumps for Exam Success
Mark Soia
 
World war-1(Causes & impacts at a glance) PPT by Simanchala Sarab(BABed,sem-4...
World war-1(Causes & impacts at a glance) PPT by Simanchala Sarab(BABed,sem-4...World war-1(Causes & impacts at a glance) PPT by Simanchala Sarab(BABed,sem-4...
World war-1(Causes & impacts at a glance) PPT by Simanchala Sarab(BABed,sem-4...
larencebapu132
 
UNIT 3 NATIONAL HEALTH PROGRAMMEE. SOCIAL AND PREVENTIVE PHARMACY
UNIT 3 NATIONAL HEALTH PROGRAMMEE. SOCIAL AND PREVENTIVE PHARMACYUNIT 3 NATIONAL HEALTH PROGRAMMEE. SOCIAL AND PREVENTIVE PHARMACY
UNIT 3 NATIONAL HEALTH PROGRAMMEE. SOCIAL AND PREVENTIVE PHARMACY
DR.PRISCILLA MARY J
 
GDGLSPGCOER - Git and GitHub Workshop.pptx
GDGLSPGCOER - Git and GitHub Workshop.pptxGDGLSPGCOER - Git and GitHub Workshop.pptx
GDGLSPGCOER - Git and GitHub Workshop.pptx
azeenhodekar
 
Anti-Depressants pharmacology 1slide.pptx
Anti-Depressants pharmacology 1slide.pptxAnti-Depressants pharmacology 1slide.pptx
Anti-Depressants pharmacology 1slide.pptx
Mayuri Chavan
 
Geography Sem II Unit 1C Correlation of Geography with other school subjects
Geography Sem II Unit 1C Correlation of Geography with other school subjectsGeography Sem II Unit 1C Correlation of Geography with other school subjects
Geography Sem II Unit 1C Correlation of Geography with other school subjects
ProfDrShaikhImran
 
YSPH VMOC Special Report - Measles Outbreak Southwest US 4-30-2025.pptx
YSPH VMOC Special Report - Measles Outbreak  Southwest US 4-30-2025.pptxYSPH VMOC Special Report - Measles Outbreak  Southwest US 4-30-2025.pptx
YSPH VMOC Special Report - Measles Outbreak Southwest US 4-30-2025.pptx
Yale School of Public Health - The Virtual Medical Operations Center (VMOC)
 
How to Subscribe Newsletter From Odoo 18 Website
How to Subscribe Newsletter From Odoo 18 WebsiteHow to Subscribe Newsletter From Odoo 18 Website
How to Subscribe Newsletter From Odoo 18 Website
Celine George
 
Michelle Rumley & Mairéad Mooney, Boole Library, University College Cork. Tra...
Michelle Rumley & Mairéad Mooney, Boole Library, University College Cork. Tra...Michelle Rumley & Mairéad Mooney, Boole Library, University College Cork. Tra...
Michelle Rumley & Mairéad Mooney, Boole Library, University College Cork. Tra...
Library Association of Ireland
 
To study Digestive system of insect.pptx
To study Digestive system of insect.pptxTo study Digestive system of insect.pptx
To study Digestive system of insect.pptx
Arshad Shaikh
 
Odoo Inventory Rules and Routes v17 - Odoo Slides
Odoo Inventory Rules and Routes v17 - Odoo SlidesOdoo Inventory Rules and Routes v17 - Odoo Slides
Odoo Inventory Rules and Routes v17 - Odoo Slides
Celine George
 
Studying Drama: Definition, types and elements
Studying Drama: Definition, types and elementsStudying Drama: Definition, types and elements
Studying Drama: Definition, types and elements
AbdelFattahAdel2
 
Understanding P–N Junction Semiconductors: A Beginner’s Guide
Understanding P–N Junction Semiconductors: A Beginner’s GuideUnderstanding P–N Junction Semiconductors: A Beginner’s Guide
Understanding P–N Junction Semiconductors: A Beginner’s Guide
GS Virdi
 
Fundamentals of PR: Wk 4 - Strategic Communications
Fundamentals of PR: Wk 4 - Strategic CommunicationsFundamentals of PR: Wk 4 - Strategic Communications
Fundamentals of PR: Wk 4 - Strategic Communications
Jordan Williams
 
New Microsoft PowerPoint Presentation.pptx
New Microsoft PowerPoint Presentation.pptxNew Microsoft PowerPoint Presentation.pptx
New Microsoft PowerPoint Presentation.pptx
milanasargsyan5
 
Quality Contril Analysis of Containers.pdf
Quality Contril Analysis of Containers.pdfQuality Contril Analysis of Containers.pdf
Quality Contril Analysis of Containers.pdf
Dr. Bindiya Chauhan
 
Marie Boran Special Collections Librarian Hardiman Library, University of Gal...
Marie Boran Special Collections Librarian Hardiman Library, University of Gal...Marie Boran Special Collections Librarian Hardiman Library, University of Gal...
Marie Boran Special Collections Librarian Hardiman Library, University of Gal...
Library Association of Ireland
 
Metamorphosis: Life's Transformative Journey
Metamorphosis: Life's Transformative JourneyMetamorphosis: Life's Transformative Journey
Metamorphosis: Life's Transformative Journey
Arshad Shaikh
 
Vitamins Chapter-7, Biochemistry and clinical pathology, D.Pharm 2nd year
Vitamins Chapter-7, Biochemistry and clinical pathology, D.Pharm 2nd yearVitamins Chapter-7, Biochemistry and clinical pathology, D.Pharm 2nd year
Vitamins Chapter-7, Biochemistry and clinical pathology, D.Pharm 2nd year
ARUN KUMAR
 
Ultimate VMware 2V0-11.25 Exam Dumps for Exam Success
Ultimate VMware 2V0-11.25 Exam Dumps for Exam SuccessUltimate VMware 2V0-11.25 Exam Dumps for Exam Success
Ultimate VMware 2V0-11.25 Exam Dumps for Exam Success
Mark Soia
 
World war-1(Causes & impacts at a glance) PPT by Simanchala Sarab(BABed,sem-4...
World war-1(Causes & impacts at a glance) PPT by Simanchala Sarab(BABed,sem-4...World war-1(Causes & impacts at a glance) PPT by Simanchala Sarab(BABed,sem-4...
World war-1(Causes & impacts at a glance) PPT by Simanchala Sarab(BABed,sem-4...
larencebapu132
 
UNIT 3 NATIONAL HEALTH PROGRAMMEE. SOCIAL AND PREVENTIVE PHARMACY
UNIT 3 NATIONAL HEALTH PROGRAMMEE. SOCIAL AND PREVENTIVE PHARMACYUNIT 3 NATIONAL HEALTH PROGRAMMEE. SOCIAL AND PREVENTIVE PHARMACY
UNIT 3 NATIONAL HEALTH PROGRAMMEE. SOCIAL AND PREVENTIVE PHARMACY
DR.PRISCILLA MARY J
 
GDGLSPGCOER - Git and GitHub Workshop.pptx
GDGLSPGCOER - Git and GitHub Workshop.pptxGDGLSPGCOER - Git and GitHub Workshop.pptx
GDGLSPGCOER - Git and GitHub Workshop.pptx
azeenhodekar
 
Anti-Depressants pharmacology 1slide.pptx
Anti-Depressants pharmacology 1slide.pptxAnti-Depressants pharmacology 1slide.pptx
Anti-Depressants pharmacology 1slide.pptx
Mayuri Chavan
 
Geography Sem II Unit 1C Correlation of Geography with other school subjects
Geography Sem II Unit 1C Correlation of Geography with other school subjectsGeography Sem II Unit 1C Correlation of Geography with other school subjects
Geography Sem II Unit 1C Correlation of Geography with other school subjects
ProfDrShaikhImran
 
How to Subscribe Newsletter From Odoo 18 Website
How to Subscribe Newsletter From Odoo 18 WebsiteHow to Subscribe Newsletter From Odoo 18 Website
How to Subscribe Newsletter From Odoo 18 Website
Celine George
 
Michelle Rumley & Mairéad Mooney, Boole Library, University College Cork. Tra...
Michelle Rumley & Mairéad Mooney, Boole Library, University College Cork. Tra...Michelle Rumley & Mairéad Mooney, Boole Library, University College Cork. Tra...
Michelle Rumley & Mairéad Mooney, Boole Library, University College Cork. Tra...
Library Association of Ireland
 
To study Digestive system of insect.pptx
To study Digestive system of insect.pptxTo study Digestive system of insect.pptx
To study Digestive system of insect.pptx
Arshad Shaikh
 
Odoo Inventory Rules and Routes v17 - Odoo Slides
Odoo Inventory Rules and Routes v17 - Odoo SlidesOdoo Inventory Rules and Routes v17 - Odoo Slides
Odoo Inventory Rules and Routes v17 - Odoo Slides
Celine George
 
Studying Drama: Definition, types and elements
Studying Drama: Definition, types and elementsStudying Drama: Definition, types and elements
Studying Drama: Definition, types and elements
AbdelFattahAdel2
 
Understanding P–N Junction Semiconductors: A Beginner’s Guide
Understanding P–N Junction Semiconductors: A Beginner’s GuideUnderstanding P–N Junction Semiconductors: A Beginner’s Guide
Understanding P–N Junction Semiconductors: A Beginner’s Guide
GS Virdi
 

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