码迷,mamicode.com
首页 > 其他好文 > 详细

selenium框架的使用

时间:2019-05-31 13:07:01      阅读:96      评论:0      收藏:0      [点我收藏+]

标签:index   driver   驱动   span   class   send   nbsp   ble   element   

selenium是浏览器自动化测试框架,使用前可直接pip install selenium安装

需要选择与当前使用浏览器匹配的驱动下载调用。本次采用Chrome 74版,Chrome驱动下载地址:http://chromedriver.storage.googleapis.com/index.html

使用小案例:

from selenium import webdriver
from time import sleep

bower=webdriver.Chrome(executable_path=rC:\Users\asaxh\Desktop\chromedriver.exe)

bower.get(url=https://www.hao123.com/)        #指定导航栏URL
sleep(2)

text_input=bower.find_element_by_name(word)
text_input.send_keys(胡歌)                     #要搜素的内容
sleep(2)

bower.find_element_by_class_name(submitInput).click() #点击搜素
sleep(3)

bower.quit()        #关闭浏览器并退出

 

selenium框架的使用

标签:index   driver   驱动   span   class   send   nbsp   ble   element   

原文地址:https://www.cnblogs.com/wen-kang/p/10954647.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!