|
|
|
|
|
by thih9
506 days ago
|
|
For those who want to experiment with different click speed values without clicking, web console code that clicks twice with a set timeout: setTimeout(() => document.getElementsByTagName('button')[0].click(), 1000); setTimeout(() => document.getElementsByTagName('button')[0].click(), 1200);
For those who want to test the limits of your device and your neighbors (100 clicks at once, 1s from now): for (var i = 0; i < 100; i++) { setTimeout(() => document.getElementsByTagName('button')[0].click(), 1000);}
|
|