jupyterlite-pyodide-lock-webdriver#
Lockers#
WebDriverLocker#
The locker implementation.
- class jupyterlite_pyodide_lock_webdriver.locker.WebDriverLocker(**kwargs) None [source]#
Bases:
TornadoLocker
A locker that uses the WebDriver standard to control a browser.
- Parameters:
kwargs (
Any
)
Create a configurable given a config config.
Parameters#
- configConfig
If this is empty, default values are used. If config is a
Config
instance, it will be used to configure the instance.- parentConfigurable instance, optional
The parent Configurable instance of this object.
Notes#
Subclasses of Configurable must call the
__init__()
method ofConfigurable
before doing anything else and usingsuper()
:class MyConfigurable(Configurable): def __init__(self, config=None): super(MyConfigurable, self).__init__(config=config) # Then any other code you need to finish initialization.
This ensures that instances will be configured properly.
- param kwargs:
- type kwargs:
- browser c.WebDriverLocker.browser = Unicode('')#
an alias for a pre-configured browser
- browser_path c.WebDriverLocker.browser_path = Unicode('')#
an absolute path to a browser, if not well-known or on PATH
- extra_micropip_args c.WebDriverLocker.extra_micropip_args = Dict()#
options for ‘micropip.install’
- async fetch() None [source]#
Create the WebDriver, open the lock page, and wait for it to lock.
- Return type:
- headless c.WebDriverLocker.headless = Bool(True)#
run the browser in headless mode
- host c.WebDriverLocker.host = Unicode('127.0.0.1')#
the host on which to bind
- port c.WebDriverLocker.port = Int(0)#
the port on which to listen
- protocol c.WebDriverLocker.protocol = Unicode('http')#
the protocol to serve
- pyodide_cdn_url c.WebDriverLocker.pyodide_cdn_url = Unicode('https://cdn.jsdelivr.net/pyodide/v0.26.1/full')#
remote URL for the version of a full pyodide distribution
- pypi_api_url c.WebDriverLocker.pypi_api_url = Unicode('https://pypi.org/pypi')#
remote URL for a Warehouse-compatible JSON API
- timeout c.WebDriverLocker.timeout = Int(0)#
seconds to wait for a solve
- tornado_settings c.WebDriverLocker.tornado_settings = Dict()#
override settings used by the tornado server
- webdriver_env c.WebDriverLocker.webdriver_env = Dict()#
custom enviroment variable overrides
- webdriver_log_output c.WebDriverLocker.webdriver_log_output = Unicode('')#
a path to the webdriver log
- webdriver_path c.WebDriverLocker.webdriver_path = Unicode('')#
an absolute path to a driver, if not well-known or on PATH
- webdriver_service_args c.WebDriverLocker.webdriver_service_args = List()#
arguments for the webdriver binary