Last active
January 5, 2021 19:02
-
-
Save theshahzaibc/6d606a609a114a0678fb1b344bdb660b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from selenium.webdriver.common.action_chains import ActionChains | |
menu = driver.find_element_by_id("menu") | |
submenu = driver.find_element_by_id("submenu1") | |
ActionChains(driver) | |
.move_to_element(menu) | |
.click(submenu) | |
.perform() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment