MCPcopy Index your code
hub / github.com/cryzed/Selenium-Requests

github.com/cryzed/Selenium-Requests @v2.0.4

Chat with this repo
repository ↗ · DeepWiki ↗ · release v2.0.4 ↗ · + Follow
42 symbols 108 edges 4 files 0 documented · 0%
What it actually does AI analysis from the code graph — generated when you open this
loading…
README

Selenium Requests

Extends Selenium WebDriver classes to include the request function from the Requests library, while doing all the needed cookie and request headers handling.

Before the actual request is made, a local HTTP server is started that serves a single request made by the webdriver instance to get the "standard" HTTP request headers sent by this webdriver; these are cached (only happens once during its lifetime) and later used in conjunction with the Requests library to make the requests look identical to those that would have been sent by the webdriver. Cookies held by the webdriver instance are added to the request headers and those returned in a response automatically set for the webdriver instance.

Features

  • Determines and sends the default HTTP headers (User-Agent etc.) for the chosen WebDriver
  • Manages cookies bidirectionally between requests and Selenium
  • Switches to already existing window handles or temporarily creates them to work with the webdriver's cookies when making a request
  • All operations preserve the original state of the WebDriver (active window handle and window handles)
  • Tested to work with Selenium (v4.1.0) using Mozilla Firefox (v97.0) and Chromium (v98.0.4758.80)

Usage

# Import any WebDriver class that you would usually import from
# selenium.webdriver from the seleniumrequests module
from seleniumrequests import Firefox

# Simple usage with built-in WebDrivers:
webdriver = Firefox()
response = webdriver.request('GET', 'https://www.google.com/')
print(response)


# More complex usage, using a WebDriver from another Selenium-related module:
from seleniumrequests.request import RequestsSessionMixin
from someothermodule import CustomWebDriver


class MyCustomWebDriver(RequestsSessionMixin, CustomWebDriver):
    pass


custom_webdriver = MyCustomWebDriver()
response = custom_webdriver.request('GET', 'https://www.google.com/')
print(response)

Installation

pip install selenium-requests

Remote WebDriver

When using webdriver.Remote it is very likely that the HTTP proxy server spawned by selenium-requests does not run on the same machine. By default, the webdriver tries to access the proxy server under 127.0.0.1. This can be changed by passing the proxy_host= argument with the correct IP or hostname to the webdriver.

driver = seleniumrequests.Remote(
    'http://192.168.101.1:4444/wd/hub',
    options=chrome_options,
    proxy_host='192.168.101.2'
)

Core symbols most depended-on inside this repo

get_tld
called by 5
seleniumrequests/request.py
find_window_handle
called by 3
seleniumrequests/request.py
request
called by 3
seleniumrequests/request.py
get_unused_port
called by 2
seleniumrequests/request.py
make_match_domain_predicate
called by 2
seleniumrequests/request.py
predicate
called by 2
seleniumrequests/request.py
add_cookie
called by 2
seleniumrequests/request.py
get_webdriver_request_headers
called by 1
seleniumrequests/request.py

Shape

Function 16
Class 15
Method 11

Languages

Python100%

Modules by API surface

tests/test_seleniumrequests.py18 symbols
seleniumrequests/request.py15 symbols
seleniumrequests/__init__.py9 symbols

For agents

$ claude mcp add Selenium-Requests \
  -- python -m otcore.mcp_server <graph>

⬇ download graph artifact