SlideShare a Scribd company logo
9
Most read
10
Most read
18
Most read
www.edureka.co/testing-with-selenium-webdriverEDUREKA’S SELENIUM CERTIFICATION TRAINING
www.edureka.co/testing-with-selenium-webdriverEDUREKA’S SELENIUM CERTIFICATION TRAINING
What Will You Learn Today?
 Challenges with manual testing
 How automation testing beats manual testing
 Selenium as an automation testing tool
 Advantages & disadvantages of Selenium
 Selenium vs. other tools
 Selenium suite of tools – ( IDE, RC, Grid, WebDriver )
 Hands-on
 Setting up Selenium environment
 Testing dynamic Web applications using Selenium
www.edureka.co/testing-with-selenium-webdriverEDUREKA’S SELENIUM CERTIFICATION TRAINING
You Must Be Aware Of
Manual Testing
www.edureka.co/testing-with-selenium-webdriverEDUREKA’S SELENIUM CERTIFICATION TRAINING
WEB APPLICATION
Testing web apps manually involves:
• Loading all transactions
• Downloading those transactions
• Creating pass/ fail reports for each
• Validating the form
• Taking screenshots for each validation
Manual Testing
www.edureka.co/testing-with-selenium-webdriverEDUREKA’S SELENIUM CERTIFICATION TRAINING
Manual Testing & It’s Challenges
Tedious
Boring
Mistakes,
Errors…..
WEB APPLICATION
Testing web apps manually involves:
• Loading all transactions
• Downloading those transactions
• Creating pass/ fail reports for each
• Validating the form
• Taking screenshots for each validation
Boring
Time
consuming
www.edureka.co/testing-with-selenium-webdriverEDUREKA’S SELENIUM CERTIFICATION TRAINING
Now Let’s See How
Automation Testing >> Manual Testing
www.edureka.co/testing-with-selenium-webdriverEDUREKA’S SELENIUM CERTIFICATION TRAINING
Automation Testing Beats Manual Testing
www.edureka.co/testing-with-selenium-webdriverEDUREKA’S SELENIUM CERTIFICATION TRAINING
Automation Testing Beats Manual Testing
Faster Execution More Accurate Lesser Investment In Human Resource
Supports Regression Testing Frequent Executions Supports Lights Out Execution
Features of Automation Testing
www.edureka.co/testing-with-selenium-webdriverEDUREKA’S SELENIUM CERTIFICATION TRAINING
Selenium As An Automation Testing Tool
Selenium is a suite of software tools to automate web browsers.
It is open source and mainly used for functional testing and regression testing.
 Supports different PL  Java, Python, C#, PHP, Ruby, Perl, JavaScript
 Supports different OS  Windows, Mac, Linux, iOS, Android
 Supports different Browsers  IE, Firefox, Chrome, Safari, Opera
