How to resolve ElementNotInteractableException: Element is not visible in Selenium webdriver?

前端 未结 5 1406
春和景丽
春和景丽 2020-11-21 13:53

Here I have the image of my code and the image of my error. Can anyone help me to resolve this issue?

5条回答
  •  误落风尘
    2020-11-21 14:19

    A solution to this for Javascript looks like this. You will have to modify the time to suit your need.

    driver.manage().setTimeouts({ implicit: 30000 });

    Hope this is helpful to someone. see the docs for reference

提交回复
热议问题