How can I go to an element and perform mouse hover action using only javascript and Python? for instance This is my code:
from selenium import webdriver
import time
driver = webdriver.Chrome(executable_path = "chromedriver.exe")
driver.get(url)
btns = driver.find_elements_by_css_selector('il[class="reactions"]')
for btn in btns:
**(I Want to Hover all 'btn' Element Using only "driver.execute_script" Method)**
time.sleep(5)
btn.click()
click()