美文网首页
树莓派3B 安装及运行airtest

树莓派3B 安装及运行airtest

作者: hellity | 来源:发表于2022-03-20 23:58 被阅读0次

硬件及软件环境:树莓派官方系统最新 桌面 + 预装常用软件 版
一键安装:
pip install -U airtest pocoui
报错:

ImportError: libGL.so.1: cannot open shared object file: No such file or directory

解决办法:
sudo apt install libgl1-mesa-glx

报错:OSError: [Errno 8] Exec format error:
py文件头部添加#! /usr/bin/env python3不管用

chmod +x /home/ubuntu/.local/lib/python3.8/site-packages/airtest/core/android/static/adb/linux/adb # 不管用

adb无线连接手机:
Android://localhost:5037/192.168.31.95:5555

报错

OSError: [Errno 8] Exec format error: '/home/pi/.local/lib/python3.9/site-packages/airtest/core/android/static/adb/linux/adb' 

是因为随 airtest 自动安装的 adb 非树莓派 arm 架构,所以报以上错误。解决办法:

sudo apt-get install adb #安装 adb 
cp /usr/bin/adb /home/pi/.local/lib/python3.9/site-packages/airtest/core/android/static/adb/linux/ #拷贝可执行文件至 airtest 文件夹下。

高效简洁的poco定位

返回上一个页面的Poco定位脚本,这种情况更好的方式是不使用Poco定位脚本,替换成 keyevent("BACK") ,更加简单而且稳定。

相关文章

网友评论

      本文标题:树莓派3B 安装及运行airtest

      本文链接:https://www.haomeiwen.com/subject/xuqadrtx.html