xxxxxxxxxx
url = "https://yahoo.com"
driver = Firefox(executable_path="geckodriver.exe")
driver.get(url)
driver.find_element_by_css_selector("button.btn:nth-child(5)").click()
xxxxxxxxxx
from selenium.webdriver import ActionChains
ActionChains(browser).click(element).perform()