我设置等待代码。
casper.options.waitTimeout = 50000;
我收到超时错误。
所以我无法在casperjs上运行弹出屏幕。
我在下面尝试过代码。如何使这项工作以及如何正确使用casper.withPopup
弹出窗口?
casper.then(function() {
casper.page.injectJs('jquery.js');
this.clickLabel('Follow', 'div');
this.wait(5000);
/* this.waitForPopup(/www.domain.com/, function(){
this.test.pass("popup opened");
}); /
});
/ casper.then(function() {
this.wait(5000);
this.capture("screen.png");
});
*/