.waitForElementNotVisible() 建议编辑
waitForElementVisible
的反面。在执行任何其他命令或断言之前,等待页面中元素不可见(即隐藏但存在)的给定时间(默认值为 5000 毫秒)。
如果元素在指定的时间内未能隐藏,则测试将失败。
您可以通过在 nightwatch.json
中或在外部全局文件中定义一个全局属性 waitForConditionPollInterval
(以毫秒为单位)来更改轮询间隔。
类似地,可以将默认超时指定为全局 waitForConditionTimeout
属性(以毫秒为单位)。
用法
.waitForElementNotVisible([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.waitForElementNotVisible('#dialog');
// specify the locate strategy (css selector/xpath) as the first argument
browser.waitForElementNotVisible('css selector', '#dialog');
// with explicit timeout (in milliseconds)
browser.waitForElementNotVisible('#dialog', 1000);
// continue if failed
browser.waitForElementNotVisible('#dialog', 1000, false);
// with callback
browser.waitForElementNotVisible('#dialog', 1000, function() {
// do something while we're here
});
// with custom output message - the locate strategy is required
browser.waitForElementNotVisible('css selector', '#dialog', 'The dialog container is not visible.');
// with custom Spanish message
browser.waitForElementNotVisible('#dialog', 1000, 'elemento %s no era visible en %d ms');
// many combinations possible - the message is always the last argument
browser.waitForElementNotVisible('#dialog', 1000, false, function() {}, 'elemento %s no era visible en %d ms');
},
'demo Test with selector objects': function(browser) {
browser.waitForElementNotVisible({
selector: '#dialog',
timeout: 1000
});
browser.waitForElementNotVisible({
selector: '#dialog',
locateStrategy: 'css selector'
}, 'Custom output message');
browser.waitForElementNotVisible({
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.waitForElementNotVisible('@mainDialog', function(result) {
console.log(result);
});
}
}
参数
名称 | 类型 | 描述 |
---|---|---|
使用 可选 |
字符串 | 要使用的定位器策略。请参阅 W3C Webdriver - 定位器策略 |
选择器 |
字符串 | 对象 | 用于定位元素的选择器(CSS/Xpath)。可以是字符串,也可以是指定 元素属性 的对象。 |
time=waitForConditionTimeout 可选 |
数字 | 在失败之前等待的总毫秒数。 |
poll=waitForConditionPollInterval 可选 |
数字 | 两次检查之间等待的毫秒数。只有在也指定 time 参数时才能使用此参数。 |
abortOnFailure=abortOnAssertionFailure 可选 |
布尔值 | 默认情况下,如果未找到元素,测试将失败。如果希望测试即使断言失败也继续执行,请将其设置为 false。要全局设置此选项,您可以在全局文件中定义一个属性 |
回调 可选 |
函数 | 命令完成后调用的可选回调函数。 |
消息 可选 |
字符串 | 要在输出中显示的可选消息;该消息支持两个占位符:%s 用于当前选择器,%d 用于时间(例如,元素 %s 在 %d 毫秒内未在页面中)。 |