This IE macro object represents a collection of Element web automation objects. Each web macro object in the collection represents a native Internet Explorer web control ( IHTMLElement ). It provides properties to access IE macro objects in the collection.
var elementListObj = browserObj.FindAllElements(Search conditions);
var elementListObj = frameObj.FindAllElements(Search conditions);
var elementListObj = frameObj.FindChildrenElements(Search conditions);
var elementListObj = elementObj.FindAllElements(Search conditions);
var elementListObj = elementObj.FindChildrenElements(Search conditions);
core | Returns a reference to the parent Core IE macro object of the element list. |
item | Retrieves an Element IE macro object from the collection based on a given index. |
length | Retrieves the number of Element web macro objects in the collection. |