Below is a complete list of the user defined functions available in AutoIt. Click on a user defined function name for a detailed description.
When using them you need to add a #include <IE.au3>.
| User Defined Function | Description |
|---|---|
| _IE_Example | Display a new browser window pre-loaded with documents to be used in IE.au3 examples or your own testing |
| _IE_Introduction | Display introductory information about IE.au3 in a new browser window |
| _IE_VersionInfo | Returns an array of information about the IE.au3 version |
| _IEAction | Perform any of a set of simple actions on the Browser |
| _IEAttach | Attach to the specified instance of Internet Explorer where the search string sub-string matches (based on the selected mode) |
| _IEBodyReadHTML | Returns the HTML inside the <body> tag of the document |
| _IEBodyReadText | Returns the Text inside the <body> tag of the document |
| _IEBodyWriteHTML | Replaces the HTML inside the <body> tag of the document |
| _IECreate | Create an Internet Explorer Browser Window |
| _IECreateEmbedded | Create a Webbrowser object suitable for embedding in an AutoIt GUI with GUICtrlCreateObj() |
| _IEDocGetObj | Given any DOM object, returns a reference to the associated document object |
| _IEDocInsertHTML | Inserts HTML Text in or around an element |
| _IEDocInsertText | Inserts Text in or around an element |
| _IEDocReadHTML | Returns the full HTML source of a document |
| _IEDocWriteHTML | Replaces the HTML for the entire document |
| _IEErrorNotify | Specifies whether IE.au3 automatically notifies of Warnings and Errors (to the console) |
| _IEFormElementCheckBoxSelect | Set the value of a specified form element |
| _IEFormElementGetCollection | Returns a collection object variable representing all Form Elements within a given Form |
| _IEFormElementGetObjByName | Returns an object reference to a Form Element by name |
| _IEFormElementGetValue | Returns the value of a given Form Element |
| _IEFormElementOptionSelect | Set the value of a specified form element |
| _IEFormElementRadioSelect | Set the value of a specified form element |
| _IEFormElementSetValue | Set the value of a specified Form Element |
| _IEFormGetCollection | Returns a collection object variable representing the Forms in the document or a single form by index |
| _IEFormGetObjByName | Returns an object reference to a Form by name |
| _IEFormImageClick | Simulate a mouse click on an <input type=image>. Match by sub-string match of alt text, name or src |
| _IEFormReset | Reset a specified Form setting the values back to their loaded defaults |
| _IEFormSubmit | Submit a specified Form |
| _IEFrameGetCollection | Returns a collection object containing the frames in a FrameSet or the iFrames on a normal page or a single Frame or iFrame by index |
| _IEFrameGetObjByName | Returns an object reference to a Frame or iFrame by name |
| _IEGetObjById | Returns an object variable by id |
| _IEGetObjByName | Returns an object variable by name |
| _IEHeadInsertEventScript | Inserts a Javascript into the Head of the document |
| _IEImgClick | Simulate a mouse click on an image. Match by sub-string match of alt text, name, or src |
| _IEImgGetCollection | Returns a collection object variable representing the IMG tags in the document or a single image by index |
| _IEIsFrameSet | Checks to see if the specified Window contains a FrameSet |
| _IELinkClickByIndex | Simulate a mouse click on a link by 0-based index (in source order) |
| _IELinkClickByText | Simulate a mouse click on a link with text sub-string matching the string provided |
| _IELinkGetCollection | Returns a collection object containing all links in the document or a single link by index |
| _IELoadWait | Wait for a browser page load to complete before returning |
| _IELoadWaitTimeout | Retrieve or set the current value in milliseconds _IELoadWait() will try before timing out |
| _IENavigate | Directs an existing browser window to navigate to the specified URL |
| _IEPropertyGet | Returns a select property of the Browser or DOM element |
| _IEPropertySet | Set a select property of the Browser or DOM element |
| _IEQuit | Close the browser and remove the object reference to it |
| _IETableGetCollection | Returns a collection object variable representing all the tables in a document or a single table by index |
| _IETableWriteToArray | Reads the contents of a Table into an array |
| _IETagNameAllGetCollection | Returns a collection object all elements in the document or document hierarchy in source order or a single element by index |
| _IETagNameGetCollection | Returns a collection object of all elements in the object with the specified TagName or a single element by index |