Debugging “Element is not clickable at point” error

后端 未结 30 2144
余生分开走
余生分开走 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:15

    I had the same problem and it was caused by an id conflict between the div and the link inside the div. So driver was clicking on the div instead of the link that I wanted. I changed the div id and it worked properly.

    Before:

    
    

    After:

    
    

提交回复
热议问题