一、简介
ATX Server2是⼀个移动设备管理平台,主要是Python3+NodeJS+RethinkDB开发。用于集中管理我们的设备,以及远程运行测试用例。
官方文档:https://github.com/openatx/atxserver2
搭建这样⼀套系统,需要:
1、atxserver2: 安装网址: https://github.com/openatx/atxserver2
2、atxserver2-android-provider 安装网址:https://github.com/openatx/atxserver2-android-provider
3、node.js 安装网址:http://nodejs.cn/download/
4、rethinkdb 安装网址:https://rethinkdb.com/docs/install/
二、安装
1、Node.js
1.1 安装Node.js
安装网址:http://nodejs.cn/download/,根据电脑系统选择对应安装包下载,安装即可
安装后,验证Node.js
打开终端,输入命令 node --version,能显示版本即安装成功
2、RethinkDB
2.1 安装RethinkDB
安装网址:https://rethinkdb.com/docs/install/,根据系统选择对应文件,安装好之后,运行该软件
3、atxserver
安装网址: https://github.com/openatx/atxserver2,打开网址,将源码拉取下来
解压⽂件,然后使用pycharm新建⼀个虚拟环境,打开项目
打开终端下载依赖包: pip install -r requirements.txt
启动atxsetver服务,终端运⾏: python main.py
启动后,浏览器访问:http://localhost:4000/,输入name即可进入管理页面
⾄此,atxserver 已经搭建好了
4、atxserver2-android-provider
安装网址:https://github.com/openatx/atxserver2-android-provider,打开网址,将源码拉取下来。
解压⽂件,然后使用pycharm再新建⼀个虚拟环境,打开项目。打开终端下载依赖包: pip install -r requirements.txt
构建node依赖环境,打开终端运⾏: node install,如果下载超时,先设置镜像源npm config set registry https://registry.npm.taobao.org ,再次执行 node install
将手机设备连接上电脑,在确保adb连接设备的情况下,终端运行:python main.py --server localhost:4000。当服务起好后,控制台会输出设备信息
此时浏览器刷新设备列表,http://localhost:4000/devices,也可以看见连接上的设备信息,点击使用
点击某个设备,进入其中
⾄此,atxserver2-android-provider环境搭建完成。