#9 楼 @shenkai600 搞完后求分享
#8 楼 @dfan 很快就会发出来的,要是急着用,可以先看下 Jenkins 配置文件和构建源码:https://github.com/debugtalk/JenkinsTemplateForApp
#3 楼 @wangcityboy 我会整理下,在下一篇博客中详细介绍,估计今天或明天发出来
#15 楼 @xhlsyyyzyq 当前我在模拟器中运行的,也是挺慢的,还在摸索
#1 楼 @chenhengjie123 之前有搜到过这个,但是看到没有介绍,就没有尝试;现在已经找到方案了
#1 楼 @lihuazhang 最坑爹的是有些项目的依赖仓库是公司的私有仓库,如果依赖仓库的校验方式跟系统还不一致的话。。。
已报名
#5 楼 @lamianxiaodian 这个促销活动页面中没有 js。期待你对这块儿的分析~
#2 楼 @lamianxiaodian 你是说前端页面加载的性能测试么?
Ruby
采用 type 代替 sendkeys 试试
之前写的,里面有详细讲解。
https://testerhome.com/topics/4960
def scrollDownToFind(text)
while true
if not exists { text_exact(text) }
execute_script 'mobile: scroll', direction: 'down'
next
end
found_cell = wait { text_exact(text) }
break
end
found_cell
end
def selectCountry(country_name)
while true
if texts_exact(country_name).length == 0
execute_script 'mobile: scroll', direction: 'down'
next
end
@found_cell = wait { text_exact(country_name) }
break
end
self
end
哎哟不错哦
#10 楼 @qiujiwuhen 这个值的确没有统一标准,都是公司自己定的。至于这个值有什么用,这个就看公司自身的需求了。之前在 UC 的时候,一般都是业务人员根据需要选的测试指标,测试人员提供技术获取这些值。