waitForElementPresent 的反面。等待给定时间(默认 5000 毫秒)以使元素不再出现在页面中(即已删除),然后执行任何其他命令或断言。
如果元素在指定时间后仍然存在,则测试失败。

可以通过在 nightwatch.json 中或在外部全局文件中的全局属性中定义 waitForConditionPollInterval 属性(以毫秒为单位)来更改轮询间隔。
类似地,默认超时可以指定为全局 waitForConditionTimeout 属性(以毫秒为单位)。

有关在 Nightwatch 中使用 DOM 元素的更多信息,请参阅 查找和交互 DOM 元素 指南页面。

用法

                    .waitForElementNotPresent([using], selector, [timeout], [pollInterval], [abortOnAssertionFailure], [callback], [message]);
                

示例

module.exports = {
 'demo Test': function(browser) {
    // with default implicit timeout of 5000ms (can be overwritten in settings under 'globals.waitForConditionTimeout')
    browser.waitForElementNotPresent('#dialog');

    // specify the locate strategy (css selector/xpath) as the first argument
    browser.waitForElementNotPresent('css selector', '#dialog');

    // with explicit timeout (in milliseconds)
    browser.waitForElementNotPresent('#dialog', 1000);

    // continue if failed
    browser.waitForElementNotPresent('#dialog', 1000, false);

    // with callback
    browser.waitForElementNotPresent('#dialog', 1000, function() {
      // do something while we're here
    });

    // with custom output message - the locate strategy is required
    browser.waitForElementNotPresent('css selector', '#dialog', 'The dialog container is removed.');

    // with custom Spanish message
    browser.waitForElementNotPresent('#dialog', 1000, 'elemento %s no era presente en %d ms');

    // many combinations possible - the message is always the last argument
    browser.waitForElementNotPresent('#dialog', 1000, false, function() {}, 'elemento %s no era presente en %d ms');
  },

  'demo Test with selector objects': function(browser) {
     browser.waitForElementNotPresent({
       selector: '#dialog',
       timeout: 1000
     });

     browser.waitForElementNotPresent({
       selector: '#dialog',
       locateStrategy: 'css selector'
     }, 'Custom output message');

     browser.waitForElementNotPresent({
       selector: '.container',
       index: 2,
       retryInterval: 100,
       abortOnFailure: true
     });
  }

  'page object demo Test': function (browser) {
     var nightwatch = browser.page.nightwatch();
     nightwatch
       .navigate()
       .assert.titleContains('Nightwatch.js');

     nightwatch..waitForElementNotPresent('@dialogContainer', function(result) {
       console.log(result);
     });
  }
}

参数

名称 类型 描述
使用
可选
字符串

要使用的定位器策略。见 W3C Webdriver - 定位器策略

选择器 字符串 | 对象

用于定位元素的选择器 (CSS/Xpath)。可以是字符串,也可以是指定 元素属性 的对象。

time=waitForConditionTimeout
可选
数字

在失败之前等待的总毫秒数。

poll=waitForConditionPollInterval
可选
数字

两次检查之间等待的毫秒数。只有在指定 time 参数时才能使用此参数。

abortOnFailure=abortOnAssertionFailure
可选
布尔值

默认情况下,如果找不到元素,测试将失败。如果希望测试即使断言失败也要继续,请将此设置为 false。要全局设置此项,可以在全局属性中定义 abortOnAssertionFailure 属性。

回调
可选
函数

命令完成后调用的可选回调函数。

消息
可选
字符串

要在输出中显示的可选消息;该消息支持两个占位符:%s 用于当前选择器,%d 用于时间(例如,元素 %s 未在页面中停留 %d 毫秒)。

另见