今天在家重新试过,用 dokcerfile 报错如下:
Hash Sum mismatch
E: Failed to fetch http://211.162.127.22/files/4161000000808046/mirrors.163.com/debian/pool/main/f/fonts-wqy-microhei/fonts-wqy-microhei_0.2.0-beta-2_all.deb Hash Sum mismatch
E: Fetched 9,073 kB in 15s (580 kB/s)
Unable to fetch some archives, maybe run apt-get update or try with --fix-missing?
The command '/bin/sh -c apt-get update && apt-get -y install ttf-wqy-microhei ttf-wqy-zenhei && apt-get cleani' returned a non-zero code: 100
root@default:/mnt/sda1/tmp#
我的 dockerfile:
FROM selenium/standalone-chrome-debug:3.4.0
USER root
RUN apt-get update \
&& apt-get -y install ttf-wqy-microhei ttf-wqy-zenhei \
&& apt-get clean
好的,我明白了改成这样了
node-chrome-debug:
image: debug/chinese
ports:
- 5900:5900
links:
- hub
但是连接 5900 端口,无法连接,我先按照你给的建议我查下,感谢
@ycwdaaaa 我连的这个:192.168.99.100:5900,对应于 compose.yml 里的设置:
node-chrome-debug:
image: selenium/node-chrome-debug
ports:
- 5900:5900
links:
- hub
chinese:
image: debug/chinese
ports:
- 5903:5900
links:
- hub:cold_sweat:
我用 docker-machine restart default
过,依然如此
楼主,我启动了中文的镜像,为什么显示中文还是乱码?
你打印下取值情况,或者你用下面的方式排除下:
对的,打开开发者里面的 GPU 呈现模式分析 - 在 adb shell dumpsys gcxinfo 中
不用的
表示一直都在外包,点点点…偶尔会写点小工具私下用到项目中
你自己调试下:
是的,一直连着电脑充电
写的不错,可以具体事例再详细点就好
自带的,你确定下是不是环境问题,我用的 py3
config: appium --session-override -p 4724 -bp 4734 -U emulator-5554
,进行启动。config: node D:\app\Appium\node_modules\appium\bin\appium.js -p 4723 -bp 4733 -U JTJ4C16331013562
期待后面更详细的更新
你自己调试下,应该是创建文件有问题:
of = OperateFile(PATH("../Log/info.pickle"))
of.mkdir_file()
我感觉这样怎么挺麻烦的。。。我现在参数和加密等,都是根据不同的项目需求,手动封装的
找到相应的资料:
/**
* 获取手机GPRS的下载流量
*
* @return
* */
public static long getMobileRxBytes() {
long ReturnLong = 0; // 查询到的结果
try {
File file = new File("/proc/net/dev");
FileInputStream inStream = new FileInputStream(file);
String a = readInStream(inStream);
int startPos = a.indexOf("rmnet0:");
a = a.substring(startPos);
Pattern p = Pattern.compile(" \\d+ ");
Matcher m = p.matcher(a);
while (m.find()) {
ReturnLong = Long.parseLong(m.group().trim());
break;
}
} catch (FileNotFoundException e1) {
e1.printStackTrace();
}
return ReturnLong;
}
/**
* 获取手机GPRS的上传流量
*
* @return
* */
public static long getMobileTxBytes() {
long ReturnLong = 0; // 查询到的结果
try {
int count = 0; // 返回结果时的计数器
File file = new File("/proc/net/dev");
FileInputStream inStream = new FileInputStream(file);
String a = readInStream(inStream);
int startPos = a.indexOf("rmnet0:");
a = a.substring(startPos);
Pattern p = Pattern.compile(" \\d+ ");
Matcher m = p.matcher(a);
while (m.find()) {
if (count == 8) {
ReturnLong = Long.parseLong(m.group().trim());
break;
}
count++;
}
} catch (FileNotFoundException e1) {
e1.printStackTrace();
}
return ReturnLong;
}
请问下,如果想统计非 wifi 下的流量是哪个字段?rmnet 字段?
原理都一样,一般这样
1.monkey 客户端压测, 监控 crash 和性能指标
2.appium 客户端测试,监控性能
3.遍历测试如思寒的工具,还有论坛分享的基于 robotium 遍历测试,监控性能
我之前用的 monkey,现在我再优化第一种情况
博士,打算加入性能监控的功能吗?
今天又拜读了下
嘿嘿,我也只是略懂
用 fiddler 就能实现