SlideShare a Scribd company logo
Copyright @ 2016 Disha Srivastava
Selenium
Automation Testing Tool : IDE
Copyright @ 2016 Disha Srivastava
Selenium : IDE
Automation Testing Tool
 Selenium IDE : Introduction
 Installing Selenium IDE
 Installing FireBug
 Selenium IDE Basics : Record & Replay
 Selenium IDE : Menu Bar
 Selenium IDE : Tool Bar
 Test Suite Vs Test Case
 Create a Test Suite
 Execute a Test Suite
Copyright @ 2016 Disha Srivastava
Automation Testing :
Selenium IDE
Copyright @ 2016 Disha Srivastava
Selenium : Overview
Selenium IDE
◘ Selenium IDE is a complete integrated development environment
(IDE) for Selenium tests.
◘ It’s a Firefox Add-On
◘ Provides Record & Playback functionality
◘ Scripts are recorded in Selenese
◘ Scripts can run only in Firefox
◘ Recorded Scripts can be edited manually
◘ Scripts can be exported in multiple languages
Introduction :
Copyright @ 2016 Disha Srivastava
Installing Selenium IDE
Copyright @ 2016 Disha Srivastava
◘ Open http://www.seleniumhq.org/
◘ Click on Download Selenium
Selenium IDE:
Installation & Starting
Installation :
Copyright @ 2016 Disha Srivastava
◘ Click on the current release version of the Selenium IDE
Installation :
Selenium IDE:
Installation & Starting
Copyright @ 2016 Disha Srivastava
◘ Click on ‘Add to Firefox’
Installation :
Selenium IDE:
Installation & Starting
Copyright @ 2016 Disha Srivastava
◘ Based on security settings of browser, a Firefox notification may pop
up. Click on "Allow."
◘ After completion of the download and then click "Install Now."
Installation :
Selenium IDE:
Installation & Starting
Copyright @ 2016 Disha Srivastava
◘ Once installation is completed, click "Restart Now."
Installation :
Selenium IDE:
Installation & Starting
Copyright @ 2016 Disha Srivastava
Installation :
◘ Selenium IDE can be launched in of two ways:
◘ Tools > Web Developer> Selenium IDE
◘ Ctrl+Alt+S (Shortcut)
Selenium IDE:
Installation & Starting
Copyright @ 2016 Disha Srivastava
Installing FireBug
Copyright @ 2016 Disha Srivastava
Installation :
◘ Open www.google.com
◘ Search “Download Firebug”
◘ Open link for Firefox Add-On
Firebug :
Installation & Starting
Copyright @ 2016 Disha Srivastava
Installation :
◘ Select “Add to Firefox”
Firebug :
Installation & Starting
Copyright @ 2016 Disha Srivastava
Installation :
◘ Once the Add-on is downloaded, select “Install”
Firebug :
Installation & Starting
Copyright @ 2016 Disha Srivastava
Installation :
◘ Firebug is ready to use
Firebug :
Installation & Starting
Copyright @ 2016 Disha Srivastava
Installation :
 Start Button- Firebug is activated
 Start Button- Firebug is deactivated
Firebug :
Installation & Starting
Copyright @ 2016 Disha Srivastava
Using Selenium IDE
Copyright @ 2016 Disha Srivastava
Selenium IDE :
Controls and Commands
Selenium IDE UI Menu bar
Base URL
Toolbar
Test Suite Panel
Log/ Reference/ UI-Element/
Rollup Pane
Test Case Panel
or Editor
Copyright @ 2016 Disha Srivastava
Selenium IDE :
Controls and Commands
Selenium IDE UI
 Menu Bar
 File menu
 New/Open/Save Test Suite and Test Case
 Edit menu
 Copy, paste, delete, undo, and select all operations for editing the test cases
 Options menu
 Changing of settings e.g. set the timeout value, add user-defined user
extensions and specify the format (language)
 Help menu
 Base URL
 Allows test scripts to be run across different domains
Copyright @ 2016 Disha Srivastava
Selenium IDE :
Controls and Commands
Selenium IDE UI
 Toolbar - Buttons in the tool bar are used to control the test scripts
Speed Control: controls how fast test case runs
Run All: Runs the entire test suite when a test suite with multiple test cases is loaded
Run: Runs the currently selected test. When only a single test is loaded this button and
the Run All button have the same effect
Pause/Resume: Allows stopping and re-starting of a running test case
Copyright @ 2016 Disha Srivastava
Selenium IDE :
Controls and Commands
Selenium IDE UI
 Toolbar - Buttons in the tool bar are used to control the test scripts
Allows to “step” through a test case by running it one command at a time. Use for
debugging test cases
Apply Rollup Rules: Allows repetitive sequences of Selenium commands to be grouped
into a single action
Record: Records the user’s browser actions
Reload test case
Copyright @ 2016 Disha Srivastava
Selenium IDE :
Controls and Commands
Test Suite Vs Test Case
Test Case: A single step or collection of steps to test
a condition/path or feature. It contains steps and
expected result for each step or test case.
Test Suite: Collection of test cases to test
function/feature.
A test case can be path of multiple test suites.
Copyright @ 2016 Disha Srivastava
Selenium IDE :
Controls and Commands
Create a test suite
The optional fields are a test case ID, test step or order of execution
number, related requirement(s), depth, test category, author, and check
boxes for whether the test is automatable and has been automated.
It may also contain prerequisite states or steps, and descriptions of the
following tests.
It can have any combination of Test Cases which are required for the
corresponding Testing phase.
So 2 Test Suites can actually have the same or widely different Test
Cases.
Copyright @ 2016 Disha Srivastava
Selenium IDE :
Controls and Commands
Execute a test suite
Copyright @ 2016 Disha Srivastava
 User extensions to provide advanced capabilities to IDE
 User extensions are in the form of JavaScript files
 Install user extensions by specifying absolute path in the Options dialog box.
Selenium Core extensions (user-extensions.js)
Selenium IDE extensions
Selenium IDE :
User Extensions
Copyright @ 2016 Disha Srivastava
 Useful/Popular extensions/plug-in used in Selenium IDE
Selenium IDE :
User Extensions
Name of User
Extension / plug-in
Description
File Logging Saves log messages to a file in real time at a user selectable log level
ScreenShot on Fail Take a screen shot on failure
SelBlocks
Provides javascript-like conditionals, looping, callable functions, error catching, and
JSON/XML driven parameterization.
SelBench Provides utilities for testing, validating, and benchmarking Selenium IDE scripts
Stored Variables
Viewer
Stored variables are created using the store, storeText, storeExpression and other similar
store* commands. This plugin allows you to view these variables when the test is running
Test Results
This plugin saves the results of the test execution for the test suite and included test cases
with a single click. It also allows you to export the test results for individual test cases.
Test Suite Batch
Converter
To convert one or more test suites, including their test cases, from the html format to any
other format supported by the Selenium-IDE
Copyright @ 2016 Disha Srivastava
 "Export" option allows to convert Selenium IDE test cases into file formats that can run
on Selenium RC and WebDriver
 "Export Test Case As..." will export only the currently opened test case
 "Export Test Suite As..." will export all the test cases in the currently opened test suite.
 Options > Clipboard Format allows to copy convert Selenium IDE test cases into formats
that can run on Selenium RC and WebDriver
Selenium IDE :
Exporting Test cases
Copyright @ 2016 Disha Srivastava
 Code examples of "Export”
Selenium IDE :
Exporting Test cases
Export will convert IDE instructions
to WebDriver specific code
Copyright @ 2016 Disha Srivastava
“
If you don’t like testing your Product,most
likely your customers won’t like to test it either.

More Related Content

PDF
Selenium IDE
PDF
Basics of Selenium IDE,Core, Remote Control
PPTX
Automation - web testing with selenium
PDF
Selenium IDE and Beyond
PPT
Selenium ide material (1)
PPTX
Selenium IDE
PPT
Selenium
PPTX
Selenium
Selenium IDE
Basics of Selenium IDE,Core, Remote Control
Automation - web testing with selenium
Selenium IDE and Beyond
Selenium ide material (1)
Selenium IDE
Selenium
Selenium

What's hot (20)

PPT
Selenium Primer
PPTX
Selenium test automation
PDF
Efficient Automated Test Creation With Selenium IDE Plugins
PPTX
Introduction to selenium
PPTX
Test Automation and Selenium
PDF
Selenium IDE features
ZIP
From IDE to Selenium 2
PPT
Selenium Presentation at Engineering Colleges
PDF
Automation Testing using Selenium
PPTX
Selenium ppt
PPT
Selenium (1)
ODP
Automated UI testing. Selenium. DrupalCamp Kyiv 2011
PPTX
Selenium- A Software Testing Tool
PPS
Selenium Demo
PPT
Automated Web Testing Using Selenium
PPT
Selenium Ide Tutorials
PPTX
Selenium introduction
PDF
Selenium Ide Tutorial
PPT
Selenium ppt
PPT
Selenium ppt
Selenium Primer
Selenium test automation
Efficient Automated Test Creation With Selenium IDE Plugins
Introduction to selenium
Test Automation and Selenium
Selenium IDE features
From IDE to Selenium 2
Selenium Presentation at Engineering Colleges
Automation Testing using Selenium
Selenium ppt
Selenium (1)
Automated UI testing. Selenium. DrupalCamp Kyiv 2011
Selenium- A Software Testing Tool
Selenium Demo
Automated Web Testing Using Selenium
Selenium Ide Tutorials
Selenium introduction
Selenium Ide Tutorial
Selenium ppt
Selenium ppt
Ad

Viewers also liked (16)

PDF
Selenium IDE LOCATORS
PDF
Selenium IDE
PPTX
Automation Testing by Selenium Web Driver
PPTX
Mobile Testing
PPTX
Selenium using Java
 
PPTX
Selenium IDE
PPT
Selenium ide material (2)
PPTX
An overview of selenium webdriver
PPTX
UiPath - Business Process Automation Software
PDF
Everest Group FIT matrix for Robotic Process Automation (rpa) technology
PDF
Selenium Basics Tutorial
PDF
Introduction to Test Automation - Technology and Tools
PPT
Web Test Automation with Selenium
PDF
Introduction to Test Automation
PDF
Selenium ide
PPTX
Software testing ppt
Selenium IDE LOCATORS
Selenium IDE
Automation Testing by Selenium Web Driver
Mobile Testing
Selenium using Java
 
Selenium IDE
Selenium ide material (2)
An overview of selenium webdriver
UiPath - Business Process Automation Software
Everest Group FIT matrix for Robotic Process Automation (rpa) technology
Selenium Basics Tutorial
Introduction to Test Automation - Technology and Tools
Web Test Automation with Selenium
Introduction to Test Automation
Selenium ide
Software testing ppt
Ad

Similar to Selenium IDE Introduction, Installation and Working (20)

PPTX
Automated Web Testing With Selenium
DOC
PPTX
Selenium IDE and Extensions
PPT
Selenium By Pravin Mishra
PPT
Selenium-Webdriver With PHPUnit Automation test for Joomla CMS!
PPT
Sakai10 Selenium Workshop
PPTX
[DevDay 2017] Automation Testing - Speaker: Nghia Khuong - Project Manager at...
PPT
Testing Ajax Web Applications
PDF
Selenium by using JAVA
PPT
Selenium
PDF
Selenium Tutorial
PPTX
Software testing tools (free and open source)
PDF
Softwaretestingtoolsfreeandopensourcefinal 150411221750-conversion-gate01
PPT
Steps to write Selenium
PPTX
What Is Selenium? | Selenium Basics For Beginners | Introduction To Selenium ...
PPT
Selenium
PPSX
Selenium Installation
PPTX
Selenium - Installation
Automated Web Testing With Selenium
Selenium IDE and Extensions
Selenium By Pravin Mishra
Selenium-Webdriver With PHPUnit Automation test for Joomla CMS!
Sakai10 Selenium Workshop
[DevDay 2017] Automation Testing - Speaker: Nghia Khuong - Project Manager at...
Testing Ajax Web Applications
Selenium by using JAVA
Selenium
Selenium Tutorial
Software testing tools (free and open source)
Softwaretestingtoolsfreeandopensourcefinal 150411221750-conversion-gate01
Steps to write Selenium
What Is Selenium? | Selenium Basics For Beginners | Introduction To Selenium ...
Selenium
Selenium Installation
Selenium - Installation

Recently uploaded (20)

PDF
Digital Strategies for Manufacturing Companies
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025
PPTX
L1 - Introduction to python Backend.pptx
PDF
PTS Company Brochure 2025 (1).pdf.......
PDF
Adobe Illustrator 28.6 Crack My Vision of Vector Design
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 41
PDF
Wondershare Filmora 15 Crack With Activation Key [2025
PPTX
Operating system designcfffgfgggggggvggggggggg
PDF
Which alternative to Crystal Reports is best for small or large businesses.pdf
PDF
T3DD25 TYPO3 Content Blocks - Deep Dive by André Kraus
PDF
wealthsignaloriginal-com-DS-text-... (1).pdf
PDF
Nekopoi APK 2025 free lastest update
PDF
Flood Susceptibility Mapping Using Image-Based 2D-CNN Deep Learnin. Overview ...
PPTX
Reimagine Home Health with the Power of Agentic AI​
PDF
System and Network Administration Chapter 2
PDF
How Creative Agencies Leverage Project Management Software.pdf
PDF
Upgrade and Innovation Strategies for SAP ERP Customers
PDF
Why TechBuilder is the Future of Pickup and Delivery App Development (1).pdf
PPTX
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
PDF
Raksha Bandhan Grocery Pricing Trends in India 2025.pdf
Digital Strategies for Manufacturing Companies
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025
L1 - Introduction to python Backend.pptx
PTS Company Brochure 2025 (1).pdf.......
Adobe Illustrator 28.6 Crack My Vision of Vector Design
Internet Downloader Manager (IDM) Crack 6.42 Build 41
Wondershare Filmora 15 Crack With Activation Key [2025
Operating system designcfffgfgggggggvggggggggg
Which alternative to Crystal Reports is best for small or large businesses.pdf
T3DD25 TYPO3 Content Blocks - Deep Dive by André Kraus
wealthsignaloriginal-com-DS-text-... (1).pdf
Nekopoi APK 2025 free lastest update
Flood Susceptibility Mapping Using Image-Based 2D-CNN Deep Learnin. Overview ...
Reimagine Home Health with the Power of Agentic AI​
System and Network Administration Chapter 2
How Creative Agencies Leverage Project Management Software.pdf
Upgrade and Innovation Strategies for SAP ERP Customers
Why TechBuilder is the Future of Pickup and Delivery App Development (1).pdf
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
Raksha Bandhan Grocery Pricing Trends in India 2025.pdf

Selenium IDE Introduction, Installation and Working

  • 1. Copyright @ 2016 Disha Srivastava Selenium Automation Testing Tool : IDE
  • 2. Copyright @ 2016 Disha Srivastava Selenium : IDE Automation Testing Tool  Selenium IDE : Introduction  Installing Selenium IDE  Installing FireBug  Selenium IDE Basics : Record & Replay  Selenium IDE : Menu Bar  Selenium IDE : Tool Bar  Test Suite Vs Test Case  Create a Test Suite  Execute a Test Suite
  • 3. Copyright @ 2016 Disha Srivastava Automation Testing : Selenium IDE
  • 4. Copyright @ 2016 Disha Srivastava Selenium : Overview Selenium IDE ◘ Selenium IDE is a complete integrated development environment (IDE) for Selenium tests. ◘ It’s a Firefox Add-On ◘ Provides Record & Playback functionality ◘ Scripts are recorded in Selenese ◘ Scripts can run only in Firefox ◘ Recorded Scripts can be edited manually ◘ Scripts can be exported in multiple languages Introduction :
  • 5. Copyright @ 2016 Disha Srivastava Installing Selenium IDE
  • 6. Copyright @ 2016 Disha Srivastava ◘ Open http://www.seleniumhq.org/ ◘ Click on Download Selenium Selenium IDE: Installation & Starting Installation :
  • 7. Copyright @ 2016 Disha Srivastava ◘ Click on the current release version of the Selenium IDE Installation : Selenium IDE: Installation & Starting
  • 8. Copyright @ 2016 Disha Srivastava ◘ Click on ‘Add to Firefox’ Installation : Selenium IDE: Installation & Starting
  • 9. Copyright @ 2016 Disha Srivastava ◘ Based on security settings of browser, a Firefox notification may pop up. Click on "Allow." ◘ After completion of the download and then click "Install Now." Installation : Selenium IDE: Installation & Starting
  • 10. Copyright @ 2016 Disha Srivastava ◘ Once installation is completed, click "Restart Now." Installation : Selenium IDE: Installation & Starting
  • 11. Copyright @ 2016 Disha Srivastava Installation : ◘ Selenium IDE can be launched in of two ways: ◘ Tools > Web Developer> Selenium IDE ◘ Ctrl+Alt+S (Shortcut) Selenium IDE: Installation & Starting
  • 12. Copyright @ 2016 Disha Srivastava Installing FireBug
  • 13. Copyright @ 2016 Disha Srivastava Installation : ◘ Open www.google.com ◘ Search “Download Firebug” ◘ Open link for Firefox Add-On Firebug : Installation & Starting
  • 14. Copyright @ 2016 Disha Srivastava Installation : ◘ Select “Add to Firefox” Firebug : Installation & Starting
  • 15. Copyright @ 2016 Disha Srivastava Installation : ◘ Once the Add-on is downloaded, select “Install” Firebug : Installation & Starting
  • 16. Copyright @ 2016 Disha Srivastava Installation : ◘ Firebug is ready to use Firebug : Installation & Starting
  • 17. Copyright @ 2016 Disha Srivastava Installation :  Start Button- Firebug is activated  Start Button- Firebug is deactivated Firebug : Installation & Starting
  • 18. Copyright @ 2016 Disha Srivastava Using Selenium IDE
  • 19. Copyright @ 2016 Disha Srivastava Selenium IDE : Controls and Commands Selenium IDE UI Menu bar Base URL Toolbar Test Suite Panel Log/ Reference/ UI-Element/ Rollup Pane Test Case Panel or Editor
  • 20. Copyright @ 2016 Disha Srivastava Selenium IDE : Controls and Commands Selenium IDE UI  Menu Bar  File menu  New/Open/Save Test Suite and Test Case  Edit menu  Copy, paste, delete, undo, and select all operations for editing the test cases  Options menu  Changing of settings e.g. set the timeout value, add user-defined user extensions and specify the format (language)  Help menu  Base URL  Allows test scripts to be run across different domains
  • 21. Copyright @ 2016 Disha Srivastava Selenium IDE : Controls and Commands Selenium IDE UI  Toolbar - Buttons in the tool bar are used to control the test scripts Speed Control: controls how fast test case runs Run All: Runs the entire test suite when a test suite with multiple test cases is loaded Run: Runs the currently selected test. When only a single test is loaded this button and the Run All button have the same effect Pause/Resume: Allows stopping and re-starting of a running test case
  • 22. Copyright @ 2016 Disha Srivastava Selenium IDE : Controls and Commands Selenium IDE UI  Toolbar - Buttons in the tool bar are used to control the test scripts Allows to “step” through a test case by running it one command at a time. Use for debugging test cases Apply Rollup Rules: Allows repetitive sequences of Selenium commands to be grouped into a single action Record: Records the user’s browser actions Reload test case
  • 23. Copyright @ 2016 Disha Srivastava Selenium IDE : Controls and Commands Test Suite Vs Test Case Test Case: A single step or collection of steps to test a condition/path or feature. It contains steps and expected result for each step or test case. Test Suite: Collection of test cases to test function/feature. A test case can be path of multiple test suites.
  • 24. Copyright @ 2016 Disha Srivastava Selenium IDE : Controls and Commands Create a test suite The optional fields are a test case ID, test step or order of execution number, related requirement(s), depth, test category, author, and check boxes for whether the test is automatable and has been automated. It may also contain prerequisite states or steps, and descriptions of the following tests. It can have any combination of Test Cases which are required for the corresponding Testing phase. So 2 Test Suites can actually have the same or widely different Test Cases.
  • 25. Copyright @ 2016 Disha Srivastava Selenium IDE : Controls and Commands Execute a test suite
  • 26. Copyright @ 2016 Disha Srivastava  User extensions to provide advanced capabilities to IDE  User extensions are in the form of JavaScript files  Install user extensions by specifying absolute path in the Options dialog box. Selenium Core extensions (user-extensions.js) Selenium IDE extensions Selenium IDE : User Extensions
  • 27. Copyright @ 2016 Disha Srivastava  Useful/Popular extensions/plug-in used in Selenium IDE Selenium IDE : User Extensions Name of User Extension / plug-in Description File Logging Saves log messages to a file in real time at a user selectable log level ScreenShot on Fail Take a screen shot on failure SelBlocks Provides javascript-like conditionals, looping, callable functions, error catching, and JSON/XML driven parameterization. SelBench Provides utilities for testing, validating, and benchmarking Selenium IDE scripts Stored Variables Viewer Stored variables are created using the store, storeText, storeExpression and other similar store* commands. This plugin allows you to view these variables when the test is running Test Results This plugin saves the results of the test execution for the test suite and included test cases with a single click. It also allows you to export the test results for individual test cases. Test Suite Batch Converter To convert one or more test suites, including their test cases, from the html format to any other format supported by the Selenium-IDE
  • 28. Copyright @ 2016 Disha Srivastava  "Export" option allows to convert Selenium IDE test cases into file formats that can run on Selenium RC and WebDriver  "Export Test Case As..." will export only the currently opened test case  "Export Test Suite As..." will export all the test cases in the currently opened test suite.  Options > Clipboard Format allows to copy convert Selenium IDE test cases into formats that can run on Selenium RC and WebDriver Selenium IDE : Exporting Test cases
  • 29. Copyright @ 2016 Disha Srivastava  Code examples of "Export” Selenium IDE : Exporting Test cases Export will convert IDE instructions to WebDriver specific code
  • 30. Copyright @ 2016 Disha Srivastava “ If you don’t like testing your Product,most likely your customers won’t like to test it either.