Automatically click and navigate through the steps
- // ==UserScript==// @name 麻雀自动续费下单// @namespace http://tampermonkey.net/// @version 0.1// @description Automatically click and navigate through the steps// @author You// @match https://m2.spw###.com/*// @grant none// ==/UserScript==const delay = (ms) => new Promise(resolve => setTimeout(resolve, ms));(async function() {'use strict';async function clickLikes() {document.getElementsByClassName("nav-main-link-icon si si-bag")[0].click();//订阅await delay(1500);document.getElementsByClassName("btn btn-sm btn-alt-primary")[0].click();//点套餐await delay(1500);document.getElementsByClassName('btn btn-block btn-primary')[0].click();//点下单await delay(1500);document.getElementsByClassName('btn btn-block btn-primary')[0].click();//点结账}// 设置间隔时间进行点击,此处间隔为5000毫秒setInterval(clickLikes, 5000);})();