gulp-webdriver
Version:
gulp-webdriver is a gulp plugin to run e2e tests with the WebdriverIO testrunner
12 lines (10 loc) • 409 B
JavaScript
describe('gulp-webdriverjs test', () => {
it('should have right options', () => {
expect(browser.config.waitforTimeout).toBe(12345)
expect(browser.config.logLevel).toBe('info')
})
it('checks if title contains the search query', () => {
browser.url('/')
expect(browser).toHaveTitle('WebdriverIO · Next-gen browser automation test framework for Node.js')
})
})