摘要: 阅读全文
posted @ 2018-02-06 11:39 cling_chen 阅读(163) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2018-02-05 18:17 cling_chen 阅读(79) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2018-02-05 18:13 cling_chen 阅读(208) 评论(0) 推荐(0) 编辑
摘要: 北斗星是大熊星座的一部分,由七颗亮星组成,形似斗勺,天枢、天璇、天玑、天权组成斗身,古曰魁、斗魁;玉衡、开阳、摇光组成为斗柄,古曰杓。很容易辨认,故有此名。它的勺头两颗星天璇、天枢叫“指极星”,指向北极星,可以帮助我们在夜间辨认方向,天璇、天枢相连成直线并延伸约五倍的距离,就可以找到北极星。 阅读全文
posted @ 2018-01-31 15:05 cling_chen 阅读(2788) 评论(0) 推荐(0) 编辑
摘要: appiumlibrary用的是1.2.3没有Wait Until Page Contains Element 这个关键字。 pip list 查看本地appiumblirary版本 对比了api上的版本和本地的版本,发现本地版本好久,api上是1.3.6 运行 pip install --upgr 阅读全文
posted @ 2018-01-24 10:20 cling_chen 阅读(1243) 评论(0) 推荐(0) 编辑
摘要: 用pip 失败了 c:\Python27\Scripts>pip install robotframework-databaselibrary Downloading/unpacking robotframework-databaselibrary Could not fetch URL https 阅读全文
posted @ 2018-01-24 10:18 cling_chen 阅读(190) 评论(0) 推荐(0) 编辑
摘要: list list 元组 元组 ('a','b','c') 元组是不可变的,即不能修改,而list是可变的 阅读全文
posted @ 2018-01-24 10:15 cling_chen 阅读(98) 评论(0) 推荐(0) 编辑
摘要: """根据params和testData来组装dataValue #d是需要动态获取的参数及对应方法名的字典 遍历每个参数,如果参数需要动态获取,则调用动态获取的方法。反之,直接写入dateValue里""" 阅读全文
posted @ 2018-01-24 10:13 cling_chen 阅读(112) 评论(0) 推荐(0) 编辑
摘要: log @{testData} log ${testData} 输出结果 20140310 18:34:03.936 : INFO : [u'01010704', u'0', u'0', u'0', u'"code":"200"'] 20140310 18:34:03.941 : INFO : [[ 阅读全文
posted @ 2018-01-24 10:12 cling_chen 阅读(167) 评论(0) 推荐(0) 编辑
摘要: >>> d = dict(vcode='Get_vcode', date='Get_vdate') >>> print d {'date': 'Get_vdate', 'vcode': 'Get_vcode'} >>> 'vcode' in d.keys() True >>> 'v' in d.ke 阅读全文
posted @ 2018-01-24 10:11 cling_chen 阅读(107) 评论(0) 推荐(0) 编辑