-
Selenium-wire is deprecated since January 2024. |
Beta Was this translation helpful? Give feedback.
Answered by
mdmintz
May 15, 2024
Replies: 1 comment
-
SeleniumBase's First install the extra dependencies: pip install seleniumbase[selenium-wire] Then run a from seleniumbase import SB
with SB(wire=True) as sb:
sb.driver.get("https://wikipedia.org")
for request in sb.driver.requests:
print(request.url) There was a lot of documentation on it here: #2145 SeleniumBase also has alternatives that are built in. See the examples: |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
mdmintz
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
SeleniumBase's
wire
mode still works: #2774 (comment)First install the extra dependencies:
Then run a
wire
mode script:There was a lot of documentation on it here: #2145
SeleniumBase also has alternatives that are built in. See the examples: