During JS crawling, the page script containing setTimeout and setInterval do not receive the provided arguments.
The signature of the function should be (since the delay is removed):
var intervalID = scope.setInterval(func[, param1, param2, ...]);
but actually is:
var intervalID = scope.setInterval(func);
During JS crawling, the page script containing
setTimeoutandsetIntervaldo not receive the provided arguments.The signature of the function should be (since the delay is removed):
var intervalID = scope.setInterval(func[, param1, param2, ...]);but actually is:
var intervalID = scope.setInterval(func);