selenium-1 使用selenium中的webdriver模块

使用selenium中的webdriver模块对浏览器进行操作
1)b = webdriver.Firefox() #打开浏览器
2)b.get("http://www.baidu.com") #打开一个网页
3)b.title,current_url 判断访问是否有效
4)ele = find_element_by_id/name() #定位元素
5)ele.clear() ele.send_keys(arg) #清空/输入值
6)b.back() #回到上一页
7)b.find_element_by_link_text()
8)ele1 = b.find_element_by_partial_link_text("软件测试") #模糊定位元素
9)b.find_element_by_css_selector() #复制css路径定位元素

selenium-1  使用selenium中的webdriver模块

selenium-1  使用selenium中的webdriver模块

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/197187.html

(0)
上一篇 2021年11月17日
下一篇 2021年11月17日

相关推荐

发表回复

登录后才能评论