You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To be able to use browser-use for network traffic analysis, it should be able to create a HAR file of all the requests and responses that it processes during the run.
Proposed Solution
Since Browser-Use makes use of Playwright under the hood, and Playwright supports creating a HAR file this can be easily implemented. To accomplish this, the variable record_har_path = FILE_PATH should be added to browser-use\browser\context.py in the function async def _create_context(self, browser: PlaywrightBrowser):. If this path can be provided in BrowserContextConfig, this will allow users to create their own browser with HAR file recording enabled.
Alternative Solutions
No response
Additional Context
The text was updated successfully, but these errors were encountered:
Problem Description
To be able to use browser-use for network traffic analysis, it should be able to create a HAR file of all the requests and responses that it processes during the run.
Proposed Solution
Since Browser-Use makes use of Playwright under the hood, and Playwright supports creating a HAR file this can be easily implemented. To accomplish this, the variable
record_har_path = FILE_PATH
should be added to browser-use\browser\context.py in the functionasync def _create_context(self, browser: PlaywrightBrowser):
. If this path can be provided in BrowserContextConfig, this will allow users to create their own browser with HAR file recording enabled.Alternative Solutions
No response
Additional Context
The text was updated successfully, but these errors were encountered: