BestNotes/test/specs/testfile.webdriver.js
Dawid Majsnerowski 276747169d Tests for Jenkins
2019-11-19 17:19:25 +01:00

9 lines
310 B
JavaScript

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')
})
})