Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions examples/python/collect_ecommerce_pricing_data/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,8 @@ async def _go_to_the_next_page(page: Page) -> bool:
next_page_url = URL + next_page_url # Make it a full URL
await page.goto(next_page_url)
return True
except Exception:
pass
except Exception as error:
print(f"Failed to navigate to the next page: {error}")

return False

Expand Down