I am using nightwatch for e2etesting my app. One of the tests fails because it cannot scroll to the element that it is testing I suspect. Question do I need to scroll or is ther
you can use the moveToElement()
simply use it like this
browser. .moveToElement(#myElement, 10, 10) .waitForElementVisible(#myElement, 500)