前言
前段时间正好在公司推APP UI自动化的项目 ,中间也抽了一两天时间体验了一下STF平台【移动设备管理控制工具】,借此机会,将STF平台的一些使用心得及遇到问题的解决方案分享给大家。
目的【STF环境搭建】
具体STF环境安装搭建过程,建议大家可以参考下述两篇文章
MAC 下 STF 的环境搭建和运行(https://testerhome.com/topics/3083)
WEB 端批量移动设备管理控制工具 STF 的环境搭建和运行(https://testerhome.com/topics/2988)
可以遇到的问题 【解决方案】
一、实际在搭建环境过程中,遇到protobuf不支持3.0,如果环境安装完后,启动stf local提示:ReqlDriverError: ERROR: Received an unsupported protocol version. This port is for RethinkDB queries. Does your client driver version not match the server? 也是由于protobuf版本的原因,需除到2.x系列,本文降到2.6版本
下载地址: https://github.com/google/protobuf/releases/download/v2.6.1/protobuf-2.6.1.tar.gz
tar -zxvf protobuf-2.6.1.tar.gz
cd protobuf-2.6.1/
./configure
make
make check
sudo make install
重新至2.6.1版本后
安装完STF所有环境后,执行stf doctor来检查环境安装是否都正常
将protobuf降到2.x版本后
如果环境均检查正常,则环境到此为止,一切正常!
启动方式
一、启动rethinkDB
指定端口和缓冲大小启动:rethinkdb --bind all --cache-size 8192 --http-port 8090
二、启动stf服务端
指定ip和允许远程连接启动:stf local --public-ip xx.xx.xx.xx --allow-remote
注:登录界面中,用户名和邮箱输入符合规则即可