mirror of
https://github.com/Skyvern-AI/skyvern.git
synced 2026-07-09 16:09:13 +00:00
435 B
435 B
Pagination Strategy
Stable sequence
- Extract data on current page.
- Validate non-empty result.
- Advance using intent ("Next page"), not hardcoded selectors.
- Stop on explicit condition:
- no next page,
- duplicate first row,
- max page limit reached.
Guardrails
- Record page index in output metadata.
- Deduplicate by a stable key (
id,url,title+date). - Fail fast if extraction shape changes unexpectedly.