Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion testsuite/ui/views/admin/audience/billing.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def prerequisite(self):

@property
def is_displayed(self):
return self.title.text == "Earnings by Month" and self.table.is_displayed and self.path in self.browser.url
return self.title.text == "Earnings by month" and self.table.is_displayed and self.path in self.browser.url


class ChargingForm(View):
Expand Down
2 changes: 1 addition & 1 deletion testsuite/ui/views/common/foundation.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
class FlashMessage(View):
"""View that represents the Flash Message (div bar) on top of the page when some information is provided to user"""

flash_message = Text('//*[(@id="flashWrapper" or @id="flash-messages")]/div[1]')
flash_message = Text('(//ul[contains(@class, "pf-c-alert-group")]//div[contains(@class, "pf-c-alert__title")])[1]')

def string_in_flash_message(self, message):
"""
Expand Down
Loading