Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3660)

Unified Diff: chrome/test/functional/perf_endure.py

Issue 10834239: Configuration file for Chrome perf and endure tests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address comments Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/test/functional/perf_endure.py
diff --git a/chrome/test/functional/perf_endure.py b/chrome/test/functional/perf_endure.py
index fed79f499f00ed363d487cb579e2d3ff11c9f4d2..de1d29c5f50e71953eb340334a623637e4d941be 100755
--- a/chrome/test/functional/perf_endure.py
+++ b/chrome/test/functional/perf_endure.py
@@ -602,7 +602,7 @@ class ChromeEndureGmailTest(ChromeEndureBaseTest):
# Log into a test Google account and open up Gmail.
self._LoginToGoogleAccount(account_key='test_google_account_gmail')
- self.NavigateToURL('http://www.gmail.com')
+ self.NavigateToURL(self._GetConfig().get('gmail_url'))
loaded_tab_title = self.GetActiveTabTitle()
self.assertTrue(self._TAB_TITLE_SUBSTRING in loaded_tab_title,
msg='Loaded tab title does not contain "%s": "%s"' %
@@ -940,7 +940,7 @@ class ChromeEndureDocsTest(ChromeEndureBaseTest):
# Log into a test Google account and open up Google Docs.
self._LoginToGoogleAccount()
- self.NavigateToURL('http://docs.google.com')
+ self.NavigateToURL(self._GetConfig().get('docs_url'))
self.assertTrue(
self.WaitUntil(lambda: self._TAB_TITLE_SUBSTRING in
self.GetActiveTabTitle(),
@@ -1012,7 +1012,7 @@ class ChromeEndurePlusTest(ChromeEndureBaseTest):
# Log into a test Google account and open up Google Plus.
self._LoginToGoogleAccount()
- self.NavigateToURL('http://plus.google.com')
+ self.NavigateToURL(self._GetConfig().get('plus_url'))
loaded_tab_title = self.GetActiveTabTitle()
self.assertTrue(self._TAB_TITLE_SUBSTRING in loaded_tab_title,
msg='Loaded tab title does not contain "%s": "%s"' %

Powered by Google App Engine
This is Rietveld 408576698