Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat: chromium scroller #836

Merged
merged 3 commits into from
Dec 6, 2024

Conversation

aleenprd
Copy link

@aleenprd aleenprd commented Dec 3, 2024

This MR is for adding a feature for capability of just scrolling pages. This was proposed in the following issue: #793 (comment)

Can test with:

import asyncio
from pprint import pprint
from scrapegraphai.docloaders.chromium import ChromiumLoader

async def main():
    loader = ChromiumLoader(
        urls=[],
        backend="playwright",
        headless=False,
        proxy=None,
        requires_js_support=True,
    )
    content = await loader.ascrape_playwright_scroll(
        url="https://www.reddit.com/",
        timeout=None,
        scroll=15000,
        sleep=3,
        scroll_to_bottom=True
    )
    pprint(content)

if __name__ == "__main__":
    asyncio.run(main())

@VinciGit00 VinciGit00 merged commit 5467630 into ScrapeGraphAI:pre/beta Dec 6, 2024
1 check passed
Copy link

github-actions bot commented Dec 6, 2024

🎉 This PR is included in version 1.33.0-beta.2 🎉

The release is available on:

Your semantic-release bot 📦🚀

Copy link

github-actions bot commented Dec 8, 2024

🎉 This PR is included in version 1.34.0-beta.1 🎉

The release is available on:

Your semantic-release bot 📦🚀

Copy link

github-actions bot commented Jan 3, 2025

🎉 This PR is included in version 1.34.0 🎉

The release is available on:

Your semantic-release bot 📦🚀

@aleenprd aleenprd deleted the feat_chromium_scroller branch February 22, 2025 19:47
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants