Description
To execute actions on HTML elements (JSOUP syntaxe)
Parameters
domId: The DOM id - string - required
jsonDoc: The JSON document id - string - required
searchType: The search type (TAG | ATTRIBUTE | SELECT | CLASS | ATTRIBUTE_VALUE | CONTAINING_OWN_TEXT | CONTAINING_TEXT | OWN_TEXT_REGEX | TEXT_REGEX | ATTRIBUTE_STARTING | ATTRIBUTE_VALUE_CONTAINING | ATTRIBUTE_VALUE_ENDING | ATTRIBUTE_VALUE_REGEX | ATTRIBUTE_VALUE_NOT | ATTRIBUTE_VALUE_STARTING) - string - required
key: The key - string - required
value: The value - string - required
mqlActions: The MQL actions - string - required
admin
html parse "domId1" "jsonDoc1" "TAG" "a" "" {
#Here your MQL source code ...;
json select "jsonDoc1" "/text";
json select "jsonDoc1" "/html";
json select "jsonDoc1" "/formVal";
json select "jsonDoc1" "/tagName";
json select "jsonDoc1" "/id";
json select "jsonDoc1" "/nodeName";
json select "jsonDoc1" "/outerHtml";
json select "jsonDoc1" "/ownText";
json select "jsonDoc1" "/wholeText";
json select "jsonDoc1" "/attributes/...";
json select "jsonDoc1" "/classNames[0]";
};
mentdb
1