Hello,
When I am working on a robot framework, the first half of my code is working properly, but at the end of the code, Click Element is not working.
Blockquote
input text ${LOCATOR_Email_Address} ${Email_Address}
input text ${LOCATOR_Password} ${Password}
click element ${Button_01}
SLEEP 3s
IF “${Button_01}” != “xpath=//button[contains(.,‘Request’)]”
click element ${Back}
SLEEP 5s
EXECUTE JAVASCRIPT window.scrollTo(200,650)
sleep 15s
ELSE
click element ${Button_02}
SLEEP 3s
IF “${Button_02}” != “xpath=//span[contains(.,‘Yes’)]”
click element ${Back}
SLEEP 5s
EXECUTE JAVASCRIPT window.scrollTo(200,650)
sleep 15s
ELSE
click element ${Sign}
SLEEP 5s
IF “${Sign}” != “xpath=//canvas”
click element ${Continue_02}
SLEEP 5s
click element ${Cancel}
SLEEP 3s
ELSE
click element ${Dashboard}
SLEEP 5s
Blockquote
Here, the code passes until “click element ${Sign}” without any issue. The element is loaded and it’s available but when I try to click it, it is not happening. But sometimes it’s working.
Otherwise, it is displaying below error message,
" ElementClickInterceptedException: Message: element click intercepted: Element … is not clickable at point (447, 472). Other element would receive the click:
I have tried it in different ways, but still, I couldn’t find a solution for this.
So, I request you to help me to solve this problem. Thank You