2018-01-26 11:07:09 +00:00
|
|
|
import time
|
|
|
|
from tests import info
|
2018-05-02 16:01:17 +00:00
|
|
|
from tests.base_test_case import AbstractTestCase
|
|
|
|
from views.base_element import BaseText, BaseButton, BaseEditBox, BaseElement
|
2018-01-03 09:34:40 +00:00
|
|
|
from views.base_view import BaseView
|
2017-08-28 10:02:20 +00:00
|
|
|
|
|
|
|
|
|
|
|
class PublicKeyText(BaseText):
|
|
|
|
|
|
|
|
def __init__(self, driver):
|
|
|
|
super(PublicKeyText, self).__init__(driver)
|
2018-03-15 20:01:08 +00:00
|
|
|
self.locator = self.Locator.accessibility_id('address-text')
|
2017-08-28 10:02:20 +00:00
|
|
|
|
2017-10-11 20:10:57 +00:00
|
|
|
@property
|
|
|
|
def text(self):
|
|
|
|
text = self.scroll_to_element().text
|
2018-01-26 11:07:09 +00:00
|
|
|
info('%s is %s' % (self.name, text))
|
2017-10-11 20:10:57 +00:00
|
|
|
return text
|
|
|
|
|
2017-08-28 10:02:20 +00:00
|
|
|
|
2017-09-21 17:01:04 +00:00
|
|
|
class ProfileAddressText(BaseText):
|
|
|
|
|
|
|
|
def __init__(self, driver):
|
|
|
|
super(ProfileAddressText, self).__init__(driver)
|
|
|
|
self.locator = self.Locator.accessibility_id('profile-address')
|
|
|
|
|
|
|
|
|
2017-10-30 11:11:58 +00:00
|
|
|
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)
|
2018-01-26 11:07:09 +00:00
|
|
|
self.locator = self.Locator.xpath_selector('(//android.widget.ScrollView)[2]//android.widget.TextView')
|
2017-10-30 11:11:58 +00:00
|
|
|
|
|
|
|
class UsernameInput(BaseEditBox):
|
|
|
|
|
|
|
|
def __init__(self, driver):
|
|
|
|
super(OptionsButton.UsernameInput, self).__init__(driver)
|
2018-03-28 10:21:39 +00:00
|
|
|
self.locator = self.Locator.accessibility_id('username-input')
|
2017-10-30 11:11:58 +00:00
|
|
|
|
|
|
|
class UserStatusInput(BaseEditBox):
|
|
|
|
|
|
|
|
def __init__(self, driver):
|
|
|
|
super(OptionsButton.UserStatusInput, self).__init__(driver)
|
2018-01-26 11:07:09 +00:00
|
|
|
self.locator = self.Locator.xpath_selector('(//android.widget.EditText)[2]')
|
2017-10-30 11:11:58 +00:00
|
|
|
|
|
|
|
|
2017-10-11 20:10:57 +00:00
|
|
|
class NetworkSettingsButton(BaseButton):
|
|
|
|
|
|
|
|
def __init__(self, driver):
|
|
|
|
super(NetworkSettingsButton, self).__init__(driver)
|
2018-03-15 20:01:08 +00:00
|
|
|
self.locator = self.Locator.accessibility_id('network-button')
|
2017-10-11 20:10:57 +00:00
|
|
|
|
2018-01-03 09:34:40 +00:00
|
|
|
class NetworkButton(BaseButton):
|
|
|
|
def __init__(self, driver, network):
|
|
|
|
super(NetworkSettingsButton.NetworkButton, self).__init__(driver)
|
|
|
|
self.locator = self.Locator.xpath_selector('//*[@text="' + network + '"]')
|
2017-10-11 20:10:57 +00:00
|
|
|
|
|
|
|
class ConnectButton(BaseButton):
|
|
|
|
|
|
|
|
def __init__(self, driver):
|
|
|
|
super(NetworkSettingsButton.ConnectButton, self).__init__(driver)
|
2018-03-15 20:01:08 +00:00
|
|
|
self.locator = self.Locator.accessibility_id('network-connect-button')
|
2017-10-11 20:10:57 +00:00
|
|
|
|
|
|
|
|
2018-01-14 17:43:36 +00:00
|
|
|
class LogoutButton(BaseButton):
|
|
|
|
|
|
|
|
def __init__(self, driver):
|
|
|
|
super(LogoutButton, self).__init__(driver)
|
2018-03-28 10:21:39 +00:00
|
|
|
self.locator = self.Locator.accessibility_id('log-out-button')
|
2018-01-14 17:43:36 +00:00
|
|
|
|
2018-05-02 16:01:17 +00:00
|
|
|
|
2018-04-26 06:22:11 +00:00
|
|
|
class LogoutDialog(BaseView):
|
|
|
|
def __init__(self, driver):
|
|
|
|
super(LogoutDialog, self).__init__(driver)
|
|
|
|
self.logout_button = LogoutDialog.LogoutButton(driver)
|
|
|
|
|
|
|
|
class LogoutButton(BaseButton):
|
|
|
|
def __init__(self, driver):
|
|
|
|
super(LogoutDialog.LogoutButton, self).__init__(driver)
|
2018-05-16 19:59:36 +00:00
|
|
|
self.locator = self.Locator.xpath_selector("//*[@text='LOG OUT' or @text='Log out']")
|
2018-04-26 06:22:11 +00:00
|
|
|
|
|
|
|
def navigate(self):
|
|
|
|
from views.sign_in_view import SignInView
|
|
|
|
return SignInView(self.driver)
|
|
|
|
|
|
|
|
|
2018-05-02 16:01:17 +00:00
|
|
|
class ConfirmLogoutButton(BaseButton):
|
|
|
|
|
|
|
|
def __init__(self, driver):
|
|
|
|
super(ConfirmLogoutButton, self).__init__(driver)
|
|
|
|
self.locator = self.Locator.xpath_selector("//*[@text='LOG OUT']")
|
2018-01-14 17:43:36 +00:00
|
|
|
|
|
|
|
|
2018-02-14 13:48:18 +00:00
|
|
|
class UserNameText(BaseText):
|
|
|
|
def __init__(self, driver):
|
|
|
|
super(UserNameText, self).__init__(driver)
|
|
|
|
self.locator = self.Locator.xpath_selector(
|
2018-06-08 10:02:54 +00:00
|
|
|
'//android.widget.ImageView[@content-desc="chat-icon"]/../../android.widget.TextView')
|
2018-02-14 13:48:18 +00:00
|
|
|
|
|
|
|
|
2018-01-26 11:07:09 +00:00
|
|
|
class ShareMyContactKeyButton(BaseButton):
|
|
|
|
|
|
|
|
def __init__(self, driver):
|
|
|
|
super(ShareMyContactKeyButton, self).__init__(driver)
|
2018-03-15 20:01:08 +00:00
|
|
|
self.locator = self.Locator.accessibility_id('share-my-contact-code-button')
|
2018-01-26 11:07:09 +00:00
|
|
|
|
|
|
|
|
|
|
|
class EditButton(BaseButton):
|
|
|
|
|
|
|
|
def __init__(self, driver):
|
|
|
|
super(EditButton, self).__init__(driver)
|
2018-03-15 20:01:08 +00:00
|
|
|
self.locator = self.Locator.accessibility_id('edit-button')
|
2018-01-26 11:07:09 +00:00
|
|
|
|
|
|
|
|
2018-05-02 16:01:17 +00:00
|
|
|
class ProfilePictureElement(BaseElement):
|
|
|
|
def __init__(self, driver):
|
|
|
|
super(ProfilePictureElement, self).__init__(driver)
|
|
|
|
self.locator = self.Locator.accessibility_id('chat-icon')
|
|
|
|
|
|
|
|
|
|
|
|
class EditPictureButton(BaseButton):
|
|
|
|
|
|
|
|
def __init__(self, driver):
|
|
|
|
super(EditPictureButton, self).__init__(driver)
|
|
|
|
self.locator = self.Locator.accessibility_id('edit-profile-photo-button')
|
|
|
|
|
|
|
|
|
2018-01-26 11:07:09 +00:00
|
|
|
class ConfirmButton(BaseButton):
|
|
|
|
|
|
|
|
def __init__(self, driver):
|
|
|
|
super(ConfirmButton, self).__init__(driver)
|
2018-03-15 20:01:08 +00:00
|
|
|
self.locator = self.Locator.accessibility_id('done-button')
|
2018-01-26 11:07:09 +00:00
|
|
|
|
|
|
|
|
|
|
|
class CrossIcon(BaseButton):
|
|
|
|
|
|
|
|
def __init__(self, driver):
|
|
|
|
super(CrossIcon, self).__init__(driver)
|
2018-03-15 20:01:08 +00:00
|
|
|
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()
|
2018-01-26 11:07:09 +00:00
|
|
|
|
|
|
|
|
2018-05-02 16:01:17 +00:00
|
|
|
class BackupSeedPhraseButton(BaseButton):
|
|
|
|
|
|
|
|
def __init__(self, driver):
|
|
|
|
super(BackupSeedPhraseButton, self).__init__(driver)
|
|
|
|
self.locator = self.Locator.xpath_selector("//*[@text='Backup your Seed Phrase']")
|
|
|
|
|
|
|
|
|
|
|
|
class OkContinueButton(BaseButton):
|
|
|
|
|
|
|
|
def __init__(self, driver):
|
|
|
|
super(OkContinueButton, self).__init__(driver)
|
|
|
|
self.locator = self.Locator.xpath_selector("//*[@text='OK, CONTINUE']")
|
|
|
|
|
|
|
|
|
|
|
|
class SeedPhraseTable(BaseText):
|
|
|
|
|
|
|
|
def __init__(self, driver):
|
|
|
|
super(SeedPhraseTable, self).__init__(driver)
|
|
|
|
self.locator = self.Locator.xpath_selector(
|
|
|
|
'//android.widget.FrameLayout/android.view.ViewGroup[3]/android.widget.TextView')
|
|
|
|
|
|
|
|
|
|
|
|
class SeedPhraseWordNumberText(BaseText):
|
|
|
|
|
|
|
|
def __init__(self, driver):
|
|
|
|
super(SeedPhraseWordNumberText, self).__init__(driver)
|
|
|
|
self.locator = self.Locator.xpath_selector("//*[contains(@text,'#')]")
|
|
|
|
|
|
|
|
@property
|
2018-05-10 10:29:08 +00:00
|
|
|
def number(self):
|
2018-05-02 16:01:17 +00:00
|
|
|
time.sleep(1)
|
2018-05-10 10:29:08 +00:00
|
|
|
return int(self.find_element().text.split('#')[1])
|
2018-05-02 16:01:17 +00:00
|
|
|
|
|
|
|
|
|
|
|
class SeedPhraseWordInput(BaseEditBox):
|
|
|
|
|
|
|
|
def __init__(self, driver):
|
|
|
|
super(SeedPhraseWordInput, 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.xpath_selector("//*[@text='OK, GOT IT']")
|
|
|
|
|
|
|
|
|
|
|
|
class DebugModeToggle(BaseButton):
|
|
|
|
|
|
|
|
def __init__(self, driver):
|
|
|
|
super(DebugModeToggle, self).__init__(driver)
|
|
|
|
self.locator = self.Locator.xpath_selector("//android.widget.Switch")
|
|
|
|
|
|
|
|
def click(self):
|
|
|
|
self.scroll_to_element()
|
|
|
|
super(DebugModeToggle, self).click()
|
|
|
|
|
|
|
|
|
|
|
|
class SelectFromGalleryButton(BaseButton):
|
|
|
|
|
|
|
|
def __init__(self, driver):
|
|
|
|
super(SelectFromGalleryButton, self).__init__(driver)
|
|
|
|
self.locator = self.Locator.xpath_selector("//*[@text='Select from gallery']")
|
|
|
|
|
|
|
|
|
2018-01-03 09:34:40 +00:00
|
|
|
class ProfileView(BaseView):
|
2017-08-28 10:02:20 +00:00
|
|
|
|
|
|
|
def __init__(self, driver):
|
2018-01-03 09:34:40 +00:00
|
|
|
super(ProfileView, self).__init__(driver)
|
2017-08-28 10:02:20 +00:00
|
|
|
self.driver = driver
|
|
|
|
|
2018-01-26 11:07:09 +00:00
|
|
|
# old design
|
2017-10-30 11:11:58 +00:00
|
|
|
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)
|
2017-08-28 10:02:20 +00:00
|
|
|
self.public_key_text = PublicKeyText(self.driver)
|
2017-09-21 17:01:04 +00:00
|
|
|
self.profile_address_text = ProfileAddressText(self.driver)
|
2017-10-11 20:10:57 +00:00
|
|
|
|
|
|
|
self.network_settings_button = NetworkSettingsButton(self.driver)
|
|
|
|
self.connect_button = NetworkSettingsButton.ConnectButton(self.driver)
|
2018-01-14 17:43:36 +00:00
|
|
|
self.logout_button = LogoutButton(self.driver)
|
2018-04-26 06:22:11 +00:00
|
|
|
self.logout_dialog = LogoutDialog(self.driver)
|
2018-05-02 16:01:17 +00:00
|
|
|
self.confirm_logout_button = ConfirmLogoutButton(self.driver)
|
2017-10-11 20:10:57 +00:00
|
|
|
|
2018-01-26 11:07:09 +00:00
|
|
|
# new design
|
|
|
|
|
2018-02-14 13:48:18 +00:00
|
|
|
self.username_text = UserNameText(self.driver)
|
2018-01-26 11:07:09 +00:00
|
|
|
self.share_my_contact_key_button = ShareMyContactKeyButton(self.driver)
|
|
|
|
self.edit_button = EditButton(self.driver)
|
2018-05-02 16:01:17 +00:00
|
|
|
self.profile_picture = ProfilePictureElement(self.driver)
|
|
|
|
self.edit_picture_button = EditPictureButton(self.driver)
|
2018-01-26 11:07:09 +00:00
|
|
|
self.confirm_button = ConfirmButton(self.driver)
|
|
|
|
self.cross_icon = CrossIcon(self.driver)
|
2018-03-15 20:01:08 +00:00
|
|
|
self.advanced_button = AdvancedButton(self.driver)
|
2018-05-02 16:01:17 +00:00
|
|
|
self.debug_mode_toggle = DebugModeToggle(self.driver)
|
|
|
|
|
|
|
|
# Backup seed phrase
|
|
|
|
self.backup_seed_phrase_button = BackupSeedPhraseButton(self.driver)
|
|
|
|
self.ok_continue_button = OkContinueButton(self.driver)
|
|
|
|
self.seed_phrase_table = SeedPhraseTable(self.driver)
|
|
|
|
self.seed_phrase_word_number = SeedPhraseWordNumberText(self.driver)
|
|
|
|
self.seed_phrase_word_input = SeedPhraseWordInput(self.driver)
|
|
|
|
self.ok_got_it_button = OkGotItButton(self.driver)
|
|
|
|
self.select_from_gallery_button = SelectFromGalleryButton(self.driver)
|
2018-01-26 11:07:09 +00:00
|
|
|
|
2017-10-11 20:10:57 +00:00
|
|
|
def switch_network(self, network):
|
2018-05-18 17:31:01 +00:00
|
|
|
self.advanced_button.click()
|
|
|
|
self.debug_mode_toggle.click()
|
2017-10-11 20:10:57 +00:00
|
|
|
self.network_settings_button.scroll_to_element()
|
|
|
|
self.network_settings_button.click()
|
2018-01-03 09:34:40 +00:00
|
|
|
network_button = NetworkSettingsButton.NetworkButton(self.driver, network)
|
|
|
|
network_button.click()
|
2017-10-11 20:10:57 +00:00
|
|
|
self.connect_button.click()
|
2018-01-03 09:34:40 +00:00
|
|
|
from views.sign_in_view import SignInView
|
|
|
|
return SignInView(self.driver)
|
2018-01-26 11:07:09 +00:00
|
|
|
|
|
|
|
def get_address(self):
|
|
|
|
profile_view = self.profile_button.click()
|
|
|
|
return profile_view.profile_address_text.text
|
2018-05-02 16:01:17 +00:00
|
|
|
|
|
|
|
def get_seed_phrase(self):
|
|
|
|
text = [i.text for i in self.seed_phrase_table.find_elements()]
|
2018-05-10 10:29:08 +00:00
|
|
|
return dict(zip(map(int, text[::2]), text[1::2]))
|
2018-05-02 16:01:17 +00:00
|
|
|
|
|
|
|
def edit_profile_picture(self, file_name: str):
|
2018-05-16 19:59:36 +00:00
|
|
|
if not AbstractTestCase().environment == 'sauce':
|
2018-05-02 16:01:17 +00:00
|
|
|
raise NotImplementedError('Test case is implemented to run on SauceLabs only')
|
2018-05-16 19:59:36 +00:00
|
|
|
self.profile_picture.template = file_name
|
|
|
|
self.edit_button.click()
|
2018-06-21 23:57:54 +00:00
|
|
|
self.swipe_down()
|
2018-05-16 19:59:36 +00:00
|
|
|
self.edit_picture_button.click()
|
|
|
|
self.select_from_gallery_button.click()
|
|
|
|
if self.allow_button.is_element_displayed(sec=10):
|
|
|
|
self.allow_button.click()
|
|
|
|
self.element_by_text(file_name).click()
|
|
|
|
self.confirm_button.click()
|
2018-04-26 06:22:11 +00:00
|
|
|
|
|
|
|
def logout(self):
|
|
|
|
self.logout_button.click()
|
|
|
|
return self.logout_dialog.logout_button.click()
|
|
|
|
|