scrollIntoView
Scroll element into viewport.
Usage
browser.scrollIntoView()
Example
it('should demonstrate the scrollIntoView command', function () {
const elem = $('#myElement');
// scroll to specific element
elem.scrollIntoView();
});