auto test
// ==UserScript==
// @name FAST.COM auto
// @version 0.10
// @description auto test
// @match *://fast.com/*
// @grant none
// @run-at document-start
// @license MIT
// @namespace https://greasyfork.org/users/1354338
// ==/UserScript==
function restartTest(){
const button = document.getElementById("speed-progress-indicator");
if(!button )return;
if(button.className.includes("succeeded")){
console.log("restart testing")
button.click();
}
}
(function() {
setInterval(restartTest, 500);
})();