Created
September 23, 2014 01:53
-
-
Save felippenardi/fde8c9f9f07ad4726a1f to your computer and use it in GitHub Desktop.
AngularJS Aplicado: Protractor element() como promessa
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id='teste'>Hello World</div> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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