SlideShare a Scribd company logo
Copyright © 2018, edureka and/or its affiliates. All rights reserved.
Copyright © 2018, edureka and/or its affiliates. All rights reserved.
Topics for Today’s Selenium Training
1. Why Use Selenium?
2. What is Selenium?
3. Versions and Suite of Tools.
4. How to Set-up Selenium?
5. Hands-on!
Copyright © 2018, edureka and/or its affiliates. All rights reserved.
Why Use Selenium?
Copyright © 2018, edureka and/or its affiliates. All rights reserved.
Why Use Selenium?
Beating the tedious challenges of manual testing is the obvious reason behind using automated tools.
And, here’s why Selenium is the best choice:
Being Open-Source, Selenium is available for free.
Selenium works good with any Operating System.
Selenium lets you perform tests on any Web Browser.
Selenium supports multiple Programming Languages.
Copyright © 2018, edureka and/or its affiliates. All rights reserved.
Selenium vs. its Counterparts
There are several tools to test other types of applications, but testing of dynamic web applications is done best with Selenium.
Features HP QTP IBM RFT TestComplete Selenium
License Required Required Required Open Source
Cost High High High Free
Customer support Yes Yes Yes Yes; Open source community
Coding skills Low Low High Very High
Environment support Only Windows Only Windows
Windows only (7, Vista,
Server 2008 or later OS)
Windows, Linux, Mac
Language support VB Script Java and C#
VB Script, JS Script, Delphi
Script, C++ & C#
Java, C#, Ruby, Python, Perl
& PHP
Copyright © 2018, edureka and/or its affiliates. All rights reserved.
What is Selenium?
Copyright © 2018, edureka and/or its affiliates. All rights reserved.
What is Selenium?
“Selenium is an open-source tool that can automate almost any web browser. ”
Copyright © 2018, edureka and/or its affiliates. All rights reserved.
What is Selenium?
“Selenium is an open-source tool that can automate almost any web browser. ”
So many test
cases, so much
work..... So
much stress !!!!!!
Copyright © 2018, edureka and/or its affiliates. All rights reserved.
What is Selenium?
“Selenium is an open-source tool that can automate almost any web browser. ”
So many test
cases, so much
work..... So
much stress !!!!!!
Testing with
Selenium has made
life so relaxing !!
Copyright © 2018, edureka and/or its affiliates. All rights reserved.
What is Selenium?
“Selenium is an open-source tool that can automate almost any web browser. ”
➢ Selenium can only be used to test web applications.
➢ Selenium is fast and easy to use even with large sets of data, and has a guaranteed accuracy.
➢ Selenium directly runs scripts for any web browser to automate the web application and test it.
So many test
cases, so much
work..... So
much stress !!!!!!
Testing with
Selenium has made
life so relaxing !!
Copyright © 2018, edureka and/or its affiliates. All rights reserved.
Versions and Suite of Tools
Copyright © 2018, edureka and/or its affiliates. All rights reserved.
Versions and Suite of Tools
As of April – 2018, the latest release of the tool is Selenium Version 3.12.0.
The Selenium suite comprised the following four components:
Selenium RC, however, was merged with WebDriver and launched anew as Selenium WebDriver with better functionalities.
Copyright © 2018, edureka and/or its affiliates. All rights reserved.
Versions and Suite of Tools
Selenium
Version 1
Selenium
Version 2
Selenium
Version 3
Selenium
IDE
Selenium
IDE
Selenium
IDE
Selenium
Grid
Selenium
Grid
Selenium
Grid
Selenium
RC
Selenium
WebDriver
Selenium
WebDriver
WebDriver
MERGED
IMPROVED
Copyright © 2018, edureka and/or its affiliates. All rights reserved.
How to Set-up Selenium?
Copyright © 2018, edureka and/or its affiliates. All rights reserved.
How to Set-up Selenium?
The following three software are prerequisite to begin using Selenium.
I. Java → Programming Language to write scripts
II. Eclipse → Environment to compile and run scripts
III. Selenium → Framework for testing web applications
Let’s get started on installing and setting them up →
Copyright © 2018, edureka and/or its affiliates. All rights reserved.
How to Set-up Selenium?
Step 1: Installing Java
✓ Download and install the latest release of the Java Platform, Standard Edition Development Kit from the
following link:- http://www.oracle.com/technetwork/java/javase/downloads/index.html
Copyright © 2018, edureka and/or its affiliates. All rights reserved.
How to Set-up Selenium?
✓ After Java is installed, we’ll need to set Environment Variables to use JDK with Eclipse.
✓ Right click on My PC →Go to Properties →Go to Advanced System Settings →System Properties window
pops up →Click on Environment Variables under the Advanced tab.
✓ Environment Variables window pops up →Click on New under User variables.
✓ Under the Edit User Variable window that pops up, set the Variable name as Path and Variable value as the
location of the bin folder inside the JDK folder on your system. Similarly, create another variable with the
name JAVA_HOME and set its values as the location of the JDK folder.
Copyright © 2018, edureka and/or its affiliates. All rights reserved.
How to Set-up Selenium?
Step 2: Installing Eclipse
✓ Download and install the latest release for Eclipse from the following link:
https://www.eclipse.org/downloads/
Copyright © 2018, edureka and/or its affiliates. All rights reserved.
How to Set-up Selenium?
Step 3: Download Selenium JAR Files
✓ Open the link given below to download the JAR files for Selenium:
http://selenium-release.storage.googleapis.com/index.html
✓ Select the version that you want to use.
Copyright © 2018, edureka and/or its affiliates. All rights reserved.
How to Set-up Selenium?
✓ Download the JAR files (selenium-server-3.9.1.zip & selenium-server-standalone-3.9.1.jar for version 3.9)
from the version that you have selected.
Copyright © 2018, edureka and/or its affiliates. All rights reserved.
How to Set-up Selenium?
Step 4: Configuring Eclipse for Selenium
✓ Open Eclipse and set a path for your workplace directory in the Eclipse Launcher window and click Launch.
Copyright © 2018, edureka and/or its affiliates. All rights reserved.
How to Set-up Selenium?
✓ After Eclipse is launched, go to
File →New →Java Project.
Copyright © 2018, edureka and/or its affiliates. All rights reserved.
How to Set-up Selenium?
✓ Enter Project Name →Selenium Project.
✓ Click Finish.
Copyright © 2018, edureka and/or its affiliates. All rights reserved.
How to Set-up Selenium?
✓ Under the Package Explorer tab, right click on the name of your project (Selenium Project), go to
Build Path →Configure Build Path.
Copyright © 2018, edureka and/or its affiliates. All rights reserved.
How to Set-up Selenium?
✓ Click on the Libraries tab, select Classpath then click on Add External JARs.
Copyright © 2018, edureka and/or its affiliates. All rights reserved.
How to Set-up Selenium?
✓ Find all the JAR files that we downloaded, select them and click on Open.
✓ After you’re done adding all the JAR files, Click on Apply and Close.
Copyright © 2018, edureka and/or its affiliates. All rights reserved.
Hands-on in Selenium!
Copyright © 2018, edureka and/or its affiliates. All rights reserved.
Hands-on in Selenium
Now that the prerequisites have all been installed and Selenium has been configured for the
Eclipse IDE, how about we automate and test Gmail using Google Chrome?
Copyright © 2018, edureka and/or its affiliates. All rights reserved.
Session In A Minute
Why Use Selenium?
Versions and Suite of Tools
What Is Selenium?
How to Set-up Selenium?
Copyright © 2018, edureka and/or its affiliates. All rights reserved.
WebDriver vs. IDE vs. RC
➢ Data Warehouse is like a relational database designed for analytical needs.
➢ It functions on the basis of OLAP (Online Analytical Processing).
➢ It is a central location where consolidated data from multiple locations (databases) are stored.

More Related Content

What's hot

Selenium Presentation at Engineering Colleges
Selenium Presentation at Engineering CollegesSelenium Presentation at Engineering Colleges
Selenium Presentation at Engineering CollegesVijay Rangaiah
 
Interview Question & Answers for Selenium Freshers | LearningSlot
Interview Question & Answers for Selenium Freshers | LearningSlotInterview Question & Answers for Selenium Freshers | LearningSlot
Interview Question & Answers for Selenium Freshers | LearningSlotLearning Slot
 
Automated testing with Cypress
Automated testing with CypressAutomated testing with Cypress
Automated testing with CypressYong Shean Chong
 
Selenium test automation
Selenium test automationSelenium test automation
Selenium test automationSrikanth Vuriti
 
Introduction to Integration Testing With Cypress
Introduction to Integration Testing With CypressIntroduction to Integration Testing With Cypress
Introduction to Integration Testing With CypressErez Cohen
 
Test automation using selenium
Test automation using seleniumTest automation using selenium
Test automation using seleniumshreyas JC
 
Getting Started With Cypress
Getting Started With CypressGetting Started With Cypress
Getting Started With CypressKnoldus Inc.
 
e2e testing with cypress
e2e testing with cypresse2e testing with cypress
e2e testing with cypressTomasz Bak
 

What's hot (20)

Selenium Automation Framework
Selenium Automation  FrameworkSelenium Automation  Framework
Selenium Automation Framework
 
Selenium Presentation at Engineering Colleges
Selenium Presentation at Engineering CollegesSelenium Presentation at Engineering Colleges
Selenium Presentation at Engineering Colleges
 
QSpiders - Automation using Selenium
QSpiders - Automation using SeleniumQSpiders - Automation using Selenium
QSpiders - Automation using Selenium
 
Selenium ppt
Selenium pptSelenium ppt
Selenium ppt
 
Interview Question & Answers for Selenium Freshers | LearningSlot
Interview Question & Answers for Selenium Freshers | LearningSlotInterview Question & Answers for Selenium Freshers | LearningSlot
Interview Question & Answers for Selenium Freshers | LearningSlot
 
Automated testing with Cypress
Automated testing with CypressAutomated testing with Cypress
Automated testing with Cypress
 
Selenium test automation
Selenium test automationSelenium test automation
Selenium test automation
 
Introduction to Integration Testing With Cypress
Introduction to Integration Testing With CypressIntroduction to Integration Testing With Cypress
Introduction to Integration Testing With Cypress
 
Test automation using selenium
Test automation using seleniumTest automation using selenium
Test automation using selenium
 
Selenium ppt
Selenium pptSelenium ppt
Selenium ppt
 
Introduction to selenium
Introduction to seleniumIntroduction to selenium
Introduction to selenium
 
Getting Started With Cypress
Getting Started With CypressGetting Started With Cypress
Getting Started With Cypress
 
e2e testing with cypress
e2e testing with cypresse2e testing with cypress
e2e testing with cypress
 
Selenium ppt
Selenium pptSelenium ppt
Selenium ppt
 
SELENIUM PPT.pdf
SELENIUM PPT.pdfSELENIUM PPT.pdf
SELENIUM PPT.pdf
 
Automated Test Framework with Cucumber
Automated Test Framework with CucumberAutomated Test Framework with Cucumber
Automated Test Framework with Cucumber
 
Selenium Concepts
Selenium ConceptsSelenium Concepts
Selenium Concepts
 
Automation Testing by Selenium Web Driver
Automation Testing by Selenium Web DriverAutomation Testing by Selenium Web Driver
Automation Testing by Selenium Web Driver
 
Selenium
SeleniumSelenium
Selenium
 
Test automation using selenium
Test automation using seleniumTest automation using selenium
Test automation using selenium
 

Similar to How to Write & Run a Test Case in Selenium | Selenium Tutorial | Selenium Training | Edureka

Learn How Selenium And Jenkins Fit In DevOps | Edureka Live
Learn How Selenium And Jenkins Fit In DevOps | Edureka LiveLearn How Selenium And Jenkins Fit In DevOps | Edureka Live
Learn How Selenium And Jenkins Fit In DevOps | Edureka LiveEdureka!
 
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 Controlusha kannappan
 
What Is Selenium | Selenium Tutorial For Beginner | Selenium Training | Selen...
What Is Selenium | Selenium Tutorial For Beginner | Selenium Training | Selen...What Is Selenium | Selenium Tutorial For Beginner | Selenium Training | Selen...
What Is Selenium | Selenium Tutorial For Beginner | Selenium Training | Selen...Edureka!
 
Katalon studio vs selenium comparision
Katalon studio vs selenium comparisionKatalon studio vs selenium comparision
Katalon studio vs selenium comparisionPrabhusundar6
 
Data Driven Framework In Selenium Webdriver | Data Driven Testing | Selenium ...
Data Driven Framework In Selenium Webdriver | Data Driven Testing | Selenium ...Data Driven Framework In Selenium Webdriver | Data Driven Testing | Selenium ...
Data Driven Framework In Selenium Webdriver | Data Driven Testing | Selenium ...Edureka!
 
Module-1_Getting-Started_with_selenium_and_Java_basics.pdf
Module-1_Getting-Started_with_selenium_and_Java_basics.pdfModule-1_Getting-Started_with_selenium_and_Java_basics.pdf
Module-1_Getting-Started_with_selenium_and_Java_basics.pdfdevika266518
 
Top 21 Selenium FAQs.pdf
Top 21 Selenium FAQs.pdfTop 21 Selenium FAQs.pdf
Top 21 Selenium FAQs.pdfAnanthReddy38
 
GL_Web application testing using selenium
GL_Web application testing using seleniumGL_Web application testing using selenium
GL_Web application testing using seleniumPragya Rastogi
 
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.pptxSyntax Technologies
 
Selenium with testng and eclipse ide
Selenium with testng and eclipse ideSelenium with testng and eclipse ide
Selenium with testng and eclipse ideTestertester Jaipur
 
Steps to write Selenium
Steps to write Selenium  Steps to write Selenium
Steps to write Selenium Rohit Thakur
 
Selenium Interview Questions And Answers | Selenium Interview Questions | Sel...
Selenium Interview Questions And Answers | Selenium Interview Questions | Sel...Selenium Interview Questions And Answers | Selenium Interview Questions | Sel...
Selenium Interview Questions And Answers | Selenium Interview Questions | Sel...Simplilearn
 

Similar to How to Write & Run a Test Case in Selenium | Selenium Tutorial | Selenium Training | Edureka (20)

Selenium
SeleniumSelenium
Selenium
 
Learn How Selenium And Jenkins Fit In DevOps | Edureka Live
Learn How Selenium And Jenkins Fit In DevOps | Edureka LiveLearn How Selenium And Jenkins Fit In DevOps | Edureka Live
Learn How Selenium And Jenkins Fit In DevOps | Edureka Live
 
Selenium
SeleniumSelenium
Selenium
 
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
 
What Is Selenium | Selenium Tutorial For Beginner | Selenium Training | Selen...
What Is Selenium | Selenium Tutorial For Beginner | Selenium Training | Selen...What Is Selenium | Selenium Tutorial For Beginner | Selenium Training | Selen...
What Is Selenium | Selenium Tutorial For Beginner | Selenium Training | Selen...
 
Katalon studio vs selenium comparision
Katalon studio vs selenium comparisionKatalon studio vs selenium comparision
Katalon studio vs selenium comparision
 
Selenium
SeleniumSelenium
Selenium
 
BCS Selenium Workshop
BCS Selenium WorkshopBCS Selenium Workshop
BCS Selenium Workshop
 
Selenium basic
Selenium basicSelenium basic
Selenium basic
 
Data Driven Framework In Selenium Webdriver | Data Driven Testing | Selenium ...
Data Driven Framework In Selenium Webdriver | Data Driven Testing | Selenium ...Data Driven Framework In Selenium Webdriver | Data Driven Testing | Selenium ...
Data Driven Framework In Selenium Webdriver | Data Driven Testing | Selenium ...
 
