selenium-wire icon indicating copy to clipboard operation
selenium-wire copied to clipboard

Extends Selenium's Python bindings to give you the ability to inspect requests made by the browser.

Results 169 selenium-wire issues
Sort by recently updated
recently updated
newest added

Open initiating a browser on certain devices with the following code: ``` from seleniumwire import webdriver # Import from seleniumwire # Create a new instance of the Chrome driver driver...

Hi, thanks for service. I'am using pytest-selenium to setting up browser start: ``` import pytest @pytest.fixture def selenium(selenium): selenium.implicitly_wait(10) selenium.maximize_window() return selenium ``` https://pytest-selenium.readthedocs.io/en/latest/user_guide.html#specifying-capabilities And PageObject model to open pages,...

Hello, thank you for your work. This library is really useful. I have a following problem. I use Selenium Wire in automated testing. I use the eager page load strategy...

Currently getting this error and i have no clue/leads on how to fix it. Selenium-wire Version: 4.5.6 Traceback (most recent call last): File "undetected_chromedriver\v2.py", line 623, in __del__ File "seleniumwire\webdriver.py",...

I have solved my own problem with the ca.crt certificate, but I had to dig around a bit to understand that the ca.crt certificate needs to be in a particular...

I used it for a few days now. Suddenly I occasionally get security errors on single subdomains. Firefox tells me: SEC_ERROR_REUSED_ISSUER_AND_SERIAL selenium 4.0.0 wire 4.5.5 Any hints what is going...

Sometimes the file doesn't generate properly Examples Sometimes generates like this -----BEGIN CERTIFICATE----- CERT -----END CERTIFICATE----------BEGIN PRIVATE KEY----- (on the same line, I need to break it up for it...

Using selenium-wire 4.5.6 and trying the get some data from AWS quickstart, I ran into: ``` Exception in thread Http2SingleStreamLayer-29: Traceback (most recent call last): File "aws-marketplace-ubuntu-scraper/venv/lib/python3.9/site-packages/seleniumwire/thirdparty/mitmproxy/net/http/encoding.py", line 62, in...

Iam unable to login to gmail using selenium wire, its just hangup after entering email https://i.imgur.com/Er3WQ46.png I installed the selenium wire certificate, but still showing not secure

If import ` from selenium import webdriver` => works if import ` from seleniumwire import webdriver` => not works ``` from selenium.webdriver.common.by import By from webdriver_manager.chrome import ChromeDriverManager import selenium.webdriver.chrome.service...