import time from tests import info from views.base_element import BaseText, BaseButton, BaseEditBox from views.base_view import BaseView class PublicKeyText(BaseText): def __init__(self, driver): super(PublicKeyText, self).__init__(driver) self.locator = self.Locator.accessibility_id('address-text') @property def text(self): text = self.scroll_to_element().text info('%s is %s' % (self.name, text)) return text class ProfileAddressText(BaseText): def __init__(self, driver): super(ProfileAddressText, self).__init__(driver) self.locator = self.Locator.accessibility_id('profile-address') class OptionsButton(BaseButton): def __init__(self, driver): super(OptionsButton, self).__init__(driver) self.locator = self.Locator.xpath_selector( '(//android.view.ViewGroup[@content-desc="icon"])[2]') class UserStatusBox(BaseButton): def __init__(self, driver): super(OptionsButton.UserStatusBox, self).__init__(driver) self.locator = self.Locator.xpath_selector('(//android.widget.ScrollView)[2]//android.widget.TextView') class UsernameInput(BaseEditBox): def __init__(self, driver): super(OptionsButton.UsernameInput, self).__init__(driver) self.locator = self.Locator.xpath_selector('//android.widget.EditText') class UserStatusInput(BaseEditBox): def __init__(self, driver): super(OptionsButton.UserStatusInput, self).__init__(driver) self.locator = self.Locator.xpath_selector('(//android.widget.EditText)[2]') class NetworkSettingsButton(BaseButton): def __init__(self, driver): super(NetworkSettingsButton, self).__init__(driver) self.locator = self.Locator.accessibility_id('network-button') class NetworkButton(BaseButton): def __init__(self, driver, network): super(NetworkSettingsButton.NetworkButton, self).__init__(driver) self.locator = self.Locator.xpath_selector('//*[@text="' + network + '"]') class ConnectButton(BaseButton): def __init__(self, driver): super(NetworkSettingsButton.ConnectButton, self).__init__(driver) self.locator = self.Locator.accessibility_id('network-connect-button') class LogoutButton(BaseButton): def __init__(self, driver): super(LogoutButton, self).__init__(driver) self.locator = self.Locator.xpath_selector('//*[@text="Log out"]') def click(self): self.scroll_to_element() for _ in range(2): self.find_element().click() time.sleep(2) info('Tap on %s' % self.name) from views.sign_in_view import SignInView return SignInView(self.driver) class UserNameText(BaseText): def __init__(self, driver): super(UserNameText, self).__init__(driver) self.locator = self.Locator.xpath_selector( '//android.widget.ImageView[@content-desc="chat-icon"]/../android.widget.TextView') class ShareMyContactKeyButton(BaseButton): def __init__(self, driver): super(ShareMyContactKeyButton, self).__init__(driver) self.locator = self.Locator.accessibility_id('share-my-contact-code-button') class EditButton(BaseButton): def __init__(self, driver): super(EditButton, self).__init__(driver) self.locator = self.Locator.accessibility_id('edit-button') class ConfirmButton(BaseButton): def __init__(self, driver): super(ConfirmButton, self).__init__(driver) self.locator = self.Locator.accessibility_id('done-button') class CrossIcon(BaseButton): def __init__(self, driver): super(CrossIcon, self).__init__(driver) self.locator = self.Locator.accessibility_id('done-button') class AdvancedButton(BaseButton): def __init__(self, driver): super(AdvancedButton, self).__init__(driver) self.locator = self.Locator.xpath_selector('//*[@text="Advanced"]') def click(self): self.scroll_to_element().click() info('Tap on %s' % self.name) return self.navigate() class ProfileView(BaseView): def __init__(self, driver): super(ProfileView, self).__init__(driver) self.driver = driver # old design self.options_button = OptionsButton(self.driver) self.username_input = OptionsButton.UsernameInput(self.driver) self.user_status_box = OptionsButton.UserStatusBox(self.driver) self.user_status_input = OptionsButton.UserStatusInput(self.driver) self.public_key_text = PublicKeyText(self.driver) self.profile_address_text = ProfileAddressText(self.driver) self.network_settings_button = NetworkSettingsButton(self.driver) self.connect_button = NetworkSettingsButton.ConnectButton(self.driver) self.logout_button = LogoutButton(self.driver) # new design self.username_text = UserNameText(self.driver) self.share_my_contact_key_button = ShareMyContactKeyButton(self.driver) self.edit_button = EditButton(self.driver) self.confirm_button = ConfirmButton(self.driver) self.cross_icon = CrossIcon(self.driver) self.advanced_button = AdvancedButton(self.driver) def switch_network(self, network): self.network_settings_button.scroll_to_element() self.network_settings_button.click() network_button = NetworkSettingsButton.NetworkButton(self.driver, network) network_button.click() self.connect_button.click() from views.sign_in_view import SignInView return SignInView(self.driver) def get_address(self): profile_view = self.profile_button.click() return profile_view.profile_address_text.text