www.edureka.co/testing-with-selenium-webdriverEDUREKA’S SELENIUM CERTIFICATION TRAINING
Advantages & Disadvantages Of Selenium
www.edureka.co/testing-with-selenium-webdriverEDUREKA’S SELENIUM CERTIFICATION TRAINING
Selenium vs. Other Tools
Features QTP IBM RFT Selenium
License Required Required Open Source
Cost High High Less because it is open-source
Customer Support
Dedicated HP
support
Dedicated IBM
support
Open Source Community
Hardware resource consumption
during script execution
High High Low
Coding experience Not Much Required
Should be very good along with
technical capabilities of integrating the
framework
Environment support Only for Windows Only for Windows
Windows, Linux, Solaris OS X (If browser
& JVM or JavaScript support exists)
Language Support VB Script Java and C#
Java, C#, Ruby, Python, Perl, PHP,
JavaScript
www.edureka.co/testing-with-selenium-webdriverEDUREKA’S SELENIUM CERTIFICATION TRAINING
Selenium Suite Of Tools
RCIDE Grid
Selenium v2
Selenium v1
RC*IDE WebDriver Grid
*Now outdated
IDE
RC
WebDriver
Grid Selenium v3 RC*IDE WebDriver Grid
www.edureka.co/testing-with-selenium-webdriverEDUREKA’S SELENIUM CERTIFICATION TRAINING
Selenium Suite Of Tools
• Selenium IDE is a Firefox plugin which is used to create and execute test cases
• It records and plays back the interactions which the user had with the web browser
• Using IDE, you can export the programming code in different languages: Java, Ruby, Python etc.
Record
button
Interactions
Recorded
List of
executable
test cases
IDE
RC
WebDriver
Grid
www.edureka.co/testing-with-selenium-webdriverEDUREKA’S SELENIUM CERTIFICATION TRAINING
Selenium Suite Of Tools
IDE
RC
Create and edit test cases
Create and execute test suites
Debug and enhance test cases
Test cases can be exported to different PL
Enables learning of Selenium’s script syntax
Selenium IDE features
WebDriver
Grid
www.edureka.co/testing-with-selenium-webdriverEDUREKA’S SELENIUM CERTIFICATION TRAINING
Selenium Suite Of Tools
Selenium IDE drawbacks
WebDriver
IDE
RC
Supports only Mozilla Firefox browser
Not suitable for dynamic web applications
No support for programming logic
Data driven testing not possible
No centralized maintenance of objects/ elements
WebDriver
Grid
www.edureka.co/testing-with-selenium-webdriverEDUREKA’S SELENIUM CERTIFICATION TRAINING
Selenium Suite Of Tools
• Selenium Remote Control (RC) is used to write web
application tests in different PL
• It interacts with browsers with the help of Selenium
RC Server
• RC Server communicates using simple HTTP GET/
POST requests
• Drawback is that every communication with RC
server is timing consuming and hence RC is slow
• From Selenium v3 onwards, RC has been
depreciated and moved to legacy package
IDE
RC
WebDriver
Grid
www.edureka.co/testing-with-selenium-webdriverEDUREKA’S SELENIUM CERTIFICATION TRAINING
Selenium WebDriver is a programming interface to create and execute test cases
Test cases are created and executed using Elements/ Object locators/ WebDriver
methods
Selenium WebDriver has programming interface; not IDE
Selenium IDE supports only IDE; doesn’t have programming interface
•Fast as it interacts with browser directly; RC needs RC server to interact with browser
Selenium Suite Of Tools
IDE
RC
WebDriver
Grid
www.edureka.co/testing-with-selenium-webdriverEDUREKA’S SELENIUM CERTIFICATION TRAINING
Selenium Suite Of Tools
Each browser has its own driver on which the application runs.
Selenium WebDriver makes direct calls to the browser
HtmlUnit
Driver
IE Driver
Firefox
Driver
Chrome
Driver
Safari
Driver
Types Of
WebDrivers
IDE
RC
WebDriver
Grid
www.edureka.co/testing-with-selenium-webdriverEDUREKA’S SELENIUM CERTIFICATION TRAINING
Selenium Suite Of Tools
• Support for:
PL  JAVA, C#, PHP, Ruby, Perl, Python
Browsers  Firefox, Chrome, IE, Safari
OS  Windows, Mac, Linux, Android, iOS
• Overcomes limitations of Selenium 1 like file upload, download, pop-ups & dialogs barrier
Selenium WebDriver drawbacks
Selenium WebDriver features
• Detailed test reports cannot be generated
• No centralized maintenance of objects/ elements
IDE
RC
WebDriver
Grid
www.edureka.co/testing-with-selenium-webdriverEDUREKA’S SELENIUM CERTIFICATION TRAINING
Selenium Suite Of Tools
• Selenium Grid is used to run multiple test scripts at the same time on multiple machines
• Parallel execution is achieved with the help of Hub-Node architecture
• Hub can control different test scripts on various browsers, OS and PL in various nodes
• Hub and nodes are started using jar files
• Supports RC test as well as WebDriver test
IDE
RC
Delegates
the request
Requests the
OS & browser
HUB
DEVELOPER
WebDriver
Grid
www.edureka.co/testing-with-selenium-webdriverEDUREKA’S SELENIUM CERTIFICATION TRAINING
Hands-On:
Handling Elements On
Edureka Home Page
www.edureka.co/testing-with-selenium-webdriverEDUREKA’S SELENIUM CERTIFICATION TRAINING
Selenium WebDriver Commands
Get Command
Command: driver.get(URL);
Parameters: url – The URL to load
sendKeys Command
Command: sendKeys()
Parameters: onElement, charsequence
Click Command
Command: click()
Parameters: Element locators
Find Element Command
Command: driver.findelement()
Parameters: locator
Assert Method
Command: Assert.assertEquals()
Parameters: condition, message
www.edureka.co/testing-with-selenium-webdriverEDUREKA’S SELENIUM CERTIFICATION TRAINING
Course Details & Customer Reviews
Go to www.edureka.co/testing-with-selenium-webdriver
Get Edureka Certified in Selenium Today!
Radha Muthian says, “I learned Selenium WebDriver and the course
was very helpful to automate the Web Applications. The lifetime
access of classes helps a lot to refer back and download the codes.”
Vijay Krishnan says, “I have attended Selenium Web driver Certification with
Edureka. The trainer has explained all the concepts of the course in detail
manner which was very easy to understand. Worth for the money spent!!!!”
Tom Tully says, “I wanted to learn Selenium Webdriver in a live, real
course, not self paced, so there would be pressure on me to finish.
Edureka accomplished this at a price far lower than an in-person class,
and as far as I know they are the only internet class that has live lectures
on this subject. Teacher was very knowledgeable. I learned basic use of
Selenium. No problem with me being in US and teacher in India. They
have US 800 number.”
Suhas Kashyap says, “The online Course(Selenium Webdriver), which
I took from Edureka was interactive and also helped me to improve
my knowledge on selenium. Further helped me in changing the job as
well. Thanks Edureka Team... :).”
www.edureka.co/testing-with-selenium-webdriverEDUREKA’S SELENIUM CERTIFICATION TRAINING

