|
Description
The script measures file download times from a site on an hourly basis
with reports produced
over a 24-hour period.
Result Files Available
The data given in the table provides access to the following information:
Comments
This script (shown below) starts in www.silverdollar.com
and then clicks "Download" to download the executable.
The script handles the modal dialogs, accepts the file destination, confirms OK to overwrite
the prior download, and synchronizes on "Download Complete".
The time chart shows the total elapsed time of the script from the eValid Timing Log
(event numbers in the chart correspond to the left-hand side of this table).
Script
Here is the eValid script that was used to produce the data above.
# # Recording by eValid V5 # (c) Copyright 2005 by eValid, Inc. # Recording made on: Microsoft Windows 2000 SP3 (IE 6.0), HostName "" # ProjectID "IPmarketing" GroupID "Monitor1" TestID "download" LogID "AUTO" ScreenSize 1024 768 FontSize 0 InitLink "http://www.silverdollar.com/" Wait 9629 FollowLink 0 20 "" "http://www.silverdollar.com/common/sd-download.asp?id=index&act=" \ "{59755E21-344B-40B7-8297-5E9E93B87033}&pkg=lp" "" Wait 7629 ResetTimer # ModalDialogWait n - wait 'n' msecs on a Modal Dialog ModalDialogWait 1000 # ModalDialogEnter - close a Modal Dialog by sending Enter message to active button ModalDialogEnter # ModalDialogWait n - wait 'n' msecs on a Modal Dialog ModalDialogWait 1000 # ModalDialogTab 0|1 - Tab forward (0) or back (1) on a Modal Dialog ModalDialogTab 0 # ModalDialogTab 0|1 - Tab forward (0) or back (1) on a Modal Dialog ModalDialogTab 0 # ModalDialogEnter - close a Modal Dialog by sending Enter message to active button ModalDialogEnter # ModalDialogWait n - wait 'n' msecs on a Modal Dialog ModalDialogWait 1000 # ModalDialogTab 0|1 - Tab forward (0) or back (1) on a Modal Dialog ModalDialogTab 0 # ModalDialogWait n - wait 'n' msecs on a Modal Dialog ModalDialogWait 1000 # ModalDialogEnter - close a Modal Dialog by sending Enter message to active button ModalDialogEnter # ModalDialogWait n - wait 'n' msecs on a Modal Dialog ModalDialogWait 1000 # Assume never faster than 60 secs... Wait 60000 #DWindowSet 1 "Download complete" 389 287 374 261 xySyncRect 1 444 329 131 41 1414854 ElapsedTime # Clean up by closing the download window Wait 4559 # ModalDialogEnter - close a Modal Dialog by sending Enter message to active button ModalDialogEnter #WindowClose 1 # End of script. |