Open
Description
Hi @ALL,
I’m encountering a similar issue and would appreciate your help. Initially, I received the message, "You need to enable JavaScript to run this app."
However, after enabling requires_js_support: True in my configuration, I am now encountering a timeout error.
--- Executing Fetch Node ---
--- (Fetching HTML from: https://www.example.com/) ---
Attempt 1 failed: Page.goto: Timeout 30000ms exceeded.
Call log:
navigating to "https://www.example.com/", waiting until "networkidle"
Here’s my current configuration:
graph_config = { "llm": { "api_key": OPENAI_API_KEY, "model": "openai/gpt-4o", }, "verbose": True, "headless": False, "loader_kwargs": { "requires_js_support": True, "timeout": 120, "retry_limit": 3, "slow_mo": 20000 } }