Module-1_Getting-Started_with_selenium_and_Java_basics.pdf
Module-1_Getting-Started_with_selenium_and_Java_basics.pdfModule-1_Getting-Started_with_selenium_and_Java_basics.pdf
Module-1_Getting-Started_with_selenium_and_Java_basics.pdf
 
Top 21 Selenium FAQs.pdf
Top 21 Selenium FAQs.pdfTop 21 Selenium FAQs.pdf
Top 21 Selenium FAQs.pdf
 
GL_Web application testing using selenium
GL_Web application testing using seleniumGL_Web application testing using selenium
GL_Web application testing using selenium
 
Selenium
SeleniumSelenium
Selenium
 
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
 
Selenium Primer
Selenium PrimerSelenium Primer
Selenium Primer
 
Selenium
SeleniumSelenium
Selenium
 
Selenium with testng and eclipse ide
Selenium with testng and eclipse ideSelenium with testng and eclipse ide
Selenium with testng and eclipse ide
 
Steps to write Selenium
Steps to write Selenium  Steps to write Selenium
Steps to write Selenium
 
Selenium Interview Questions And Answers | Selenium Interview Questions | Sel...
Selenium Interview Questions And Answers | Selenium Interview Questions | Sel...Selenium Interview Questions And Answers | Selenium Interview Questions | Sel...
Selenium Interview Questions And Answers | Selenium Interview Questions | Sel...
 

More from Edureka!

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

More from Edureka! (20)

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

Recently uploaded

"Impact of front-end architecture on development cost", Viktor Turskyi
"Impact of front-end architecture on development cost", Viktor Turskyi"Impact of front-end architecture on development cost", Viktor Turskyi
"Impact of front-end architecture on development cost", Viktor TurskyiFwdays
 
JMeter webinar - integration with InfluxDB and Grafana
JMeter webinar - integration with InfluxDB and GrafanaJMeter webinar - integration with InfluxDB and Grafana
JMeter webinar - integration with InfluxDB and GrafanaRTTS
 
Accelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish CachingAccelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish CachingThijs Feryn
 
IOS-PENTESTING-BEGINNERS-PRACTICAL-GUIDE-.pptx
IOS-PENTESTING-BEGINNERS-PRACTICAL-GUIDE-.pptxIOS-PENTESTING-BEGINNERS-PRACTICAL-GUIDE-.pptx
IOS-PENTESTING-BEGINNERS-PRACTICAL-GUIDE-.pptxAbida Shariff
 
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdfSmart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf91mobiles
 
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...Sri Ambati
 
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...Product School
 
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...Thierry Lestable
 
ODC, Data Fabric and Architecture User Group
ODC, Data Fabric and Architecture User GroupODC, Data Fabric and Architecture User Group
ODC, Data Fabric and Architecture User GroupCatarinaPereira64715
 
Future Visions: Predictions to Guide and Time Tech Innovation, Peter Udo Diehl
Future Visions: Predictions to Guide and Time Tech Innovation, Peter Udo DiehlFuture Visions: Predictions to Guide and Time Tech Innovation, Peter Udo Diehl
Future Visions: Predictions to Guide and Time Tech Innovation, Peter Udo DiehlPeter Udo Diehl
 
НАДІЯ ФЕДЮШКО БАЦ «Професійне зростання QA спеціаліста»
НАДІЯ ФЕДЮШКО БАЦ  «Професійне зростання QA спеціаліста»НАДІЯ ФЕДЮШКО БАЦ  «Професійне зростання QA спеціаліста»
НАДІЯ ФЕДЮШКО БАЦ «Професійне зростання QA спеціаліста»QADay
 
How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...Product School
 
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered QualitySoftware Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered QualityInflectra
 
IoT Analytics Company Presentation May 2024
IoT Analytics Company Presentation May 2024IoT Analytics Company Presentation May 2024
IoT Analytics Company Presentation May 2024IoTAnalytics
 
Exploring UiPath Orchestrator API: updates and limits in 2024 🚀
Exploring UiPath Orchestrator API: updates and limits in 2024 🚀Exploring UiPath Orchestrator API: updates and limits in 2024 🚀
Exploring UiPath Orchestrator API: updates and limits in 2024 🚀DianaGray10
 
Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...Product School
 
The Future of Platform Engineering
The Future of Platform EngineeringThe Future of Platform Engineering
The Future of Platform EngineeringJemma Hussein Allen
 
UiPath Test Automation using UiPath Test Suite series, part 2
UiPath Test Automation using UiPath Test Suite series, part 2UiPath Test Automation using UiPath Test Suite series, part 2
UiPath Test Automation using UiPath Test Suite series, part 2DianaGray10
 
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdfFIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdfFIDO Alliance
 
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...UiPathCommunity
 

Recently uploaded (20)

"Impact of front-end architecture on development cost", Viktor Turskyi
"Impact of front-end architecture on development cost", Viktor Turskyi"Impact of front-end architecture on development cost", Viktor Turskyi
"Impact of front-end architecture on development cost", Viktor Turskyi
 
JMeter webinar - integration with InfluxDB and Grafana
JMeter webinar - integration with InfluxDB and GrafanaJMeter webinar - integration with InfluxDB and Grafana
JMeter webinar - integration with InfluxDB and Grafana
 
Accelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish CachingAccelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish Caching
 
IOS-PENTESTING-BEGINNERS-PRACTICAL-GUIDE-.pptx
IOS-PENTESTING-BEGINNERS-PRACTICAL-GUIDE-.pptxIOS-PENTESTING-BEGINNERS-PRACTICAL-GUIDE-.pptx
IOS-PENTESTING-BEGINNERS-PRACTICAL-GUIDE-.pptx
 
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdfSmart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
 
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
 
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
From Daily Decisions to Bottom Line: Connecting Product Work to Revenue by VP...
 
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
 
ODC, Data Fabric and Architecture User Group
ODC, Data Fabric and Architecture User GroupODC, Data Fabric and Architecture User Group
ODC, Data Fabric and Architecture User Group
 
Future Visions: Predictions to Guide and Time Tech Innovation, Peter Udo Diehl
Future Visions: Predictions to Guide and Time Tech Innovation, Peter Udo DiehlFuture Visions: Predictions to Guide and Time Tech Innovation, Peter Udo Diehl
Future Visions: Predictions to Guide and Time Tech Innovation, Peter Udo Diehl
 
НАДІЯ ФЕДЮШКО БАЦ «Професійне зростання QA спеціаліста»
НАДІЯ ФЕДЮШКО БАЦ  «Професійне зростання QA спеціаліста»НАДІЯ ФЕДЮШКО БАЦ  «Професійне зростання QA спеціаліста»
НАДІЯ ФЕДЮШКО БАЦ «Професійне зростання QA спеціаліста»
 
How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...How world-class product teams are winning in the AI era by CEO and Founder, P...
How world-class product teams are winning in the AI era by CEO and Founder, P...
 
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered QualitySoftware Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
 
IoT Analytics Company Presentation May 2024
IoT Analytics Company Presentation May 2024IoT Analytics Company Presentation May 2024
IoT Analytics Company Presentation May 2024
 
Exploring UiPath Orchestrator API: updates and limits in 2024 🚀
Exploring UiPath Orchestrator API: updates and limits in 2024 🚀Exploring UiPath Orchestrator API: updates and limits in 2024 🚀
Exploring UiPath Orchestrator API: updates and limits in 2024 🚀
 
Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...Mission to Decommission: Importance of Decommissioning Products to Increase E...
Mission to Decommission: Importance of Decommissioning Products to Increase E...
 
The Future of Platform Engineering
The Future of Platform EngineeringThe Future of Platform Engineering
The Future of Platform Engineering
 
UiPath Test Automation using UiPath Test Suite series, part 2
UiPath Test Automation using UiPath Test Suite series, part 2UiPath Test Automation using UiPath Test Suite series, part 2
UiPath Test Automation using UiPath Test Suite series, part 2
 
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdfFIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
 
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
 

How to Write & Run a Test Case in Selenium | Selenium Tutorial | Selenium Training | Edureka

  • 1. Copyright © 2018, edureka and/or its affiliates. All rights reserved.
  • 2. Copyright © 2018, edureka and/or its affiliates. All rights reserved. Topics for Today’s Selenium Training 1. Why Use Selenium? 2. What is Selenium? 3. Versions and Suite of Tools. 4. How to Set-up Selenium? 5. Hands-on!
  • 3. Copyright © 2018, edureka and/or its affiliates. All rights reserved. Why Use Selenium?
  • 4. Copyright © 2018, edureka and/or its affiliates. All rights reserved. Why Use Selenium? Beating the tedious challenges of manual testing is the obvious reason behind using automated tools. And, here’s why Selenium is the best choice: Being Open-Source, Selenium is available for free. Selenium works good with any Operating System. Selenium lets you perform tests on any Web Browser. Selenium supports multiple Programming Languages.
  • 5. Copyright © 2018, edureka and/or its affiliates. All rights reserved. Selenium vs. its Counterparts There are several tools to test other types of applications, but testing of dynamic web applications is done best with Selenium. Features HP QTP IBM RFT TestComplete Selenium License Required Required Required Open Source Cost High High High Free Customer support Yes Yes Yes Yes; Open source community Coding skills Low Low High Very High Environment support Only Windows Only Windows Windows only (7, Vista, Server 2008 or later OS) Windows, Linux, Mac Language support VB Script Java and C# VB Script, JS Script, Delphi Script, C++ & C# Java, C#, Ruby, Python, Perl & PHP
  • 6. Copyright © 2018, edureka and/or its affiliates. All rights reserved. What is Selenium?
  • 7. Copyright © 2018, edureka and/or its affiliates. All rights reserved. What is Selenium? “Selenium is an open-source tool that can automate almost any web browser. ”
  • 8. Copyright © 2018, edureka and/or its affiliates. All rights reserved. What is Selenium? “Selenium is an open-source tool that can automate almost any web browser. ” So many test cases, so much work..... So much stress !!!!!!
  • 9. Copyright © 2018, edureka and/or its affiliates. All rights reserved. What is Selenium? “Selenium is an open-source tool that can automate almost any web browser. ” So many test cases, so much work..... So much stress !!!!!! Testing with Selenium has made life so relaxing !!
  • 10. Copyright © 2018, edureka and/or its affiliates. All rights reserved. What is Selenium? “Selenium is an open-source tool that can automate almost any web browser. ” ➢ Selenium can only be used to test web applications. ➢ Selenium is fast and easy to use even with large sets of data, and has a guaranteed accuracy. ➢ Selenium directly runs scripts for any web browser to automate the web application and test it. So many test cases, so much work..... So much stress !!!!!! Testing with Selenium has made life so relaxing !!
  • 11. Copyright © 2018, edureka and/or its affiliates. All rights reserved. Versions and Suite of Tools
  • 12. Copyright © 2018, edureka and/or its affiliates. All rights reserved. Versions and Suite of Tools As of April – 2018, the latest release of the tool is Selenium Version 3.12.0. The Selenium suite comprised the following four components: Selenium RC, however, was merged with WebDriver and launched anew as Selenium WebDriver with better functionalities.
  • 13. Copyright © 2018, edureka and/or its affiliates. All rights reserved. Versions and Suite of Tools Selenium Version 1 Selenium Version 2 Selenium Version 3 Selenium IDE Selenium IDE Selenium IDE Selenium Grid Selenium Grid Selenium Grid Selenium RC Selenium WebDriver Selenium WebDriver WebDriver MERGED IMPROVED
  • 14. Copyright © 2018, edureka and/or its affiliates. All rights reserved. How to Set-up Selenium?
  • 15. Copyright © 2018, edureka and/or its affiliates. All rights reserved. How to Set-up Selenium? The following three software are prerequisite to begin using Selenium. I. Java → Programming Language to write scripts II. Eclipse → Environment to compile and run scripts III. Selenium → Framework for testing web applications Let’s get started on installing and setting them up →
  • 16. Copyright © 2018, edureka and/or its affiliates. All rights reserved. How to Set-up Selenium? Step 1: Installing Java ✓ Download and install the latest release of the Java Platform, Standard Edition Development Kit from the following link:- http://www.oracle.com/technetwork/java/javase/downloads/index.html
  • 17. Copyright © 2018, edureka and/or its affiliates. All rights reserved. How to Set-up Selenium? ✓ After Java is installed, we’ll need to set Environment Variables to use JDK with Eclipse. ✓ Right click on My PC →Go to Properties →Go to Advanced System Settings →System Properties window pops up →Click on Environment Variables under the Advanced tab. ✓ Environment Variables window pops up →Click on New under User variables. ✓ Under the Edit User Variable window that pops up, set the Variable name as Path and Variable value as the location of the bin folder inside the JDK folder on your system. Similarly, create another variable with the name JAVA_HOME and set its values as the location of the JDK folder.
  • 18. Copyright © 2018, edureka and/or its affiliates. All rights reserved. How to Set-up Selenium? Step 2: Installing Eclipse ✓ Download and install the latest release for Eclipse from the following link: https://www.eclipse.org/downloads/
  • 19. Copyright © 2018, edureka and/or its affiliates. All rights reserved. How to Set-up Selenium? Step 3: Download Selenium JAR Files ✓ Open the link given below to download the JAR files for Selenium: http://selenium-release.storage.googleapis.com/index.html ✓ Select the version that you want to use.
  • 20. Copyright © 2018, edureka and/or its affiliates. All rights reserved. How to Set-up Selenium? ✓ Download the JAR files (selenium-server-3.9.1.zip & selenium-server-standalone-3.9.1.jar for version 3.9) from the version that you have selected.
  • 21. Copyright © 2018, edureka and/or its affiliates. All rights reserved. How to Set-up Selenium? Step 4: Configuring Eclipse for Selenium ✓ Open Eclipse and set a path for your workplace directory in the Eclipse Launcher window and click Launch.
  • 22. Copyright © 2018, edureka and/or its affiliates. All rights reserved. How to Set-up Selenium? ✓ After Eclipse is launched, go to File →New →Java Project.
  • 23. Copyright © 2018, edureka and/or its affiliates. All rights reserved. How to Set-up Selenium? ✓ Enter Project Name →Selenium Project. ✓ Click Finish.
  • 24. Copyright © 2018, edureka and/or its affiliates. All rights reserved. How to Set-up Selenium? ✓ Under the Package Explorer tab, right click on the name of your project (Selenium Project), go to Build Path →Configure Build Path.
  • 25. Copyright © 2018, edureka and/or its affiliates. All rights reserved. How to Set-up Selenium? ✓ Click on the Libraries tab, select Classpath then click on Add External JARs.
  • 26. Copyright © 2018, edureka and/or its affiliates. All rights reserved. How to Set-up Selenium? ✓ Find all the JAR files that we downloaded, select them and click on Open. ✓ After you’re done adding all the JAR files, Click on Apply and Close.
  • 27. Copyright © 2018, edureka and/or its affiliates. All rights reserved. Hands-on in Selenium!
  • 28. Copyright © 2018, edureka and/or its affiliates. All rights reserved. Hands-on in Selenium Now that the prerequisites have all been installed and Selenium has been configured for the Eclipse IDE, how about we automate and test Gmail using Google Chrome?
  • 29. Copyright © 2018, edureka and/or its affiliates. All rights reserved. Session In A Minute Why Use Selenium? Versions and Suite of Tools What Is Selenium? How to Set-up Selenium?
  • 30. Copyright © 2018, edureka and/or its affiliates. All rights reserved. WebDriver vs. IDE vs. RC ➢ Data Warehouse is like a relational database designed for analytical needs. ➢ It functions on the basis of OLAP (Online Analytical Processing). ➢ It is a central location where consolidated data from multiple locations (databases) are stored.