More Related Content

What's hot (20)

PPTX
What Is Selenium? | Selenium Basics For Beginners | Introduction To Selenium ...
Simplilearn
 
PPTX
Selenium WebDriver Tutorial For Beginners | What Is Selenium WebDriver | Sele...
Edureka!
 
PPTX
Selenium ppt
Aneesh Rangarajan
 
PDF
Automation Testing using Selenium
Naresh Chintalcheru
 
PPTX
Automation Testing by Selenium Web Driver
Cuelogic Technologies Pvt. Ltd.
 
PDF
Selenium
eduquer
 
PPTX
Selenium introduction
Pankaj Dubey
 
PDF
Webinar: Selenium WebDriver - Automation Uncomplicated
Edureka!
 
PPTX
Automation - web testing with selenium
Tzirla Rozental
 
PDF
Selenium IDE LOCATORS
Mindfire Solutions
 
PPTX
Test Automation and Selenium
Karapet Sarkisyan
 
PPTX
Selenium WebDriver training
Vijay Krishnan Ramaswamy
 
PPT
Selenium Automation Framework
Mindfire Solutions
 
PDF
Selenium Automation Testing Interview Questions And Answers
Ajit Jadhav
 
PPT
Selenium Presentation at Engineering Colleges
Vijay Rangaiah
 
PPTX
Data driven Automation Framework with Selenium
Edureka!
 
PPTX
Selenium
Batch2016
 
PDF
Introduction to Selenium | Selenium Tutorial for Beginners | Selenium Trainin...
Edureka!
 
PDF
Web application testing with Selenium
Kerry Buckley
 
PDF
Selenium with Cucumber
Knoldus Inc.
 
What Is Selenium? | Selenium Basics For Beginners | Introduction To Selenium ...
Simplilearn
 
Selenium WebDriver Tutorial For Beginners | What Is Selenium WebDriver | Sele...
Edureka!
 
Selenium ppt
Aneesh Rangarajan
 
Automation Testing using Selenium
Naresh Chintalcheru
 
Automation Testing by Selenium Web Driver
Cuelogic Technologies Pvt. Ltd.
 
Selenium
eduquer
 
Selenium introduction
Pankaj Dubey
 
Webinar: Selenium WebDriver - Automation Uncomplicated
Edureka!
 
Automation - web testing with selenium
Tzirla Rozental
 
Selenium IDE LOCATORS
Mindfire Solutions
 
Test Automation and Selenium
Karapet Sarkisyan
 
Selenium WebDriver training
Vijay Krishnan Ramaswamy
 
Selenium Automation Framework
Mindfire Solutions
 
Selenium Automation Testing Interview Questions And Answers
Ajit Jadhav
 
Selenium Presentation at Engineering Colleges
Vijay Rangaiah
 
Data driven Automation Framework with Selenium
Edureka!
 
Selenium
Batch2016
 
Introduction to Selenium | Selenium Tutorial for Beginners | Selenium Trainin...
Edureka!
 
Web application testing with Selenium
Kerry Buckley
 
Selenium with Cucumber
Knoldus Inc.
 

Viewers also liked (20)

PPTX
Splunk Tutorial for Beginners - What is Splunk | Edureka
Edureka!
 
