__init__.py |
Subpackage where each product is defined. Each product is created by adding a
a .py file containing a __wptrunner__ variable in the global scope. This must be
a dictionary with the fields
"product": Name of the product, assumed to be unique.
"browser": String indicating the Browser implementation used to launch that
product.
"executor": Dictionary with keys as supported test types and values as the name
of the Executor implementation that will be used to run that test
type.
"browser_kwargs": String naming function that takes product, binary,
prefs_root and the wptrunner.run_tests kwargs dict as arguments
and returns a dictionary of kwargs to use when creating the
Browser class.
"executor_kwargs": String naming a function that takes http server url and
timeout multiplier and returns kwargs to use when creating
the executor class.
"env_options": String naming a function of no arguments that returns the
arguments passed to the TestEnvironment.
All classes and functions named in the above dict must be imported into the
module global scope.
|
1756 |
android_webview.py |
Chrome is backed by chromedriver, which is supplied through
``wptrunner.webdriver.ChromeDriverServer``.
|
4569 |
base.py |
Build a list of domains where certificate_file should be used |
16260 |
chrome.py |
|
12848 |
chrome_android.py |
|
8926 |
chrome_ios.py |
ChromeiOS is backed by CWTChromeDriver, which is supplied through
``wptrunner.webdriver.CWTChromeDriverServer``.
|
2270 |
chrome_spki_certs.py |
|
390 |
chromium.py |
|
2228 |
edge.py |
MicrosoftEdge is backed by MSEdgeDriver, which is supplied through
``wptrunner.webdriver.EdgeDriverServer``.
|
2621 |
epiphany.py |
|
2943 |
firefox.py |
|
44060 |
firefox_android.py |
|
18428 |
headless_shell.py |
|
1957 |
ladybird.py |
|
1881 |
opera.py |
|
2545 |
safari.py |
|
7998 |
sauce.py |
|
7940 |
sauce_setup |
|
|
servo.py |
|
4028 |
servodriver.py |
|
5995 |
webkit.py |
Generic WebKit browser is backed by WebKit's WebDriver implementation |
3181 |
webkitgtk_minibrowser.py |
|
3443 |
wktr.py |
Class that represents an instance of WebKitTestRunner.
Upon startup, the stdout, stderr, and stdin pipes of the underlying WebKitTestRunner
process are connected to multiprocessing Queues so that the runner process can
interact with WebKitTestRunner through its protocol mode.
|
8495 |