messs / FAST.COM auto test

// ==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);
})();