Click here to Skip to main content
Licence 
First Posted 16 Jun 2005
Views 61,754
Downloads 1,250
Bookmarked 46 times

WebReplay - an automated software testing tool for Web applications

By Emmanuel Kartmann | 16 Jun 2005
This article presents an automated software testing tool for Web applications (Internet/Intranet) based on Internet Explorer.

1

2

3
3 votes, 42.9%
4
4 votes, 57.1%
5
4.41/5 - 7 votes
μ 4.41, σa 0.94 [?]

Click to enlarge

Introduction

Web Replay 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 WebReplay, 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, build an XML Scenario File (see below), type the name of the file in the edit box and click on the Replay button.

Background (optional)

Web Replay is based on Microsoft's WebBrowser control (Microsoft® ActiveX® control). It embeds the control into a very simple dialog-based application which loads an XML scenario file and programmatically drives the WebBrowser control (via its COM Interface IWebBrowser2) to execute the scenario.

Using the code

Web Replay provides the following features:

  • Replay scenarios from an XML file.
  • Supports every feature supported by Microsoft Internet Explorer (includes Windows Integrated Authentication).
  • Supports HTML forms, HTML input elements, HTML hyperlinks (anchors).
  • Supports two actions on HTML elements: set_value and click:
    • set_value simulates a change in the HTML element's value (input, select, etc...).
    • click simulates a mouse click on the HTML element (any element).
  • Supports unnamed HTML elements: Elements can be found with their associated value and/or innerText and/or Href.
  • Stores and reloads the last scenario file name (it uses a good old WebReplay.ini file).
  • Supports dynamically-generated Web Sites (client-side): If your web site generates HTML within the browser (using JavaScript's commands like "document.write"), Web Replay can still play back a given scenario - it uses a timeout mechanism to find the dynamically-generated controls.

Sample XML Scenario

An XML scenario file looks like this:

<?xml version="1.0" encoding="Windows-1252"?>
<web_replay>
  <scenario>
    <!-- Search something in codeproject -->
    <!-- Scenarios are divided into steps (one step per page download) -->
    <step>
      <!-- Every step can contain one or more actions -->
      <!-- Action can be of type "navigate" = 
             Web Replay will navigate to the given URL -->
      <action type="navigate" url="http://www.codeproject.com" />
    </step>
    <step>
      <!-- Action can be of type "control" = 
             Web Replay will interact with an HTML element -->
      <action type="control" 
             name="target" event="set_value" value="WebReplay" />
      <!-- This field is unnamed; but it has a specific value attribute -->
      <action type="control" name="" value="Go" event="click" />
    </step>
  </scenario>
</web_replay>

To build a scenario file, you need to basically know the names (or ids) of HTML elements within your Web Application. Alternatively, you can use an empty name and use the HTML element's value (for unnamed items).

Points of Interest

How do you test code? Well, just write a test program! Web Replay helps you with this by providing a simple way of testing you Web apps. But it's still a brand new program; the TODO list is long...

Web Replay TODO List

  • Play scenarios multiple times (even infinite loops to stress-test your Web application).
  • Use of variables/expression in scenario files (to replay scenarios that are always different).
  • Batch playback of scenario files.
  • Enhanced error detection (e.g. a scenario should fail if a given HTML pattern is not found in the HTML page).
  • Automated recording of scenario files (implement an event sink for IWebBrowser2 and record HTML elements names/id and associated event).

History

V1.0 - $Date: 2005-06-16 11:50:08 +0200 (Thu, 16 Jun 2005) $

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Emmanuel Kartmann

Web Developer

France France

Member
Fell into computer software at the age of 11, founder of 3 startups, and now manager of an independent software vendor (ISV) labelled proSDK (www.prosdk.com)... And still a freeware writer and technical article author!


Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
Generalnice PinmemberDonsw8:46 22 May '09  
GeneralCheck out this WebReplay... PinmemberJackNynguen14:01 10 Apr '08  
Generalnavigate - error Pinmembergrandmasta11:14 16 Nov '07  
GeneralInCisif.net - Web Testing With C# or VB.NET Pinmemberftorres18:17 1 Feb '07  
Generaldialog boxes PinsussAnonymous11:19 20 Jul '05  
Is it possible to automatically select certain buttons on dialog boxes that a web site initiates and/or that the web browser initiates (e.g. for a web site --- "click Yes to indicate you agree to the terms and conditions", and for a web browser --- "you are being redirected, is this ok?")
 
The latter issue isn't so bad since those can be tweaked in the registry, but the former problem I have no idea how to address. What do you think? Thanks.
GeneralRe: dialog boxes PinmemberEmmanuel Kartmann23:32 16 Aug '05  
GeneralAutomatically retreving the fields PinmemberTrappedVector4:21 24 Jun '05  
GeneralRe: Automatically retreving the fields PinmemberEmmanuel Kartmann23:47 25 Jun '05  
GeneralRe: Automatically retreving the fields PinmemberEmmanuel Kartmann23:35 16 Aug '05  
Generalselect option Pinmembervoltek6014:06 23 Jun '05  
GeneralRe: select option PinmemberEmmanuel Kartmann21:06 23 Jun '05  
GeneralRe: select option Pinmembervoltek6021:58 23 Jun '05  
Generalsome wrong in this application where i build it. Pinmemberwinart16:53 21 Jun '05  
GeneralRe: some wrong in this application where i build it. PinmemberEmmanuel Kartmann20:32 21 Jun '05  
GeneralRe: some wrong in this application where i build it. Pinmemberwinart0:13 22 Jun '05  
GeneralRe: some wrong in this application where i build it. PinmemberEmmanuel Kartmann21:09 22 Jun '05  
GeneralLook at SWExplorerAutomation PinmemberAlex Furman11:44 17 Jun '05  
GeneralRe: Look at SWExplorerAutomation PinmemberEmmanuel Kartmann3:53 20 Jun '05  
GeneralRe: Look at SWExplorerAutomation PinmemberAlex Furman7:07 20 Jun '05  
GeneralRe: Look at SWExplorerAutomation PinmemberEmmanuel Kartmann6:22 23 Jun '05  
QuestionIs that possible to use on Win CE? PinmemberPaul_Lai23:26 16 Jun '05  
AnswerRe: Is that possible to use on Win CE? PinmemberEmmanuel Kartmann23:51 16 Jun '05  
GeneralMissing file PinmemberTodd Smith13:13 16 Jun '05  
GeneralRe: Missing file PinmemberEmmanuel Kartmann21:41 16 Jun '05  
GeneralVery nice! Pinmembernetclectic6:07 16 Jun '05  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web04 | 2.5.120210.1 | Last Updated 16 Jun 2005
Article Copyright 2005 by Emmanuel Kartmann
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid