You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
412 B
16 lines
412 B
exports.assertion = function (selector) {
|
|
this.message = 'Testing if element <' + selector + '> is not visible.'
|
|
this.expected = false
|
|
this.pass = function (val) {
|
|
return val === this.expected
|
|
}
|
|
this.value = function (res) {
|
|
return res.value
|
|
}
|
|
this.command = function (cb) {
|
|
var self = this
|
|
return this.api.isVisible(selector, function (res) {
|
|
cb.call(self, res)
|
|
})
|
|
}
|
|
}
|
|
|