0% found this document useful (0 votes)
26 views

1 - Selenium Reference

Uploaded by

Aakarsh Mishra
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
26 views

1 - Selenium Reference

Uploaded by

Aakarsh Mishra
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 27

How to Download & Install Selenium IDE for

Firefox
Installation of Selenium IDE
What you need

 Mozilla Firefox
 Active Internet Connection

If you do not have Mozilla Firefox yet, you can download it


from http://www.mozilla.org/en-US/firefox/new.

Selenium IDE Works with all major versions, but we recommend to use 47.0.1 &
above as they have better stability.

Steps 1)

Launch Firefox and navigate to https://addons.mozilla.org/en-


US/firefox/addon/selenium-ide/. Click on Add to Firefox

Steps 2)

Wait until Firefox completes the download and then click "Install."
Steps 3)

Wait until the installation is completed. In the pop-up window, click "Restart Now."

Steps 4)

After Firefox has restarted, launch Selenium IDE using either of two ways:

 By pressing Ctrl+Alt+S
 By clicking on the Firefox menu button> Developer>Selenium IDE
Steps 5)

Selenium IDE should launch as shown below


Installation of Firebug
Firebug is a Firefox add-on that we will use to inspect the HTML elements of the
web application under test. It will provide us the name of the element that our
Selenese command would act upon.

Step 1

Use Firefox to navigate to Firebug's download page ( https://addons.mozilla.org/en-


US/firefox/addon/firebug/) and click on the download link.
Step 2

Wait for Firefox to complete downloading this add-on. On the dialog box that comes
after, click "Install Now."

Step 3
Wait for the installation to complete. A notification will pop-up saying, "Firebug has
been installed successfully." You can immediately close this pop-up.

Note: In case if you do not see above pop-up, no worries! This pop-up appears for a
few seconds and disappears.

You do not need to restart Firefox after installing Firebug.

Step 4

Launch Firebug by doing either of these two methods:

 Press F12
 Click on the Firebug button in the upper right corner of the Firefox window.

Step 5

Firebug should launch at the bottom of Firefox as shown below


Note: Firebug Extension is no longer under development and is deprecated as
mentioned on firebug's site

We Recommend using Firefox DevTools

You can access Firefox DevTools by using following steps

 Open Firefox
 Press Ctrl + Shift + "I"

Note: Advantage of using Firebug over DevTools is that, in FireBug, you can directly
copy the XPath of a WebElement to be used in Selenium. Hence we use it in our
tutorials

Plugins
Selenium IDE can support additional Firefox add-ons or plugins created by
other users. You can visit here for a list of Selenium add-ons available to date.
Install them just as you do with other Firefox add-ons.

By default, Selenium IDE comes bundled with 4 plugins:

1. Selenium IDE: C# Formatters

2. Selenium IDE: Java Formatters

3. Selenium IDE: Python Formatters

4. Selenium IDE: Ruby Formatters

These four plugins are required by Selenium IDE to convert Selenese into different
formats.

The Plugins tab shows a list of all your installed add-ons, together with the
version number and name of the creator of each.
User Extensions
Selenium IDE can support user extensions to provide advanced capabilities. User
extensions are in the form of JavaScript files. You install them by specifying their
absolute path in either of these two fields in the Options dialog box.

 Selenium Core extensions (user-extensions.js)


 Selenium IDE extensions
Selenium IDE (Integrated Development Environment) is the simplest tool in the
Selenium Suite. It is a Firefox add-on that creates tests very quickly through its
record-and-playback functionality. This feature is similar to that of QTP. It is
effortless to install and easy to learn.

Because of its simplicity, Selenium IDE should only be used as a prototyping tool,
not an overall solution for developing and maintaining complex test suites.

Though you will be able to use Selenium IDE without prior knowledge in
programming, you should at least be familiar with HTML, JavaScript, and the DOM
(Document Object Model) to utilize this tool to its full potential. Knowledge
of JavaScript will be required when we get to the section about the Selenese
command "runScript."

Selenium IDE supports autocomplete mode when creating tests. This feature serves
two purposes:

 It helps the tester to enter commands more quickly.


 It restricts the user from entering invalid commands.

Features of Selenium IDE


Menu Bar
It is located at the top most portion of the IDE. The most commonly used menus
are the File, Edit, and Options menus.

File menu

 It contains options to create, open, save and close tests.


 Tests are saved in HTML format.
 The most useful option is "Export" because it allows you to turn your
Selenium IDE test cases into file formats that can run on Selenium
Remote Control 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.

 As of Selenium IDE v1.9.1, test cases can be exported only to the following
formats:
 .cs (C# source code)
 .java (Java source code)
 .py (Python source code)
 .rb (Ruby source code)
Edit Menu

 It contains usual options like Undo, Redo, Cut, Copy, Paste, Delete, and
Select All.
 The two most important options are the "Insert New Command" and "Insert
New Comment".

 The newly inserted command or comment will be placed on top of the


currently selected line.
 Commands are colored black.
 Comments are colored purple.

Options menu
It provides the interface for configuring various settings of Selenium IDE.

We shall concentrate on the Options and Clipboard Format options.


Clipboard Format

 The Clipboard Format


allows you to copy a
Selenese command
from the editor and
paste it as a code
snippet.
 The format of the code
follows the option you
selected here in
Clipboard Format's list.
 HTML is the default
selection.

For example, when you choose Java/JUnit 4/WebDriver as your clipboard format,
every Selenese command you copy from Selenium IDE's editor will be pasted
as Java code. See the illustration below.

Selenium IDE Options dialog box


You can launch the Selenium IDE Options dialog box by clicking Options >
Options... on the menu bar. Though there are many settings available, we will
concentrate on the few important ones.

 Default Timeout Value. This refers to the time that Selenium has to wait for a
certain element to appear or become accessible before it generates an
error. Default timeout value is 30000ms.
 Selenium IDE extensions. This is where you specify the extensions you
want to use to extend Selenium IDE's capabilities. You can
visit http://addons.mozilla.org/en-US/firefox/and use "Selenium" as a keyword
to search for the specific extensions.
 Remember base URL. Keep this checked if you want Selenium IDE to
remember the Base URL every time you launch it. If you uncheck this,
Selenium IDE will always launch with a blank value for the Base URL.
 Autostart record. If you check this, Selenium IDE will immediately record
your browser actions upon startup.
 Locator builders. This is where you specify the order by which locators are
generated while recording. Locators are ways to tell Selenium IDE which
UI element should a Selenese command act upon. In the setup below,
when you click on an element with an ID attribute, that element's ID will be
used as the locator since "id" is the first one in the list. If that element does
not have an ID attribute, Selenium will next look for the "name" attribute since
it is second in the list. The list goes on and on until an appropriate one is
found.

Base URL Bar


 It has a dropdown menu that remembers all previous values for easy
access.
 The Selenese command "open" will take you to the URL that you
specified in the Base URL.
 In this tutorial series, we will be using http://newtours.demoaut.com as our
Base URL. It is the site for Mercury Tours, a web application maintained by
HP for web Testing purposes. We shall be using this application because it
contains a complete set of elements that we need for the succeeding topics.
 The Base URL is very useful in accessing relative URLs. Suppose that
your Base URL is set to http://newtours.demoaut.com. When you execute the
command "open" with the target value "signup," Selenium IDE will direct the
browser to the sign-up page. See the illustration below.
Toolbar
Playback Speed. This controls the speed of your Test Script Execution.
Record. This starts/ends your recording session. Each browser action is
entered as a Selenese command in the Editor.
Play entire test suite. This will sequentially play all the test cases listed in the
Test Case Pane.
Play current test case. This will play only the currently selected test case in
the Test Case Pane.
Pause/Resume. This will pause or resume your playback.
Step. This button will allow you to step into each command in your test script.
Apply rollup rules. This is an advanced functionality. It allows you to group
Selenese commands together and execute them as a single action.

Test Case Pane


 In Selenium IDE, you can
open more than one test case at a
time.
 The test case pane shows you
the list of currently opened test
cases.
 When you open a test suite, the test
case pane will automatically list
all the test cases contained in it.
 The test case written in bold font is
the currently selected test case
 After playback, each test case is
color-coded to represent if it
passed or failed.
o Green color means
"Passed."
o Red color means "Failed."
 At the bottom portion is a summary
of the number of test cases that
were run and failed.
Editor
You can think of the editor as the place where all the action happens. It is
available in two views: Table and Source.

Table View

 Most of the time, you will work on Selenium IDE using the Table View.
 This is where you create and modify Selenese commands.
 After playback, each step is color-coded.

 To create steps, type the name of the command in the "Command" text box.
 It displays a dropdown list of commands that match with the entry that you
are currently typing.
 Target is any parameter (like username, password) for a command and Value
is the input value (like tom, 123pass) for those Targets.

Source View
 It displays the steps in HTML (default) format.
 It also allows you to edit your script just like in the Table View.

Log Pane
The Log Pane displays runtime messages during execution. It provides real-time
updates as to what Selenium IDE is doing.

Logs are categorized into four types:

 Debug - By default, Debug messages are not displayed in the log panel. They
show up only when you filter them. They provide technical information about
what Selenium IDE is doing behind the scenes. It may display messages such
as a specific module has done loading, a certain function is called, or an
external JavaScript file was loaded as an extension.
 Info - It says which command Selenium IDE is currently executing.
 Warn - These are warning messages that are encountered in special
situations.
 Error - These are error messages generated when Selenium IDE fails to
execute a command, or if a condition specified by "verify" or "assert"
command is not met.
Logs can be filtered by type. For example, if you choose to select the "Error"
option from the dropdown list, the Log Pane will show error messages only.

Reference Pane
The Reference Pane shows a concise description of the currently selected
Selenese command in the Editor. It also shows the description about the
locator and value to be used on that command.

UI-Element Pane
The UI-Element is for advanced Selenium users. It uses JavaScript Object
Notation (JSON) to define element mappings. The documentation and resources
are found in the "UI Element Documentation" option under the Help menu of
Selenium IDE.

An example of a UI-element screen is shown below.


Rollup Pane
Rollup allows you to execute a group of commands in one step. A group of
commands is simply called as a "rollup." It employs heavy use of JavaScript and UI-
Element concepts to formulate a collection of commands that is similar to a
"function" in programming languages.

Rollups are reusable; meaning, they can be used multiple times within the test
case. Since rollups are groups of commands condensed into one, they contribute a
lot in shortening your test script.
An example of how the contents of the rollup tab look like is shown below.
Summary
 Selenium IDE (Integrated Development Environment) is the simplest tool in
the Selenium Suite.
 It must only be used as a prototyping tool.
 Knowledge of JavaScript and HTML is required for intermediate
topics such as executing the "runScript" and "rollup" commands.A rollup is a
collection of commands that you can reuse to shorten your test scripts
significantly.Locators are identifiers that tell Selenium IDE how to access an
element.
 Firebug (or any similar add-on) is used to obtain locator values.
 The menu bar is used in creating, modifying, and exporting test cases into
formats useable by Selenium RC and WebDriver.
 The default format for Selenese commands is HTML.
 The "Options" menu provides access to various configurations for
Selenium IDE.
 The Base URL is useful in accessing relative URLs.

 The Test Case Pane shows the list of currently opened test cases and a
concise summary of test runs.
 The Editor provides the interface for your test scripts.
 The Table View shows your script in tabular format with "Command",
"Target", and "Value" as the columns.
 The Source View shows your script in HTML format.
 The Log and Reference tabs give feedback and other useful information
when executing tests.
 The UI-Element and Rollup tabs are for advanced Selenium IDE users
only. They both require considerable effort in coding JavaScript.
 UI-Element allows you to conveniently map UI elements using JavaScript
Object Notation (JSON).

You might also like