feat(cli): Add Adaptive and Stagehand crawler templates#1888
Merged
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #1888 +/- ##
==========================================
- Coverage 92.86% 92.83% -0.03%
==========================================
Files 167 167
Lines 11699 11699
==========================================
- Hits 10864 10861 -3
- Misses 835 838 +3
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Add `http`, `adaptive-beautifulsoup`, and `adaptive-parsel` to the cookiecutter project template (`crawlee create`), plus matching markers, parametrization in the e2e templates tests, and entries in the scheduled-tests CI matrix so the new types get the same coverage as existing ones.
192c1b6 to
6986eef
Compare
janbuchar
approved these changes
May 11, 2026
Why: Picks up the API key from CI/local env automatically, with a clear error if it's missing — instead of leaving a placeholder string that silently fails at runtime. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds three crawler types to the cookiecutter project template and the scheduled E2E templates tests:
adaptive-beautifulsoup— usesAdaptivePlaywrightCrawler.with_beautifulsoup_static_parser().adaptive-parsel— usesAdaptivePlaywrightCrawler.with_parsel_static_parser().stagehand— usesStagehandCrawler. The template ships a placeholder API key; the E2E test only validates the build and skips the run.