-
Notifications
You must be signed in to change notification settings - Fork 61
Html
Daniele Linguaglossa edited this page Jan 8, 2018
·
1 revision
Html
is the class used to interact mainly with HTML tags, it's used to check for changes in page.
Below the list of methods:
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);
}