From 75af8f4193af5ccc78e4cd4a12653e3e5a037bd8 Mon Sep 17 00:00:00 2001 From: Sammy Jelin Date: Sat, 4 Feb 2017 21:30:13 -0800 Subject: [PATCH] fix(error message): fix error message `browser.get` (#4065) --- lib/browser.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/browser.ts b/lib/browser.ts index c93975834..59bd985e3 100644 --- a/lib/browser.ts +++ b/lib/browser.ts @@ -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`);