When trying to click a button on ExtnJs
appl I receive the error following error:
org.openqa.selenium.WebDriverException: Element is not clickable at point (x, y). Other element would receive the click:
<div id=" ">..</div>
On clicking a button,page will be loaded with a new contents.
code:
driver.findElement(by.xpath("//a[@id='tabNameAtnBtn']")).click();
or
driver.findElement(by.xpath("//a/span/span/span[contains(text(),'Name')]")).click();
or
action.moveToElement(driver.findElement(by.xpath("//a[@id='tabNameAtnBtn']"))).click().perform();
Click
operation is not happening, but the object is getting identified. and then fails with displaying the error message.
Please let me how to resolve this issue. Thanks