1

I'm writing a UI automation using RobotFramework using SeleniumLibrary.

As seen in the image below there is a button hidden behind the fixed footer. I want to click that button using Robot Framework. I tried Scroll Element Into View <button_locator> but it throws below exception.

ElementClickInterceptedException: Message: element click intercepted: Element <a class="zoom-out" href="#" title="Zoom out" role="button" aria-label="Zoom out">...</a> is not clickable at point (1328, 656). Other element would receive the click: <div class="footer-actions layout-align-end-center layout-row flex-1" flex="1" layout="row" layout-align="end center">...</div>

Can someone please help me with this issue.

enter image description here

Prabodha
  • 520
  • 1
  • 6
  • 19

1 Answers1

0
Press Key   xpath=//body        \ue00f    # this is the Page Down key

repeat 2x if neccesary more info? here: Robot Framework using Python, key press without selecting any button or element in the page

tijnn
  • 406
  • 1
  • 8
  • 24