ResultVariable
When adding an action with the script editor, you can use this field to specify a variable that the return value will be stored in.
Web.LoadURL
OverviewExamples
Web.LoadURL ( string ObjectName,
string URL )
De s cr ip t ion
Loads a local file or web-based URL into a web object.
Note: You cannot load a file or URL into a disabled web object. You must enable the object before loading the URL using the Web.SetEnabled action.
Note: If you want to use a named anchor on a relative path, it will fail. You must use the full path in order for this to work. For example, the following will not work:
Web.LoadURL("Web1", "AutoPlay\\Docs\\index.html#news");
It must be specified as:
Web.LoadURL("Web1", _SourceFolder.."\\AutoPlay\\Docs\\index.html#news");
P arame t er s
ObjectName
(string) The name of the web object.