linux cpu占用率如何看
367
2022-09-22
自动化测试工具Quamotion
简介
Quamotion是一个可用于原生、hybrid和移动Web端的自动化测试框架,可以自动化安卓、IOS的真机和模拟器。Quamotion具有如下几个优点:
支持Windows、Linux、Mac操作系统。不用重新编译和修改APP,可以利用各个平台内置的自动化平台工具实现自动化你的APP。支持多种编程语言实现WebDriver,例如Java、Python、PowerShell、C#等。可以兼容支持这些语言的测试框架。
缺点: 要收费,下载安装包不方便。
官方文档:IOS下:
# 需要opensslbrew updatebrew install opensslln -s /usr/local/opt/openssl/lib/libcrypto.1.0.0.dylib /usr/local/lib/ln -s /usr/local/opt/openssl/lib/libssl.1.0.0.dylib /usr/local/lib/# 下载驱动mkdir quamotion-webdrivercd quamotion-webdriverwget -xvzf quamotion-webdriver.0.123.3.osx.10.10-x64.tar.gz# 启动
连接IOS设备并打开UI自动化:
在IPhone里打开首页,信任设备,然后访问在iPhone 设置里,打开开发设置(Developer setting),并切换到打开Enable UI Automation。
永不锁屏
在iPhone设置里,显示与亮度(Display and Brightness),亮度(Auto-Brightness)调到最小,自动锁定(Auto Lock)改为永不(Never)。
安装IOS开发工具XCode
安装最新版本的XCode。 切换到/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/DeviceSupport目录,并创建包含这些内容的zip压缩包,把zip压缩包拷贝到Windows PC。 在PC上,切换目录到yourwebdriverfolder,创建文件夹devimg,把zip包解压到这个目录下。
测试代码
这里以Python为例,首先要安装依赖:
pip install seleniumpip install
实例代码:
import quamotion# 创建一个session,参数是设备的UDID。driver = quamotion.device('72157b76f677f22c98864d62307fdff9d56fa62a')# 等待driver.implicitly_wait(60000)# 进入首屏driver.home_screen()# 打开应用driver.find_element_by_link_text('Safari').click()# 获取文本框urlTextField = driver.find_element_by_class_name('XCUIElementTypeTextField')urlTextField.clear();# 给文本框填入内容urlTextField.send_keys('itms-apps://itunes.apple.com/us/app/apple-store/id304878510')urlTextField.send_keys('\n')# xpath查找元素driver.find_element_by_xpath("//XCUIElementTypeButton[@label='GET']").click()driver.find_element_by_xpath("//XCUIElementTypeButton[@label='INSTALL']").click()driver.find_element_by_xpath("//XCUIElementTypeButton[@label='OPEN']").click()# 关闭弹窗driver.switch_to_alert().accept()# 退出driver.quit()
参考
http://docs.quamotion.mobi/webdriver/configuration/ios/https://github.com/quamotion/python
版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。
发表评论
暂时没有评论,来抢沙发吧~