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
Thank you for creating such an amazing package! My goal is to retrieve only the intercepted json_data without the full HTML page content. Is there a way to set intercepted json_data as body to Response object, that received in the parse callback?
I'd suggest not to set a custom route, it's usually not a good idea given all the processing done in the handler. I think you can do something similar to this, i.e. intercepting the "response" event, extracting what you need, storing it somewhere temporarily, retrieving it in the main response callback and returning it there. You might need something like an asyncio.Event if you ran into synchronization issues e.g. if the callback runs before the response event handler (though I'm just thinking out loud, not sure that's even an actual possibility).
Thank you for creating such an amazing package! My goal is to retrieve only the intercepted
json_data
without the full HTML page content. Is there a way to set interceptedjson_data
as body toResponse
object, that received in theparse
callback?( Due to reCAPTCHA protection, using
Playwright
is essential here )The text was updated successfully, but these errors were encountered: