スクリプトが実行されると、「I WILL NEVER BE EXECUTED」という行に到達することはありません。
/ ********* /
var casper = require('casper').create(
{
//clientScripts: ["includes/jquery-1.11.1.min.js"],
waitTimeout: 15000,
stepTimeout: 5500,
verbose: true,
logLevel: 'debug',
viewportSize: {
width: 1680,
height: 1050
},
onRunComplete: function() {
// Don't exit on complete.
},
onWaitTimeout: function () {
logConsole('Wait TimeOut Occured');
this.capture('xWait_timeout.png');
this.exit();
},
pageSettings: {
"ignoreSslErrors": true
},
onStepTimeout: function (self, m) {
}
}
);
var subjectParameter = casper.cli.get("subject");
var timeoutForScreenshot = casper.cli.get("timeoutForScreenshot");
casper.options.stepTimeout = timeoutForScreenshot + 500;
casper.on('step.timeout', function (request) {
console.log("---------------STEP:timed out---------------------:" + request);
request.abort();
});
casper.start('https://email.t-online.de', function () {
casper.userAgent('Mozilla/5.0 (Windows NT 6.3; WOW64; Trident/7.0; rv:11.0) like Gecko)');
casper.waitForSelector('input[name=pw_usr]', function () {
this.fillSelectors('form[name="login"]', {
'input[name=pw_usr]': 'someE-Mailaddress@t-online.de',
'input[name=pw_pwd]': 'somePassword'
});
}, function () {
casper.log('no login-form found', 'error');
casper.exit();
});
casper.then(function () {
this.click("#pw_submit");
});
casper.waitForSelector('#rowListContainerTable', function () {
//abort.request();
this.evaluate(function getElementInDom(term) {
var els = document.getElementsByTagName('span');
var len = els.length;
for (var i = 0; i < len; i++) {
if (els[i].innerHTML.indexOf(term) != -1) {
els[i].click();
abort.request();
}
}
}, subjectParameter);
this.then(function () {
this.echo("I WILL NEVER BE EXECUTED");
});
this.wait(8000, function () {
this.capture('tonline - ' + subjectParameter + '.png', {
top: 0,
left: 0,
width: 1680,
height: 1050
});
casper.log('mail found', 'error');
//casper.exit();
});
}, function () {
casper.log('login failed', 'error');
casper.exit();
});
});
casper.run();
「subjectParameter」は文字列です
「timeoutForScreenshot」は int 値です
スクリプトは " https://email.t-online.de " にログインし、件名 == "subjectParameter" の電子メールを探しています。メールを開いてスクリーンショットを撮る必要がありますが、その後、他のすべての「getElementInDom-Step」以降の「steps」は実行されません。
step.timeout の後に次の「ステップ」に進む方法はありますか?