Пожалуйста, обратитесь к решению ниже:
с использованием ActionChain
button_actual=WebDriverWait(driver, 30).until(
EC.element_to_be_clickable((By.ID, "submitMe")))
actionChains.move_to_element(button_actual).click().perform()
или
Используя Javascript нажмите
button_actual=WebDriverWait(driver, 30).until(
EC.element_to_be_clickable((By.ID, "submitMe")))
driver.execute_script("arguments[0].click();", button_actual)
Примечание: , пожалуйста, добавьте ниже импорта в ваше решение
from selenium.webdriver.support import expected_conditions as EC
from selenium.webdriver.common.by import By
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.common.action_chains import ActionChains