Selenium Web Driver & Java. Element is not clickable at point (x, y). Other element would receive the click

前端 未结 8 1459
北恋
北恋 2020-11-21 04:08

I used explicit waits and I have the warning:

org.openqa.selenium.WebDriverException: Element is not clickable at point (36, 72). Other element wou

8条回答
  •  长情又很酷
    2020-11-21 04:49

    In case you need to use it with Javascript

    We can use arguments[0].click() to simulate click operation.

    var element = element(by.linkText('webdriverjs'));
    browser.executeScript("arguments[0].click()",element);
    

提交回复
热议问题