I'm using RED (Robot framework editor) currently working on a project and when trying to click on an href I get an error
ElementClickInterceptedException, element is not clickable at point(616,304). Other element would receive the click : <div class="navigation-bar">...
Code
Wait Until Keyword Succeeds 4x 5s Wait Until Element is Enabled ${button_locator}Click Element ${button_locator}`
HTML
<a href="#" role="button" class="rs-nav-item"><div class="segment-control-item-cat divider-text active">BUTTON</div><span class="rs-ripple-pond">..</span></div>
The XPath I'm using for ${button_locator} is:
//*[@id="root"]/section[2]/div/div[1]/div[2]/div[2]/a[1]
(planning to shorten it later on)
I have tried adding sleep timers, tried scroll into view function, etc. but no results sadly.