0

我必须测试一种情况。用户键入与按钮链接的文本所需的 URL。当用户单击此按钮时,用户将被定向到键入的 URL。

当我为新标签(谷歌)做断言时,输出总是像“localhost:8080”,这是我以前的标签(currentPage)。

我想我应该将新标签设置为“this”,但是我想不通。如果你能帮助我,我将不胜感激。

linkTest.spec.js

module.exports = {
tags: ['component', 'linkTest'],
before: function(client, done) {
this.currentPage = client.maximizeWindow().page.linkTestPage();
this.currentPage
  .navigate(client.globals.devUrl)
  .waitForElementVisible('body', 60000)
  .customPerform(function() {
    done();
  });
 },

'CASE ID - Case Name'() {
let googleUrl = 'https://www.google.com/';

this.currentPage
  .checkInitialElements()
  .setExternalUrlText(googleUrl)
  .clickLinkLabel();

// Handle with new tab
this.client.windowHandles(function(result) {
  let googleTab = result.value[1]; // New Google tab index
  this.switchWindow(googleTab) // Switch to Google tab
    .assert.urlContains('Google'); // Verify new tab is Google
  });
},

after: function(client, done) {
client.end().customPerform(done);
 },
};

customPerform.js

  exports.command = function(fn, callback) {
  this.perform(fn);
  if (typeof callback === 'function') {
  callback.call(self);
  }
  return this; // allows the command to be chained.
 };
4

1 回答 1

1

不确定您是否已经知道如何执行此操作,但我能够将新页面的断言放入 switchWindow 函数的回调函数中。所以在你的例子中,

// Handle with new tab
this.client.windowHandles(function(result) {
  let googleTab = result.value[1]; // New Google tab index
 // Switch to Google tab
  this.switchWindow(googleTab, function() {
    this.assert.urlContains('Google'); // Verify new tab is Google
  });  
});
于 2019-11-01T16:08:17.037 回答