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

Unified Diff: chrome/test/pyautolib/pyauto.py

Issue 1702010: Add 2 tests for history. (Closed)
Patch Set: update Created 10 years, 8 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
« no previous file with comments | « chrome/test/functional/history.py ('k') | chrome/test/pyautolib/pyautolib.i » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/pyautolib/pyauto.py
diff --git a/chrome/test/pyautolib/pyauto.py b/chrome/test/pyautolib/pyauto.py
index b00f0714c7c4ddb3456622be45bd7fd6db11fd4c..e897512650defbc4067079a24639cc3d9eb5b1d3 100644
--- a/chrome/test/pyautolib/pyauto.py
+++ b/chrome/test/pyautolib/pyauto.py
@@ -283,6 +283,22 @@ class PyUITest(pyautolib.PyUITestBase, unittest.TestCase):
self._SendJSONRequest(0, json.dumps({'command':
'WaitForAllDownloadsToComplete'}))
+ def DownloadAndWaitForStart(self, file_url):
+ """Trigger download for the given url and wait for downloads to start.
+
+ It waits for download by looking at the download info from Chrome, so
+ anything which isn't registered by the history service won't be noticed.
+ This is not thread-safe, but it's fine to call this method to start
+ downloading multiple files in parallel. That is after starting a
+ download, it's fine to start another one even if the first one hasn't
+ completed.
+ """
+ num_downloads = len(self.GetDownloadsInfo().Downloads())
+ self.NavigateToURL(file_url) # Trigger download.
+ # It might take a while for the download to kick in, hold on until then.
+ self.assertTrue(self.WaitUntil(
+ lambda: len(self.GetDownloadsInfo().Downloads()) == num_downloads + 1))
+
def GetHistoryInfo(self, search_text=''):
"""Return info about browsing history.
« no previous file with comments | « chrome/test/functional/history.py ('k') | chrome/test/pyautolib/pyautolib.i » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698