由于注销消息,脚本浏览器中的步骤未通过

时间:2019-01-11 09:43:30

标签: javascript monitoring newrelic scriptedbrowser

我正在用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);
});

错误如下:

SS Error

0 个答案:

没有答案