我需要测试一个移动应用程序的性能。
我已经使用 jmeter 工具来测试它的服务和 API,但我们也想测试它在设备中的性能。是否有任何工具可以用来测试移动应用程序的性能。
首选可以帮助两个应用程序(即 android 和 IOS)的单一开源工具。
如果有其他方法,我们也可以测试应用程序的性能。
Yandex.Tank有一个 appium 插件(在性能测试之前启动 appium,在测试结束后停止)和 BFG可以运行 Python 场景的插件(这里是一个简单的 example )作为负载测试。您还可以对 UIautomator 使用 python 绑定(bind)。而不是脚本中的 Appium。您可以使用 Overload分析您的测试结果。可以使用 Telegraf 收集监控指标插件使用带有 adb
命令的自定义配置来读取手机上的 /proc
文件系统。例如:
<Monitoring>
<Host address="localhost" interval="1">
<Custom measure="call" label="memory">adb shell 'grep MemFree /proc/meminfo' | awk '{print $2}'</Custom>
<Custom measure="call" label="dsk_data_free">adb shell dumpsys diskstats | grep Data-Free | sed s/%//g | awk '{print $7}'</Custom>
... etc ...
</Monitoring>
关于android - 我们如何测试移动应用程序(android 和 IOS)的性能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40019171/
欢迎光临 OGeek|极客世界-中国程序员成长平台 (https://ogeek.cn/) | Powered by Discuz! X3.4 |