Replies: 1 comment 2 replies
-
An MITM with the proxy approach is probably the best option. Data is lost in the browser during disconnects because the browser clears data that would make it detectable. If UC Mode gets people past the CAPTCHAs, I'm wondering what the |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am loving this library, thank you for the hard work. I have another cdp network events question in undetected mode (I know this has been asked millions of times). There is a quirky issue where I cannot get all network traffic in UC mode. It is not due to an iframe as was the cause in another issue. You mentioned in several other issues this could be due to the disconnects and reconnects that the driver does to avoid detection but is there any way to capture all events despite this?
I've tried both adding an event handler and the
--uc-cdp-events
option withget_log("performance")
. The event handler is successful at capturing some events but not the request I am looking for. I used the basic:When I use the performance logs, there are no network events logged until I call
sb.refresh()
, but it seems all previous network events were cleared before the refresh. I tried callingget_log
at random intervals and oddly enough it returns different requests each time until nothing is returned a few seconds later. Is there a way to persist network events, like the "preserve" option in devtools? I see the network request logged in DevTools, so I know that it has definitely fired.Is there another way to go about this with undetected mode or would my only other option be to use an external MITM with proxy approach?
Beta Was this translation helpful? Give feedback.
All reactions