为什么要用等待时间: 今天在写App的自动化的脚本时发现一个元素,但是往往执行脚本是报错( An element could not be located on the page using the given search parameters.),提示没有找到元素这时就可能出现时而能点击,时而又不能点击到,原因是:因为元素还没有被加载出来,查找的代码就已经被执行了,自然就找不到元素了.解决方式:可以用等待,等元素加载完成后再执行查找元素语句. Python里有三种等待的方式: 1.强制等待…
变量赋值一种是字符串格式化,一种是通过format的方式 1.字符串格式化 s="i am %s,age %d"%('Jasper',23)print(s) 打印输出:i am Jasper,age 23 2.format格式化 s="i am {name},age {age}".format(name='jasper',age='23')print(s) 或 s2="i am {0},age {1}".format('jasper','23')…
在python中,三引号支持字符串跨多行.包含换行符号.制表符号.以及其它特殊字符 >>> hi = ''' ... this ... is a ... test ... ''' >>> print hi this is a test >>> hi '\nthis \nis a \ntest\n' >>> 此外,还可以进行多行注释.…