Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save matthieu-D/7d1b37b5f8753b91985f7135d5d1f342 to your computer and use it in GitHub Desktop.
Save matthieu-D/7d1b37b5f8753b91985f7135d5d1f342 to your computer and use it in GitHub Desktop.
it('should not find the button', () => {
let btn = element(by.css('.trigger-timeout-button'));
btn.click();
let elem = element(by.css('.dynamic-text'));
expect(elem.isPresent()).toBeFalsy();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment