scroll_to_bottom method

Future<Online> scroll_to_bottom()

Implementation

Future<Online> scroll_to_bottom() async {
  Show.action('scrolling', 'to', 'bottom');
  await (await page).evaluate('''() => {
    window.scrollTo(0, document.body.scrollHeight);
  }''');
  return this;
}