大家好,我是空空star,本篇给大家分享一下Selenium之不打开浏览器模式。
本篇使用的selenium版本如下:
Version: 4.8.2
本篇使用的浏览器如下:
在不打开浏览器情况下,查一下我的文章质量分。
输出文章标题、发布时间、质量分、质量分建议。
from selenium import webdriver
from selenium.webdriver.common.by import By
options = webdriver.ChromeOptions()
options.add_argument('--headless')
driver = webdriver.Chrome(options=options)
driver.get('https://www.csdn.net/qc')
driver.implicitly_wait(5)
input = driver.find_element(By.CLASS_NAME,'el-input__inner')
input.send_keys('https://blog.csdn.net/weixin_38093452/article/details/129638168')
search = driver.find_element(By.CLASS_NAME,'trends-input-box-btn')
search.click()
result = driver.find_element(By.CLASS_NAME,'csdn-body-right')
print(result.text)
driver.quit()
Selenium基础篇之八大元素定位方式
- 空空star · 2023-03-19 00:08:56 -
88
文章质量良好
Process finished with exit code 0