def _init_window(self): from qt4i.icontrols import Element, Window from qt4i.qpath import QPath self._win = Window(self) self._win.updateLocator({ 'Safari': { 'type': Element, 'root': self, 'locator': "Safari" }, 'url输入框.未激活键盘': { 'type': Element, 'root': self, 'locator': QPath("/name='URL' & maxdepth=9 & instance=1") }, 'url输入框': { 'type': Element, 'root': self, 'locator': QPath("/name~='地址|Address|URL' & maxdepth=9 & instance=1") }, '打开url': { 'type': Element, 'root': self, 'locator': QPath("/name~='^打开$|^Open$' & maxdepth=15") }, }) self._win.Controls['Safari'].click()
def __init__(self, app): Window.__init__(self, app) self._device = self._app.device locators = { 'logo': { 'type': Element, 'root': self, 'locator': 'logo' }, '用户': { 'type': Element, 'root': self, 'locator': 'email' }, '密码': { 'type': Element, 'root': self, 'locator': 'password' }, '登录': { 'type': Element, 'root': self, 'locator': '登录' }, } self.updateLocator(locators)
def __init__(self, app): Window.__init__(self, app) self._device = self._app.device locators = { '更多信息': { 'type': Element, 'root': self, 'locator': QPath( "/classname = 'Button' & label = '更多信息' & visible = true & maxdepth = 11" ) }, '输入框': { 'type': Element, 'root': self, 'locator': QPath( "/classname = 'TextField' & visible = true & maxdepth = 11" ) }, '名称': { 'type': Element, 'root': self, 'locator': 'qt4i' }, } self.updateLocator(locators)
class Safari(App): '''Safari浏览器 ''' def __init__(self, device): App.__init__(self, device, 'com.apple.safari', app_name='Safari') self._init_window() def _init_window(self): from qt4i.icontrols import Element, Window from qt4i.qpath import QPath self._win = Window(self) self._win.updateLocator({ 'Safari': { 'type': Element, 'root': self, 'locator': "Safari" }, 'url输入框.未激活键盘': { 'type': Element, 'root': self, 'locator': QPath("/name='URL' & maxdepth=9 & instance=1") }, 'url输入框': { 'type': Element, 'root': self, 'locator': QPath("/name~='地址|Address|URL' & maxdepth=9 & instance=1") }, '打开url': { 'type': Element, 'root': self, 'locator': QPath("/name~='^打开$|^Open$' & maxdepth=15") }, }) self._win.Controls['Safari'].click() def open_url(self, url, timeout=1): '''打开Safari浏览器,跳转指定网页 :param url: url地址 :type url: str ''' if self._win.Controls['url输入框.未激活键盘'].wait_for_exist(timeout, 0.05): self._win.Controls['url输入框.未激活键盘'].click() self._win.Controls['url输入框'].value = url self._win.Controls['url输入框'].send_keys('\n') if self._win.Controls['打开url'].exist(): open_btn = self._win.Controls['打开url'] open_btn.click() if open_btn.exist(): # 补充点击防止点击不生效 self.device.click2(open_btn) else: raise Exception("Safari没有出现\"打开\"的对话框")
def __init__(self, app): self._app = app Window.__init__(self, self._app) self.scroll_win = Element(self._app, 'WebView') locators = { 'webview': { 'type': IOSWebView, 'root': self.scroll_win, 'locator': QPath("/classname='WebView'") }, } self.updateLocator(locators)
def __init__(self, app): self._app = app self._device = self._app.device Window.__init__(self, self._app) self.scroll_win = Window(self._app, "ScrollView") locators = { 'webview': { 'type': IOSWebView, 'root': self.scroll_win, 'locator': QPath("/classname='Other'") }, } self.updateLocator(locators)
def _init_window(self): from qt4i.icontrols import Element, Window from qt4i.qpath import QPath self._win = Window(self) self._win.updateLocator({ 'Safari': {'type': Element, 'root': self, 'locator': self._app_name}, 'url输入框.未激活键盘': {'type': Element, 'root': self, 'locator': QPath("/name='URL' & maxdepth=9 & instance=1")}, 'url输入框': {'type': Element, 'root': self, 'locator': QPath("/name~='地址|Address|URL' & maxdepth=9 & instance=1")}, '打开url': {'type': Element, 'root': self, 'locator': QPath("/name~='^打开$|^Open$' & maxdepth=15")}, 'StatusBar': {'type': Element, 'root': self, 'locator': QPath("/classname = 'StatusBar' & visible = true & maxdepth = 2")}, }) if self._url_scheme: self._win.Controls['Safari'].click() else: self.start()
def _init_window(self): from qt4i.icontrols import Element, Window from qt4i.qpath import QPath self._win = Window(self) self._win.updateLocator({ '无线局域网':{'type':Element, 'root':self, 'locator':QPath("/classname='Cell' && name='无线局域网' && maxdepth=8")}, '无线开关':{'type':Element, 'root':self, 'locator':QPath("/classname='Switch' && name='无线局域网' && maxdepth=12")}, '设置':{'type':Element, 'root':self, 'locator':QPath("/classname='Button' && name='设置' && maxdepth=5")}, '蜂窝移动网络':{'type':Element, 'root':self, 'locator':QPath("/classname='Cell' && name='蜂窝移动网络' && maxdepth=8")}, '蜂窝开关':{'type':Element, 'root':self, 'locator':QPath("/classname='Switch' && name='蜂窝移动数据' && maxdepth=12")}, '飞行开关':{'type':Element, 'root':self, 'locator':QPath("/classname='Switch' && name='飞行模式' && maxdepth=9")}, '开发者':{'type':Element, 'root':self, 'locator':QPath("/classname='Cell' && name='开发者' && maxdepth=8")}, 'status':{'type':Element, 'root':self, 'locator':QPath("/classname='Cell' && name='Status' && maxdepth=11")}, 'Enable':{'type':Element, 'root':self, 'locator':QPath("/classname='Switch' && name='Enable' && maxdepth=12")}, '100%Loss':{'type':Element, 'root':self, 'locator':QPath("/classname='Cell' && name='100% Loss' && maxdepth=11")}, '3G':{'type':Element, 'root':self, 'locator':QPath("/classname='Cell' && name='3G' && maxdepth=11")}, 'DSL':{'type':Element, 'root':self, 'locator':QPath("/classname='Cell' && name='DSL' && maxdepth=11")}, 'Edge':{'type':Element, 'root':self, 'locator':QPath("/classname='Cell' && name='Edge' && maxdepth=11")}, 'High Latency DNS':{'type':Element, 'root':self, 'locator':QPath("/classname='Cell' && name='High Latency DNS' && maxdepth=11")}, 'LTE':{'type':Element, 'root':self, 'locator':QPath("/classname='Cell' && name='LTE' && maxdepth=11")}, 'Very Bad Network':{'type':Element, 'root':self, 'locator':QPath("/classname='Cell' && name='Very Bad Network' && maxdepth=11")}, 'Wi-Fi':{'type':Element, 'root':self, 'locator':QPath("/classname='Cell' && name='Wi-Fi' && maxdepth=11")}, 'WI-Fi 802.11ac':{'type':Element, 'root':self, 'locator':QPath("/classname='Cell' && name='Wi-Fi 802.11ac' && maxdepth=11")}, 'ADD':{'type':Element, 'root':self, 'locator':QPath("/classname='Cell' && name='ADD' && maxdepth=11")}, '返回':{'type':Element, 'root':self, 'locator':QPath("/classname='Button' && name='返回' && maxdepth=5 && instance=1")}, #ios10 '手动':{'type':Element, 'root':self, 'locator':"手动"}, '关闭':{'type':Element, 'root':self, 'locator':"关闭"}, '服务器':{'type':Element, 'root':self, 'locator':QPath("/classname = 'TextField' & label = '服务器' & maxdepth = 11")}, '端口':{'type':Element, 'root':self, 'locator':QPath("/classname = 'TextField' & label = '端口' & maxdepth = 11")}, #ios11 '配置代理':{'type':Element, 'root':self, 'locator':"配置代理"}, '存储':{'type':Element, 'root':self, 'locator':"存储"}, '返回.无线局域网':{'type':Element, 'root':self, 'locator':"无线局域网"}, 'Conditioner':{'type':Element, 'root':self, 'locator':"Network Link Conditioner"}, }) self.start()
def __init__(self, app): Window.__init__(self, app) self._device = self._app.device locators = { '通用': { 'type': Element, 'root': self, 'locator': QPath("/classname = 'Cell' & label = '通用' & maxdepth = 7") }, '关于本机': { 'type': Element, 'root': self, 'locator': QPath( "/classname = 'StaticText' & label = '关于本机' & visible = true & maxdepth = 12" ) }, '名称': { 'type': Element, 'root': self, 'locator': QPath( "/classname = 'StaticText' & label = '名称' & visible = true & maxdepth = 11" ) }, } self.updateLocator(locators)
class Preferences(App): '''系统app 设置 ''' def __init__(self, device): App.__init__(self, device, 'com.apple.Preferences', app_name='设置') self._init_window() def _init_window(self): from qt4i.icontrols import Element, Window from qt4i.qpath import QPath self._win = Window(self) self._win.updateLocator({ '无线局域网': { 'type': Element, 'root': self, 'locator': QPath("/classname='Cell' && name='无线局域网' && maxdepth=8") }, '无线开关': { 'type': Element, 'root': self, 'locator': QPath("/classname='Switch' && name='无线局域网' && maxdepth=12") }, '设置': { 'type': Element, 'root': self, 'locator': QPath("/classname='Button' && name='设置' && maxdepth=5") }, '蜂窝移动网络': { 'type': Element, 'root': self, 'locator': QPath("/classname='Cell' && name='蜂窝移动网络' && maxdepth=8") }, '蜂窝开关': { 'type': Element, 'root': self, 'locator': QPath("/classname='Switch' && name='蜂窝移动数据' && maxdepth=12") }, '飞行开关': { 'type': Element, 'root': self, 'locator': QPath("/classname='Switch' && name='飞行模式' && maxdepth=9") }, '开发者': { 'type': Element, 'root': self, 'locator': QPath("/classname='Cell' && name='开发者' && maxdepth=8") }, 'status': { 'type': Element, 'root': self, 'locator': QPath("/classname='Cell' && name='Status' && maxdepth=11") }, 'Enable': { 'type': Element, 'root': self, 'locator': QPath("/classname='Switch' && name='Enable' && maxdepth=12") }, '100%Loss': { 'type': Element, 'root': self, 'locator': QPath("/classname='Cell' && name='100% Loss' && maxdepth=11") }, '3G': { 'type': Element, 'root': self, 'locator': QPath("/classname='Cell' && name='3G' && maxdepth=11") }, 'DSL': { 'type': Element, 'root': self, 'locator': QPath("/classname='Cell' && name='DSL' && maxdepth=11") }, 'Edge': { 'type': Element, 'root': self, 'locator': QPath("/classname='Cell' && name='Edge' && maxdepth=11") }, 'High Latency DNS': { 'type': Element, 'root': self, 'locator': QPath( "/classname='Cell' && name='High Latency DNS' && maxdepth=11" ) }, 'LTE': { 'type': Element, 'root': self, 'locator': QPath("/classname='Cell' && name='LTE' && maxdepth=11") }, 'Very Bad Network': { 'type': Element, 'root': self, 'locator': QPath( "/classname='Cell' && name='Very Bad Network' && maxdepth=11" ) }, 'Wi-Fi': { 'type': Element, 'root': self, 'locator': QPath("/classname='Cell' && name='Wi-Fi' && maxdepth=11") }, 'WI-Fi 802.11ac': { 'type': Element, 'root': self, 'locator': QPath( "/classname='Cell' && name='Wi-Fi 802.11ac' && maxdepth=11" ) }, 'ADD': { 'type': Element, 'root': self, 'locator': QPath("/classname='Cell' && name='ADD' && maxdepth=11") }, '返回': { 'type': Element, 'root': self, 'locator': QPath( "/classname='Button' && name='返回' && maxdepth=5 && instance=1" ) }, #ios10 '手动': { 'type': Element, 'root': self, 'locator': "手动" }, '关闭': { 'type': Element, 'root': self, 'locator': "关闭" }, '服务器': { 'type': Element, 'root': self, 'locator': QPath( "/classname = 'TextField' & label = '服务器' & maxdepth = 11") }, '端口': { 'type': Element, 'root': self, 'locator': QPath( "/classname = 'TextField' & label = '端口' & maxdepth = 11") }, #ios11 '配置代理': { 'type': Element, 'root': self, 'locator': "配置代理" }, '存储': { 'type': Element, 'root': self, 'locator': "存储" }, '返回.无线局域网': { 'type': Element, 'root': self, 'locator': "无线局域网" }, 'Conditioner': { 'type': Element, 'root': self, 'locator': "Network Link Conditioner" }, }) self.start() def _switch_wifi(self, network_type, timeout=1): '''wifi切换 ''' #进入无线网络 self._win.Controls['无线局域网'].click() #拨动开关按钮 if int(self._win.Controls['无线开关'].value) == 1: if network_type == 0 or network_type == 1: self._win.Controls['无线开关'].click() else: if network_type == 2 or network_type == 3: self._win.Controls['无线开关'].click() #返回设置页面 self._win.Controls['设置'].click() def _switch_xG(self, network_type, timeout=1): '''xG网络切换 ''' #进入蜂窝移动网络 self._win.Controls['蜂窝移动网络'].click() #拨动开关按钮 if int(self._win.Controls['蜂窝开关'].value) == 1: if network_type == 0 or network_type == 2: self._win.Controls['蜂窝开关'].click() else: if network_type == 1 or network_type == 3: self._win.Controls['蜂窝开关'].click() #返回设置页面 self._win.Controls['设置'].click() def _switch_nlc(self, nlc_type=NLCType.NONE, timeout=1): '''弱网络模拟器切换 ''' #进入开发者模式 self._win.Controls['开发者'].click() #获得版本号 version = int(self._device.ios_version[0]) if version == 1: version = int(self._device.ios_version[:2]) #进入状态选择 if version == 11: self._win.Controls['Conditioner'].click() else: self._win.Controls['status'].click() status = self._win.Controls['Enable'] if nlc_type == NLCType.NONE: if int(status.value) == 1: status.click() else: if int(status.value) == 0: status.click() self._win.Controls[nlc_type].click() if version == 11: pass else: self._win.Controls['返回'].click() self._win.Controls['设置'].click() def switch_network(self, network_type, nlc_type=NLCType.NONE, timeout=1): '''网络切换 :param network_type: 网络类型,如下: 0:无WIFI无4G 1:无WIFi有4G 2:有WIFI无4G 3:有WIFI有4G 4:飞行模式 5:保持不变,仅设置弱网 :type network_type: int :param nlc_type: 模拟弱网络类型 :type nlc_type: NLCType ''' if network_type == 4: value = int(self._win.Controls['飞行开关'].value) if value == 0: self._win.Controls['飞行开关'].click() elif network_type == 5: value = int(self._win.Controls['飞行开关'].value) if value == 1: self._win.Controls['飞行开关'].click() self._switch_nlc(nlc_type, timeout) else: if self._win.Controls['飞行开关'].value == True: self._win.Controls['飞行开关'].click() self._switch_wifi(network_type, timeout) self._switch_xG(network_type, timeout) self._switch_nlc(nlc_type, timeout) def set_host_proxy(self, server, port, wifi_name): '''设置host代理 :param server: 服务器名 :type server: str :param port: 端口号 :type port: int :param wifi: wifi名 :type wifi: str ''' #ios版本 version = int(self._device.ios_version[0]) if version == 1: version = int(self._device.ios_version[:2]) time.sleep(1) #添加保护 #进入无线局域网 if self._win.Controls['无线局域网'].wait_for_exist(2, 0.05): self._win.Controls['无线局域网'].click() time.sleep(1) #添加保护 from qt4i.icontrols import Element from qt4i.qpath import QPath self._win.updateLocator({ 'wifi_name': { 'type': Element, 'root': self, 'locator': wifi_name }, 'wifi_title': { 'type': Element, 'root': self, 'locator': QPath("/classname='NavigationBar' & maxdepth=4 & name='%s'" % wifi_name) }, }) self._win.Controls['wifi_name'].click() time.sleep(1) #添加保护 if self._win.Controls['wifi_title'].exist(): logger.info('已经是%s, 无需切换WiFi' % wifi_name) else: #再点击一次进入代理设置 self._win.Controls['wifi_name'].click() if version == 11: self._win.Controls['配置代理'].click() self._win.Controls['手动'].click() #服务器框 server_text_field = self._win.Controls['服务器'] server_text_field.click() server_text_field.value = server + '\n' #端口框 port_text_field = self._win.Controls['端口'] port_text_field.value = port if version == 11: self._win.Controls['存储'].click() if self._win.Controls['wifi_name'].wait_for_exist(2, 0.05): self._win.Controls['wifi_name'].click() self._win.Controls['返回.无线局域网'].click() self._win.Controls['设置'].click() def reset_host_proxy(self): '''关闭host代理 ''' #ios版本 version = int(self._device.ios_version[0]) if version == 1: version = int(self._device.ios_version[:2]) time.sleep(1) #添加保护 #进入无线局域网 if self._win.Controls['无线局域网'].wait_for_exist(2, 0.05): self._win.Controls['无线局域网'].click() time.sleep(1) #添加保护 from qt4i.icontrols import Element self._win.updateLocator({ 'wifi_name': { 'type': Element, 'root': self, 'locator': self._device.wifi }, }) self._win.Controls['wifi_name'].click() time.sleep(1) #添加保护 #再点击一次进入代理设置 self._win.Controls['wifi_name'].click() if version == 11: self._win.Controls['配置代理'].click() self._win.Controls['关闭'].click() if version == 11: self._win.Controls['存储'].click() if self._win.Controls['wifi_name'].wait_for_exist(2, 0.05): self._win.Controls['wifi_name'].click() self._win.Controls['返回.无线局域网'].click() self._win.Controls['设置'].click()
class Safari(App): '''Safari浏览器 ''' def __init__(self, device=None, url_scheme=False): from qt4i.device import Device bundle_id = 'com.apple.mobilesafari' app_name = 'Safari 浏览器' if not device: device = Device() App.__init__(self, device, bundle_id) self._url_scheme = url_scheme self._app_name = app_name self._init_window() def _init_window(self): from qt4i.icontrols import Element, Window from qt4i.qpath import QPath self._win = Window(self) self._win.updateLocator({ 'Safari': {'type': Element, 'root': self, 'locator': self._app_name}, 'url输入框.未激活键盘': {'type': Element, 'root': self, 'locator': QPath("/name='URL' & maxdepth=9 & instance=1")}, 'url输入框': {'type': Element, 'root': self, 'locator': QPath("/name~='地址|Address|URL' & maxdepth=9 & instance=1")}, '打开url': {'type': Element, 'root': self, 'locator': QPath("/name~='^打开$|^Open$' & maxdepth=15")}, 'StatusBar': {'type': Element, 'root': self, 'locator': QPath("/classname = 'StatusBar' & visible = true & maxdepth = 2")}, }) if self._url_scheme: self._win.Controls['Safari'].click() else: self.start() def open_url(self, url, page_cls=None): '''打开Safari浏览器,跳转指定网,返回page_cls类的实例 :param url: url地址 :type url: str :param page_cls: 用户实现的WebPage子类,默认不填写则使用基类WebPage :type page_cls: qt4w.webcontrols.WebPage :rtype: qt4w.webcontrols.WebPage ''' if self._win.Controls['url输入框.未激活键盘'].wait_for_exist(1, 0.05): self._win.Controls['url输入框.未激活键盘'].click() self._win.Controls['url输入框'].value = url self._win.Controls['url输入框'].send_keys('\n') if self._url_scheme: if self._win.Controls['打开url'].exist(): open_btn = self._win.Controls['打开url'] open_btn.click() if open_btn.exist(): # 补充点击防止点击不生效 self.device.click2(open_btn) else: raise Exception("Safari没有出现\"打开\"的对话框") else: from qt4i.web import QT4iBrowserWin from qt4w.webcontrols import WebPage if page_cls is None: page_cls = WebPage web = QT4iBrowserWin(self).webview statusbar_offset = self._win.Controls['StatusBar'].rect.height addrbar_offset = self._win.Controls['url输入框'].rect.height web.top_offset = statusbar_offset + addrbar_offset return page_cls(web) def find_by_url(self, url, page_cls=None, timeout=10): '''在当前打开的页面中查找指定url,返回WebPage实例,如果未找到,返回None :param url: 要查找的页面url :type url: str :param page_cls: 用户实现的WebPage子类,默认不填写则使用基类WebPage :type page_cls: qt4w.webcontrols.WebPage :param timeout: 查找超时时间,单位:秒 :type timeout: int/float :rtype: qt4w.webcontrols.WebPage ''' from qt4i.web import QT4iBrowserWin from qt4w.webcontrols import WebPage time0 = time.time() if page_cls is None: page_cls = WebPage pattern = re.compile(url) while time.time() - time0 < timeout: webview = QT4iBrowserWin(self).webview page = page_cls(webview) page_url = page.url if page_url == url or pattern.match(page_url): return page time.sleep(1) else: raise RuntimeError('find url %s failed' % url)