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
One could implement this logic separately in Playwright through request interception. There are a few benefits to this:
Inline node support; can make use of global logic and shared data structures
Direct communication between browser -> server, no need for a socket based relay. Anecdotally in popdown adding a passthrough MITM server did slow things down.
However, direct Playwright commands have a few drawbacks:
Requires chatty communication between node (playwright core) and chromium dev tools. To work with local caching we would need to intercept every outbound request and potentially send back the content.
Follow up to #12.
One could implement this logic separately in Playwright through request interception. There are a few benefits to this:
However, direct Playwright commands have a few drawbacks:
This ticket tracks writing a benchmark comparing the speed of a separate proxy server versus similar functionality written in Node.
The text was updated successfully, but these errors were encountered: