increase the deafult browser initial loading timeout and screenshot timeout (#259)

This commit is contained in:
Shuchang Zheng
2024-05-04 23:27:44 -04:00
committed by GitHub
parent d9ddb1bdbe
commit 3c2bb5cca8

View File

@@ -13,8 +13,8 @@ class Settings(BaseSettings):
VIDEO_PATH: str | None = None
HAR_PATH: str | None = "./har"
BROWSER_ACTION_TIMEOUT_MS: int = 5000
BROWSER_SCREENSHOT_TIMEOUT_MS: int = 10000
BROWSER_LOADING_TIMEOUT_MS: int = 12000
BROWSER_SCREENSHOT_TIMEOUT_MS: int = 20000
BROWSER_LOADING_TIMEOUT_MS: int = 120000
MAX_STEPS_PER_RUN: int = 75
MAX_NUM_SCREENSHOTS: int = 10
# Ratio should be between 0 and 1.