Python & Selenium - unknown error: Element is not clickable at point (663, 469). Other element would receive the click:

后端 未结 3 1770
天涯浪人
天涯浪人 2021-01-28 04:48

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         


        
3条回答
  •  无人及你
    2021-01-28 05:38

    Try below:-

    driver.execute_script("arguments[0].click();", elementList[3])
    

    Hope it will help you :)

提交回复
热议问题