BACK | MQL Functions | MentDB Weak |
admin
html load_from_str "domId1" "...";
mentdb
1
admin
html load_from_url "domId1" "https://www.tripadvisor.fr/Hotel_Review-g298470-d1473791-Reviews-LUX_Saint_Gilles-Saint_Gilles_Les_Bains_Arrondissement_of_Saint_Paul.html" "get" 5000 "{}" "{}" "{}";
mentdb
1
admin
html close "domId1";
mentdb
1
admin
html close_all;
mentdb
2
admin
html show
mentdb
["domId1"];
admin
html exist "domId1"
mentdb
1
admin
html element "domId1" "jsonDoc1" "id"
mentdb
1
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
admin
json parse_obj "keyId" "/" "[key]" "[val]" { #Here your MQL source code ...; log trace (concat [key] "=" [val]); };
mentdb
admin
json parse_array "keyId" "/" "[val]" { #Here your MQL source code ...; [val]; };
mentdb