108 lines
4.1 KiB
Python
108 lines
4.1 KiB
Python
from tests import get_current_time
|
|
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)
|
|
|
|
def create_user(self):
|
|
self.create_account_button.click()
|
|
self.password_input.set_value('qwerty1234')
|
|
self.next_button.click()
|
|
self.confirm_password_input.set_value('qwerty1234')
|
|
self.next_button.click()
|
|
self.name_input.wait_for_element(45)
|
|
self.name_input.set_value('user_%s' % get_current_time())
|
|
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.set_value(passphrase)
|
|
recover_access_view.password_input.click()
|
|
recover_access_view.password_input.set_value(password)
|
|
recover_access_view.sign_in_button.click()
|