Skip to content
Daniele Linguaglossa edited this page Jan 8, 2018 · 1 revision

Html

Html is the class used to interact mainly with HTML tags, it's used to check for changes in page.

Methods

Below the list of methods:

countResponseTags

countResponseTags is the method used to count the number of tags in a HTML page, it can be used to check for XSS Injection, below an example:

// Signature
// Html.countResponseTags(http.Response * response)

function test(base_request) {
  var response = Http.sendRequest(request);
  var tags = Html.countResponseTags(response);
}
Clone this wiki locally