We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
--save-har=my.har
Playwright has support for HAR files, which saves all network requests during a session to a custom file format.
The API is awkward but we can use route_from_har. We'll need to add update=True to save requests to the file, instead of "serveing" them.
route_from_har
update=True
There's a few more options to:
update_content
"embed"|"attach"
--har-content=embed
update_mode
"full"|"minimal"
--har-mode=full
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Playwright has support for HAR files, which saves all network requests during a session to a custom file format.
The API is awkward but we can use
route_from_har
. We'll need to addupdate=True
to save requests to the file, instead of "serveing" them.There's a few more options to:
update_content
:"embed"|"attach"
. Maybe--har-content=embed
?update_mode
:"full"|"minimal"
. Maybe--har-mode=full
?The text was updated successfully, but these errors were encountered: