Debugging “Element is not clickable at point” error

后端 未结 30 2117
余生分开走
余生分开走 2020-11-21 23:55

I see this only in Chrome.

The full error message reads:

\"org.openqa.selenium.WebDriverException: Element is not clickable at point (411, 675

30条回答
  •  一生所求
    2020-11-22 00:33

    I met this because a loading dialog cover on this element. I simplely solve it by add a waiting before working with the this element.

    try {
            Thread.sleep((int) (3000));
        } catch (InterruptedException e) {
            //
            e.printStackTrace();
        }
    

    Hope this help!

提交回复
热议问题