mirror of
https://github.com/encounter/phantomjs.git
synced 2026-03-30 11:35:11 -07:00
9 lines
132 B
JavaScript
9 lines
132 B
JavaScript
var t = 10;
|
|
while (t > 0) {
|
|
console.log(t);
|
|
phantom.sleep(1000);
|
|
t = t - 1;
|
|
}
|
|
console.log('BLAST OFF');
|
|
phantom.exit();
|