bdd: use quteproc.wait_for_load_finished.

Why duplicate that logic?
This commit is contained in:
Florian Bruhin 2016-02-18 07:34:35 +01:00
parent 504bf6eb3b
commit 9a02dc174d

View File

@ -213,11 +213,7 @@ def path_should_be_loaded(quteproc, path):
page could be loaded from local cache. page could be loaded from local cache.
""" """
url = quteproc.path_to_url(path) url = quteproc.path_to_url(path)
pattern = re.compile( quteproc.wait_for_load_finished(path)
r"load status for <qutebrowser\.browser\.webview\.WebView "
r"tab_id=\d+ url='{url}/?'>: LoadStatus\.success".format(
url=re.escape(url)))
quteproc.wait_for(message=pattern)
@bdd.then(bdd.parsers.parse("{path} should be requested")) @bdd.then(bdd.parsers.parse("{path} should be requested"))