diff --git a/test/appium/tests/atomic/account_management/test_profile.py b/test/appium/tests/atomic/account_management/test_profile.py index db584f8991..8b9748f2d0 100644 --- a/test/appium/tests/atomic/account_management/test_profile.py +++ b/test/appium/tests/atomic/account_management/test_profile.py @@ -194,7 +194,7 @@ class TestProfileSingleDevice(SingleDeviceTestCase): profile_view.help_button.click() base_web_view = profile_view.faq_button.click() base_web_view.open_in_webview() - base_web_view.find_text_part('Build Status') + base_web_view.find_full_text('build_status') base_web_view.click_system_back_button() profile_view.submit_bug_button.click() profile_view.find_full_text('#status') diff --git a/test/appium/views/profile_view.py b/test/appium/views/profile_view.py index 7020db19fb..e987bd45f3 100644 --- a/test/appium/views/profile_view.py +++ b/test/appium/views/profile_view.py @@ -291,6 +291,9 @@ class HelpButton(BaseButton): super(HelpButton, self).__init__(driver) self.locator = self.Locator.accessibility_id("help-button") + def click(self): + self.scroll_to_element().click() + class SubmitBugButton(BaseButton):