@christian-bromann/webdriverio
Version:
A nodejs bindings implementation for selenium 2.0/webdriver
10 lines (9 loc) • 467 B
JavaScript
describe('getSource', () => {
it('should return the source code of the whole website', async function () {
const source = await this.client.getSource()
source.indexOf('Test CSS Attributes').should.be.greaterThan(0)
source.indexOf('open new tab').should.be.greaterThan(0)
source.indexOf('$(\'.btn3_clicked\').css(\'display\',\'block\')').should.be.greaterThan(0)
source.indexOf('</html>').should.be.greaterThan(0)
})
})