• No results found

Test automation supports:

In document Selenium (Java) (Page 70-75)

• Frequent regression testing

• Rapid feedback to developers during the development process

• Virtually unlimited iterations of test case execution

• Customized reporting of application defects

• Support for Agile and eXtreme development methodologies

• Disciplined documentation of test cases

• Finding defects missed by manual testing

5. Test Automation for Web Applications?

Many, perhaps most, software applications today are written as web-based applications to be run in an Internet browser. The effectiveness of testing these applications varies widely among companies and organizations. In an era of

continuously improving software processes, such as eXtreme programming (XP) and Agile, it can be argued that disciplined testing and quality assurance practices are still underdeveloped in many organizations. Software testing is often conducted

manually. At times, this is effective; however there are alternatives to manual testing that many organizations are unaware of, or lack the skills to perform. Utilizing these alternatives would in most cases greatly improve the efficiency of their software development by adding efficiencies to their testing. Test automation is often the answer. Test automation means using a tool to run repeatable tests against the target application whenever necessary.

3. Introducing Selenium

Selenium is a robust set of tools that supports rapid development of test automation for web-based applications. Selenium provides a rich set of testing functions

specifically geared to the needs of testing of a web application. These operations are highly flexible, allowing many options for locating UI elements and comparing

expected test results against actual application behavior. One of Selenium’s key features is the support for executing one’s tests on multiple browser platforms.

4. Selenium Components

Selenium is composed of three major tools. Each one has a specific role in aiding the development of web application test automation.

4.1 Selenium-IDE

Selenium-IDE is the Integrated Development Environment for building Selenium test cases. It operates as a Firefox add-on and provides an easy-to-use interface for developing and running individual test cases or entire test suites. Selenium-IDE has a recording feature, which will keep account of user actions as they are performed and store them as a reusable script to play back. It also has a context menu (right-click) integrated with the Firefox browser, which allows the user to pick from a list of assertions and verifications for the selected location. Selenium-IDE also offers full editing of test cases for more precision and control. Although Selenium-IDE is a

Firefox only add-on, tests created in it can also be run against other browsers by using Selenium-RC and specifying the name of the test suite on the command line.

4.2 Selenium-RC (Remote Control)

Selenium-RC allows the test automation developer to use a programming language for maximum flexibility and extensibility in developing test logic. For instance, if the application under test returns a result set, and if the automated test program needs to run tests on each element in the result set, the programming language’s iteration support can be used to iterate through the result set, calling Selenium commands to run tests on each item.

Selenium-RC provides an API (Application Programming Interface) and library for each of its supported languages: HTML, Java, C#, Perl, PHP, Python, and Ruby. This ability to use Selenium-RC with a highlevel programming language to develop test cases also allows the automated testing to be integrated with a project’s automated build environment.

4.3 Selenium-Grid

Selenium-Grid allows the Selenium-RC solution to scale for large test suites or test suites that must be run in multiple environments. With Selenium-Grid, multiple instances of Selenium-RC are running on various operating system and browser

configurations. Each of these when launching register with a hub. When tests are sent to the hub they are then redirected to an available Selenium-RC, which will launch the browser and run the test. This allows for running tests in parallel, with the entire test suite theoretically taking only as long to run as the longest individual test.

Selenium 1.0 and Selenium-RC.

This is the old, support platform for Selenium 1.0. It should still apply to the Selenium 2.0 release of Selenium-RC.

Browser Selenium IDE Selenium 1 (RC) Operating Systems Firefox 3 Record and playback tests Start browser, run

tests Windows, Linux,

Mac Firefox 2 Record and playback tests Start browser, run

tests Windows, Linux,

Mac IE 8 Test execution only via

Selenium RC* Start browser, run

tests Windows, Linux,

Mac IE 7 Test execution only via

Selenium RC* Start browser, run

tests Windows

IE 6 Test execution only via

Selenium RC* Start browser, run

tests Windows

Safari 4 Test execution only via

Selenium RC* Start browser, run

tests Windows

Safari 3 Test execution only via

Selenium RC* Start browser, run

tests Windows, Mac

Safari 2 Test execution only via

Selenium RC* Start browser, run

tests Windows, Mac

Opera 10 Test execution only via

Selenium RC* Start browser, run

tests Windows, Mac

Opera 9 Test execution only via

Selenium RC* Start browser, run

tests Windows, Linux,

Mac Opera 8 Test execution only via

Selenium RC* Start browser, run

tests Windows, Linux,

Mac Google

Chrome Test execution only via

Selenium RC* Start browser, run

tests Windows, Linux,

Mac Others Test execution only via

Selenium RC* Partial support

possible** As applicable

In document Selenium (Java) (Page 70-75)