我无法为这些问题制定正确的标题,所以我将在这里描述这个想法/问题。
所以,目前我有两个任务脚本:
第一个脚本:在我们打开门户网站提供的投票弹出窗口(当时最多20张图片)之前,循环显示特定网站上的所有图片,如果他们没有被投票。
第二个脚本:在表单提交关闭弹出窗口后设置图像投票和提交表单。
这里的问题是,一段时间后弹出窗口设置验证码字段,以防止这种东西:)。 所以真正的问题是:我可以将两个脚本组合成一个并在我的循环中等待弹出窗口打开并检查验证码字段是否存在?然后我可以停止循环并告诉用户在此之后手动输入验证码并重新加载页面。目前(ofc)脚本将运行并打开弹出窗口(如何在循环中等待弹出窗口打开并加载DOM)?
呸,真的很难解释,请告诉我是否需要更多信息。
编辑:好的让我们改变它:如何在循环中打开弹出窗口并等待弹出脚本的回调,然后根据返回状态继续?
所有GM脚本:
// ==UserScript==
// @name Open image popups and vote
// @namespace Popuopener
// @description Open image popups and vote
// @include http://example.com/friend/*
// @include http://example.com/window/friend/*
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js
// ==/UserScript==
// Loop options
var start_Script = true;
var loop = 0;
// Photo rating options
var formProcessedAlready = false;
if(start_Script){
$('form[name="form_gallery"] .img img').each(function(i,e){
if($(this).closest('.object').children('.phs_voted_count').length == 0){
var string = e.src;
var nowBrake = string.substring(string.length-7,7);
var splited = nowBrake.split('/');
var urlStr = '/window/friend/gallery_view/'+splited[3]+'/'+splited[4]+'.html';
wondows = window_open(urlStr, 700, 630);
if(wondows.getElementById("vte_mark_5")){ // Trows me with wondows.getElementById is not a function
alert("Popup loaded"); // Does not getting so far
}else if(wondows.getElementsByName("captcha")[0]){
alert("Captcha inside");
return false;
}
if($('input[name="captcha"]').length > 0){
alert('Enter captcha then (F5)!');
return false;
}else{
if($('#vte_mark_5').length > 0){
$('#vte_mark_5').attr('checked', true);
$('form[name="popup_form"]').submit();
}else{
formProcessedAlready = true;
}
if(formProcessedAlready){
window.close();
}
}
}else{
loop++;
}
alert("End");
}
}
function window_open(url, width, height, name, scroll_bar, location){
_top = Math.ceil((screen.height - height)/2);
_left = Math.ceil((screen.width - width)/2);
if(scroll_bar != true){
var scroll = 'no';
}else{
var scroll = 'yes';
}
if(typeof location != "undefined" && location == true){
var location = 'yes';
}else{
var location = 'no';
}
if(name == undefined){
name = Math.round(999999 * Math.random());
}
return window.open(url, name , 'width=' + width + ',height=' + height + ',location='+ location +',status=no,toolbar=no,menubar=no,resizable=yes,scrollbars=' + scroll + ',top=' + _top + ',left=' + _left);
}
答案 0 :(得分:1)
这无异于垃圾邮件o.O但是,呃,去过那里。
wnd=window_open('etc');
if(wnd.getElementById('recaptcha_response_field')){
}else{
};
假设recaptcha是你的问题,那就是你打开弹出窗口的方式: - ?
答案 1 :(得分:1)
弹出窗口异步加载和关闭,因此“wondows.getElementById("vte_mark_5")
”之类的东西不会立即生效。您需要等待弹出窗口的加载事件。
在Greasemonkey中,您会使用类似:PopupWin.addEventListener("load",...)
的内容(无论如何,这是最佳做法,而不是onload=...
。)
同样,普通循环只会立即打开所有弹出窗口。要按顺序打开弹出窗口,请使用队列。由于您已经在使用jQuery,请切换到1.5.1版以使用jQuery's queue functions 请注意,Greasemonkey适用于GM版本0.9的jQuery 1.5.1。
~~~
假设你有一个弹出URL的数组...
var URL_Array = [ "http://jsbin.com/omuvu5/#111",
"http://jsbin.com/omuvu5/#222",
"http://jsbin.com/omuvu5/#333"
];
然后你可以建立一个队列:
var PopupQueue = $({}); //-- jQuery on an empty object - a perfect queue holder
//--- Load up the queue.
$.each (URL_Array, function (PopupNum, PopupURL) {
PopupQueue.queue ('Popups', function (NextQ_Item) {
OpenPopupFromQueue (NextQ_Item, PopupNum+1, PopupURL);
} );
} );
OpenPopupFromQueue
打开一个弹出窗口并设置打开和关闭事件处理程序...
function OpenPopupFromQueue (NextQ_Item, PopupNum, PopupURL)
{
var PopupWin = window.open (PopupURL, "_blank");
/*--- Only after the popup has loaded can we do any processing.
See PopupMain() for examples of manipulation via jQuery.
*/
PopupWin.addEventListener (
"load",
function () {
/*--- Setup the listener for when the popup has closed.
We fire the next popup from the queue, there.
*/
PopupWin.addEventListener (
"unload",
function () {
PopupClosed (NextQ_Item);
},
false
);
//--- Now process the popup, as desired.
PopupMain (PopupWin, PopupNum);
},
false
);
}
加载事件处理程序显示了如何使用主页(GM的)jQuery操作弹出窗口...
function PopupMain (PopupWin, PopupNum)
{
//--- This manipulates the main window.
$("#PopupStatus").append ("<li>Popup Loaded.</li>");
//--- This manipulates the popup window.
$("#PayloadTarget", PopupWin.document).prepend ('<h3>This is popup number: ' + PopupNum + '.</h3>');
}
close-event处理程序必须触发队列中的下一个项目......
function PopupClosed (NextQ_Item)
{
NextQ_Item ();
}
最后,您使用以下命令关闭队列:
PopupQueue.dequeue ('Popups');