|
|
|
|
Functions
Events
MioScript Reference
|
|
Syntax
| browser.ID.HTML.get.element.content(TagName, AttributeName1, AttributeValue1, AttributeName2, AttributeValue2, TextOnly, IsInner) |
Parameters
| STRING | TagName | Name of the tag (case sensitive)
| | STRING | AttributeName1 | Filter 1: name of an attribute (case sensitive)
| | STRING | AttributeValue1 | Filter 1: value of the specified attribute (case sensitive)
| | STRING | AttributeName2 | Optional. Filter 2: name of an attribute (case sensitive)
| | STRING | AttributeValue2 | Optional. Filter 2: value of the specified attribute (case sensitive)
| | BOOL | TextOnly | Optional. Set to true if you want to ignore HTML code. Default value is false.
| | BOOL | IsInner | Optional. Set to true (default) if you don't want to include the tag itself in the result. |
Return value
| Content of the specified tag. |
Description
| The function search in the HTML document to find a tag with the specified name and attributes, and returns the content of the first occurrence. |
|
|
|