python+selenium+chrome网页自动化

Posted jeanny2019

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python+selenium+chrome网页自动化相关的知识,希望对你有一定的参考价值。

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网页自动化的主要内容,如果未能解决你的问题,请参考以下文章

手动打开一个chrome网页,想用python+selenium操作这个网页上的控件怎么办

python+selenium操作chrome浏览器抓取网页解决方案

python Chrome + selenium自动化测试与python爬虫获取网页数据

CentOS7下python3 selenium3 使用Chrome的无头浏览器 截取网页全屏图片

Mac 下安装python3.7 + pip 利用 chrome + chromedriver + selenium 自动打开网页并自动点击访问指定页面

一日一技:在Python Selenium + Chromedriver中自定义缓存路径