I've already looked into the thread here: Debugging "Element is not clickable at point" error and Selenium webdriver can't click on a link outside the page which goes to suggest to use some javascript scrolling to the element.
The question I have may just be a waste of breath as I await the developer to fix the underlying bug of the fact that I cannot scroll this part of the page.
During the run of my selenium test, I try to click on an element that is out of the window area (and it can't scroll, that is the bug I know about). My question is, for Selenium webdriver tests, can you only click on elements that are in the viewable area and you cannot scroll to?
Or is it pretty much failing (rightfully so, because of the bug) and selenium works purely with what is visible on the screen?
Thanks, hopefully it's a bit clear.