from selenium import webdriver
from selenium.webdriver.common.action_chains import ActionChains
from selenium.webdriver.common.by import By
driver = webdriver.Chrome()
driver.get("https://www.rapidtables.com/tools/click-counter.html")
element_to_double_click = driver.find_element(By.ID, "addbtn")
actions = ActionChains(driver)
actions.double_click(element_to_double_click).perform()
Selenium Action Chains를 활용해 더블 클릭 하는 방법입니다.
element_to_double_click에 더블 클릭하려는 요소를 설정 후 실행하면 됩니다.
728x90
'플그래밍 > 파이써언' 카테고리의 다른 글
[파이썬] Selenium - 헤드레스(Headless, 창 없는 백그라운드 실행) 모드 (45) | 2024.04.24 |
---|---|
[파이썬] Selenium - 마우스 우클릭 (ActionChains) (7) | 2024.04.24 |
[파이썬] Selenium - Hover Over 하는 방법 (5) | 2024.04.24 |
[파이썬] Selenium - 드래그 앤 드롭 (Drag & Drop) 하는 방법 (4) | 2024.04.24 |
[파이썬] Selenium - AttributeError: 'WebDriver' object has no attribute 'find_element_by_id' (3) | 2024.04.24 |