BDmitryInoxoft
BDmitryInoxoft
The same issue. Summary: In some cases, selenium-wire takes more time to analyze WSS requests (normally- 1.1-1.6 sec, another case - 23-28 sec) and block the next HTTP requests. This...
@wkeeling If it is not the same issue please notify me, and I will create a separate one.
Double checked on slenium wire version 4.6.0 - the same behavior
Just tested it happens even i use only "s_options = {'disable_capture': True}", without driver.scopes
@wkeeling OS: Linux - ubuntu 20.04 Windows 11 On the CI - image: python:3.8-slim-buster Can`t provide a link - the authorization is required. So this is a part of NDA....
@wkeeling So i try this logger: ``` open_user_page() wait = WebDriverWait(driver, Configs.delay) wait.until(lambda driver: driver.execute_script('return document.readyState') == 'complete') for req in driver.requests: record = str(f'\n time - {req.date}') + str(f'...
update - receive the same error on the API call
Hm. I`m update logger to this ` open_user_page() wait = WebDriverWait(driver, Configs.delay) wait.until(lambda driver: driver.execute_script('return document.readyState') == 'complete') for req in driver.requests: record = str(f'\n time - {req.date}') + str(f'...
looks like something inside the webdriver that we import from seleniumwire
> @Avnsx Yes this sounds sensible - I'll see what I can do. > > Also, if you get a chance, could you try switching a variable in one of...