App移动端性能工具调研
平台
|
描述
|
release版本
|
development版本
|
---|---|---|---|
Android | 在Android平台上,如果希望使用GT的高级功能,如“插桩”等,就必须将GT的SDK嵌入到被调测的应用的工程里,再配合安装好的GT使用。 | 支持 | Android |
iOS | 在iOS平台上,GT是以Framework的形式发布的,使用者只要把GT的Framework合入到被调测工程中,就能使用GT的全部功能。 | 支持 | N/A |

低调大师中文资讯倾力打造互联网数据资讯、行业资源、电子商务、移动互联网、网络营销平台。
持续更新报道IT业界、互联网、市场资讯、驱动更新,是最及时权威的产业资讯及硬件资讯报道平台。
转载内容版权归作者及来源网站所有,本站原创内容转载请注明来源。
-
上一篇
【Python】从Jenkins下载最近一次成功构建的安装包
#-*- coding:utf-8 -*-from case.beatles.test_beatles import TestBeatlesfrom framework.logger import Loggerfrom page.ios.beatles.jenkins_page import Jenkins_Toolclass DownloadApp(TestBeatles): def testDownloadfromJenkins(self): try: jp = Jenkins_Tool() jp.download_app_from_jenkins()except Exception, e: Logger.error(e)self.save_screenshot()self.fail(e.message) #-*- coding:utf-8 -*-from datetime import datetimeimport urllibimport jenkinsimport os job_names = ['job-ios','job_android'] username = 'Jen...
-
下一篇
APPium+Python+iOS使用execute_script() 屏幕滑动方法对比
最近在学习appium自动化,对iOS手机进行滑动操作进行总结:1、mobile:scroll向下滚动整个屏幕driver.execute_script('mobile: scroll', {'direction': 'down'})向上滚动整个屏幕driver.execute_script('mobile: scroll', {'direction': 'up'})向左滚动整个屏幕driver.execute_script('mobile: scroll', {'direction': 'left'})向右滚动整个屏幕driver.execute_script('mobile: scroll', {'direction': 'right'})该方法在实际使用调用时,会滚动2次。执行时间很长。 2、mobile:swipe向下滚动屏幕driver.execute_script('mobile: scroll', {'direction': 'up'})向上滚动屏幕driver.execute_script('mobile: scroll', {'direction': 'down'})...
相关文章
文章评论
共有0条评论来说两句吧...
文章二维码
点击排行
推荐阅读
最新文章
- CentOS6,7,8上安装Nginx,支持https2.0的开启
- Docker快速安装Oracle11G,搭建oracle11g学习环境
- Red5直播服务器,属于Java语言的直播服务器
- SpringBoot2全家桶,快速入门学习开发网站教程
- SpringBoot2配置默认Tomcat设置,开启更多高级功能
- SpringBoot2更换Tomcat为Jetty,小型站点的福音
- CentOS8编译安装MySQL8.0.19
- MySQL数据库在高并发下的优化方案
- SpringBoot2编写第一个Controller,响应你的http请求并返回结果
- Springboot2将连接池hikari替换为druid,体验最强大的数据库连接池