Commit fe5ff5f7 by Jim Abramson

fix dashboard page path in acceptance tests

XCOM-378

this change is necessary because requests for / no longer redirect to /dashboard.
parent 2933fec3
...@@ -22,7 +22,7 @@ class EcommerceAppPage(PageObject): # pylint: disable=abstract-method ...@@ -22,7 +22,7 @@ class EcommerceAppPage(PageObject): # pylint: disable=abstract-method
class DashboardHomePage(EcommerceAppPage): class DashboardHomePage(EcommerceAppPage):
path = '' path = 'dashboard'
def is_browser_on_page(self): def is_browser_on_page(self):
return self.browser.title.startswith('Dashboard | Oscar') return self.browser.title.startswith('Dashboard | Oscar')
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment