首页 > 学院 > 开发设计 > 正文

[Python學習筆記]使用selenium抓取網頁並且雙擊滑鼠(doubleclick)

2019-11-14 16:57:32
字体:
来源:转载
供稿:网友

一開始使用的時候 看官方文件 以為使用 double_click()即可

但後來出現錯誤 

AttributeError: 'WebElement' object has no attribute 'double_click'

後來找了一下解決方式如下

需要再多import ActionChains

from selenium import webdriverfrom selenium.webdriver import ActionChainsdriver = webdriver.Chrome()   driver.get("要抓取得網址")    #double click    variable =  driver.find_element_by_id('ID名稱')actions = ActionChains(driver)actions.move_to_element(variable)actions.double_click(variable)actions.perform()driver.quit()

 


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表