我正在用New Relic脚本浏览器编写脚本,以监视url的性能。 它通过了所有操作步骤,但是,当我到达“注销”步骤时,由于定向页面显示为“您已注销”而无法通过 我不明白这是什么问题,因为页面已注销,脚本应该通过。
// Step 6
.then(function() {
log(6, 'clickElement "//*
[@id=\'globalHeaderID\']/tbody/tr/td[16]/a/div[1]/img"');
return $browser.waitForAndFindElement(By.xpath("//*[@id=\'globalHeaderID\']/tbody/tr/td[16]/a/div[1]/img"),
DefaultTimeout); })
.then(function (el) { el.click(); $browser.sleep(6000);})
.then(function() {
log(lastStep, '');
console.log('Browser script execution SUCCEEDED.');
}, function(err) {
console.log ('Browser script execution FAILED.');
throw(err);
});
错误如下: