Skip to content
This repository has been archived by the owner on Jul 29, 2024. It is now read-only.

Commit

Permalink
fix(error message): fix error message browser.get (#4065)
Browse files Browse the repository at this point in the history
  • Loading branch information
sjelin committed Feb 5, 2017
1 parent e676a60 commit 75af8f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/browser.ts
Original file line number Diff line number Diff line change
Expand Up @@ -933,7 +933,7 @@ export class ProtractorBrowser extends AbstractExtendedWebDriver {
let message = angularTestResult.message;
logger.error(`Could not find Angular on page ${destination} : ${message}`);
throw new Error(
'Angular could not be found on the page ${destination}.' +
`Angular could not be found on the page ${destination}.` +
`If this is not an Angular application, you may need to turn off waiting for Angular.
Please see
https://github.com/angular/protractor/blob/master/docs/timeouts.md#waiting-for-angular-on-page-load`);
Expand Down

0 comments on commit 75af8f4

Please sign in to comment.