爬虫 - iframe处理+动作链

文章目录


一、iframe

如果定位的吧标签是存在于iframe标签之中的, 则必须通过如下操作在进行标签定位

from selenium import webdriver

bro = webdriver.Chrome(executable_path="./chromedriver.exe")
bro.get("https://www.runoob.com/try/try.php?filename=jqueryui-api-droppable")

# 通过switch_to.frame切换浏览器标签定位的作用域
bro.switch_to.frame('iframeResult')
# 获取滑块
input_start = bro.find_element_by_id("draggable")
input_end = bro.find_element_by_id("droppable")

二、动作链

1.ActionChains的使用

# 导包
from selenium.webdriver import ActionChains
# 创建一个动作链对象, 并把浏览器对象传递进去
action = ActionChains(bro)

2. 拖动div

  • click_and_hold : 点击并长按
  • move_by_offset : 拖动模块
  • perform() : 让动作链立即执行
  • action.release() : 释放动作链
# 创建动作链对象
action = ActionChains(bro)
# 点击并长按滑块
action.click_and_hold(input_start)

for i in range(5):
    # 向x方向水平拖动17像素
    action.move_by_offset(17, 0).perform()
    sleep(0.3)
# 关闭
action.release()
# 关闭
bro.quit()
上一篇:javascript – 立即调用函数表达式(IIFE)与否


下一篇:JavaScript中的变量阴影