@christian-bromann/webdriverio
Version:
A nodejs bindings implementation for selenium 2.0/webdriver
13 lines (10 loc) • 392 B
JavaScript
describe('this spec', () => {
it('should throw', () => {
let start = new Date().getTime()
try {
browser.click('#notExisting')
} catch (e) {}
expect(new Date().getTime() - start).to.be.above(2000)
expect(browser.lastError.message).to.be.equal(`An element could not be located on the page using the given search parameters.`)
})
})