118 lines
4.3 KiB
Python
118 lines
4.3 KiB
Python
from selenium.common.exceptions import NoSuchElementException, TimeoutException
|
|
|
|
from views.base_element import BaseButton, BaseEditBox
|
|
from views.base_view import BaseView
|
|
|
|
|
|
class FirstAccountButton(BaseButton):
|
|
|
|
def __init__(self, driver):
|
|
super(FirstAccountButton, self).__init__(driver)
|
|
self.locator = self.Locator.xpath_selector("//android.widget.ScrollView//android.widget.TextView")
|
|
|
|
|
|
class PasswordInput(BaseEditBox):
|
|
|
|
def __init__(self, driver):
|
|
super(PasswordInput, self).__init__(driver)
|
|
self.locator = self.Locator.xpath_selector("//android.widget.TextView[@text='Password']"
|
|
"/following-sibling::android.view.ViewGroup/android.widget.EditText")
|
|
|
|
|
|
class SignInButton(BaseButton):
|
|
|
|
def __init__(self, driver):
|
|
super(SignInButton, self).__init__(driver)
|
|
self.locator = self.Locator.xpath_selector("//android.widget.TextView[@text='Sign in' or @text='SIGN IN']")
|
|
|
|
def navigate(self):
|
|
from views.home_view import HomeView
|
|
return HomeView(self.driver)
|
|
|
|
|
|
class RecoverAccessButton(BaseButton):
|
|
|
|
def __init__(self, driver):
|
|
super(RecoverAccessButton, self).__init__(driver)
|
|
self.locator = self.Locator.xpath_selector("//android.widget.TextView[@text='Recover access']")
|
|
|
|
def navigate(self):
|
|
from views.recover_access_view import RecoverAccessView
|
|
return RecoverAccessView(self.driver)
|
|
|
|
|
|
class CreateAccountButton(BaseButton):
|
|
def __init__(self, driver):
|
|
super(CreateAccountButton, self).__init__(driver)
|
|
self.locator = self.Locator.xpath_selector("//android.widget.TextView[@text='CREATE ACCOUNT']")
|
|
|
|
|
|
class IHaveAccountButton(RecoverAccessButton):
|
|
def __init__(self, driver):
|
|
super(IHaveAccountButton, self).__init__(driver)
|
|
self.locator = self.Locator.xpath_selector("//android.widget.TextView[@text='I ALREADY HAVE AN ACCOUNT']")
|
|
|
|
|
|
class AddExistingAccountButton(RecoverAccessButton):
|
|
def __init__(self, driver):
|
|
super(AddExistingAccountButton, self).__init__(driver)
|
|
self.locator = self.Locator.xpath_selector("//android.widget.TextView[@text='ADD EXISTING ACCOUNT']")
|
|
|
|
|
|
class ConfirmPasswordInput(BaseEditBox):
|
|
def __init__(self, driver):
|
|
super(ConfirmPasswordInput, self).__init__(driver)
|
|
self.locator = self.Locator.xpath_selector("//android.widget.TextView[@text='Confirm']")
|
|
|
|
|
|
class NameInput(BaseEditBox):
|
|
def __init__(self, driver):
|
|
super(NameInput, self).__init__(driver)
|
|
self.locator = self.Locator.xpath_selector("//android.widget.TextView[@text='Name']")
|
|
|
|
|
|
class SignInView(BaseView):
|
|
|
|
def __init__(self, driver):
|
|
super(SignInView, self).__init__(driver)
|
|
self.driver = driver
|
|
|
|
self.first_account_button = FirstAccountButton(self.driver)
|
|
self.password_input = PasswordInput(self.driver)
|
|
self.sign_in_button = SignInButton(self.driver)
|
|
self.recover_access_button = RecoverAccessButton(self.driver)
|
|
|
|
# new design
|
|
self.create_account_button = CreateAccountButton(self.driver)
|
|
self.i_have_account_button = IHaveAccountButton(self.driver)
|
|
self.add_existing_account_button = AddExistingAccountButton(self.driver)
|
|
self.confirm_password_input = ConfirmPasswordInput(self.driver)
|
|
self.name_input = NameInput(self.driver)
|
|
|
|
self.accept_agreements()
|
|
|
|
def accept_agreements(self):
|
|
for i in self.ok_button_apk, self.continue_button_apk:
|
|
try:
|
|
i.click()
|
|
except (NoSuchElementException, TimeoutException):
|
|
pass
|
|
|
|
def create_user(self):
|
|
self.create_account_button.click()
|
|
self.password_input.send_keys('qwerty1234')
|
|
self.next_button.click()
|
|
self.confirm_password_input.send_keys('qwerty1234')
|
|
self.next_button.click()
|
|
self.name_input.wait_for_element(30)
|
|
self.name_input.send_keys('Test Name')
|
|
self.next_button.click()
|
|
self.element_by_text("NO, I DON'T WANT TO SHARE").click()
|
|
|
|
def recover_access(self, passphrase, password):
|
|
recover_access_view = self.i_have_account_button.click()
|
|
recover_access_view.passphrase_input.send_keys(passphrase)
|
|
recover_access_view.password_input.click()
|
|
recover_access_view.password_input.send_keys(password)
|
|
recover_access_view.sign_in_button.click()
|