Skip to content

Instantly share code, notes, and snippets.

@benheymink
Created January 16, 2015 12:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save benheymink/298aa93f8e1263034d2e to your computer and use it in GitHub Desktop.
Save benheymink/298aa93f8e1263034d2e to your computer and use it in GitHub Desktop.
Simple Protractor Test
it ('Should check the page title', function (){
browser.get(url);
var browserTitle = browser.getTitle();
expect(browserTitle).toEqual('My Title');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment