Skip to content

Any plans to remove selenium-wire since deprecated? #2780

Answered by mdmintz
edudelta asked this question in Q&A
Discussion options

You must be logged in to vote

SeleniumBase's wire mode still works: #2774 (comment)

First install the extra dependencies:

pip install seleniumbase[selenium-wire]

Then run a wire mode script:

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:

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by mdmintz
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants