14
Selenium IDE Performs automated testing

Selenium IDE

Embed Size (px)

DESCRIPTION

Jaguar Design Studio January 2013 Cave Lunch By Renee Wall

Citation preview

Page 1: Selenium IDE

Selenium IDEPerforms automated testing

Page 2: Selenium IDE

Selenium, itself

Selenium is a suite of tools used to automate browsers for testing and other tasks.

Selenium runs in many browsers and operating systems, and can be controlled by many programming languages and testing frameworks.http://seleniumhq.org/about/platforms.jsp

Page 3: Selenium IDE

The part I'm going to focus on is Selenium IDE which is a Firefox add-on that performs simple record-and-playback of interactions with the browser.

Page 4: Selenium IDE

This complete IDE allows you to record, edit, and debug tests. You can then run the perfected tests repeatedly, or a series of tests.More Features:

● Easy record and playback● Intelligent field selection will use IDs,

names, or XPath as needed● Autocomplete for all common Selenium

commands● Walk through tests● Debug and set breakpoints● Save tests as HTML, Ruby scripts, or

any other format● Support for Selenium user-extensions.js

file● Option to automatically assert the title

of every page● Easy customization through plugins

Page 5: Selenium IDE

A good time to use it would be...

Page 6: Selenium IDE

As an example to start, I am going to create a simple test of logging in.

Step 1: Click record button

Page 7: Selenium IDE

Step 2: Perform actions normally

Navigate to site

Login

Success!

Page 8: Selenium IDE

You can also edit the command, target, and value fields if they weren't captured correctly, but most of the time we won't have to use too many manual commands.

Page 9: Selenium IDE

An easy way to confirm you're at the place you expect is to add a verify TextPresent command.

Page 10: Selenium IDE
Page 11: Selenium IDE

You can create multiple tests, such as login, add single award, and then sign out-- all automated!

This is known as a test suite.

Page 12: Selenium IDE

If all goes smoothly, everything will appear green!

The idea is to build large test suites to make sure everything still works. We will save test suites in project repository.

Make sure the tests are in order, then click run all tests.

Page 14: Selenium IDE

There is lots more to it(that I don't understand)...

And you might have questions(that I don't have answers to)...

But we will figure out as we go what it is most useful for(or you can experiment further on your own)