#4 楼 @benlooking 使用安装包了,但是安装包地址也被墙了。 最好就是开 ***, 来更新。
#1 楼 @seveniruby 我向官方反应了这个问题,希望他们能放到我们能拿到的地方,或者我们提供 FTP
#6 楼 @zhouxiaoyagirl 这个问题估计会在下一个版本中修复。你可以跟踪下这个问题。
求人试用!
期待更多的更深入的分享
com.android.settings 把这个加入 blacklist
执行单一 apk:
monkey –p <options> -c <options> -s <seed> <限制语句> --throttle <milliseconds> -v 执行次数> C:\monkey_test.txt
执行 apk 集合:
monkey –pkg-blacklist-file /data/blacklist.txt -c <options> -s <seed> <限制语句> --throttle <milliseconds> -v 执行次数> C:\blacklist_test.txt //执行黑名单以外的应用
或
monkey –pkg-whitelist-file /data/whitelist.txt -c <options> -s <seed> <限制语句> --throttle <milliseconds> -v 执行次数 > C:\whitelist_test.txt //执行白名单的应用
cmds/monkey/src/com/android/commands/monkey/Monkey.java
/**
* Load a list of package names from a file.
*
* @param fileName The file name, with package names separated by new line.
* @param list The destination list.
* @return Returns false if any error occurs.
*/
private static boolean loadPackageListFromFile(String fileName, HashSet<String> list) {
BufferedReader reader = null;
try {
reader = new BufferedReader(new FileReader(fileName));
String s;
while ((s = reader.readLine()) != null) {
s = s.trim();
if ((s.length() > 0) && (!s.startsWith("#"))) {
list.add(s);
}
}
}
#4 楼 @seveniruby 就是 robotium
LICEcap 是用来录制 gif 的,推荐
#2 楼 @jakewendao 我是这样做的,一直跳,然后到一个稳定的满意的薪水,然后就去挑有兴趣的公司
一般公司会有加薪机制吧。跳槽加薪是比较靠谱的。
开发证书出来的,应该可以吧
运行下 appium-doctor
试试看, 另外贴代码和日志请用 代码块
#6 楼 @seveniruby appium 的 uiautomator 不能搞,没有开放 api。 Selendroid 估计可以。
On iOS, the dev team implemented their own version of toast messages. It's a message that appears in a tiny box for a few seconds. If they add the proper labels then it should work.
On Android, I'm not sure what can be done as it's an upstream uiautomator issue. Maybe there's some way to monitor accessibility events directly?
UIautomator 的确不支持。
漂亮
#1 楼 @seveniruby 把非 testerhome.com 都定向到 testerhome.com 吧。 除了几个代理外。
低版本的请用 Selendroid