我正在寻找一种使用Greasemonkey在网页中自动填写用户名/密码的方法。
这两个标记是输入,它们没有ID
,但它们只是页面中的两个输入,这些输入在“登录”时出现。按下按钮。
我是Greasemonkey(和javascript)的初学者,我想知道如何等待这两个输入出现。
然后有两个按钮,一个' ok'并取消'按钮。好的'按钮是灰色的,使用element0.value="password"
设置输入并不是按钮。
我怎样才能使用javascript来解开它?
答案 0 :(得分:1)
问题缺少请求和必需的HTML ,但一般情况下,您会使用"Choosing and activating the right controls on an AJAX-driven site"中的技术。
类似的东西:
// ==UserScript==
// @name _YOUR_SCRIPT_NAME
// @include http://YOUR_SERVER.COM/YOUR_PATH/*
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js
// @require https://gist.github.com/raw/2625891/waitForKeyElements.js
// @grant GM_addStyle
// ==/UserScript==
/*- The @grant directive is needed to work around a design change
introduced in GM 1.0. It restores the sandbox.
*/
waitForKeyElements ("input[type='password']", logIn);
function logIn (jNode) {
var inputs = $("input");
//-- DO NOT HARDCODE LOGIN CREDENTIALS IN A SCRIPT!
$(inputs[0]).val ("username");
$(inputs[1]).val ("password");
//-- Might need to trigger a change or mouse event here.
waitForKeyElements (
"JQUERY SELECTOR FOR THE OK BUTTON IN THE ACTIVE STATE",
clickOK_Btn
);
}
function clickOK_Btn (jNode) {
triggerMouseEvent (jNode[0], "click");
}
function triggerMouseEvent (node, eventType) {
var clickEvent = document.createEvent('MouseEvents');
clickEvent.initEvent (eventType, true, true);
node.dispatchEvent (clickEvent);
}
但不要硬编码登录凭据。使用a sensitive information framework。