Tutorial by Examples

Consider the following test: it('should test something', function() { browser.get('/dashboard/'); $("#myid").click(); expect(element(by.model('username')).getText()).toEqual('Test'); console.log("HERE"); }); In the following test, when the console.log() is ex...

Page 1 of 1