Python スクレイピング seleniumでマウスオーバーする

from selenium import webdriver
from selenium.webdriver.common.action_chains import ActionChains
from selenium.webdriver.common.by import By

# SeleniumでChromeブラウザを開く
driver = webdriver.Chrome()

# ページにアクセスする
driver.get("https://minkabu.jp/pick/balance/buy")

#マウスオーバーする
actions = ActionChains(driver)
actions.move_to_element(driver.find_element(By.XPATH,'//*[@id="dayLabel_20230101"]')).perform()

# ブラウザを終了する
driver.quit()


※Selenium 4.3.0 以降では find_element_by_* メソッドは廃止されました

ネタ元

teratail.com