Remove duplicating button

This commit is contained in:
Churikova Tetiana 2020-01-07 17:19:23 +01:00
parent baeeb135b9
commit 352690588e
No known key found for this signature in database
GPG Key ID: 0D4EA7B33B47E6D8
1 changed files with 0 additions and 9 deletions

View File

@ -226,14 +226,6 @@ class RecoveryPhraseWordInput(BaseEditBox):
super(RecoveryPhraseWordInput, self).__init__(driver)
self.locator = self.Locator.xpath_selector('//android.widget.EditText')
class OkGotItButton(BaseButton):
def __init__(self, driver):
super(OkGotItButton, self).__init__(driver)
self.locator = self.Locator.text_selector('OK, got it')
class DebugModeToggle(BaseButton):
def __init__(self, driver):
@ -604,7 +596,6 @@ class ProfileView(BaseView):
self.recovery_phrase_table = RecoveryPhraseTable(self.driver)
self.recovery_phrase_word_number = RecoveryPhraseWordNumberText(self.driver)
self.recovery_phrase_word_input = RecoveryPhraseWordInput(self.driver)
self.ok_got_it_button = OkGotItButton(self.driver)
self.select_from_gallery_button = SelectFromGalleryButton(self.driver)
self.capture_button = CaptureButton(self.driver)