Use PLATFORM_NAME on the home page

This commit is contained in:
Ned Batchelder
2019-05-16 13:50:07 -04:00
parent 7df3c20828
commit cf2432c151
2 changed files with 3 additions and 4 deletions

View File

@@ -24,7 +24,7 @@ class IndexPage(PageObject):
Returns a browser query object representing the video modal element
"""
element = self.q(css=BANNER_SELECTOR)
return element.visible and element.text[0].startswith("Welcome to the Open edX")
return element.visible and element.text[0].startswith("Welcome to ")
@property
def banner_element(self):