Stop waiting for Instabug popup in appium e2e tests

This commit is contained in:
Lukasz Fryc 2018-04-26 12:08:20 +02:00
parent 132ceda907
commit 5ccbcb2f3e
No known key found for this signature in database
GPG Key ID: 310D34060EB3FA78
1 changed files with 0 additions and 2 deletions

View File

@ -98,7 +98,6 @@ class SignInView(BaseView):
self.do_not_share = DonNotShare(self.driver)
def create_user(self):
time.sleep(30) # wait for "Shake to provide your feedback" popup to disappear, it's not possible to interact with the element
self.create_account_button.click()
self.password_input.set_value('qwerty1234')
self.next_button.click()
@ -111,7 +110,6 @@ class SignInView(BaseView):
self.do_not_share.click_until_presence_of_element(self.home_button)
def recover_access(self, passphrase, password):
time.sleep(30) # wait for "Shake to provide your feedback" popup to disappear, it's not possible to interact with the element
recover_access_view = self.i_have_account_button.click()
recover_access_view.passphrase_input.set_value(passphrase)
recover_access_view.password_input.click()