-
Hello, I'm using add_cdp_listener to capture and analyze some network data. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Sounds like you're referring to this example: SeleniumBase/examples/uc_cdp_events.py. Behind the scenes, that really just makes a call to I don't really understand how it all works, but the original came from |
Beta Was this translation helpful? Give feedback.
Sounds like you're referring to this example: SeleniumBase/examples/uc_cdp_events.py.
Behind the scenes, that really just makes a call to
driver.get_log("performance")
, which comes fromdriver.get_log()
, defined here: https://github.com/SeleniumHQ/selenium/blob/4b415384eae4ac156353726b473df35540625b88/py/selenium/webdriver/remote/webdriver.py#L1004I don't really understand how it all works, but the original came from
undetected-chromedriver
- https://github.com/ultrafunkamsterdam/undetected-chromedriver/blob/0aa5fbe252370b4cb2b95526add445392cad27ba/undetected_chromedriver/__init__.py#L667