The following line from SeeActAgent.predict:
elements = await get_interactive_elements_with_playwright(self.page, self.config['browser']['viewport'])
returns [] and the agent does not take any step at all. Debug code replaces predicted action with NONE. Agent enters a state of limbo.
The following line from browser_helper.py:get_interactive_elements_with_playwright:
results = await asyncio.gather(*tasks)
returns:
Resuts: [None, None, None, ...]
which ultimately results in:
No action necessary at this stage. Skipped
I have installed the package with pip install -e . to debug.
The following line from
SeeActAgent.predict:returns
[]and the agent does not take any step at all. Debug code replaces predicted action withNONE. Agent enters a state of limbo.The following line from
browser_helper.py:get_interactive_elements_with_playwright:returns:
which ultimately results in:
I have installed the package with
pip install -e .to debug.