Skip to content

Commit 92bf3ca

Browse files
committed
update docstring
1 parent fe09ca4 commit 92bf3ca

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/crawlee/crawlers/_adaptive_playwright/_adaptive_playwright_crawling_context.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ class AdaptivePlaywrightPreNavCrawlingContext(BasicCrawlingContext):
214214
"""Blocks network requests matching specified URL patterns."""
215215

216216
goto_options: GotoOptions | None = None
217-
"""Additional options to pass to Playwright's `Page.goto()` method. Don't support `timeout`."""
217+
"""Additional options to pass to Playwright's `Page.goto()` method. The `timeout` option is not supported."""
218218

219219
@property
220220
def page(self) -> Page:

src/crawlee/crawlers/_playwright/_playwright_pre_nav_crawling_context.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class PlaywrightPreNavCrawlingContext(BasicCrawlingContext):
2727
"""Blocks network requests matching specified URL patterns."""
2828

2929
goto_options: GotoOptions
30-
"""Additional options to pass to Playwright's `Page.goto()` method. Don't support `timeout`."""
30+
"""Additional options to pass to Playwright's `Page.goto()` method. The `timeout` option is not supported."""
3131

3232
async def get_snapshot(self) -> PageSnapshot:
3333
"""Get snapshot of crawled page."""

0 commit comments

Comments
 (0)