André
André
I have the same issue... is there any update on this? thanks in advance
my current workaround was to downgrage: ```yaml [tool.poetry.dependencies] python = "^3.10" quart = "0.17.0" quart-cors = "0.5.0" swagger-ui-py = "22.7.13" quart-openapi = "1.7.2" flask-sqlalchemy = "2.5.1" werkzeug = "2.1.2" aiohttp...
Sorry, I havent realized you answered me... I will try soon your suggestion, thank you!
I tried your suggestion and didnt work:
Hi, any updates on this?
I have a multi agent application where I need to call the agent from browser-use: https://github.com/browser-use/browser-use which is built on top of langchain... The question is how can I guarantee...
> [@tropxy](https://github.com/tropxy) I'm not able to reproduce this error. Could you share your full code (for eg: I'm not able to see which URL you used or how you did...
Thanks for the quick reply. After changing the code as suggested and also using BrowserProfile to include the cookies_file, now I get this: ```python slyops | DEBUG [agent] Version: v0.2.4,...
So, I have overcome the bottleneck with the chromium sandbox issue (by using `chromium_sandbox=False`) and now the issue seems to be the cookies as it seems the agent is ignoring...
After I have used this method (` await page.context.add_cookies(cookies)`): ```python cookies = await get_login_cookies(...) logger.info(f"Cookies NOW: {cookies}") await browser_session.start() page = await browser_session.get_current_page() await page.context.add_cookies(cookies) agent = Agent( task=task, llm=llm,...