Skip to content

Instantly share code, notes, and snippets.

@felippenardi
Created September 23, 2014 01:53
Show Gist options
  • Save felippenardi/fde8c9f9f07ad4726a1f to your computer and use it in GitHub Desktop.
Save felippenardi/fde8c9f9f07ad4726a1f to your computer and use it in GitHub Desktop.
AngularJS Aplicado: Protractor element() como promessa
<div id='teste'>Hello World</div>
element(by.id('teste')).getText().then(function(name) {
expect(name).toBe('Hello World');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment