e2e: add utility to wait for URL
This commit is contained in:
parent
cc7e4ad0e2
commit
c1b2093cf7
|
@ -345,6 +345,7 @@ class TestEnroll(SeleniumTestCase):
|
|||
self.wait.until(ec.presence_of_element_located((By.LINK_TEXT, "foo")))
|
||||
self.driver.find_element(By.LINK_TEXT, "foo").click()
|
||||
|
||||
self.wait_for_url(self.url("passbook_core:user-settings"))
|
||||
self.assertEqual(
|
||||
self.driver.find_element(By.XPATH, "//a[contains(@href, '/-/user/')]").text,
|
||||
"foo",
|
||||
|
|
|
@ -66,6 +66,10 @@ class SeleniumTestCase(StaticLiveServerTestCase):
|
|||
self.driver.quit()
|
||||
super().tearDown()
|
||||
|
||||
def wait_for_url(self, desired_url):
|
||||
"""Wait until URL is `desired_url`."""
|
||||
self.wait.until(lambda driver: driver.current_url == desired_url)
|
||||
|
||||
def url(self, view, **kwargs) -> str:
|
||||
"""reverse `view` with `**kwargs` into full URL using live_server_url"""
|
||||
return self.live_server_url + reverse(view, kwargs=kwargs)
|
||||
|
|
Reference in New Issue