From a83db961264f0a4f0f121f713ca59991a4d10b41 Mon Sep 17 00:00:00 2001 From: Hristo Deshev Date: Mon, 13 Jul 2015 15:51:29 +0300 Subject: [PATCH] Use a local URL (less timeouts) in webview get test. --- apps/tests/ui/web-view/web-view-tests.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/tests/ui/web-view/web-view-tests.ts b/apps/tests/ui/web-view/web-view-tests.ts index 93d3776e3..d0480a999 100644 --- a/apps/tests/ui/web-view/web-view-tests.ts +++ b/apps/tests/ui/web-view/web-view-tests.ts @@ -37,7 +37,7 @@ export var testLoadExistingUrl = function () { newPage.content = webView; return newPage; }; - + helper.navigate(pageFactory); var testFinished = false; @@ -62,14 +62,14 @@ export var testLoadExistingUrl = function () { } //console.log(message); }); - webView.url = "https://httpbin.org/html"; + webView.url = "http://nsbuild01.telerik.com/docs/"; TKUnit.wait(4); helper.goBack(); if (testFinished) { - TKUnit.assert(actualUrl === "https://httpbin.org/html", "args.url should equal https://httpbin.org/html"); + TKUnit.assert(actualUrl === "http://nsbuild01.telerik.com/docs/", "args.url should equal http://nsbuild01.telerik.com/docs/"); TKUnit.assert(actualError === undefined, actualError); } else { @@ -232,4 +232,4 @@ export var testLoadInvalidUrl = function () { else { TKUnit.assert(false, "TIMEOUT"); } -} \ No newline at end of file +}