在我的Nightwatch测试中,我有一个之前运行并从Facebook删除应用程序。如果应用程序不存在,我只想停止之前的测试。
.waitForElementPresent('#root div.touchable a', 2000, false, function (result) {
if (result.value === false) {
browser.saveScreenshot('./test/e2e/img/element-not-there.png')
browser.end()
}
})
.doSomethingIfElementIsThere() // not real ;)
即使设置false
参数,这似乎也不起作用。我收到这个错误:
ERROR: Unable to locate element: "#root div.touchable a" using: css selector
at Object.before (/Users/user/projects/project/test/e2e/specs/testy-mc-test-face.js:30:8)
✖ Timed out while waiting for element <#root div.touchable a> to be present for 2500 milliseconds. - expected "found" but got: "not found"
at Object.before (/Users/user/projects/project/test/e2e/specs/testy-mc-test-face.js:30:8)
只是想知道如何检查某些东西而不是错误。如果元素存在,还是继续断言?
Merci buckets
答案 0 :(得分:3)
我查看了code of the elementPresent
assertion:
this.command = function(callback) {
return this.api.elements(this.client.locateStrategy, selector, callback);
};
this.value = function(result) {
return (result.status !== 0 || result.value.length === 0) ? 'not present' : 'present';
};
它使用low-level api来测试元素是否存在:
.elements()
从文档根目录开始搜索页面上的多个元素。找到的元素将作为WebElement JSON对象返回。 要传递的第一个参数是定位器策略,该策略在WebDriver文档中有详细说明。
我认为解决方案可能如下所示:
browser.elements('css selector', '#root div.touchable a', result => {
const isPresent = result.status === 0 && result.value.length > 0;
// doStuff
});