IETagEvent


 

IETagEvent>URL,Tagname,Index,Event,Value

 

Interacts with a given tag in the IE window containing the given URL.

 

URL: The current URL of the IE window to extract from.  This can be a substring.  If using a substring and you have multiple IE windows open try to be unique to ensure a correct match.

 

Tagname: The name of the tag. E.g. "A", "INPUT" or "DIV". This can be any tag type.

 

Index: The numeric index (starting at 1) of the tag.  Use IEGetTags to return a list of tags and identify the index you need.

 

Event: Presently supported: "click" and "focus"

 

Value: To set the value of an input field specify the new value here.

 

To determine the Index look at the source of the page or use the IEGetTags function.  If the index changes use IEGetTags and a loop with RegEx/EasyPatterns/Position to search each tag to determine which is required based on some identifying attributes.

 

See Also: IEGetTags, IEGetTagsByAttrib, IETagEventByAttrib, IEWait

 

For example see IEGetTags