One issue I encountered is with a button on my page that becomes visible only when the user scrolls down. As a result, Protractor tests are throwing an error:
UnknownError: unknown error: Element is not clickable at point (94, 188).
I attempted to resolve this by using the following code snippet:
browser.executeScript('window.scrollTo(0,document.body.scrollHeight)');
This solution worked in Protractor's elementexplorer.js, but unfortunately, it doesn't have any impact in my regular tests. Is there another workaround for this problem?