对于像这样的页面 https://www.converto.io/?v=EbuYMynCWV8, 我有一个 Tampermonkey 脚本可以自动执行:
它可以工作,但有时可能太快了,最后我得到了 mp3 格式的下载链接。
所以现在我想在两个步骤之间加入一个睡眠时间。测试结果是代码只完成第一步。有什么想法吗?
我的代码:
// ==UserScript==
// @name _ConverTo, Automatically select mp4
// @match https://www.converto.io/*
// @require http://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js
// @require https://gist.github.com/raw/2625891/waitForKeyElements.js
// @grant GM_addStyle
// ==/UserScript==
//- The @grant directive is needed to restore the proper sandbox.
waitForKeyElements (".format-select:has(option[value=mp4])", selectFinickyDropdown); //------ step 1,choose mp4 format------
function selectFinickyDropdown (jNode) {
var evt = new Event ("click");
jNode[0].dispatchEvent (evt);
jNode.val('mp4');
evt = new Event ("change");
jNode[0].dispatchEvent (evt);
setTimeout("secondStep()", 10000); //--- sleep 10s then step 2,click CONVERT button -------
}
function secondStep() {
waitForKeyElements (".convert-btn", clickbuttonconvert);
}
function clickbuttonconvert (jNode) {
var evt = new Event ("click");
jNode[0].dispatchEvent (evt);
}