Selenium-Requests icon indicating copy to clipboard operation
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.

Results 6 Selenium-Requests issues
Sort by recently updated
recently updated
newest added

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",...