I need to scroll down, but the problem is the scrolling is not applied in whole page its only a table body.
i tried Set_focus_on_element and move_over to the table and then tried scrolling but it didnt work.
to scroll till the element is located i used
Execute Javascript window.document.evaluate("${xpath}", document, null, XPathResult.FIRST_ORDERED_NODE_TYPE, null).singleNodeValue.scrollIntoView(true)
This seems to work fine on other places but to scroll only Table body, first i need to set focus there, but no luck so far