2017-09-21 17:01:04 +00:00
|
|
|
import logging
|
|
|
|
import time
|
2018-01-14 17:43:36 +00:00
|
|
|
from selenium.common.exceptions import NoSuchElementException, TimeoutException
|
|
|
|
|
2018-01-03 09:34:40 +00:00
|
|
|
from datetime import datetime
|
2017-08-28 10:02:20 +00:00
|
|
|
|
2018-01-14 17:43:36 +00:00
|
|
|
from views.base_element import BaseButton, BaseElement, BaseEditBox, BaseText
|
|
|
|
|
2017-08-28 10:02:20 +00:00
|
|
|
|
|
|
|
class BackButton(BaseButton):
|
|
|
|
def __init__(self, driver):
|
|
|
|
super(BackButton, self).__init__(driver)
|
|
|
|
self.locator = self.Locator.xpath_selector("//*[@content-desc='toolbar-back-button']")
|
|
|
|
|
2018-01-14 17:43:36 +00:00
|
|
|
def click(self, times_to_click: int = 1):
|
|
|
|
for _ in range(times_to_click):
|
|
|
|
try:
|
|
|
|
self.find_element().click()
|
|
|
|
except (NoSuchElementException, TimeoutException):
|
|
|
|
pass
|
|
|
|
logging.info('Tap on %s' % self.name)
|
2017-10-05 19:41:17 +00:00
|
|
|
return self.navigate()
|
|
|
|
|
2017-08-28 10:02:20 +00:00
|
|
|
|
2017-11-09 10:55:02 +00:00
|
|
|
class AllowButton(BaseButton):
|
|
|
|
def __init__(self, driver):
|
|
|
|
super(AllowButton, self).__init__(driver)
|
|
|
|
self.locator = self.Locator.xpath_selector("//*[@text='Allow']")
|
|
|
|
|
|
|
|
def click(self):
|
|
|
|
try:
|
|
|
|
for _ in range(3):
|
|
|
|
self.find_element().click()
|
|
|
|
except NoSuchElementException:
|
|
|
|
pass
|
|
|
|
logging.info('Tap on %s' % self.name)
|
|
|
|
|
|
|
|
|
2017-10-19 13:49:20 +00:00
|
|
|
class DenyButton(BaseButton):
|
|
|
|
def __init__(self, driver):
|
|
|
|
super(DenyButton, self).__init__(driver)
|
|
|
|
self.locator = self.Locator.xpath_selector("//*[@text='Deny']")
|
|
|
|
|
|
|
|
|
2018-01-03 09:34:40 +00:00
|
|
|
class YesButton(BaseButton):
|
|
|
|
def __init__(self, driver):
|
|
|
|
super(YesButton, self).__init__(driver)
|
|
|
|
self.locator = self.Locator.xpath_selector("//*[@text='Yes']")
|
|
|
|
|
|
|
|
|
|
|
|
class NoButton(BaseButton):
|
|
|
|
def __init__(self, driver):
|
|
|
|
super(NoButton, self).__init__(driver)
|
|
|
|
self.locator = self.Locator.xpath_selector("//*[@text='No']")
|
|
|
|
|
|
|
|
|
|
|
|
class OkButton(BaseButton):
|
|
|
|
def __init__(self, driver):
|
|
|
|
super(OkButton, self).__init__(driver)
|
|
|
|
self.locator = self.Locator.xpath_selector("//*[@text='OK']")
|
|
|
|
|
|
|
|
|
|
|
|
class ContinueButtonAPK(BaseButton):
|
|
|
|
def __init__(self, driver):
|
|
|
|
super(ContinueButtonAPK, self).__init__(driver)
|
|
|
|
self.locator = self.Locator.xpath_selector("//*[@text='Continue']")
|
|
|
|
|
|
|
|
|
2018-01-14 17:43:36 +00:00
|
|
|
class HomeButton(BaseButton):
|
2017-09-21 17:01:04 +00:00
|
|
|
def __init__(self, driver):
|
2018-01-14 17:43:36 +00:00
|
|
|
super(HomeButton, self).__init__(driver)
|
|
|
|
self.locator = self.Locator.xpath_selector("//*[@text='Home']/..")
|
2017-09-21 17:01:04 +00:00
|
|
|
|
2017-10-05 19:41:17 +00:00
|
|
|
def navigate(self):
|
2018-01-14 17:43:36 +00:00
|
|
|
from views.home_view import HomeView
|
|
|
|
return HomeView(self.driver)
|
2017-10-05 19:41:17 +00:00
|
|
|
|
2017-09-21 17:01:04 +00:00
|
|
|
|
2017-10-19 13:49:20 +00:00
|
|
|
class WalletButton(BaseButton):
|
|
|
|
def __init__(self, driver):
|
|
|
|
super(WalletButton, self).__init__(driver)
|
2018-01-03 09:34:40 +00:00
|
|
|
self.locator = self.Locator.xpath_selector("//*[@text='Wallet']/..")
|
2017-10-19 13:49:20 +00:00
|
|
|
|
|
|
|
def navigate(self):
|
2018-01-03 09:34:40 +00:00
|
|
|
from views.wallet_view import WalletView
|
|
|
|
return WalletView(self.driver)
|
2017-10-19 13:49:20 +00:00
|
|
|
|
|
|
|
|
2018-01-14 17:43:36 +00:00
|
|
|
class ProfileButton(BaseButton):
|
2017-10-30 11:11:58 +00:00
|
|
|
def __init__(self, driver):
|
2018-01-14 17:43:36 +00:00
|
|
|
super(ProfileButton, self).__init__(driver)
|
|
|
|
self.locator = self.Locator.xpath_selector("//*[@text='Profile']/..")
|
2017-10-30 11:11:58 +00:00
|
|
|
|
|
|
|
def navigate(self):
|
2018-01-14 17:43:36 +00:00
|
|
|
from views.profile_view import ProfileView
|
|
|
|
return ProfileView(self.driver)
|
2017-10-23 20:46:49 +00:00
|
|
|
|
|
|
|
|
2017-10-30 11:11:58 +00:00
|
|
|
class SaveButton(BaseButton):
|
|
|
|
def __init__(self, driver):
|
|
|
|
super(SaveButton, self).__init__(driver)
|
|
|
|
self.locator = self.Locator.xpath_selector(
|
|
|
|
"//android.widget.TextView[@text='SAVE']")
|
|
|
|
|
|
|
|
|
2018-01-03 09:34:40 +00:00
|
|
|
class NextButton(BaseButton):
|
|
|
|
def __init__(self, driver):
|
|
|
|
super(NextButton, self).__init__(driver)
|
|
|
|
self.locator = self.Locator.xpath_selector(
|
|
|
|
"//android.widget.TextView[@text='NEXT']")
|
|
|
|
|
|
|
|
|
2017-11-09 10:58:11 +00:00
|
|
|
class AppsButton(BaseButton):
|
|
|
|
def __init__(self, driver):
|
|
|
|
super(AppsButton, self).__init__(driver)
|
|
|
|
self.locator = self.Locator.accessibility_id("Apps")
|
|
|
|
|
|
|
|
|
|
|
|
class StatusAppIcon(BaseButton):
|
|
|
|
def __init__(self, driver):
|
|
|
|
super(StatusAppIcon, self).__init__(driver)
|
|
|
|
self.locator = self.Locator.xpath_selector(
|
|
|
|
"//*[@text='Status']")
|
|
|
|
|
|
|
|
|
2018-01-03 09:34:40 +00:00
|
|
|
class BaseView(object):
|
2017-08-28 10:02:20 +00:00
|
|
|
def __init__(self, driver):
|
|
|
|
self.driver = driver
|
2017-10-19 13:49:20 +00:00
|
|
|
|
2018-01-14 17:43:36 +00:00
|
|
|
self.home_button = HomeButton(self.driver)
|
|
|
|
self.button = WalletButton(self.driver)
|
|
|
|
self.wallet_button = self.button
|
|
|
|
self.profile_button = ProfileButton(self.driver)
|
|
|
|
|
2017-10-19 13:49:20 +00:00
|
|
|
self.yes_button = YesButton(self.driver)
|
|
|
|
self.no_button = NoButton(self.driver)
|
2017-08-28 10:02:20 +00:00
|
|
|
self.back_button = BackButton(self.driver)
|
2017-11-09 10:55:02 +00:00
|
|
|
self.allow_button = AllowButton(self.driver)
|
2017-10-19 13:49:20 +00:00
|
|
|
self.deny_button = DenyButton(self.driver)
|
2017-11-09 10:58:11 +00:00
|
|
|
self.continue_button_apk = ContinueButtonAPK(self.driver)
|
2018-01-03 09:34:40 +00:00
|
|
|
self.ok_button_apk = OkButton(self.driver)
|
|
|
|
self.next_button = NextButton(self.driver)
|
2017-10-30 11:11:58 +00:00
|
|
|
self.save_button = SaveButton(self.driver)
|
2017-08-28 10:02:20 +00:00
|
|
|
|
2018-01-14 17:43:36 +00:00
|
|
|
self.apps_button = AppsButton(self.driver)
|
|
|
|
self.status_app_icon = StatusAppIcon(self.driver)
|
2017-11-09 10:58:11 +00:00
|
|
|
|
2018-01-03 09:34:40 +00:00
|
|
|
self.element_types = {
|
|
|
|
'base': BaseElement,
|
|
|
|
'button': BaseButton,
|
|
|
|
'edit_box': BaseEditBox,
|
|
|
|
'text': BaseText
|
|
|
|
}
|
|
|
|
|
2017-11-09 10:58:11 +00:00
|
|
|
@property
|
|
|
|
def logcat(self):
|
|
|
|
return self.driver.get_log("logcat")
|
|
|
|
|
2017-08-28 10:02:20 +00:00
|
|
|
def confirm(self):
|
2017-10-05 19:41:17 +00:00
|
|
|
logging.info("Tap 'Confirm' on native keyboard")
|
2017-08-28 10:02:20 +00:00
|
|
|
self.driver.keyevent(66)
|
|
|
|
|
2017-10-05 19:41:17 +00:00
|
|
|
def send_as_keyevent(self, string):
|
|
|
|
keys = {'0': 7, '1': 8, '2': 9, '3': 10, '4': 11, '5': 12, '6': 13, '7': 14, '8': 15, '9': 16,
|
2017-11-17 11:43:38 +00:00
|
|
|
|
|
|
|
',': 55, '-': 69, '+': 81, '.': 56, '/': 76, '\\': 73, ';': 74, ' ': 62,
|
|
|
|
'[': 71, ']': 72, '=': 70,
|
|
|
|
|
|
|
|
'a': 29, 'b': 30, 'c': 31, 'd': 32, 'e': 33, 'f': 34, 'g': 35, 'h': 36, 'i': 37, 'j': 38,
|
|
|
|
'k': 39, 'l': 40, 'm': 41, 'n': 42, 'o': 43, 'p': 44, 'q': 45, 'r': 46, 's': 47, 't': 48,
|
|
|
|
'u': 49, 'v': 50, 'w': 51, 'x': 52, 'y': 53, 'z': 54}
|
2017-10-05 19:41:17 +00:00
|
|
|
for i in string:
|
|
|
|
logging.info("Tap '%s' on native keyboard" % i)
|
|
|
|
time.sleep(1)
|
|
|
|
self.driver.keyevent(keys[i])
|
2017-09-21 17:01:04 +00:00
|
|
|
|
|
|
|
def find_full_text(self, text, wait_time=60):
|
2017-10-05 19:41:17 +00:00
|
|
|
logging.info("Looking for full text: '%s'" % text)
|
2017-09-13 14:34:42 +00:00
|
|
|
element = BaseElement(self.driver)
|
|
|
|
element.locator = element.Locator.xpath_selector('//*[@text="' + text + '"]')
|
2017-09-21 17:01:04 +00:00
|
|
|
return element.wait_for_element(wait_time)
|
2017-09-13 14:34:42 +00:00
|
|
|
|
2017-09-21 17:01:04 +00:00
|
|
|
def find_text_part(self, text, wait_time=60):
|
2017-10-05 19:41:17 +00:00
|
|
|
logging.info("Looking for a text part: '%s'" % text)
|
2017-09-11 10:43:42 +00:00
|
|
|
element = BaseElement(self.driver)
|
2017-09-13 14:34:42 +00:00
|
|
|
element.locator = element.Locator.xpath_selector('//*[contains(@text, "' + text + '")]')
|
2017-09-21 17:01:04 +00:00
|
|
|
return element.wait_for_element(wait_time)
|
2017-09-13 14:34:42 +00:00
|
|
|
|
|
|
|
def element_by_text(self, text, element_type='base'):
|
2018-01-03 09:34:40 +00:00
|
|
|
logging.info("Looking for an element by text: '%s'" % text)
|
|
|
|
element = self.element_types[element_type](self.driver)
|
2017-08-28 10:02:20 +00:00
|
|
|
element.locator = element.Locator.xpath_selector('//*[@text="' + text + '"]')
|
2017-09-13 14:34:42 +00:00
|
|
|
return element
|
2017-08-28 10:02:20 +00:00
|
|
|
|
2017-11-09 10:55:02 +00:00
|
|
|
def element_by_text_part(self, text, element_type='base'):
|
2018-01-03 09:34:40 +00:00
|
|
|
logging.info("Looking for an element by text part: '%s'" % text)
|
|
|
|
element = self.element_types[element_type](self.driver)
|
2017-11-09 10:55:02 +00:00
|
|
|
element.locator = element.Locator.xpath_selector('//*[contains(@text, "' + text + '")]')
|
|
|
|
return element
|
|
|
|
|
2018-01-14 17:43:36 +00:00
|
|
|
def get_home_view(self):
|
|
|
|
from views.home_view import HomeView
|
|
|
|
return HomeView(self.driver)
|
|
|
|
|
2018-01-03 09:34:40 +00:00
|
|
|
def get_chat_view(self):
|
|
|
|
from views.chat_view import ChatView
|
|
|
|
return ChatView(self.driver)
|
|
|
|
|
|
|
|
def get_sign_in_view(self):
|
|
|
|
from views.sign_in_view import SignInView
|
|
|
|
return SignInView(self.driver)
|
|
|
|
|
|
|
|
def get_send_transaction_view(self):
|
|
|
|
from views.send_transaction_view import SendTransactionView
|
|
|
|
return SendTransactionView(self.driver)
|
|
|
|
|
|
|
|
def get_unique_amount(self):
|
|
|
|
return '0.0%s' % datetime.now().strftime('%-m%-d%-H%-M%-S').strip('0')
|