Search code examples
python-3.xpuppeteerpyppeteer

Is there a way to scroll to end of page in pyppeteer


I have tried looking in documentation and such, but not able to find a way to scroll down to bottom of page while using pyppeteer library with python3.

Would be great if anyone could point me to the right direction or solution.


Solution

  • I was able to resolve this by doing something like this.

    await page.hover(".class name")

    Thanks everyone