0


利用selenium实现自动点击

需要用到的库
from selenium import webdriver
选择要使用的浏览器驱动
# 使用Chrome浏览器打开百度首页
boe = webdriver.Chrome()
boe.get('https://www.csdn.net/')

可以换成其他的网站,我是用来模拟的

passportbox = boe.find_element(By.ID, 'passportbox')  # 查找iframe元素
img = passportbox.find_element  (By.TAG_NAME, 'img')  # 在iframe中查找img标签
img.click()  # 点击img标签

因为自动打开的是没有登陆的,所以要用这块代码去点击

关闭后的代码 在次点击搜索按钮

源码

from selenium import webdriver
import time
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC

# 使用Chrome浏览器打开百度首页
boe = webdriver.Chrome()
boe.get('https://www.csdn.net/')

# 等待一段时间,确保页面加载完成
time.sleep(5)

# 输入搜索关键词并点击搜索按钮
v = boe.find_element(By.ID, 'toolbar-search-input')  # 查找搜索输入框
v.send_keys('俺不想搬砖')  # 输入关键词
time.sleep(5)  # 等待页面加载完成
btn = boe.find_element(By.ID, 'toolbar-search-button')  # 查找搜索按钮
btn.click()  # 点击搜索按钮

# 等待搜索结果页面加载完成
time.sleep(10)

# 在iframe中查找img标签并点击
passportbox = boe.find_element(By.ID, 'passportbox')  # 查找iframe元素
img = passportbox.find_element  (By.TAG_NAME, 'img')  # 在iframe中查找img标签
img.click()  # 点击img标签
btn = boe.find_element(By.ID, 'toolbar-search-button')  # 查找搜索按钮
btn.click()  # 点击搜索按钮

# 等待新页面加载完成
WebDriverWait(boe, 10).until(EC.number_of_windows_to_be(2))  # 等待新窗口打开

# 切换到新页面
boe.switch_to.window(boe.window_handles[1])  # 切换到新窗口

# 在新页面中查找内容为"用户"的li标签
user_li = boe.find_element(By.XPATH, "//li[contains(text(), '用户')]")  # 查找内容为"用户"的li标签
user_li.click()  # 点击"用户"标签

time.sleep(200)  # 等待一段时间,观察效果

我不是很会,写的有点潦草

感觉不错的可以点点赞


本文转载自: https://blog.csdn.net/m0_65442314/article/details/138285761
版权归原作者 俺不想搬砖 所有, 如有侵权,请联系我们删除。

“利用selenium实现自动点击”的评论:

还没有评论