fire event
Fire an event on a browser element.
Name | Description | Type | Modifier |
---|---|---|---|
window | TA name of the window. | Interface Entity | None |
element | TA name of the element | Interface Element | None |
event | Type of event to fire on the specified element. Allowable values:
| String | None |
None
This action may be used within the following project items: test modules and user-defined actions.
window element event
fire event #web txt_first name ondblclick
 
window
check window exists warning_dlg
 
window
close window warning_dlg
- event argument:
- Names for allowable event values are derived from standards of the W3C consortium, and other standard browser events are also supported.
- Note that, in the context in which they are being used, the allowable names for event types (onclick, onmousedown, etc.) can be a bit misleading. fire event does not, for example, specify an action to take in response to an onclick event, it simply issues the event (a mouse click) itself.
- This action supports the <ignore> modifier. If the string
<ignore>
is present as the value of any of the arguments, or any argument contains an expression that evaluates to<ignore>
, the action is skipped during execution.