python selenium

Posted 风流 少年

tags:

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

一:安装 chromedriver

https://chromedriver.storage.googleapis.com/index.html 或者 https://npm.taobao.org/mirrors/chromedriver/ 下载和自己的浏览器版本号一致的驱动程序。

将下载下来的驱动文件复制到 /usr/local/bin目录下面。

二:百度搜索案例

import time
from selenium import webdriver
from selenium.webdriver.common.by import By

url = 'https://www.baidu.com'
driver = webdriver.Chrome()
driver.get(url)
time.sleep(2)

driver.find_element(by=By.ID, value='kw').send_keys('Apache POI使用详解')
time.sleep(2)

driver.find_element(by=By.ID, value='su').click()
time.sleep(2)

driver.find_element(by=By.XPATH, value='/html/body/div[2]/div[4]/div[1]/div[3]/div[2]/div/div[1]/h3/a').click()
time.sleep(5)
driver.quit()

以上是关于python selenium的主要内容,如果未能解决你的问题,请参考以下文章

selenium ide和selenium python的区别

python+selenium环境安装

python+selenium十:selenium的二次封装

Selenium 之 Mac 环境下 Python 安装 selenium 踩坑记录

selenium python怎么封装方法

python selenium不关闭当前浏览器修改配置