Specifications

Event Actions
# begin loading the intranet page
event "Begin" Web BeginLoad { Level="top" URL=contains:"abc.com" }
#
# finish loading the intranet page
event "End" Web EndLoad { Level="top" }
}
failure1 "404_not-found"
{
choice # create a window, click the mouse, or press a button
{
event "CreateWindow" Windows Create {}
event "MouseClick" Windows MouseClick {}
event "ButtonPress" Windows ButtonPress {}
}
# begin loading the intranet page
event "Begin" Web BeginLoad { Level="top" URL=contains:"abc.com" }
#
# load fails due to 404 error: Not Found
event "404" Web FailedLoad {FailureCode=404}
}
Web Start Event Action
The Web Start event action indicates that the browser has initialized. This
action supports the following parameter:
ExecutableName. The name of the process
Note: You cannot use the IgnoreEvents clause for a Web Start event.
Example
transaction "IEstart"
module "IEstart"
{
event "Start1" Windows Start { ExecutableName="IEXPLORE" }
event "Start2" Web Start { ExecutableName="IEXPLORE" }
event "Start3" Web BeginLoad { ExecutableName="IEXPLORE" }
event "Start4" Windows SetTitle { }
event "Start5" Web EndLoad { ExecutableName="IEXPLORE" }
}
Web Stop Event Action
The Web Stop event action indicates that the browser has terminated. This
action supports the following parameter:
ExecutableName. The name of the process
BT Language Reference 155