Skip to content

Instantly share code, notes, and snippets.

@naik899
Last active April 27, 2020 19:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save naik899/fdcfaf1e0e6b3693d874aa53844e64f8 to your computer and use it in GitHub Desktop.
Save naik899/fdcfaf1e0e6b3693d874aa53844e64f8 to your computer and use it in GitHub Desktop.
Web driver test for Experitest.com
const assert = require('assert')
describe('webdriver.io page', () => {
it('should have the right title', () => {
browser.url('https://experitest.com')
const title = browser.getTitle()
assert.strictEqual(title, 'Experitest: Mobile App & Cross-Browser Testing End-to-End')
})
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment