BestNotes/test/specs/testfile.webdriver.js

9 lines
310 B
JavaScript
Raw Normal View History

2019-11-19 17:19:25 +01:00
const assert = require('assert')
describe('webdriver.io page', () => {
it('should have the right title', () => {
browser.url('https://webdriver.io')
const title = browser.getTitle()
assert.strictEqual(title, 'WebdriverIO · Next-gen WebDriver test framework for Node.js')
})
})