I have this Selenium Code that should click on a size selection button.
submit_button = driver.find_element_by_class_name(\'pro_sku\') elementList = submit_but
Try below:-
driver.execute_script("arguments[0].click();", elementList[3])
Hope it will help you :)