expect.element().a() 建议编辑
自版本: v0.7检查指定元素的类型(即标签名)是否为预期值。
用法
示例
this.demoTest = function (browser) {
browser.expect.element('#q').to.be.an('input');
browser.expect.element('#q').to.be.an('input', 'Testing if #q is an input');
browser.expect.element('#w').to.be.a('span');
}
参数
名称 | 类型 | 描述 |
---|---|---|
类型 |
字符串 | 预期类型 |
消息 可选 |
字符串 | 输出中显示的可选日志消息。如果缺失,将默认显示一条消息。 |