fix for Navigation TimeoutError

pull/1066/head
Drugsosos 2 years ago
parent c883dcba42
commit 213770e173
No known key found for this signature in database
GPG Key ID: 8E35176FE617E28D

@ -213,7 +213,10 @@ class RedditScreenshot(Flaky, Browser):
filename_idx: index for the filename filename_idx: index for the filename
""" """
comment_page = await self.context.new_page() comment_page = await self.context.new_page()
await comment_page.goto(f'https://reddit.com{comment_obj["comment_url"]}') await comment_page.goto(
f'https://reddit.com{comment_obj["comment_url"]}',
timeout=0, # Fix for Navigation TimeoutError
)
# Translates submission' comment # Translates submission' comment
if self.post_lang: if self.post_lang:
@ -272,7 +275,10 @@ class RedditScreenshot(Flaky, Browser):
# Get the thread screenshot # Get the thread screenshot
reddit_main = await self.context.new_page() reddit_main = await self.context.new_page()
await reddit_main.goto(self.reddit_object["thread_url"]) # noqa await reddit_main.goto( # noqa
self.reddit_object["thread_url"],
timeout=0, # Fix for Navigation TimeoutError
)
if settings.config["settings"]["theme"] == "dark": if settings.config["settings"]["theme"] == "dark":
await self.__dark_theme(reddit_main) await self.__dark_theme(reddit_main)

@ -252,7 +252,10 @@ class RedditScreenshot(Browser, Wait):
filename_idx: index for the filename filename_idx: index for the filename
""" """
comment_page = await self.browser.newPage() comment_page = await self.browser.newPage()
await comment_page.goto(f'https://reddit.com{comment_obj["comment_url"]}') await comment_page.goto(
f'https://reddit.com{comment_obj["comment_url"]}',
timeout=0, # Fix for Navigation TimeoutError
)
# Translates submission' comment # Translates submission' comment
if self.post_lang: if self.post_lang:
@ -311,7 +314,10 @@ class RedditScreenshot(Browser, Wait):
# Get the thread screenshot # Get the thread screenshot
reddit_main = await self.browser.newPage() reddit_main = await self.browser.newPage()
await reddit_main.goto(self.reddit_object["thread_url"]) # noqa await reddit_main.goto( # noqa
self.reddit_object["thread_url"],
timeout=0, # Fix for Navigation TimeoutError
)
if settings.config["settings"]["theme"] == "dark": if settings.config["settings"]["theme"] == "dark":
await self.__dark_theme(reddit_main) await self.__dark_theme(reddit_main)

Loading…
Cancel
Save