码迷,mamicode.com
首页 > 编程语言 > 详细

python+selenium+chrome网页自动化

时间:2019-12-27 13:28:00      阅读:77      评论:0      收藏:0      [点我收藏+]

标签:驱动   谷歌浏览器   tps   port   com   logs   搜索   pytho   drive   

python+selenium+chrome网页自动化测试:

1、在pycharm中安装selenium:file-setting-project interpreter 中搜索selenium然后进行安装;

2、下载安装谷歌浏览器驱动;
  引用某位同学的安装路径:https://www.cnblogs.com/qiezizi/p/8632058.html  很简单;
下载完之后,我们将下载的文件放在 Python 的根目录下就可以了。

3、新建项目和.Py文件:
举例:
from selenium import webdriver #导入驱动
wd=webdriver.Chrome()                                              
wd.get(‘https://www.baidu.com/‘)                               
wd.find_element_by_xpath(‘//*[@id="kw"]‘).send_keys("博客园")    
wd.find_element_by_xpath(‘//*[@id="su"]‘).click()                 

python+selenium+chrome网页自动化

标签:驱动   谷歌浏览器   tps   port   com   logs   搜索   pytho   drive   

原文地址:https://www.cnblogs.com/jeanny2019/p/12106488.html

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