UNPKG

protractor

Version:

Webdriver E2E test wrapper for Angular.

16 lines (12 loc) 437 B
describe('console plugin', function() { var logMessageButton = element(by.id('log-message')); var warningMessageButton = element(by.id('simulate-warning')); it('should fail on warning message', function() { browser.get('console/index.html'); warningMessageButton.click(); }); it('should not fail on log and debug messages', function() { browser.get('console/index.html'); logMessageButton.click(); }); });