clearTimeout
void clearTimeout( timerID )
Stops and clears the timeout timer with the given timer.
Parameter Description
timerID Timer to be cleared and stopped
var duration = 3000;
var myTimer = page.setTimeout("innerChangeWidth()", duration);
// do something
page.clearTimeout(myTimer);
(Available on web pages)
setInterval
number setInterval( functionName, interval )
Starts a timer that executes the given function with the given interval.
Parameter Description
functionName String containing the name of function to call
interval Interval in milliseconds
Return value
A number corresponding to the timerID.
var interval = 3000;
var myTimer = page.setInterval("innerChangeWidth()", interval);
(Available on web pages)
clearInterval
void clearInterval( timerID )
Stops and clears the interval timer with the given timer.
Parameter Description
timerID Timer to be cleared and stopped
var interval = 3000;
var myTimer = page.setInterval("innerChangeWidth()", interval);
// do something
354
HMWIN Studio |User Manual|v206 (2017-06-30) |EN|© 2014-2017 Panasonic Electric Works Europe AG
Page object methods