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://finance.naver.com/sise/")
element_to_hover_over = driver.find_element(By.XPATH, '//*[@id="contentarea"]/div[1]/div[1]/ul/li[3]')
actions = ActionChains(driver)
actions.move_to_element(element_to_hover_over).perform()
특정 요소 위에 마우스를 Hover하는 방법입니다.
코스피200 위에 마우스가 Hover Over된 것을 볼 수 있습니다.
728x90
'플그래밍 > 파이써언' 카테고리의 다른 글
[파이썬] Selenium - 마우스 우클릭 (ActionChains) (7) | 2024.04.24 |
---|---|
[파이썬] Selenium - 더블 클릭 (ActionChains) (4) | 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 |
[파이썬] Selenium - WIKIMEDIA 메인페이지 이미지 다운로드 방법 (1) | 2024.03.15 |