摘要:
网页源码:案例1 :iframe有id、name属性网页上有3个frame:header、menu、main,分别代码顶部、左侧、右侧(其中menu、main在另外一个frameset中)如何定位到“header”框架:driver.switch_to_frame("header")如何定位到“ma... 阅读全文
摘要:
1selenium IDE--录制脚本准备工作:firefox 浏览器安装了selenium IDE 插件实例:打开百度搜索“软件测试”firefox浏览器打开网址:https://www.baidu.com/点击浏览器插件【selenium】图标,弹出selenium IDE 录入界面,Base ... 阅读全文
该文被密码保护。 阅读全文
摘要:
代码:#coding=utf-8from selenium import webdriverdriver=webdriver.Chrome() #调用chrome浏览器driver.get('https://www.baidu.com')print driver.titledriver.quit(... 阅读全文
摘要:
代码如下:#coding=utf-8from selenium import webdriverdriver=webdriver.Ie()driver.get('https://www.baidu.com')print driver.titledriver.quit()报错:Traceback (m... 阅读全文
摘要:
格式化输出:str.format()的用法for x in range(1,11): print('{0:2d} {1:3d} {2:4d}'.format(x, x*x,x*x*x))----------输出如下---------- 1 1 1 2 4 8 3 9 ... 阅读全文
摘要:
原文地址:http://docs.pythontab.com/python/python3.4/datastructures.html#tut-tuples在字典中循环时,关键字和对应的值可以使用iteritems()方法同时解读出来。knights = {'gallahad': 'the pure... 阅读全文
摘要:
原文地址:http://docs.pythontab.com/python/python3.4/datastructures.html#tut-tuples理解字典的最佳方式是把它看做无序的键:值对(key:value 对)集合,键必须是互不相同的(在同一个字典之内)。一对大括号创建一个空的字典:{... 阅读全文
摘要:
原文地址:http://docs.pythontab.com/python/python3.4/datastructures.html#tut-tuples集合是一个无序不重复元素的集。基本功能包括关系测试和消除重复元素。集合对象还支持 union(联合),intersection(交),diffe... 阅读全文
摘要:
tuple0=() #空tuple1="wo", #元组中包括单个元素用,tuple2="monkey","cat","chickey" #可以不用()tuple3=("monkey","cat","chickey") 阅读全文