PPTX
What Is Salesforce CRM? | Salesforce CRM Tutorial For Beginners | Salesforce ...
Edureka!
 
PPTX
Salesforce Certification | Salesforce Careers | Salesforce Training For Begin...
Edureka!
 
PPTX
Salesforce Service Cloud Training | Salesforce Training For Beginners - Servi...
Edureka!
 
PPTX
What Is Data Science? Data Science Course - Data Science Tutorial For Beginne...
Edureka!
 
PDF
Big Data Career Path | Big Data Learning Path | Hadoop Tutorial | Edureka
Edureka!
 
PPTX
Salesforce Marketing Cloud Training | Salesforce Training For Beginners - Mar...
Edureka!
 
PPTX
K-Means Clustering Algorithm - Cluster Analysis | Machine Learning Algorithm ...
Edureka!
 
PDF
Hadoop Interview Questions and Answers | Big Data Interview Questions | Hadoo...
Edureka!
 
PPTX
What Is Salesforce? | Salesforce Training - What Does Salesforce Do? | Salesf...
Edureka!
 
PDF
MapReduce Tutorial | What is MapReduce | Hadoop MapReduce Tutorial | Edureka
Edureka!
 
PDF
Differences between OpenStack and AWS
Edureka!
 
PDF
Pig Tutorial | Twitter Case Study | Apache Pig Script and Commands | Edureka
Edureka!
 
PDF
Hadoop Tutorial | What is Hadoop | Hadoop Project on Reddit | Edureka
Edureka!
 
PDF
MapReduce Example | MapReduce Programming | Hadoop MapReduce Tutorial | Edureka
Edureka!
 
PDF
Hadoop Ecosystem | Big Data Analytics Tools | Hadoop Tutorial | Edureka
Edureka!
 
PDF
Control Transactions using PowerCenter
Edureka!
 
PPT
Selenium ppt
Pavan Kumar
 
PPT
Salesforce Presentation
Chetna Purohit
 
PPTX
Salesforce.com Overview
Edureka!
 
Splunk Tutorial for Beginners - What is Splunk | Edureka
Edureka!
 
What Is Salesforce CRM? | Salesforce CRM Tutorial For Beginners | Salesforce ...
Edureka!
 
Salesforce Certification | Salesforce Careers | Salesforce Training For Begin...
Edureka!
 
Salesforce Service Cloud Training | Salesforce Training For Beginners - Servi...
Edureka!
 
What Is Data Science? Data Science Course - Data Science Tutorial For Beginne...
Edureka!
 
Big Data Career Path | Big Data Learning Path | Hadoop Tutorial | Edureka
Edureka!
 
Salesforce Marketing Cloud Training | Salesforce Training For Beginners - Mar...
Edureka!
 
K-Means Clustering Algorithm - Cluster Analysis | Machine Learning Algorithm ...
Edureka!
 
Hadoop Interview Questions and Answers | Big Data Interview Questions | Hadoo...
Edureka!
 
What Is Salesforce? | Salesforce Training - What Does Salesforce Do? | Salesf...
Edureka!
 
MapReduce Tutorial | What is MapReduce | Hadoop MapReduce Tutorial | Edureka
Edureka!
 
Differences between OpenStack and AWS
Edureka!
 
Pig Tutorial | Twitter Case Study | Apache Pig Script and Commands | Edureka
Edureka!
 
Hadoop Tutorial | What is Hadoop | Hadoop Project on Reddit | Edureka
Edureka!
 
MapReduce Example | MapReduce Programming | Hadoop MapReduce Tutorial | Edureka
Edureka!
 
Hadoop Ecosystem | Big Data Analytics Tools | Hadoop Tutorial | Edureka
Edureka!
 
Control Transactions using PowerCenter
Edureka!
 
Selenium ppt
Pavan Kumar
 
Salesforce Presentation
Chetna Purohit
 
Salesforce.com Overview
Edureka!
 
Ad

Similar to Selenium Tutorial For Beginners | What Is Selenium? | Selenium Automation Testing Tutorial | Edureka (20)

PDF
Selenium 1july
Edureka!
 
PPTX
Selenium IDE Tutorial For Beginners | What Is Selenium IDE? | Selenium Tutori...
Edureka!
 
PDF
Designing keyword and Data Driven Automation framework with Selenium
Edureka!
 
PDF
Automation Using Selenium Webdriver
Edureka!
 
PDF
Automate Web Apps With Selenium
Edureka!
 
PDF
Reasons behind selenium automation testing popularity
Ray Business Technologies
 
PPTX
Selenium.pptxgsjdxhasdjhckcjjkdcbdcbvdciosdc
sumanthveeramallu9
 
PPTX
Selenium
Jahan Murugassan
 
PDF
Selenium Interview Questions and Answers For Freshers And Experienced | Edureka
Edureka!
 
PPT
Selenium (1)
onlinemindq
 
PDF
What Is Selenium | Selenium Tutorial For Beginner | Selenium Training | Selen...
Edureka!
 
PPTX
Selenium
Satyam Pandey
 
PPTX
Selenium introduction
Deepak Kumar Digar
 
PPTX
Demystifying Selenium framework
kunalgate125
 
PPT
Selenium Introduction
Mayur Khairnar
 
PPT
Selenium By Pravin Mishra
Pravin Mishra
 
PPTX
Selenium Automation
Anuradha Malalasena
 
PPTX
Test Automation Using Selenium
Nikhil Kapoor
 
PPTX
Selenium Introduction and IDE
Murageppa-QA
 
Selenium 1july
Edureka!
 
Selenium IDE Tutorial For Beginners | What Is Selenium IDE? | Selenium Tutori...
Edureka!
 
Designing keyword and Data Driven Automation framework with Selenium
Edureka!
 
Automation Using Selenium Webdriver
Edureka!
 
Automate Web Apps With Selenium
Edureka!
 
Reasons behind selenium automation testing popularity
Ray Business Technologies
 
Selenium.pptxgsjdxhasdjhckcjjkdcbdcbvdciosdc
sumanthveeramallu9
 
Selenium Interview Questions and Answers For Freshers And Experienced | Edureka
Edureka!
 
Selenium (1)
onlinemindq
 
What Is Selenium | Selenium Tutorial For Beginner | Selenium Training | Selen...
Edureka!
 
Selenium
Satyam Pandey
 
Selenium introduction
Deepak Kumar Digar
 
Demystifying Selenium framework
kunalgate125
 
Selenium Introduction
Mayur Khairnar
 
Selenium By Pravin Mishra
Pravin Mishra
 
Selenium Automation
Anuradha Malalasena
 
Test Automation Using Selenium
Nikhil Kapoor
 
Selenium Introduction and IDE
Murageppa-QA
 
Ad

More from Edureka! (20)

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

Recently uploaded (20)

PPTX
Change Common Properties in IBM SPSS Statistics Version 31.pptx
Version 1 Analytics
 
PDF
SciPy 2025 - Packaging a Scientific Python Project
Henry Schreiner
 
PPTX
Home Care Tools: Benefits, features and more
Third Rock Techkno
 
PPTX
OpenChain @ OSS NA - In From the Cold: Open Source as Part of Mainstream Soft...
Shane Coughlan
 
PDF
MiniTool Partition Wizard 12.8 Crack License Key LATEST
hashhshs786
 
PDF
Download Canva Pro 2025 PC Crack Full Latest Version
bashirkhan333g
 
PPTX
Empowering Asian Contributions: The Rise of Regional User Groups in Open Sour...
Shane Coughlan
 
PDF
Build It, Buy It, or Already Got It? Make Smarter Martech Decisions
bbedford2
 
PPTX
Tally_Basic_Operations_Presentation.pptx
AditiBansal54083
 
PPTX
Migrating Millions of Users with Debezium, Apache Kafka, and an Acyclic Synch...
MD Sayem Ahmed
 
PPTX
Why Businesses Are Switching to Open Source Alternatives to Crystal Reports.pptx
Varsha Nayak
 
PDF
[Solution] Why Choose the VeryPDF DRM Protector Custom-Built Solution for You...
Lingwen1998
 
PPTX
Agentic Automation Journey Series Day 2 – Prompt Engineering for UiPath Agents
klpathrudu
 
PDF
Open Chain Q2 Steering Committee Meeting - 2025-06-25
Shane Coughlan
 
PPTX
Help for Correlations in IBM SPSS Statistics.pptx
Version 1 Analytics
 
PDF
Alarm in Android-Scheduling Timed Tasks Using AlarmManager in Android.pdf
Nabin Dhakal
 
PDF
Online Queue Management System for Public Service Offices in Nepal [Focused i...
Rishab Acharya
 
PPTX
Agentic Automation: Build & Deploy Your First UiPath Agent
klpathrudu
 
PDF
Alexander Marshalov - How to use AI Assistants with your Monitoring system Q2...
VictoriaMetrics
 
PDF
4K Video Downloader Plus Pro Crack for MacOS New Download 2025
bashirkhan333g
 
Change Common Properties in IBM SPSS Statistics Version 31.pptx
Version 1 Analytics
 
SciPy 2025 - Packaging a Scientific Python Project
Henry Schreiner
 
Home Care Tools: Benefits, features and more
Third Rock Techkno
 
OpenChain @ OSS NA - In From the Cold: Open Source as Part of Mainstream Soft...
Shane Coughlan
 
MiniTool Partition Wizard 12.8 Crack License Key LATEST
hashhshs786
 
Download Canva Pro 2025 PC Crack Full Latest Version
bashirkhan333g
 
Empowering Asian Contributions: The Rise of Regional User Groups in Open Sour...
Shane Coughlan
 
Build It, Buy It, or Already Got It? Make Smarter Martech Decisions
bbedford2
 
Tally_Basic_Operations_Presentation.pptx
AditiBansal54083
 
Migrating Millions of Users with Debezium, Apache Kafka, and an Acyclic Synch...
MD Sayem Ahmed
 
Why Businesses Are Switching to Open Source Alternatives to Crystal Reports.pptx
Varsha Nayak
 
[Solution] Why Choose the VeryPDF DRM Protector Custom-Built Solution for You...
Lingwen1998
 
Agentic Automation Journey Series Day 2 – Prompt Engineering for UiPath Agents
klpathrudu
 
Open Chain Q2 Steering Committee Meeting - 2025-06-25
Shane Coughlan
 
Help for Correlations in IBM SPSS Statistics.pptx
Version 1 Analytics
 
Alarm in Android-Scheduling Timed Tasks Using AlarmManager in Android.pdf
Nabin Dhakal
 
Online Queue Management System for Public Service Offices in Nepal [Focused i...
Rishab Acharya
 
Agentic Automation: Build & Deploy Your First UiPath Agent
klpathrudu
 
Alexander Marshalov - How to use AI Assistants with your Monitoring system Q2...
VictoriaMetrics
 
4K Video Downloader Plus Pro Crack for MacOS New Download 2025
bashirkhan333g
 

Selenium Tutorial For Beginners | What Is Selenium? | Selenium Automation Testing Tutorial | Edureka

Editor's Notes

  • #5: Manual testing is not reliable. Using this method test execution is not accurate all the time. To execute the test cases first time using manual testing will be very much useful. But it is not sure that it will catch the regression defects under frequently changing requirements. Manual testing will be useful when the test case only needs to run once or twice. To execute the test cases every time tester requires the same amount of time. Using manual testing,testing on different machine with different OS platform combination is not possible, concurrently. To execute such task different testers are required. It does not involve in programming task to fetch hidden information. Manual testing is slower than automation. Running tests manually can be very time consuming. It is very much helpful in UI testing To execute the Build Verification Testing (BVT) is very mundane and tiresome in manual testing. Manual testing requires less cost than automation.
  • #6: Manual testing is not reliable. Using this method test execution is not accurate all the time. To execute the test cases first time using manual testing will be very much useful. But it is not sure that it will catch the regression defects under frequently changing requirements. Manual testing will be useful when the test case only needs to run once or twice. To execute the test cases every time tester requires the same amount of time. Using manual testing,testing on different machine with different OS platform combination is not possible, concurrently. To execute such task different testers are required. It does not involve in programming task to fetch hidden information. Manual testing is slower than automation. Running tests manually can be very time consuming. It is very much helpful in UI testing To execute the Build Verification Testing (BVT) is very mundane and tiresome in manual testing. Manual testing requires less cost than automation.
  • #11: OOPs to support Keyword Driven, Data Driven and Hybrid Framework
  • #17: RC Server receives the Selenium commands called Selenese from test programs using simple HTTP GET/ POST requests Selenium RC is now outdated
  • #18: Included as part of Selenium 2 Selenium WebDriver overcomes the limitations of Selenium 1, like file upload or download, pop-ups and dialogs barrier
  • #19: Selenium WebDriver supports dynamic web pages where elements of a page may change without the page itself being reloaded
  • #21: Parallel Execution Platform Independent Language Independent Browser Independent Fast Execution
  • #24: Add photos