I'm using selenium webdriver with chrome driver. My problem is:
In a page there is a timer of 10 secs. After the timer stops I need to click an element. When the timer is running the location of that element is (960,508)
(this is just an assumption, because when the timer is running, it is not possible to inspect the element). When the timer stops, the element changes its position, now its position is (764,468)
. And when I try to click this element an error message is shown:
"Element is not clickable at point (960, 508). Other element would receive the click"
My question is, after the timer finishes, I'm able to locate the element at position (764,468)
. but I'm not able to click that element and in the error message the position is shown as (960,508)
.