Created
January 30, 2014 02:22
-
-
Save misaxi/8701473 to your computer and use it in GitHub Desktop.
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
class Page | |
constructor: -> | |
# this is singleton | |
@ptor = protractor.getInstance() | |
get: (relativeUrl, ignoreSync) -> | |
# we want to ignore sync if the | |
# page does not use AngularJS | |
@ptor.ignoreSynchronization = ignoreSync or false | |
@ptor.get @ptor.baseUrl + relativeUrl | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment