Содержание

GetElements

Gets an array of elements in the active tab, satisfying the specified conditions

Syntax

function GetElements(aTagName:string='*'; aAttributes,aValues:array of string=[]; aStrong:boolean=false; aAntiAttributes,aAntiValues:array of string=[]; aAntiStrong:boolean=false):TCSElements;

Parameters

Returned value

Notes

Examples

  1. //Loading page http://www.thetimes.co.uk/
    LoadURI('http://www.thetimes.co.uk/');
    //Get all elements with tag "a" (all links)
    var elements:=GetElements('a');