Selenium-Requests
Selenium-Requests copied to clipboard
Extends Selenium WebDriver classes to include the request function from the Requests library, while doing all the needed cookie and request headers handling.
You know, the property, or method is very useful to get contents from inner requests of website. Selenium-wire has them, I suggest to add.
There seems to be a bug where selenium-requests will hang trying to acquire the mutex from the web server. The root cause of this is that the popup blocker inhibits...
My project (and users) are seeing a [new issue](https://github.com/jprouty/mint-amazon-tagger/issues/116) which started with the release of chrome & chromedriver v106. Minimal reproduction case ([full code here](https://github.com/jprouty/mint-amazon-tagger/blob/master/mintamazontagger/repro_selenium_issue.py)) - pseudocode: ``` webdriver =...
I feel this makes the example clearer
OS: `Ubuntu 22.04 (jammy)` Python: `3.10` Selenium-Requests: `2.0.3` I have the following docker container running a mocked Chrome browser: `selenium/standalone-chrome` Github link: https://github.com/SeleniumHQ/docker-selenium Example code to reproduce: ```python from seleniumrequests...
I'm trying to call the API of a website using the following code: ``` from seleniumrequests import Firefox driver = Firefox() driver.get("https://www.itftennis.com/en/tournament-calendar/mens-world-tennis-tour-calendar/?categories=All&startdate=2024-01") driver.request( method="POST", url="https://www.itftennis.com/tennis/api/TournamentApi/GetDrawsheet", json={ "tournamentId": 1100193157, "tourType": "N",...
Hi! In a particular case of use of Selenium-Requests I realize that is impossible to ignore cookies when making a request, even using the kwarg cookies=[]. Looking in the code...
OS: `Alpine Linux 3.19.1` Python: `3.11.8` Selenium-Requests: `2.0.4` BrowserVersion: `123.0.6312.105` chromedriverVersion: `123.0.6312.105` Some findings: - current_window_handle before switching back is the same as `original_window_handle` - sleep 1 second before switching...