2017-12-14 Automation Nightwatch 元素判断 Nightwatch 元素常用验证方法验证元素的值信息 andesFormSection .assert.containsText('@errorMessage', 'The email address is invalid.') 验证元素是否可用 andesFormSection .assert.attributeEquals('@continueBtn', 'disabled', 'true'); 等待元素可用 andesFormSection .expect.element('@signInBtn').to.be.visible.before(5000);或者andesFormSection waitForElementVisible('signInBtn', 5000); 等待元素呈现 andesFormSection .expect.element('@signInBtn').to.be.present.before(5000);或者andesFormSection waitForElementPresent('signInBtn', 5000); Please enable JavaScript to view the comments powered by Disqus. Newer Nightwatch wait For Text Older Nightwatch 得到和验证 cookies