NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript==
// @name FAST.COM auto test
// @version 0.10
// @description auto test
// @match *://fast.com/*
// @grant none
// @run-at document-start
// @license MIT
// ==/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);
})();