![]() |
Web Development »
Applications & Tools »
Tools with source code
Intermediate
Web Replay 2 - Automated Web TestingBy Emmanuel KartmannThis article presents an automated software testing tool for web applications (Internet/Intranet) based on Internet Explorer. |
C++, C#, Javascript, Windows, .NET 1.0, ASP, Dev, QA
|
|
Advanced Search Add to IE Search |
|
|
|
||||||||||||||||
Web Replay 2 is an automated software testing tool for Web applications. It helps in detecting bugs and regressions in web applications by replaying scenarios to test the application. Using Web Replay 2, you can automatically navigate to a web page, fill in form fields, click on the Submit (OK) button, and then continue to another web page. To use Web Replay 2, build a JavaScript Scenario File (see below), type the name of the file in the edit box and click on the Replay button.
Web Replay 2 is based on Microsoft's Internet Explorer 6.0, DHTML behaviors and JavaScript (unlike Web Replay 1 that was implemented in C++/COM).
Web Replay 2 uses a FRAMESET with a DHTML behavior attached to the onload event of the bottom frame to execute some JavaScript code to play back a scenario. It's implemented in script only (client-side JavaScript running in Internet Explorer and server-side JavaScript running in ASP pages).
As a consequence, Web Replay 2 gives you full access to the Microsoft Internet Explorer Document Object Model (DOM) within your scenario files. And since the scenario is a JavaScript program, you can implement virtually any test case.
Using the function WebReplay_Navigate(), you can call the server-side code to implement pre-conditions and post-conditions on your test cases (e.g. setting up a database or checking whether the created/modified records are correct).
Web Replay provides the following features:
document.write"), Web Replay 2 can still play back a given scenario - it uses a timeout mecanism to find the dynamically-generated controls.
window.alert and window.confirm methods with custom implementations which handles scenario playback.
A JavaScript scenario file consists of a definition of a function named WebReplayScenario(); it looks like this:
function WebReplayScenario()
{
switch (gintState)
{
case 0:
// Open a web page (LOCALHOST only due
// to cross-site scripting limitations)
"http://perso.wanadoo.fr/replay.grasse/freeware/WebReplay2/WebReplay2/WebReplaySDK.htm#WebReplay_Navigate" target=_blank>WebReplay_Navigate(
"http://localhost/WebReplay2/WebReplay2Scenario1_step1.asp");
break;
case 1:
// Type in some text in a form field
"http://perso.wanadoo.fr/replay.grasse/freeware/WebReplay2/WebReplay2/WebReplaySDK.htm#WebReplay_SimulateTextInput" target=_blank>WebReplay_SimulateTextInput("Text1", "NewValue1");
break;
case 2:
// Submit form by clicking on a submit button
"http://perso.wanadoo.fr/replay.grasse/freeware/WebReplay2/WebReplay2/WebReplaySDK.htm#WebReplay_SimulateHTMLElementClick" target=_blank>WebReplay_SimulateHTMLElementClick("OK");
break;
default:
// Automatically exit from scenario
"http://perso.wanadoo.fr/replay.grasse/freeware/WebReplay2/WebReplay2/WebReplaySDK.htm#WebReplay_SetStateNext" target=_blank>WebReplay_SetStateNext(-1);
break;
}
}
This function implements a state-machine based on the global variable gintState; every time the requested action is successful (e.g. clicking on a button), the state is increased by 1 (state starts at 0). The state is set to -1 when the scenario is finished. In case of any error, the state is set to -2.
The utility function WebReplayScenarioAuto() can ease the process of building scenario - its input is a simple array of states (the state-machine is already implemented - no need to manage the switch and state numbers):
function WebReplayScenario()
{
"http://perso.wanadoo.fr/replay.grasse/freeware/WebReplay2/WebReplay2/WebReplaySDK.htm#WebReplayScenarioAuto" target=_blank>WebReplayScenarioAuto(
[
// State 1: Navigate to the test Page
// (uses an anonymous function definition)
[ null, function () { "http://perso.wanadoo.fr/replay.grasse/freeware/WebReplay2/WebReplay2/WebReplaySDK.htm#WebReplay_Navigate" target=_blank>
WebReplay_Navigate(
"http://localhost/WebReplay2/WebReplay2Scenario1_step1.asp") }],
// State 2: Type in some text in a form field named Text1
[ "Text1", "NewValue1" ],
// State 3: Submit form by clicking on a submit button named "OK"
[ "OK" ],
// State 4: Type in some text in a form field named Text21
[ "Text1", "NewValue2" ],
// State 5: Submit form by clicking on a submit button named "OK"
[ "OK" ],
// State 6: Wait for next page's title:
// <h2>Form Submit Debugger</h2>
// Set state to -1 (end) when the control is found.
[ null, function () { "http://perso.wanadoo.fr/replay.grasse/freeware/WebReplay2/WebReplay2/WebReplaySDK.htm#WebReplay_WaitForHTMLControl" target=_blank>
WebReplay_WaitForHTMLControl("h2", "innerText",
"Form Submit Debugger", -1) } ]
]
);
}
A complete JavaScript SDK is available to build the scenario files; and of course, you can extend the SDK with your own JavaScript code...
To build a scenario file, you need to basically know the names (or ids) of the HTML elements within your web application (using the function WebReplay_FindHTMLControlWithName). Alternatively, you can use the content (text) of a control to interact with it (using functions WebReplay_FindAnchorWithText, WebReplay_FindButtonWithText, or WebReplay_FindHTMLControlFromText).
You can interact with the HTML controls using these three functions:
Checkbox control.
Although it's a complete re-write (v2.1 has nothing to do with Web Replay v1.0), the TODO list is still long.
| You must Sign In to use this message board. | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
General
News
Question
Answer
Joke
Rant
Admin
|
PermaLink |
Privacy |
Terms of Use
Last Updated: 5 Sep 2005 Editor: Rinish Biju |
Copyright 2005 by Emmanuel Kartmann Everything else Copyright © CodeProject, 1999-2009 Web21 | Advertise on the Code Project |