windows10搭建atx安装设备集群管理

1.首先安装Golang go语言和rethinkdb:

安装Golang环境:
下载地址:https://golang.org/dl/
安装说明:http://www.runoob.com/go/go-environment.html

安装rethinkdb:
https://rethinkdb.com/docs/install/

2.安装atx-server

go get -v github.com/openatx/atx-server

如果报错如下:

go: missing Git command. See https://golang.org/s/gogetcmd package github.com/astaxie/beego: exec: "git": executable file not found in %PATH%

这是因为没有安装 Git 的原因;或者装了 Git 没有配置好环境变量。

第一步:检查是否安装 Git,没有安装的去安装下载。
下载地址:http://git-scm.com/downloads

第二步:设置环境变量
直接默认安装在C盘:C:\Program Files\Git。所以设置环境变量PATH值为:C:\Program Files\Git\bin

继续执行下载命令~

注:GO包自动下载在环境变量$GOPATH设置的路径下的src中
windows10搭建atx安装设备集群管理_第1张图片

windows10搭建atx安装设备集群管理_第2张图片

3.build atx-server

进入下载目录 C:\Users\xuy\go\src\github.com\openatx\atx-server
执行:go build
成功之后可以在此目录下看到 atx-server.exe

4.启动rethink和atx-server

找到安装目录双击.exe文件

5.安装uiautomator2 并将其安装至手机上

PC端上装好uiautomator2

python3 -m pip install --pre --upgrade uiautomator2  #PC上python2、3共存,指定版本安装uiautomator2

将安装设备通过usb连接至PC且确保 adb devices可以正确识别设备
执行如下代码,将自动将uiautomator安装到手机上 并自动运行
其中init后面的IP地址为步骤4 启动atx-server的电脑的 ip:8000

python3 -m uiautomator2 init 启动atx-server的ip:8000        #将uiautomator安装到手机设备上

安装的log日志如下,可以看到相应设备的ip:(listening on XXXXXX)
windows10搭建atx安装设备集群管理_第3张图片
如果在安装atx-agent时,卡主或无法下载。需要获取离线安装包(exe文件)

6.全部就绪,见证奇迹

http://localhost:8000
http://192.168.1.2:8000 #我PC机的IP地址,与我PC同一局域网的电脑访问也能打开页面
windows10搭建atx安装设备集群管理_第4张图片
windows10搭建atx安装设备集群管理_第5张图片
——————————————————————————————————————————分割线

自动化脚本demo:
明天补、占位!

运行期间可以去http://localhost:8000 看看对应测试机的脚本运行情况

手动GIF~~~~~~~~~~~~~~~~~~~~~~~~~


防坑指南:
go语言代码中是相对路径,执行server必须要cd至指定路径执行启动server命令。这样浏览器才能正常打开。

你可能感兴趣的:(Python)