python selenium(1)
配置:
python版本3.9
selenium版本4.9
chrome版本98.0.4758.102(正式版本) (64 位)
下载地址:https://www.chromedownloads.net/chrome64win/
chromedriver版本98.0.4758.80
下载地址:http://chromedriver.storage.googleapis.com/index.html
大家可以搜索以下关闭Chrome浏览器自动更新服务的方法,不然Chrome浏览器更新会导致版本不匹配。
- 库
from selenium import webdriver
from selenium.webdriver.chrome.service import Service
from selenium.webdriver.common.by import By
- 打开浏览器及相关网址(此处为百度)
#创建WebDriver对象
#driver=webdriver.Chrome(service=Service(r'D:/chrome/chromedriver_win32/chromedriver.exe'))
driver=webdriver.Chrome()
driver.get("https://www.baidu.com")
- 定位元素
#查找元素,返回webElement对象
'''
try:
element=driver.find_element(By.ID,'kw')
except NoSuchElementException:
pass
'''
element=driver.find_element(By.ID,'kw')
#‘\n’代表回车键
element.send_keys('大数据\n')
如果不使用‘\n’回车而是使用点击按钮
则可更改代码如下:
element=driver.find_element(By.ID,'kw')
element.send_keys('大数据')
element=driver.find_element(By.ID,'su')
element.click()
- 退出
driver.quit()
- 完整代码
from selenium import webdriver
from selenium.webdriver.chrome.service import Service
from selenium.webdriver.common.by import By
from selenium.common.exceptions import NoSuchElementException
#创建WebDriver对象
#方法一:设置路径(chromedriver.exe对应路径)
#driver=webdriver.Chrome(service=Service(r'D:/chrome/chromedriver_win32/chromedriver.exe'))
#方法二:设置chromedriver.exe环境变量path后可使用
driver=webdriver.Chrome()
driver.get("https://www.baidu.com")
#查找元素,返回webElement对象
'''
try:
element=driver.find_element(By.ID,'kw')
except NoSuchElementException:
pass
'''
element=driver.find_element(By.ID,'kw')
element.send_keys('大数据')
element=driver.find_element(By.ID,'su')
element.click()
driver.quit()