- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 Protractor 测试一个非 Angular 应用程序,其中我在测试中具有类似于以下内容的登录辅助函数:
function login() {
return waitUntilVisible($('#txtUsername'))
.then(function () {
$('#txtUsername').sendKeys('tom');
})
.then(function () {
$('#txtPassword').sendKeys('*');
})
.then(function () {
$('#btnLogin').click();
})
.then(function () {
// this is the flaky line
return browser.wait(protractor.ExpectedConditions.invisibilityOf($('#txtUsername')), 20000, 'Element never disappeared');
});
}
其中 browser.wait(protractor.ExpectedConditions.invisibilityOf($('#txtUsername')), 20000, 'Element never gone')
等待包含登录表单的 Bootstrap 模式关闭。然而,事实证明这条线非常不稳定,有时会失败:
NoSuchElementError: No element found using locator: By.cssSelector("#txtUsername")
或者甚至:
StaleElementReferenceError: stale element reference: element is not attached to the page document
我的第一个想法是模式在调用该行之前关闭,但是,invisibilityOf
的文档建议它应该处理不存在的元素,将其声明为:
An expectation for checking that an element is either invisible or not present on the DOM.
如何使这条线变得稳健?
最佳答案
从 invisibilityOf
切换到 stalenessOf
就成功了。
关于javascript - Protractor invisibilityOf flakiness,抛出 NoSuchElementError,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30209416/
我正在使用 ExpectedConditions.invisibilityOf 来检查其中一个元素的不可见性,但每次它都会抛出超时异常: wait.until(ExpectedConditions.i
我正在使用 Protractor 测试一个非 Angular 应用程序,其中我在测试中具有类似于以下内容的登录辅助函数: function login() { return waitU
此查询由 2 个相关问题组成。在进行下一步之前,我需要等待元素不可见,因此我尝试定义一个自定义方法,如下所示: public void waitToDisappear(long timeOutInSe
我是一名优秀的程序员,十分优秀!