diff --git a/README.md b/README.md
index 4d09b71..704f511 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,6 @@
# NODRIVER
-## [CLICK HERE FOR DOCS](https://ultrafunkamsterdam.github.io/nodriver/)
+## for docs click [here](https://ultrafunkamsterdam.github.io/nodriver)
**This package provides next level webscraping and browser automation
using a relatively simple interface.**
@@ -42,37 +42,48 @@ to fully customizable everything using the entire array of
to a nodriver.Browser instance and contintue from there
* packed with helpers and utility methods for most used and important operations
-
+lets you inspect the tab without breaking your connection
-#### Installation
+**tab.get_local_storage()**
-Since it’s a part of undetected-chromedriver, installation goes via
+get localstorage content
-```default
-pip install undetected-chromedriver
-```
+**tab.set_local_storage(dict)**
+
+set localstorage content
+
+**tab.add_handler(someEvent, callback)**
+
+callback may accept a single argument (event), or 2 arguments (event, tab).
+
+**start(expert=True)**
+
+does some hacking for more experienced users. It disables web security and origin-trials, as well as ensures shadow-roots are always open.
+
+### Some examples of what the api looks like
----
+> * ``elem.text``
+> * ``elem.text_all``
+> * ``elem.parent.parent.parent.attrs``
+> * ``anchor_elem.href and anchor_elem['href']``
+> * ``anchor_elem.href = 'someotherthing'; await anchor_elem.save()``
+> * ``elem.children[-1].children[0].children[4].parent.parent``
+> * ``await html5video_element.record_video()``
+> * ``await html5video_element('pause')``
+> * ``await html5video_element.apply('''(el) => el.currentTime = 0''')``
+> * ``tab = await browser.get(url, new_tab=True)``
+> * ``tab_win = await browser.get(url, new_window=True)``
+> * ``first = await tab.find('search text')``
+> * ``best = await tab.find('search text', best_match=True)``
+> * ``all_results = await tab.find_all('search text')``
+> * ``first_submit_button = await tab.select(selector='button[type=submit]')``
+> * ``inputs_in_form = await tab.select_all('form input')``
-In case you don’t want undetected-chromedriver, this package can be installed
-using
+### Installation
```default
pip install nodriver
@@ -80,7 +91,7 @@ pip install nodriver
-#### usage example
+### usage example
The aim of this project (just like undetected-chromedriver, somewhere long ago)
is to keep it short and simple, so you can quickly open an editor or interactive session,
diff --git a/docs/_build/html/_modules/index.html b/docs/_build/html/_modules/index.html
index 94a45dd..ae4bdde 100644
--- a/docs/_build/html/_modules/index.html
+++ b/docs/_build/html/_modules/index.html
@@ -321,7 +321,6 @@
[docs]
async def mouse_click(
-
self,
-
button: str = "left",
-
buttons: typing.Optional[int] = 1,
-
modifiers: typing.Optional[int] = 0,
-
hold: bool = False,
-
_until_event: typing.Optional[type] = None,
+
self,
+
button: str = "left",
+
buttons: typing.Optional[int] = 1,
+
modifiers: typing.Optional[int] = 0,
+
hold: bool = False,
+
_until_event: typing.Optional[type] = None,
):
"""native click (on element) . note: this likely does not work atm, use click() instead
@@ -883,10 +883,10 @@
Source code for nodriver.core.element
[docs]
async def mouse_drag(
-
self,
-
destination: typing.Union[Element, typing.Tuple[int, int]],
-
relative: bool = False,
-
steps: int = 1,
+
self,
+
destination: typing.Union[Element, typing.Tuple[int, int]],
+
relative: bool = False,
+
steps: int = 1,
):
"""
drag an element to another element or target coordinates. dragging of elements should be supported by the site of course
@@ -1150,10 +1150,10 @@
Source code for nodriver.core.element
[docs]
async def save_screenshot(
-
self,
-
filename: typing.Optional[PathLike] = "auto",
-
format: typing.Optional[str] = "jpeg",
-
scale: typing.Optional[typing.Union[int, float]] = 1,
+
self,
+
filename: typing.Optional[PathLike] = "auto",
+
format: typing.Optional[str] = "jpeg",
+
scale: typing.Optional[typing.Union[int, float]] = 1,
):
"""
Saves a screenshot of this element (only)
@@ -1339,10 +1339,10 @@
Source code for nodriver.core.element
[docs]
async def record_video(
-
self,
-
filename: typing.Optional[str] = None,
-
folder: typing.Optional[str] = None,
-
duration: typing.Optional[typing.Union[int, float]] = None,
+
self,
+
filename: typing.Optional[str] = None,
+
folder: typing.Optional[str] = None,
+
duration: typing.Optional[typing.Union[int, float]] = None,
):
"""
experimental option.
diff --git a/docs/_build/html/_modules/nodriver/core/tab.html b/docs/_build/html/_modules/nodriver/core/tab.html
index 6a639da..a7c07d2 100644
--- a/docs/_build/html/_modules/nodriver/core/tab.html
+++ b/docs/_build/html/_modules/nodriver/core/tab.html
@@ -389,11 +389,11 @@
Source code for nodriver.core.tab
_download_behavior: List[str] = None
def __init__(
- self,
- websocket_url: str,
- target: cdp.target.TargetInfo,
- browser: Optional["nodriver.Browser"] = None,
- **kwargs,
+ self,
+ websocket_url: str,
+ target: cdp.target.TargetInfo,
+ browser: Optional["nodriver.Browser"] = None,
+ **kwargs,
):
super().__init__(websocket_url, target, browser, **kwargs)
self.browser = browser
@@ -433,11 +433,11 @@ Source code for nodriver.core.tab
[docs]
async def find(
-
self,
-
text: str,
-
best_match: bool = True,
-
return_enclosing_element=True,
-
timeout: Union[int, float] = 10,
+
self,
+
text: str,
+
best_match: bool = True,
+
return_enclosing_element=True,
+
timeout: Union[int, float] = 10,
):
"""
find single element by text
@@ -495,9 +495,9 @@
Source code for nodriver.core.tab
[docs]
async def select(
-
self,
-
selector: str,
-
timeout: Union[int, float] = 10,
+
self,
+
selector: str,
+
timeout: Union[int, float] = 10,
) -> nodriver.Element:
"""
find single element by css selector.
@@ -530,9 +530,9 @@
Source code for nodriver.core.tab
[docs]
async def find_all(
-
self,
-
text: str,
-
timeout: Union[int, float] = 10,
+
self,
+
text: str,
+
timeout: Union[int, float] = 10,
) -> List[nodriver.Element]:
"""
find multiple elements by text
@@ -564,7 +564,7 @@
Source code for nodriver.core.tab
[docs]
async def select_all(
-
self, selector: str, timeout: Union[int, float] = 10, include_frames=False
+
self, selector: str, timeout: Union[int, float] = 10, include_frames=False
) -> List[nodriver.Element]:
"""
find multiple elements by css selector.
@@ -604,7 +604,7 @@
Source code for nodriver.core.tab
[docs]
async def get(
-
self, url="chrome://welcome", new_tab: bool = False, new_window: bool = False
+
self, url="chrome://welcome", new_tab: bool = False, new_window: bool = False
):
"""top level get. utilizes the first tab to retrieve given url.
@@ -635,9 +635,9 @@
Source code for nodriver.core.tab
[docs]
async def query_selector_all(
-
self,
-
selector: str,
-
_node: Optional[Union[cdp.dom.Node, "element.Element"]] = None,
+
self,
+
selector: str,
+
_node: Optional[Union[cdp.dom.Node, "element.Element"]] = None,
):
"""
equivalent of javascripts document.querySelectorAll.
@@ -701,9 +701,9 @@
Source code for nodriver.core.tab
[docs]
async def query_selector(
-
self,
-
selector: str,
-
_node: Optional[Union[cdp.dom.Node, element.Element]] = None,
+
self,
+
selector: str,
+
_node: Optional[Union[cdp.dom.Node, element.Element]] = None,
):
"""
find single element based on css selector string
@@ -753,9 +753,9 @@
Source code for nodriver.core.tab
[docs]
async def find_elements_by_text(
-
self,
-
text: str,
-
tag_hint: Optional[str] = None,
+
self,
+
text: str,
+
tag_hint: Optional[str] = None,
) -> List[element.Element]:
"""
returns element which match the given text.
@@ -824,7 +824,7 @@
Source code for nodriver.core.tab
iframe_text_nodes = util.filter_recurse_all(
iframe_elem,
lambda node: node.node_type == 3 # noqa
- and text.lower() in node.node_value.lower(),
+ and text.lower() in node.node_value.lower(),
)
if iframe_text_nodes:
iframe_text_elems = [
@@ -841,10 +841,10 @@ Source code for nodriver.core.tab
[docs]
async def find_element_by_text(
-
self,
-
text: str,
-
best_match: Optional[bool] = False,
-
return_enclosing_element: Optional[bool] = True,
+
self,
+
text: str,
+
best_match: Optional[bool] = False,
+
return_enclosing_element: Optional[bool] = True,
) -> Union[element.Element, None]:
"""
finds and returns the first element containing <text>, or best match
@@ -907,7 +907,7 @@
Source code for nodriver.core.tab
iframe_text_nodes = util.filter_recurse_all(
iframe_elem,
lambda node: node.node_type == 3 # noqa
- and text.lower() in node.node_value.lower(),
+ and text.lower() in node.node_value.lower(),
)
if iframe_text_nodes:
iframe_text_elems = [
@@ -956,9 +956,9 @@ Source code for nodriver.core.tab
[docs]
async def reload(
-
self,
-
ignore_cache: Optional[bool] = True,
-
script_to_evaluate_on_load: Optional[str] = None,
+
self,
+
ignore_cache: Optional[bool] = True,
+
script_to_evaluate_on_load: Optional[str] = None,
):
"""
Reloads the page
@@ -981,7 +981,7 @@
Source code for nodriver.core.tab
[docs]
async def evaluate(
-
self, expression: str, await_promise=False, return_by_value=True
+
self, expression: str, await_promise=False, return_by_value=True
):
remote_object, errors = await self.send(
cdp.runtime.evaluate(
@@ -1007,7 +1007,7 @@
Source code for nodriver.core.tab
[docs]
async def js_dumps(
-
self, obj_name: str, return_by_value: Optional[bool] = True
+
self, obj_name: str, return_by_value: Optional[bool] = True
) -> typing.Union[
typing.Dict,
typing.Tuple[cdp.runtime.RemoteObject, cdp.runtime.ExceptionDetails],
@@ -1049,7 +1049,7 @@
Source code for nodriver.core.tab
'
"""
js_code_a = (
- """
+ """
function ___dump(obj, _d = 0) {
let _typesA = ['object', 'function'];
let _typesB = ['number', 'string', 'boolean'];
@@ -1122,10 +1122,10 @@ Source code for nodriver.core.tab
}
___dumpY( %s )
"""
- % obj_name
+ % obj_name
)
js_code_b = (
- """
+ """
((obj, visited = new WeakSet()) => {
if (visited.has(obj)) {
return {}
@@ -1151,7 +1151,7 @@ Source code for nodriver.core.tab
return result;
})(%s)
"""
- % obj_name
+ % obj_name
)
# we're purposely not calling self.evaluate here to prevent infinite loop on certain expressions
@@ -1299,7 +1299,7 @@ Source code for nodriver.core.tab
[docs]
async def set_window_state(
-
self, left=0, top=0, width=1280, height=720, state="normal"
+
self, left=0, top=0, width=1280, height=720, state="normal"
):
"""
sets the window size or state.
@@ -1422,10 +1422,10 @@
Source code for nodriver.core.tab
[docs]
async def wait_for(
-
self,
-
selector: Optional[str] = "",
-
text: Optional[str] = "",
-
timeout: Optional[Union[int, float]] = 10,
+
self,
+
selector: Optional[str] = "",
+
text: Optional[str] = "",
+
timeout: Optional[Union[int, float]] = 10,
) -> element.Element:
"""
variant on query_selector_all and find_elements_by_text
@@ -1535,10 +1535,10 @@
Source code for nodriver.core.tab
[docs]
async def save_screenshot(
-
self,
-
filename: Optional[PathLike] = "auto",
-
format: Optional[str] = "jpeg",
-
full_page: Optional[bool] = False,
+
self,
+
filename: Optional[PathLike] = "auto",
+
format: Optional[str] = "jpeg",
+
full_page: Optional[bool] = False,
) -> str:
"""
Saves a screenshot of the page.
@@ -1739,10 +1739,10 @@
Source code for nodriver.core.tab
def __call__(
- self,
- text: Optional[str] = "",
- selector: Optional[str] = "",
- timeout: Optional[Union[int, float]] = 10,
+ self,
+ text: Optional[str] = "",
+ selector: Optional[str] = "",
+ timeout: Optional[Union[int, float]] = 10,
):
"""
alias to query_selector_all or find_elements_by_text, depending
@@ -1800,8 +1800,12 @@ Source code for nodriver.core.tab
# return elem
# else:
# return elems
- return await tab.evaluate("""
- [...document.querySelectorAll('*')].filter( e => e.shadowRoot)?.[0].shadowRoot.children[0].contentDocument.children[0].children[1].shadowRoot.children[1].children[0].querySelector('label')""", return_by_value=False)
+ return await tab.evaluate(
+ """
+ [...document.querySelectorAll('*')].filter( e => e.shadowRoot)?.[0].shadowRoot.children[0].contentDocument.children[0].children[1].shadowRoot.children[1].children[0].querySelector('label')""",
+ return_by_value=False,
+ )
+
async def click_cf_label(tab: Tab):
obj, _ = await get_cf_label(tab)
diff --git a/docs/_build/html/_sources/readme.rst.txt b/docs/_build/html/_sources/readme.rst.txt
index 39cc8ad..a879641 100644
--- a/docs/_build/html/_sources/readme.rst.txt
+++ b/docs/_build/html/_sources/readme.rst.txt
@@ -4,8 +4,11 @@
NODRIVER
##################
-`CLICK HERE FOR DOCS `_
-____
+**************
+for docs click `here`_
+**************
+
+.. _here: https://ultrafunkamsterdam.github.io/nodriver
**This package provides next level webscraping and browser automation
using a relatively simple interface.**
@@ -31,7 +34,7 @@ to fully customizable everything using the entire array of
Some features
-^^^^^^^^^^^^^^^^^^^^^^
+=============
* A blazing fast undetected chrome (-ish) automation library
@@ -58,7 +61,32 @@ Some features
* packed with helpers and utility methods for most used and important operations
+what is new
+=============
+**tab.open_external_debugger()**
+
+lets you inspect the tab without breaking your connection
+
+**tab.get_local_storage()**
+
+get localstorage content
+
+**tab.set_local_storage(dict)**
+
+set localstorage content
+
+**tab.add_handler(someEvent, callback)**
+
+callback may accept a single argument (event), or 2 arguments (event, tab).
+
+**start(expert=True)**
+
+does some hacking for more experienced users. It disables web security and origin-trials, as well as ensures shadow-roots are always open.
+
+Some examples of what the api looks like
+=============
..
+
* ```elem.text```
* ```elem.text_all```
@@ -82,16 +110,6 @@ Some features
Installation
=============
-Since it's a part of undetected-chromedriver, installation goes via
-
-.. code-block::
-
- pip install undetected-chromedriver
-
---------
-
-In case you don't want undetected-chromedriver, this package can be installed
-using
.. code-block::
diff --git a/docs/_build/html/readme.html b/docs/_build/html/readme.html
index 8c973e3..db96e05 100644
--- a/docs/_build/html/readme.html
+++ b/docs/_build/html/readme.html
@@ -181,6 +181,7 @@
Audits
Autofill
BackgroundService
+
BluetoothEmulation
Browser
CacheStorage
Cast
@@ -199,6 +200,7 @@
Extensions
FedCm
Fetch
+
FileSystem
HeadlessExperimental
HeapProfiler
IndexedDB
@@ -265,8 +267,8 @@
NODRIVER
-
-
+
+for docs click here
This package provides next level webscraping and browser automation
using a relatively simple interface.
@@ -304,21 +306,51 @@ Some features
+
+Some examples of what the api looks like
+
+
+`elem.text`
+`elem.text_all`
+`elem.parent.parent.parent.attrs`
+`anchor_elem.href and anchor_elem['href']`
+`anchor_elem.href = 'someotherthing'; await anchor_elem.save()`
+`elem.children[-1].children[0].children[4].parent.parent`
+`await html5video_element.record_video()`
+`await html5video_element('pause')`
+`await html5video_element.apply('''(el) => el.currentTime = 0''')`
+`tab = await browser.get(url, new_tab=True)`
+`tab_win = await browser.get(url, new_window=True)`
+`first = await tab.find('search text')`
+`best = await tab.find('search text', best_match=True)`
+`all_results = await tab.find_all('search text')`
+`first_submit_button = await tab.select(selector='button[type=submit]')`
+`inputs_in_form = await tab.select_all('form input')`
+
+
+
-Installation
-Since it’s a part of undetected-chromedriver, installation goes via
-pip install undetected-chromedriver
-
-
-
-In case you don’t want undetected-chromedriver, this package can be installed
-using
+Installation
-usage example
+usage example
The aim of this project (just like undetected-chromedriver, somewhere long ago)
is to keep it short and simple, so you can quickly open an editor or interactive session,
type or paste a few lines and off you go.
@@ -485,7 +517,6 @@ Installation
diff --git a/docs/_build/html/searchindex.js b/docs/_build/html/searchindex.js
index b638957..6a50bd9 100644
--- a/docs/_build/html/searchindex.js
+++ b/docs/_build/html/searchindex.js
@@ -1 +1 @@
-Search.setIndex({"docnames": ["index", "nodriver/cdp", "nodriver/cdp/accessibility", "nodriver/cdp/animation", "nodriver/cdp/audits", "nodriver/cdp/autofill", "nodriver/cdp/background_service", "nodriver/cdp/bluetooth_emulation", "nodriver/cdp/browser", "nodriver/cdp/cache_storage", "nodriver/cdp/cast", "nodriver/cdp/console", "nodriver/cdp/css", "nodriver/cdp/database", "nodriver/cdp/debugger", "nodriver/cdp/device_access", "nodriver/cdp/device_orientation", "nodriver/cdp/dom", "nodriver/cdp/dom_debugger", "nodriver/cdp/dom_snapshot", "nodriver/cdp/dom_storage", "nodriver/cdp/emulation", "nodriver/cdp/event_breakpoints", "nodriver/cdp/extensions", "nodriver/cdp/fed_cm", "nodriver/cdp/fetch", "nodriver/cdp/file_system", "nodriver/cdp/headless_experimental", "nodriver/cdp/heap_profiler", "nodriver/cdp/indexed_db", "nodriver/cdp/input_", "nodriver/cdp/inspector", "nodriver/cdp/io", "nodriver/cdp/layer_tree", "nodriver/cdp/log", "nodriver/cdp/media", "nodriver/cdp/memory", "nodriver/cdp/network", "nodriver/cdp/overlay", "nodriver/cdp/page", "nodriver/cdp/performance", "nodriver/cdp/performance_timeline", "nodriver/cdp/preload", "nodriver/cdp/profiler", "nodriver/cdp/pwa", "nodriver/cdp/runtime", "nodriver/cdp/schema", "nodriver/cdp/security", "nodriver/cdp/service_worker", "nodriver/cdp/storage", "nodriver/cdp/system_info", "nodriver/cdp/target", "nodriver/cdp/tethering", "nodriver/cdp/tracing", "nodriver/cdp/web_audio", "nodriver/cdp/web_authn", "nodriver/classes/browser", "nodriver/classes/element", "nodriver/classes/others_and_helpers", "nodriver/classes/tab", "nodriver/quickstart", "readme", "style"], "filenames": ["index.rst", "nodriver/cdp.rst", "nodriver/cdp/accessibility.rst", "nodriver/cdp/animation.rst", "nodriver/cdp/audits.rst", "nodriver/cdp/autofill.rst", "nodriver/cdp/background_service.rst", "nodriver/cdp/bluetooth_emulation.rst", "nodriver/cdp/browser.rst", "nodriver/cdp/cache_storage.rst", "nodriver/cdp/cast.rst", "nodriver/cdp/console.rst", "nodriver/cdp/css.rst", "nodriver/cdp/database.rst", "nodriver/cdp/debugger.rst", "nodriver/cdp/device_access.rst", "nodriver/cdp/device_orientation.rst", "nodriver/cdp/dom.rst", "nodriver/cdp/dom_debugger.rst", "nodriver/cdp/dom_snapshot.rst", "nodriver/cdp/dom_storage.rst", "nodriver/cdp/emulation.rst", "nodriver/cdp/event_breakpoints.rst", "nodriver/cdp/extensions.rst", "nodriver/cdp/fed_cm.rst", "nodriver/cdp/fetch.rst", "nodriver/cdp/file_system.rst", "nodriver/cdp/headless_experimental.rst", "nodriver/cdp/heap_profiler.rst", "nodriver/cdp/indexed_db.rst", "nodriver/cdp/input_.rst", "nodriver/cdp/inspector.rst", "nodriver/cdp/io.rst", "nodriver/cdp/layer_tree.rst", "nodriver/cdp/log.rst", "nodriver/cdp/media.rst", "nodriver/cdp/memory.rst", "nodriver/cdp/network.rst", "nodriver/cdp/overlay.rst", "nodriver/cdp/page.rst", "nodriver/cdp/performance.rst", "nodriver/cdp/performance_timeline.rst", "nodriver/cdp/preload.rst", "nodriver/cdp/profiler.rst", "nodriver/cdp/pwa.rst", "nodriver/cdp/runtime.rst", "nodriver/cdp/schema.rst", "nodriver/cdp/security.rst", "nodriver/cdp/service_worker.rst", "nodriver/cdp/storage.rst", "nodriver/cdp/system_info.rst", "nodriver/cdp/target.rst", "nodriver/cdp/tethering.rst", "nodriver/cdp/tracing.rst", "nodriver/cdp/web_audio.rst", "nodriver/cdp/web_authn.rst", "nodriver/classes/browser.rst", "nodriver/classes/element.rst", "nodriver/classes/others_and_helpers.rst", "nodriver/classes/tab.rst", "nodriver/quickstart.rst", "readme.rst", "style.rst"], "titles": ["NODRIVER", "CDP object", "Accessibility", "Animation", "Audits", "Autofill", "BackgroundService", "BluetoothEmulation", "Browser", "CacheStorage", "Cast", "Console", "CSS", "Database", "Debugger", "DeviceAccess", "DeviceOrientation", "DOM", "DOMDebugger", "DOMSnapshot", "DOMStorage", "Emulation", "EventBreakpoints", "Extensions", "FedCm", "Fetch", "FileSystem", "HeadlessExperimental", "HeapProfiler", "IndexedDB", "Input", "Inspector", "IO", "LayerTree", "Log", "Media", "Memory", "Network", "Overlay", "Page", "Performance", "PerformanceTimeline", "Preload", "Profiler", "PWA", "Runtime", "Schema", "Security", "ServiceWorker", "Storage", "SystemInfo", "Target", "Tethering", "Tracing", "WebAudio", "WebAuthn", "Browser class", "Element class", "Other classes and Helper classes", "Tab class", "Quickstart guide", "NODRIVER", "TITLE"], "terms": {"thi": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61], "packag": [0, 58, 59, 60, 61], "provid": [0, 2, 4, 17, 18, 19, 21, 23, 25, 27, 33, 34, 37, 38, 39, 44, 45, 49, 50, 51, 53, 57, 58, 59, 61], "next": [0, 12, 14, 17, 21, 24, 29, 45, 59, 60, 61], "level": [0, 2, 4, 11, 17, 34, 35, 36, 37, 45, 47, 50, 53, 56, 59, 60, 61], "webscrap": [0, 61], "browser": [0, 1, 2, 10, 12, 21, 23, 24, 25, 35, 36, 37, 39, 44, 45, 49, 50, 51, 52, 57, 59, 60, 61], "autom": [0, 8, 17, 21, 39, 55, 61], "us": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 60, 61], "rel": [0, 17, 21, 30, 37, 39, 43, 49, 57, 59, 61], "simpl": [0, 12, 43, 59, 60, 61], "interfac": [0, 18, 42, 55, 59, 61], "i": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61], "offici": [0, 61], "successor": [0, 61], "undetect": [0, 60, 61], "chromedriv": [0, 60, 61], "python": [0, 59, 61], "No": [0, 47, 61], "more": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 57, 58, 59, 61], "webdriv": [0, 61], "selenium": [0, 56, 59, 61], "direct": [0, 3, 4, 12, 17, 21, 39, 61], "commun": [0, 51, 61], "even": [0, 24, 45, 47, 56, 58, 61], "better": [0, 37, 61], "resist": [0, 61], "against": [0, 17, 51, 61], "web": [0, 2, 6, 7, 10, 12, 21, 26, 37, 39, 41, 44, 54, 61], "applicatinon": [0, 61], "firewal": [0, 61], "waf": [0, 61], "": [0, 2, 3, 4, 5, 6, 8, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 24, 25, 28, 30, 31, 33, 34, 35, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61], "while": [0, 14, 28, 30, 32, 33, 37, 39, 40, 45, 61], "perform": [0, 1, 2, 8, 14, 17, 30, 41, 45, 59, 61], "get": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61], "massiv": [0, 61], "boost": [0, 61], "modul": [0, 2, 4, 5, 6, 7, 8, 9, 12, 14, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 36, 37, 38, 39, 42, 44, 46, 47, 48, 49, 50, 52, 53, 54, 55, 59, 61], "contrari": [0, 61], "fulli": [0, 56, 61], "asynchron": [0, 45, 56, 61], "what": [0, 2, 21, 24, 25, 28, 35, 37, 49, 59, 60, 61], "make": [0, 8, 14, 25, 37, 39, 45, 51, 56, 57, 59, 61], "differ": [0, 4, 8, 12, 21, 25, 35, 37, 38, 39, 45, 49, 61], "from": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61], "other": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 60, 61], "known": [0, 14, 17, 34, 37, 50, 53, 56, 59, 61], "optim": [0, 27, 39, 43, 61], "stai": [0, 14, 54, 61], "most": [0, 9, 14, 17, 28, 29, 37, 39, 45, 59, 61], "anti": [0, 61], "bot": [0, 61], "solut": [0, 39, 61], "anoth": [0, 12, 14, 25, 32, 37, 45, 57, 59, 61], "focu": [0, 17, 21, 39, 57, 60, 61], "point": [0, 14, 17, 19, 21, 30, 33, 36, 37, 43, 44, 56, 57, 58, 61], "usabl": [0, 61], "prototyp": [0, 45, 61], "so": [0, 4, 5, 11, 12, 14, 21, 24, 34, 37, 45, 56, 57, 59, 60, 61], "expect": [0, 8, 14, 25, 36, 39, 45, 60, 61], "lot": [0, 56, 57, 59, 61], "work": [0, 17, 21, 38, 57, 58, 59, 60, 61], "method": [0, 2, 8, 9, 12, 17, 25, 30, 32, 37, 39, 40, 41, 45, 49, 50, 51, 52, 56, 57, 58, 61], "paramet": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 36, 37, 38, 39, 40, 41, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 61], "have": [0, 2, 4, 8, 12, 14, 17, 18, 19, 21, 25, 30, 35, 37, 43, 44, 45, 47, 49, 51, 53, 55, 57, 59, 61], "best": [0, 21, 59, 61], "practic": [0, 61], "default": [0, 2, 4, 8, 9, 12, 14, 17, 18, 19, 21, 25, 26, 27, 28, 29, 30, 33, 37, 38, 39, 44, 45, 47, 49, 51, 53, 55, 57, 58, 59, 61], "1": [0, 2, 4, 5, 6, 7, 8, 9, 11, 12, 14, 17, 18, 19, 21, 23, 24, 25, 27, 30, 33, 36, 37, 38, 39, 40, 42, 43, 44, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 59, 60, 61], "2": [0, 5, 19, 21, 30, 37, 47, 50, 57, 58, 60, 61], "line": [0, 4, 5, 8, 11, 12, 14, 17, 18, 28, 34, 35, 37, 38, 39, 43, 45, 50, 60, 61], "up": [0, 2, 12, 21, 24, 30, 37, 45, 55, 59, 60, 61], "run": [0, 4, 14, 21, 27, 33, 36, 37, 39, 40, 42, 43, 45, 48, 49, 50, 51, 54, 56, 59, 60, 61], "config": [0, 34, 38, 45, 56, 60, 61], "conveni": [0, 56, 59, 61], "import": [0, 4, 12, 17, 19, 37, 56, 59, 60, 61], "It": [0, 4, 14, 17, 28, 37, 39, 42, 45, 58, 59, 61], "also": [0, 4, 8, 10, 12, 14, 17, 19, 21, 27, 28, 37, 38, 39, 41, 42, 44, 45, 49, 51, 57, 58, 59, 61], "easi": [0, 39, 61], "customiz": [0, 61], "everyth": [0, 51, 61], "entir": [0, 2, 12, 17, 18, 37, 39, 57, 59, 61], "arrai": [0, 5, 7, 9, 12, 14, 17, 18, 19, 26, 28, 29, 33, 36, 37, 38, 39, 43, 45, 47, 49, 50, 51, 61], "domain": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 44, 45, 46, 48, 49, 50, 52, 54, 55, 59, 61], "event": [0, 56, 57, 59, 60, 61], "avail": [0, 8, 10, 12, 14, 17, 19, 21, 23, 25, 37, 39, 41, 45, 49, 50, 51, 55, 58, 59, 61], "A": [0, 2, 3, 4, 5, 6, 8, 9, 10, 12, 13, 14, 15, 17, 19, 21, 25, 27, 28, 29, 30, 32, 33, 35, 36, 37, 38, 39, 42, 43, 44, 45, 47, 49, 50, 51, 53, 54, 60, 61, 62], "blaze": [0, 61], "fast": [0, 21, 61], "chrome": [0, 2, 5, 8, 27, 37, 39, 44, 45, 51, 53, 56, 59, 61], "ish": [0, 61], "librari": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 61], "binari": [0, 37, 61], "depend": [0, 4, 12, 17, 30, 37, 39, 41, 49, 50, 51, 54, 61], "equal": [0, 18, 19, 30, 49, 61], "bizarr": [0, 61], "increas": [0, 12, 30, 37, 41, 43, 61], "less": [0, 35, 37, 61], "detect": [0, 36, 38, 39, 56, 59, 61], "code": [0, 4, 5, 9, 13, 14, 18, 22, 25, 30, 35, 37, 43, 45, 47, 50, 51, 60, 61], "fresh": [0, 37, 61], "profil": [0, 1, 5, 28, 33, 36, 49, 50, 51, 60, 61], "each": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 59, 60, 61], "clean": [0, 60, 61], "exit": [0, 56, 61], "save": [0, 5, 8, 39, 53, 56, 57, 59, 61], "load": [0, 2, 4, 12, 23, 25, 36, 37, 39, 42, 44, 47, 49, 56, 58, 59, 61], "cooki": [0, 4, 37, 39, 49, 60, 61], "file": [0, 8, 17, 23, 26, 30, 32, 35, 37, 39, 44, 57, 58, 59, 61], "repeat": [0, 30, 39, 61], "tediou": [0, 61], "login": [0, 59, 61], "step": [0, 14, 24, 33, 38, 57, 61], "smart": [0, 39, 61], "element": [0, 2, 3, 12, 17, 19, 21, 33, 35, 37, 38, 39, 41, 42, 45, 50, 59, 61], "lookup": [0, 37, 45, 58, 61], "selector": [0, 12, 17, 38, 57, 61], "text": [0, 2, 5, 9, 10, 11, 12, 14, 17, 19, 21, 25, 30, 34, 37, 39, 42, 45, 47, 57, 60, 61], "includ": [0, 2, 4, 12, 17, 19, 21, 28, 30, 37, 38, 39, 42, 45, 49, 51, 53, 57, 59, 61], "ifram": [0, 4, 17, 18, 19, 37, 39, 56, 59, 61], "content": [0, 2, 4, 9, 12, 14, 17, 19, 21, 25, 33, 37, 38, 39, 45, 47, 49, 51, 57, 59, 61], "could": [0, 4, 14, 37, 39, 57, 58, 59, 60, 61], "wait": [0, 37, 39, 44, 45, 56, 57, 59, 60, 61], "condit": [0, 12, 14, 17, 32, 37, 56, 59, 61], "appear": [0, 7, 15, 17, 21, 37, 38, 59, 60, 61], "sinc": [0, 8, 9, 12, 14, 17, 18, 19, 21, 27, 28, 36, 37, 38, 39, 40, 41, 43, 45, 47, 50, 51, 59, 60, 61], "retri": [0, 37, 59, 61], "durat": [0, 3, 30, 33, 40, 41, 49, 54, 57, 61], "timeout": [0, 14, 39, 45, 59, 61], "until": [0, 2, 12, 14, 25, 37, 39, 49, 59, 61], "found": [0, 4, 10, 12, 17, 37, 58, 59, 60, 61], "singl": [0, 2, 12, 14, 21, 25, 28, 42, 49, 50, 55, 59, 61], "tab": [0, 10, 39, 44, 51, 56, 57, 60, 61], "find": [0, 2, 4, 12, 17, 60, 61], "accept": [0, 12, 37, 39, 44, 52, 57, 59, 60, 61], "best_match": [0, 60, 61], "flag": [0, 4, 12, 18, 21, 23, 28, 29, 37, 39, 44, 45, 55, 59, 61], "which": [0, 2, 4, 8, 12, 14, 17, 18, 19, 20, 21, 25, 28, 30, 33, 35, 37, 39, 41, 42, 44, 45, 48, 49, 51, 56, 57, 58, 59, 60, 61], "naiv": [0, 59, 61], "return": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 61], "first": [0, 12, 14, 17, 21, 28, 33, 37, 42, 43, 51, 56, 58, 59, 61], "match": [0, 2, 12, 14, 17, 25, 37, 39, 45, 47, 51, 55, 59, 61], "candid": [0, 30, 49, 61], "closest": [0, 17, 59, 61], "length": [0, 3, 12, 14, 19, 21, 37, 49, 59, 60, 61], "descript": [0, 2, 6, 7, 12, 14, 17, 37, 39, 44, 45, 46, 47, 50, 61], "__repr__": [0, 61], "repres": [0, 3, 4, 5, 12, 14, 17, 19, 20, 25, 30, 35, 37, 38, 42, 44, 45, 47, 49, 50, 56, 57, 61], "html": [0, 5, 12, 17, 30, 37, 39, 42, 55, 57, 59, 61], "util": [0, 56, 59, 61], "function": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 59, 61], "convert": [0, 17, 49, 58, 59, 61], "undetected_chromedriv": [0, 61], "instanc": [0, 3, 5, 45, 56, 61], "contintu": [0, 61], "pack": [0, 61], "helper": [0, 61], "oper": [0, 4, 6, 12, 14, 17, 18, 22, 30, 32, 37, 49, 51, 59, 61], "quickstart": 0, "guid": [0, 8, 39, 53], "instal": [0, 23, 39, 44, 48], "usag": [0, 4, 12, 28, 39, 45, 49, 50, 57], "exampl": [0, 4, 5, 12, 27, 30, 39, 42, 43, 45, 50, 51, 57, 59], "complet": [0, 2, 14, 17, 19, 27, 37, 39], "custom": [0, 8, 12, 39], "option": [0, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 53, 54, 55, 57, 59], "altern": [0, 2, 25, 37, 45], "class": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55], "creat": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 58, 59, 60, 61], "target": [0, 1, 3, 4, 8, 12, 17, 21, 27, 31, 37, 38, 39, 41, 42, 44, 45, 47, 49, 56, 57, 59], "connect": [0, 7, 23, 31, 37, 45, 47, 52, 54, 56, 59], "websocket_url": [0, 56, 59], "main_tab": [0, 56], "stop": [0, 10, 12, 14, 18, 22, 28, 34, 36, 39, 42, 43, 48, 53, 56, 57, 60, 61], "sleep": [0, 56, 59, 60, 61], "grant_all_permiss": [0, 56], "tile_window": [0, 56], "update_target": [0, 56, 59], "aclos": [0, 59], "activ": [0, 10, 12, 14, 21, 28, 30, 35, 37, 39, 42, 48, 49, 51, 56, 59], "add_handl": [0, 59], "aopen": [0, 59], "attach": [0, 19, 35, 37, 39, 44, 45, 51, 59], "back": [0, 4, 14, 30, 32, 33, 39, 59], "bring_to_front": [0, 39, 59, 60, 61], "close": [0, 8, 17, 24, 32, 37, 39, 44, 51, 54, 56, 59, 60, 61], "download_fil": [0, 59], "evalu": [0, 14, 28, 37, 39, 45, 59], "find_al": [0, 59], "find_element_by_text": [0, 59], "find_elements_by_text": [0, 57, 59], "forward": [0, 21, 30, 37, 39, 59], "fullscreen": [0, 8, 39, 59], "get_all_linked_sourc": [0, 59], "get_all_url": [0, 59], "get_cont": [0, 59, 60, 61], "get_window": [0, 59], "inspector_open": [0, 59], "inspector_url": [0, 59], "js_dump": [0, 59], "maxim": [0, 8, 37, 59], "medim": [0, 59], "minim": [0, 8, 28, 39, 59], "open_external_inspector": [0, 59], "query_selector": [0, 17, 57, 59], "query_selector_al": [0, 17, 57, 59], "reload": [0, 14, 31, 39, 45, 59, 60, 61], "save_screenshot": [0, 57, 59, 60, 61], "scroll_down": [0, 59, 60, 61], "scroll_up": [0, 59], "select": [0, 2, 15, 17, 19, 30, 35, 38, 39, 57, 60, 61], "select_al": [0, 60, 61], "send": [0, 4, 11, 17, 27, 28, 30, 34, 35, 37, 39, 42, 43, 49, 51, 54, 57, 60, 61], "set_download_path": [0, 59], "set_window_s": [0, 59], "set_window_st": [0, 59], "verify_cf": [0, 59], "wait_for": [0, 59], "websocket": [0, 37, 39, 59], "tag": [0, 12, 14, 19, 21, 39, 42, 48, 53, 57, 59], "tag_nam": [0, 57], "node_id": [0, 2, 12, 17, 18, 28, 38, 41, 42, 54, 57], "backend_node_id": [0, 2, 3, 17, 18, 19, 33, 38, 39, 42, 57], "node_typ": [0, 17, 19, 54, 57], "node_nam": [0, 17, 19, 57], "local_nam": [0, 17, 57], "node_valu": [0, 17, 19, 57], "parent_id": [0, 2, 17, 39, 45, 57], "child_node_count": [0, 17, 57], "attribut": [0, 2, 3, 4, 5, 6, 8, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 24, 25, 28, 30, 31, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 57, 58], "document_url": [0, 17, 19, 37, 57], "base_url": [0, 17, 19, 30, 57], "public_id": [0, 17, 19, 57], "system_id": [0, 17, 19, 57], "internal_subset": [0, 17, 57], "xml_version": [0, 17, 57], "valu": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 57, 58, 59], "pseudo_typ": [0, 12, 17, 19, 57], "pseudo_identifi": [0, 12, 17, 19, 57], "shadow_root_typ": [0, 17, 19, 57], "frame_id": [0, 2, 4, 5, 8, 12, 17, 19, 25, 37, 38, 39, 41, 49, 57], "content_docu": [0, 17, 57], "shadow_root": [0, 17, 57], "template_cont": [0, 17, 57], "pseudo_el": [0, 12, 17, 57], "imported_docu": [0, 17, 57], "distributed_nod": [0, 17, 57], "is_svg": [0, 17, 57], "compatibility_mod": [0, 17, 57], "assigned_slot": [0, 17, 57], "save_to_dom": [0, 57], "remove_from_dom": [0, 57], "updat": [0, 2, 3, 4, 6, 12, 17, 21, 27, 28, 37, 39, 42, 43, 45, 49, 55, 57, 58, 59], "node": [0, 2, 3, 5, 12, 17, 18, 19, 28, 33, 36, 38, 39, 42, 43, 54, 57, 59], "tree": [0, 2, 12, 17, 19, 28, 33, 39, 49, 57], "attr": [0, 17, 57], "parent": [0, 2, 12, 17, 19, 33, 39, 45, 56, 57], "children": [0, 2, 17, 18, 28, 38, 39, 43, 57], "remote_object": [0, 57], "object_id": [0, 2, 14, 17, 18, 28, 32, 38, 45, 57], "click": [19, 30, 39, 44, 57, 60], "get_js_attribut": [0, 57], "appli": [0, 2, 4, 8, 12, 14, 21, 25, 33, 39, 53, 57], "get_posit": [0, 57], "mouse_click": [0, 57, 60, 61], "mouse_mov": [0, 57], "mouse_drag": [0, 57], "scroll_into_view": [0, 57], "clear_input": [0, 57], "send_kei": [0, 57, 60, 61], "send_fil": [0, 57], "select_opt": [0, 57], "set_valu": [0, 57], "set_text": [0, 57], "get_html": [0, 57], "text_al": [0, 57], "flash": [0, 8, 57, 60, 61], "highlight_overlai": [0, 57], "record_video": [0, 57], "is_record": [0, 6, 57], "browser_arg": [0, 56, 58, 60], "user_data_dir": [0, 56, 58, 60], "uses_custom_data_dir": [0, 58], "add_extens": [0, 58], "add_argu": [0, 58], "contradict": 0, "clear": [0, 4, 6, 16, 20, 21, 23, 29, 34, 37, 39, 45, 49, 51, 55, 57, 58], "copi": [0, 17, 30, 58], "fromkei": [0, 58], "item": [0, 4, 8, 9, 12, 13, 14, 17, 19, 20, 25, 26, 27, 29, 30, 32, 33, 36, 37, 38, 39, 43, 44, 45, 49, 50, 53, 58, 59], "kei": [0, 6, 7, 9, 12, 20, 23, 26, 29, 30, 37, 39, 42, 44, 45, 47, 49, 55, 57, 58, 59, 60, 61], "pop": [0, 17, 58], "popitem": [0, 58], "setdefault": [0, 58], "cdict": [0, 58], "access": [0, 1, 4, 17, 28, 34, 38, 39, 49, 51, 58], "type": [0, 56, 57, 58, 59, 60, 61], "axnodeid": [0, 2], "axvaluetyp": [0, 2], "boolean": [0, 2, 14, 45], "tristat": [0, 2], "boolean_or_undefin": [0, 2], "idref": [0, 2], "idref_list": [0, 2], "integ": [0, 2, 17, 18, 28, 29, 45, 49], "node_list": [0, 2], "number": [0, 2, 5, 8, 9, 11, 12, 14, 17, 18, 19, 21, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 41, 43, 45, 49, 52, 53, 54, 59, 60, 61], "string": [0, 2, 4, 7, 8, 9, 12, 14, 17, 19, 21, 25, 27, 29, 30, 33, 36, 37, 39, 45, 47, 49, 50, 51, 53, 55, 57, 59, 60, 61], "computed_str": [0, 2], "token": [0, 2, 37, 39, 49], "token_list": [0, 2], "dom_rel": [0, 2], "role": [0, 2, 49, 60, 61], "internal_rol": [0, 2], "value_undefin": [0, 2], "axvaluesourcetyp": [0, 2], "implicit": [0, 2, 12, 17], "style": [0, 2, 3, 12, 17, 19, 21, 35, 38, 39, 57], "placehold": [0, 2, 17], "related_el": [0, 2], "axvaluenativesourcetyp": [0, 2], "figcapt": [0, 2], "label": [0, 2, 37, 38, 39, 45], "labelfor": [0, 2], "labelwrap": [0, 2], "legend": [0, 2], "rubyannot": [0, 2], "tablecapt": [0, 2], "titl": [0, 2, 12, 19, 24, 30, 38, 39, 40, 43, 47, 51, 60, 61], "axvaluesourc": [0, 2], "type_": [0, 2, 3, 4, 14, 18, 21, 26, 29, 30, 33, 37, 39, 41, 45, 49, 50, 51], "attribute_valu": [0, 2], "supersed": [0, 2, 21], "native_sourc": [0, 2], "native_source_valu": [0, 2], "invalid": [0, 2, 14, 17, 37], "invalid_reason": [0, 2], "axrelatednod": [0, 2], "backend_dom_node_id": [0, 2], "axproperti": [0, 2], "name": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 17, 18, 19, 21, 22, 23, 24, 25, 26, 28, 29, 30, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 58, 59, 60, 61], "axvalu": [0, 2], "related_nod": [0, 2], "sourc": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59], "axpropertynam": [0, 2], "busi": [0, 2], "disabl": [0, 2, 3, 4, 5, 6, 7, 10, 11, 12, 13, 14, 15, 17, 19, 20, 21, 22, 24, 25, 27, 28, 29, 31, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 45, 47, 48, 49, 54, 55], "edit": [0, 2, 12, 14, 17, 30], "focus": [0, 2, 17, 21, 51], "hidden": [0, 2, 21, 39, 57], "hidden_root": [0, 2], "keyshortcut": [0, 2], "settabl": [0, 2], "roledescript": [0, 2], "live": [0, 2, 14], "atom": [0, 2], "relev": [0, 2, 18, 38, 42], "root": [0, 2, 12, 17, 18, 19, 28, 33, 35, 39, 43, 49, 56], "autocomplet": [0, 2, 5, 58], "has_popup": [0, 2], "multiselect": [0, 2], "orient": [0, 2, 3, 16, 17, 21, 39], "multilin": [0, 2], "readonli": [0, 2], "requir": [0, 2, 8, 12, 17, 27, 29, 37, 39, 44, 57], "valuemin": [0, 2], "valuemax": [0, 2], "valuetext": [0, 2], "check": [0, 2, 4, 14, 17, 19, 44, 59], "expand": [0, 2], "modal": [0, 2], "press": [0, 2, 30, 39, 57], "activedescend": [0, 2], "control": [0, 2, 8, 30, 38, 39, 44, 45, 51, 53, 56, 59], "describedbi": [0, 2], "detail": [0, 2, 4, 8, 14, 17, 19, 25, 28, 35, 37, 39, 41, 43, 45, 47, 49, 51, 53, 59], "errormessag": [0, 2, 42], "flowto": [0, 2], "labelledbi": [0, 2], "own": [0, 2, 17, 19, 30, 33, 43, 45], "url": [0, 2, 4, 8, 9, 11, 12, 14, 17, 18, 19, 24, 25, 30, 33, 34, 37, 39, 41, 42, 43, 44, 45, 47, 49, 51, 56, 59], "axnod": [0, 2], "ignor": [0, 2, 4, 12, 14, 17, 19, 30, 37, 39, 44, 47, 51, 53, 55, 59], "ignored_reason": [0, 2], "chrome_rol": [0, 2], "properti": [0, 2, 4, 12, 14, 17, 19, 35, 39, 42, 45, 54, 55, 56, 57, 58, 59], "child_id": [0, 2], "command": [0, 57], "enabl": [0, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 27, 28, 29, 30, 31, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 51, 53, 54, 55, 57], "get_ax_node_and_ancestor": [0, 2], "get_child_ax_nod": [0, 2], "get_full_ax_tre": [0, 2], "get_partial_ax_tre": [0, 2], "get_root_ax_nod": [0, 2], "query_ax_tre": [0, 2], "loadcomplet": [0, 2], "nodesupd": [0, 2], "anim": [0, 1, 12, 27], "id_": [0, 2, 3, 5, 10, 13, 15, 23, 28, 30, 37, 39, 42, 43, 45, 49, 50], "paused_st": [0, 3], "play_stat": [0, 3], "playback_r": [0, 3], "start_tim": [0, 3, 43], "current_tim": [0, 3, 54], "css_id": [0, 3], "view_or_scroll_timelin": [0, 3], "vieworscrolltimelin": [0, 3], "axi": [0, 3, 12, 30, 38], "source_node_id": [0, 3], "start_offset": [0, 3, 12, 43], "end_offset": [0, 3, 12, 43], "subject_node_id": [0, 3], "animationeffect": [0, 3], "delai": [0, 3, 21, 24, 30, 39, 53], "end_delai": [0, 3], "iteration_start": [0, 3], "iter": [0, 3, 17, 19, 20, 33, 51, 58], "fill": [0, 3, 5, 21, 38, 47, 60, 61], "eas": [0, 3], "keyframes_rul": [0, 3], "keyframesrul": [0, 3], "keyfram": [0, 3, 12], "keyframestyl": [0, 3], "offset": [0, 3, 8, 12, 14, 19, 21, 32, 33, 39, 43, 59], "get_current_tim": [0, 3], "get_playback_r": [0, 3], "release_anim": [0, 3], "resolve_anim": [0, 3], "seek_anim": [0, 3], "set_paus": [0, 3], "set_playback_r": [0, 3], "set_tim": [0, 3], "animationcancel": [0, 3], "animationcr": [0, 3], "animationstart": [0, 3], "animationupd": [0, 3], "audit": [0, 1, 30], "affectedcooki": [0, 4], "path": [0, 4, 8, 9, 17, 23, 26, 29, 37, 39, 57, 58, 59, 60], "affectedrequest": [0, 4], "request_id": [0, 4, 25, 37, 42, 49], "affectedfram": [0, 4], "cookieexclusionreason": [0, 4], "exclude_same_site_unspecified_treated_as_lax": [0, 4], "exclude_same_site_none_insecur": [0, 4], "exclude_same_site_lax": [0, 4], "exclude_same_site_strict": [0, 4], "exclude_invalid_same_parti": [0, 4], "exclude_same_party_cross_party_context": [0, 4], "exclude_domain_non_ascii": [0, 4], "exclude_third_party_cookie_blocked_in_first_party_set": [0, 4], "exclude_third_party_phaseout": [0, 4], "cookiewarningreason": [0, 4], "warn_same_site_unspecified_cross_site_context": [0, 4], "warn_same_site_none_insecur": [0, 4], "warn_same_site_unspecified_lax_allow_unsaf": [0, 4], "warn_same_site_strict_lax_downgrade_strict": [0, 4], "warn_same_site_strict_cross_downgrade_strict": [0, 4], "warn_same_site_strict_cross_downgrade_lax": [0, 4], "warn_same_site_lax_cross_downgrade_strict": [0, 4], "warn_same_site_lax_cross_downgrade_lax": [0, 4], "warn_attribute_value_exceeds_max_s": [0, 4], "warn_domain_non_ascii": [0, 4], "warn_third_party_phaseout": [0, 4], "warn_cross_site_redirect_downgrade_changes_inclus": [0, 4], "cookieoper": [0, 4], "set_cooki": [0, 4, 37, 49, 56], "read_cooki": [0, 4], "cookieissuedetail": [0, 4], "cookie_warning_reason": [0, 4], "cookie_exclusion_reason": [0, 4], "raw_cookie_lin": [0, 4], "site_for_cooki": [0, 4], "cookie_url": [0, 4], "request": [0, 2, 4, 8, 9, 10, 12, 15, 17, 19, 21, 25, 27, 29, 34, 37, 38, 39, 45, 47, 49, 52, 53, 56, 59], "mixedcontentresolutionstatu": [0, 4], "mixed_content_block": [0, 4], "mixed_content_automatically_upgrad": [0, 4], "mixed_content_warn": [0, 4], "mixedcontentresourcetyp": [0, 4], "attribution_src": [0, 4], "audio": [0, 4, 54, 59], "beacon": [0, 4], "csp_report": [0, 4], "download": [0, 4, 8, 12, 37, 39, 42, 57, 59], "event_sourc": [0, 4, 37], "favicon": [0, 4], "font": [0, 4, 12, 37, 39], "form": [0, 4, 5, 14, 17, 37, 39, 57, 59], "frame": [0, 2, 4, 5, 8, 12, 14, 17, 19, 21, 25, 27, 29, 30, 37, 38, 39, 41, 42, 45, 49, 50, 51], "imag": [0, 4, 8, 12, 17, 21, 27, 33, 37, 39, 41, 50, 57], "json": [0, 4, 7, 8, 9, 14, 25, 27, 33, 37, 39, 42, 45, 51, 53, 55, 57, 58], "manifest": [0, 4, 37, 38, 39, 44, 58], "ping": [0, 4, 37], "plugin_data": [0, 4], "plugin_resourc": [0, 4], "prefetch": [0, 4, 37, 42], "resourc": [0, 4, 8, 11, 12, 14, 18, 21, 25, 34, 37, 39, 42, 47, 56], "script": [0, 4, 12, 14, 18, 19, 21, 37, 39, 42, 43, 45, 48, 49, 57, 59, 60, 61], "service_work": [0, 4, 49], "shared_work": [0, 4, 39], "speculation_rul": [0, 4], "stylesheet": [0, 4, 12, 37], "track": [0, 4, 12, 13, 14, 17, 20, 28, 30, 37, 38, 39, 45, 47, 49], "video": [0, 4, 35, 50, 57, 59], "worker": [0, 4, 6, 14, 34, 36, 37, 39, 45, 51], "xml_http_request": [0, 4], "xslt": [0, 4], "mixedcontentissuedetail": [0, 4], "resolution_statu": [0, 4], "insecure_url": [0, 4], "main_resource_url": [0, 4], "resource_typ": [0, 4, 25, 37], "blockedbyresponsereason": [0, 4], "coep_frame_resource_needs_coep_head": [0, 4, 37], "coop_sandboxed_i_frame_cannot_navigate_to_coop_pag": [0, 4], "corp_not_same_origin": [0, 4, 37], "corp_not_same_origin_after_defaulted_to_same_origin_by_coep": [0, 4, 37], "corp_not_same_origin_after_defaulted_to_same_origin_by_dip": [0, 4, 37], "corp_not_same_origin_after_defaulted_to_same_origin_by_coep_and_dip": [0, 4, 37], "corp_not_same_sit": [0, 4, 37], "blockedbyresponseissuedetail": [0, 4], "reason": [0, 2, 4, 14, 25, 31, 33, 37, 39, 42, 43, 45, 51, 57], "parent_fram": [0, 4], "blocked_fram": [0, 4], "heavyadresolutionstatu": [0, 4], "heavy_ad_block": [0, 4], "heavy_ad_warn": [0, 4], "heavyadreason": [0, 4], "network_total_limit": [0, 4], "cpu_total_limit": [0, 4], "cpu_peak_limit": [0, 4], "heavyadissuedetail": [0, 4], "resolut": [0, 4, 50], "contentsecuritypolicyviolationtyp": [0, 4], "k_inline_viol": [0, 4], "k_eval_viol": [0, 4], "k_url_viol": [0, 4], "k_trusted_types_sink_viol": [0, 4], "k_trusted_types_policy_viol": [0, 4], "k_wasm_eval_viol": [0, 4], "sourcecodeloc": [0, 4], "line_numb": [0, 4, 14, 18, 34, 37, 39, 45, 48], "column_numb": [0, 4, 14, 18, 37, 39, 45, 48], "script_id": [0, 4, 14, 18, 39, 43, 45], "contentsecuritypolicyissuedetail": [0, 4], "violated_direct": [0, 4], "is_report_onli": [0, 4], "content_security_policy_violation_typ": [0, 4], "blocked_url": [0, 4], "frame_ancestor": [0, 4], "source_code_loc": [0, 4], "violating_node_id": [0, 4], "sharedarraybufferissuetyp": [0, 4], "transfer_issu": [0, 4], "creation_issu": [0, 4], "sharedarraybufferissuedetail": [0, 4], "is_warn": [0, 4], "lowtextcontrastissuedetail": [0, 4], "violating_node_selector": [0, 4], "contrast_ratio": [0, 4], "threshold_aa": [0, 4], "threshold_aaa": [0, 4], "font_siz": [0, 4, 39], "font_weight": [0, 4, 12], "corsissuedetail": [0, 4], "cors_error_statu": [0, 4, 37], "locat": [0, 4, 12, 14, 17, 25, 28, 30, 37, 39, 43, 44, 45, 51], "initiator_origin": [0, 4], "resource_ip_address_spac": [0, 4, 37], "client_security_st": [0, 4, 37], "attributionreportingissuetyp": [0, 4], "permission_policy_dis": [0, 4], "untrustworthy_reporting_origin": [0, 4], "insecure_context": [0, 4], "invalid_head": [0, 4], "invalid_register_trigger_head": [0, 4], "source_and_trigger_head": [0, 4], "source_ignor": [0, 4], "trigger_ignor": [0, 4], "os_source_ignor": [0, 4], "os_trigger_ignor": [0, 4], "invalid_register_os_source_head": [0, 4], "invalid_register_os_trigger_head": [0, 4], "web_and_os_head": [0, 4], "no_web_or_os_support": [0, 4], "navigation_registration_without_transient_user_activ": [0, 4], "invalid_info_head": [0, 4], "no_register_source_head": [0, 4], "no_register_trigger_head": [0, 4], "no_register_os_source_head": [0, 4], "no_register_os_trigger_head": [0, 4], "shareddictionaryerror": [0, 4], "use_error_cross_origin_no_cors_request": [0, 4], "use_error_dictionary_load_failur": [0, 4], "use_error_matching_dictionary_not_us": [0, 4], "use_error_unexpected_content_dictionary_head": [0, 4], "write_error_coss_origin_no_cors_request": [0, 4], "write_error_disallowed_by_set": [0, 4], "write_error_expired_respons": [0, 4], "write_error_feature_dis": [0, 4], "write_error_insufficient_resourc": [0, 4], "write_error_invalid_match_field": [0, 4], "write_error_invalid_structured_head": [0, 4], "write_error_navigation_request": [0, 4], "write_error_no_match_field": [0, 4], "write_error_non_list_match_dest_field": [0, 4], "write_error_non_secure_context": [0, 4], "write_error_non_string_id_field": [0, 4], "write_error_non_string_in_match_dest_list": [0, 4], "write_error_non_string_match_field": [0, 4], "write_error_non_token_type_field": [0, 4], "write_error_request_abort": [0, 4], "write_error_shutting_down": [0, 4], "write_error_too_long_id_field": [0, 4], "write_error_unsupported_typ": [0, 4], "attributionreportingissuedetail": [0, 4], "violation_typ": [0, 4, 18], "invalid_paramet": [0, 4], "quirksmodeissuedetail": [0, 4], "is_limited_quirks_mod": [0, 4], "document_node_id": [0, 4], "loader_id": [0, 4, 37, 39, 42], "navigatoruseragentissuedetail": [0, 4], "shareddictionaryissuedetail": [0, 4], "shared_dictionary_error": [0, 4], "genericissueerrortyp": [0, 4], "cross_origin_portal_post_message_error": [], "form_label_for_name_error": [0, 4], "form_duplicate_id_for_input_error": [0, 4], "form_input_with_no_label_error": [0, 4], "form_autocomplete_attribute_empty_error": [0, 4], "form_empty_id_and_name_attributes_for_input_error": [0, 4], "form_aria_labelled_by_to_non_existing_id": [0, 4], "form_input_assigned_autocomplete_value_to_id_or_name_attribute_error": [0, 4], "form_label_has_neither_for_nor_nested_input": [0, 4], "form_label_for_matches_non_existing_id_error": [0, 4], "form_input_has_wrong_but_well_intended_autocomplete_value_error": [0, 4], "response_was_blocked_by_orb": [0, 4], "genericissuedetail": [0, 4], "error_typ": [0, 4, 35, 42, 47], "violating_node_attribut": [0, 4], "deprecationissuedetail": [0, 4], "affected_fram": [0, 4], "bouncetrackingissuedetail": [0, 4], "tracking_sit": [0, 4], "cookiedeprecationmetadataissuedetail": [0, 4], "allowed_sit": [0, 4], "opt_out_percentag": [0, 4], "is_opt_out_top_level": [0, 4], "clienthintissuereason": [0, 4], "meta_tag_allow_list_invalid_origin": [0, 4], "meta_tag_modified_html": [0, 4], "federatedauthrequestissuedetail": [0, 4], "federated_auth_request_issue_reason": [0, 4], "federatedauthrequestissuereason": [0, 4], "should_embargo": [0, 4], "too_many_request": [0, 4], "well_known_http_not_found": [0, 4], "well_known_no_respons": [0, 4], "well_known_invalid_respons": [0, 4], "well_known_list_empti": [0, 4], "well_known_invalid_content_typ": [0, 4], "config_not_in_well_known": [0, 4], "well_known_too_big": [0, 4], "config_http_not_found": [0, 4], "config_no_respons": [0, 4], "config_invalid_respons": [0, 4], "config_invalid_content_typ": [0, 4], "client_metadata_http_not_found": [0, 4], "client_metadata_no_respons": [0, 4], "client_metadata_invalid_respons": [0, 4], "client_metadata_invalid_content_typ": [0, 4], "idp_not_potentially_trustworthi": [0, 4], "disabled_in_set": [0, 4], "disabled_in_flag": [0, 4], "error_fetching_signin": [0, 4], "invalid_signin_respons": [0, 4], "accounts_http_not_found": [0, 4], "accounts_no_respons": [0, 4], "accounts_invalid_respons": [0, 4], "accounts_list_empti": [0, 4], "accounts_invalid_content_typ": [0, 4], "id_token_http_not_found": [0, 4], "id_token_no_respons": [0, 4], "id_token_invalid_respons": [0, 4], "id_token_idp_error_respons": [0, 4], "id_token_cross_site_idp_error_respons": [0, 4], "id_token_invalid_request": [0, 4], "id_token_invalid_content_typ": [0, 4], "error_id_token": [0, 4], "cancel": [0, 3, 4, 8, 15, 25, 30, 37, 38, 39, 42, 45, 47, 51], "rp_page_not_vis": [0, 4], "silent_mediation_failur": [0, 4], "third_party_cookies_block": [0, 4], "not_signed_in_with_idp": [0, 4], "missing_transient_user_activ": [0, 4], "replaced_by_button_mod": [], "invalid_fields_specifi": [0, 4], "relying_party_origin_is_opaqu": [0, 4], "type_not_match": [0, 4], "federatedauthuserinforequestissuedetail": [0, 4], "federated_auth_user_info_request_issue_reason": [0, 4], "federatedauthuserinforequestissuereason": [0, 4], "not_same_origin": [0, 4], "not_ifram": [0, 4], "not_potentially_trustworthi": [0, 4], "no_api_permiss": [0, 4], "no_account_sharing_permiss": [0, 4], "invalid_config_or_well_known": [0, 4], "invalid_accounts_respons": [0, 4], "no_returning_user_from_fetched_account": [0, 4], "clienthintissuedetail": [0, 4], "client_hint_issue_reason": [0, 4], "failedrequestinfo": [0, 4], "failure_messag": [0, 4], "stylesheetloadingissuereason": [0, 4], "late_import_rul": [0, 4], "request_fail": [0, 4], "stylesheetloadingissuedetail": [0, 4], "style_sheet_loading_issue_reason": [0, 4], "failed_request_info": [0, 4], "propertyruleissuereason": [0, 4], "invalid_syntax": [0, 4], "invalid_initial_valu": [0, 4], "invalid_inherit": [0, 4], "invalid_nam": [0, 4], "propertyruleissuedetail": [0, 4], "property_rule_issue_reason": [0, 4], "property_valu": [0, 4], "inspectorissuecod": [0, 4], "cookie_issu": [0, 4], "mixed_content_issu": [0, 4], "blocked_by_response_issu": [0, 4], "heavy_ad_issu": [0, 4], "content_security_policy_issu": [0, 4], "shared_array_buffer_issu": [0, 4], "low_text_contrast_issu": [0, 4], "cors_issu": [0, 4], "attribution_reporting_issu": [0, 4], "quirks_mode_issu": [0, 4], "navigator_user_agent_issu": [0, 4], "generic_issu": [0, 4], "deprecation_issu": [0, 4], "client_hint_issu": [0, 4], "federated_auth_request_issu": [0, 4], "bounce_tracking_issu": [0, 4], "cookie_deprecation_metadata_issu": [0, 4], "stylesheet_loading_issu": [0, 4], "federated_auth_user_info_request_issu": [0, 4], "property_rule_issu": [0, 4], "shared_dictionary_issu": [0, 4], "inspectorissuedetail": [0, 4], "cookie_issue_detail": [0, 4], "mixed_content_issue_detail": [0, 4], "blocked_by_response_issue_detail": [0, 4], "heavy_ad_issue_detail": [0, 4], "content_security_policy_issue_detail": [0, 4], "shared_array_buffer_issue_detail": [0, 4], "low_text_contrast_issue_detail": [0, 4], "cors_issue_detail": [0, 4], "attribution_reporting_issue_detail": [0, 4], "quirks_mode_issue_detail": [0, 4], "navigator_user_agent_issue_detail": [0, 4], "generic_issue_detail": [0, 4], "deprecation_issue_detail": [0, 4], "client_hint_issue_detail": [0, 4], "federated_auth_request_issue_detail": [0, 4], "bounce_tracking_issue_detail": [0, 4], "cookie_deprecation_metadata_issue_detail": [0, 4], "stylesheet_loading_issue_detail": [0, 4], "property_rule_issue_detail": [0, 4], "federated_auth_user_info_request_issue_detail": [0, 4], "shared_dictionary_issue_detail": [0, 4], "issueid": [0, 4], "inspectorissu": [0, 4], "issue_id": [0, 4], "check_contrast": [0, 4], "check_forms_issu": [0, 4], "get_encoded_respons": [0, 4], "issuead": [0, 4], "issu": [0, 4, 10, 11, 12, 14, 25, 30, 34, 37, 39, 45, 47, 49, 51, 53, 59], "autofil": [0, 1, 39], "creditcard": [0, 5], "expiry_month": [0, 5], "expiry_year": [0, 5], "cvc": [0, 5], "addressfield": [0, 5], "field": [0, 4, 5, 8, 12, 25, 30, 37, 39, 41, 45, 47, 51, 54, 57, 60, 61], "address": [0, 5, 7, 36, 37], "addressui": [0, 5], "address_field": [0, 5], "fillingstrategi": [0, 5], "autocomplete_attribut": [0, 5], "autofill_inf": [0, 5], "filledfield": [0, 5], "html_type": [0, 5], "autofill_typ": [0, 5], "filling_strategi": [0, 5], "field_id": [0, 5], "set_address": [0, 5], "trigger": [0, 3, 5, 14, 24, 30, 34, 37, 38, 39, 42, 43, 47, 53, 55, 57], "addressformfil": [0, 5], "filled_field": [0, 5], "address_ui": [0, 5], "backgroundservic": [0, 1], "servicenam": [0, 6], "background_fetch": [0, 6, 8], "background_sync": [0, 6, 8], "push_messag": [0, 6], "notif": [0, 3, 5, 6, 8, 11, 17, 21, 31, 34, 36, 37, 38, 39, 45, 49, 51, 56], "payment_handl": [0, 6, 8], "periodic_background_sync": [0, 6, 8], "eventmetadata": [0, 6], "backgroundserviceev": [0, 6], "timestamp": [0, 6, 12, 21, 26, 27, 28, 30, 34, 35, 37, 39, 40, 43, 45], "origin": [0, 3, 4, 6, 8, 9, 11, 12, 18, 20, 21, 25, 29, 37, 39, 42, 45, 48, 49, 51], "service_worker_registration_id": [0, 6], "servic": [0, 6, 37, 49, 51, 53], "event_nam": [0, 6, 18, 22, 37], "instance_id": [0, 6], "event_metadata": [0, 6], "storage_kei": [0, 6, 9, 20, 26, 29, 49], "clear_ev": [0, 6], "set_record": [0, 6], "start_observ": [0, 6], "stop_observ": [0, 6], "recordingstatechang": [0, 6], "backgroundserviceeventreceiv": [0, 6], "background_service_ev": [0, 6], "browsercontextid": [0, 8, 49, 51], "windowid": [0, 8], "windowst": [0, 8], "normal": [0, 8, 12, 21, 24, 30, 45, 56, 59], "bound": [0, 8, 17, 19, 29, 39, 52, 59], "left": [0, 8, 30, 32, 33, 39, 57, 59], "top": [0, 8, 14, 17, 30, 33, 37, 39, 43, 45, 56, 59], "width": [0, 8, 12, 17, 19, 21, 33, 38, 39, 50, 51, 59], "height": [0, 8, 12, 17, 19, 21, 33, 38, 39, 50, 51, 59], "window_st": [0, 8], "permissiontyp": [0, 8], "accessibility_ev": [0, 8], "audio_captur": [0, 8], "captured_surface_control": [0, 8, 39], "clipboard_read_writ": [0, 8], "clipboard_sanitized_writ": [0, 8], "display_captur": [0, 8, 39], "durable_storag": [0, 8], "geoloc": [0, 8, 21, 39, 56], "idle_detect": [0, 8, 39], "local_font": [0, 8, 39], "midi": [0, 8, 39, 56], "midi_sysex": [0, 8], "nfc": [0, 8, 55, 56], "protected_media_identifi": [0, 8], "sensor": [0, 8, 21, 39, 56], "storage_access": [0, 8, 37, 39], "speaker_select": [0, 8, 39], "top_level_storage_access": [0, 8, 37], "video_captur": [0, 8], "video_capture_pan_tilt_zoom": [0, 8], "wake_lock_screen": [0, 8], "wake_lock_system": [0, 8], "window_manag": [0, 8, 39], "permissionset": [0, 8], "grant": [0, 4, 8, 39, 51, 56], "deni": [0, 8, 39], "prompt": [0, 8, 15, 39], "permissiondescriptor": [0, 8], "sysex": [0, 8], "user_visible_onli": [0, 8], "allow_without_sanit": [0, 8], "allow_without_gestur": [0, 8], "pan_tilt_zoom": [0, 8], "browsercommandid": [0, 8], "open_tab_search": [0, 8], "close_tab_search": [0, 8], "bucket": [0, 8, 9, 26, 29, 49, 53], "low": [0, 8, 37, 50], "high": [0, 8, 37], "count": [0, 8, 9, 17, 28, 29, 30, 36, 37, 39, 43, 49], "histogram": [0, 8], "sum_": [0, 8], "add_privacy_sandbox_enrollment_overrid": [0, 8], "cancel_download": [0, 8], "crash": [0, 8, 31, 39, 51, 57, 59], "crash_gpu_process": [0, 8], "execute_browser_command": [0, 8], "get_browser_command_lin": [0, 8], "get_histogram": [0, 8], "get_vers": [0, 8], "get_window_bound": [0, 8], "get_window_for_target": [0, 8], "grant_permiss": [0, 8], "reset_permiss": [0, 8], "set_dock_til": [0, 8], "set_download_behavior": [0, 8, 39], "set_permiss": [0, 8], "set_window_bound": [0, 8], "downloadwillbegin": [0, 8, 39], "suggested_filenam": [0, 8, 39], "downloadprogress": [0, 8, 39], "total_byt": [0, 8, 39], "received_byt": [0, 8, 39], "state": [0, 2, 3, 4, 6, 7, 8, 12, 14, 17, 21, 25, 28, 37, 39, 42, 44, 45, 47, 49, 50, 55, 59], "cachestorag": [0, 1], "cacheid": [0, 9], "cachedresponsetyp": [0, 9], "basic": [0, 9, 25, 37], "cor": [0, 4, 9, 37], "error": [0, 2, 4, 5, 9, 10, 13, 14, 17, 21, 24, 25, 35, 37, 39, 40, 42, 44, 45, 47, 48, 51, 59], "opaque_respons": [0, 9], "opaque_redirect": [0, 9], "dataentri": [0, 9, 29], "request_url": [0, 9, 37, 47], "request_method": [0, 9], "request_head": [0, 9, 37], "response_tim": [0, 9, 37], "response_statu": [0, 9], "response_status_text": [0, 9, 25], "response_typ": [0, 9], "response_head": [0, 9, 25, 37], "cach": [0, 9, 36, 37, 39, 48, 49, 59], "cache_id": [0, 9], "security_origin": [0, 9, 20, 29, 39], "cache_nam": [0, 9, 49], "storage_bucket": [0, 9, 26, 29, 49], "header": [0, 4, 9, 12, 21, 25, 37, 39, 42, 45, 48], "cachedrespons": [0, 9], "bodi": [0, 4, 9, 12, 14, 25, 37, 45], "delete_cach": [0, 9], "delete_entri": [0, 9], "request_cache_nam": [0, 9], "request_cached_respons": [0, 9], "request_entri": [0, 9], "cast": [0, 1], "sink": [0, 10, 18], "session": [0, 8, 10, 17, 20, 23, 37, 49, 51, 56, 60, 61], "set_sink_to_us": [0, 10], "start_desktop_mirror": [0, 10], "start_tab_mirror": [0, 10], "stop_cast": [0, 10], "sinksupd": [0, 10], "issueupd": [0, 10], "issue_messag": [0, 10], "consol": [0, 1, 4, 17, 28, 43, 45, 59], "consolemessag": [0, 11], "column": [0, 11, 12, 14, 17, 18, 37, 38, 39, 45], "clear_messag": [0, 11], "messagead": [0, 11], "messag": [0, 4, 10, 11, 13, 17, 34, 35, 37, 38, 39, 45, 48, 51, 53], "css": [0, 1, 3, 4, 17, 21, 30, 38, 39, 59], "stylesheetid": [0, 12], "stylesheetorigin": [0, 12], "inject": [0, 12, 39, 51], "user_ag": [0, 12, 17, 21, 37], "inspector": [0, 1, 4, 12, 37, 59], "regular": [0, 12, 18, 22, 25, 57, 59], "pseudoelementmatch": [0, 12], "inheritedstyleentri": [0, 12], "matched_css_rul": [0, 12], "inline_styl": [0, 12], "inheritedpseudoelementmatch": [0, 12], "rulematch": [0, 12], "rule": [0, 3, 4, 12, 14, 37, 42, 45], "matching_selector": [0, 12], "range_": [0, 12], "specif": [0, 4, 6, 7, 8, 12, 14, 35, 37, 42, 44, 45, 49, 51, 55, 59], "b": [0, 12, 17, 39, 55, 62], "c": [0, 8, 12, 21, 35, 37, 44, 57], "selectorlist": [0, 12], "cssstylesheethead": [0, 12], "style_sheet_id": [0, 12], "source_url": [0, 12, 45, 48], "is_inlin": [0, 12], "is_mut": [0, 12], "is_construct": [0, 12], "start_lin": [0, 12, 14], "start_column": [0, 12, 14], "end_lin": [0, 12, 14], "end_column": [0, 12, 14], "source_map_url": [0, 12, 14], "owner_nod": [0, 12], "has_source_url": [0, 12, 14], "loading_fail": [0, 12], "cssrule": [0, 12], "selector_list": [0, 12], "nesting_selector": [0, 12], "media": [0, 1, 12, 21, 37, 39, 44], "container_queri": [0, 12], "support": [0, 8, 12, 14, 21, 25, 27, 30, 32, 37, 39, 41, 44, 46, 50, 51, 53, 54, 55, 57], "layer": [0, 12, 17, 25, 33, 38], "scope": [0, 12, 14, 37, 39, 44, 45, 49, 55, 60, 61], "rule_typ": [0, 12], "cssruletyp": [0, 12], "media_rul": [0, 12], "supports_rul": [0, 12], "container_rul": [0, 12], "layer_rul": [0, 12], "scope_rul": [0, 12], "style_rul": [0, 12], "ruleusag": [0, 12], "sourcerang": [0, 12], "shorthandentri": [0, 12], "csscomputedstyleproperti": [0, 12, 17], "cssstyle": [0, 12], "css_properti": [0, 12], "shorthand_entri": [0, 12], "css_text": [0, 12], "cssproperti": [0, 12], "parsed_ok": [0, 12], "longhand_properti": [0, 12], "cssmedia": [0, 12], "media_list": [0, 12], "mediaqueri": [0, 12], "express": [0, 12, 14, 45, 59], "mediaqueryexpress": [0, 12], "unit": [0, 12], "value_rang": [0, 12], "computed_length": [0, 12], "csscontainerqueri": [0, 12], "physical_ax": [0, 12, 17], "logical_ax": [0, 12, 17], "csssupport": [0, 12], "cssscope": [0, 12], "csslayer": [0, 12], "csslayerdata": [0, 12], "order": [0, 12, 19, 21, 28, 35, 38, 39, 44, 49, 58], "sub_lay": [0, 12], "platformfontusag": [0, 12], "family_nam": [0, 5, 12], "post_script_nam": [0, 12], "is_custom_font": [0, 12], "glyph_count": [0, 12], "fontvariationaxi": [0, 12], "min_valu": [0, 12, 54], "max_valu": [0, 12, 54], "default_valu": [0, 12, 54], "fontfac": [0, 12], "font_famili": [0, 12, 39], "font_styl": [0, 12], "font_vari": [0, 12], "font_stretch": [0, 12], "font_displai": [0, 12], "unicode_rang": [0, 12], "src": [0, 4, 7, 8, 12, 30, 37, 39, 51, 59, 60, 61], "platform_font_famili": [0, 12], "font_variation_ax": [0, 12], "csstryrul": [0, 12], "csspositionfallbackrul": [], "try_rul": [], "csspositiontryrul": [0, 12], "csskeyframesrul": [0, 12], "animation_nam": [0, 12], "csspropertyregistr": [0, 12], "property_nam": [0, 12], "inherit": [0, 12, 17, 45, 58], "syntax": [0, 12, 37], "initial_valu": [0, 12, 42], "cssfontpalettevaluesrul": [0, 12], "font_palette_nam": [0, 12], "csspropertyrul": [0, 12], "csskeyframerul": [0, 12], "key_text": [0, 12], "styledeclarationedit": [0, 12], "add_rul": [0, 12], "collect_class_nam": [0, 12], "create_style_sheet": [0, 12], "force_pseudo_st": [0, 12], "get_background_color": [0, 12], "get_computed_style_for_nod": [0, 12], "get_inline_styles_for_nod": [0, 12], "get_layers_for_nod": [0, 12], "get_location_for_selector": [0, 12], "get_matched_styles_for_nod": [0, 12], "get_media_queri": [0, 12], "get_platform_fonts_for_nod": [0, 12], "get_style_sheet_text": [0, 12], "set_container_query_text": [0, 12], "set_effective_property_value_for_nod": [0, 12], "set_keyframe_kei": [0, 12], "set_local_fonts_en": [0, 12], "set_media_text": [0, 12], "set_property_rule_property_nam": [0, 12], "set_rule_selector": [0, 12], "set_scope_text": [0, 12], "set_style_sheet_text": [0, 12], "set_style_text": [0, 12], "set_supports_text": [0, 12], "start_rule_usage_track": [0, 12], "stop_rule_usage_track": [0, 12], "take_computed_style_upd": [0, 12], "take_coverage_delta": [0, 12], "track_computed_style_upd": [0, 12], "fontsupd": [0, 12], "mediaqueryresultchang": [0, 12], "stylesheetad": [0, 12], "stylesheetchang": [0, 12], "stylesheetremov": [0, 12], "databas": [0, 1, 29, 49], "databaseid": [0, 13], "version": [0, 8, 13, 14, 17, 18, 19, 21, 27, 29, 37, 38, 39, 40, 46, 47, 48, 50, 51], "execute_sql": [0, 13], "get_database_table_nam": [0, 13], "adddatabas": [0, 13], "debugg": [0, 1, 22, 37, 39, 45], "breakpointid": [0, 14], "callframeid": [0, 14], "scriptposit": [0, 14], "locationrang": [0, 14], "end": [0, 3, 4, 12, 14, 17, 30, 32, 33, 37, 39, 43, 45, 49, 53, 57], "callfram": [0, 14, 28, 43, 45], "call_frame_id": [0, 14], "function_nam": [0, 14, 43, 45], "scope_chain": [0, 14], "function_loc": [0, 14], "return_valu": [0, 14], "can_be_restart": [0, 14], "object_": [0, 14, 45], "start_loc": [0, 14], "end_loc": [0, 14], "searchmatch": [0, 14, 37, 39], "line_cont": [0, 14], "breakloc": [0, 14], "wasmdisassemblychunk": [0, 14], "bytecode_offset": [0, 14], "scriptlanguag": [0, 14], "java_script": [0, 14], "web_assembli": [0, 14], "debugsymbol": [0, 14], "external_url": [0, 14], "continue_to_loc": [0, 14], "disassemble_wasm_modul": [0, 14], "evaluate_on_call_fram": [0, 14], "get_possible_breakpoint": [0, 14], "get_script_sourc": [0, 14], "get_stack_trac": [0, 14], "get_wasm_bytecod": [0, 14], "next_wasm_disassembly_chunk": [0, 14], "paus": [0, 3, 14, 21, 25, 28, 39, 45, 51, 57], "pause_on_async_cal": [0, 14], "remove_breakpoint": [0, 14], "restart_fram": [0, 14], "resum": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55], "search_in_cont": [0, 14], "set_async_call_stack_depth": [0, 14, 45], "set_blackbox_pattern": [0, 14], "set_blackboxed_rang": [0, 14], "set_breakpoint": [0, 14], "set_breakpoint_by_url": [0, 14], "set_breakpoint_on_function_cal": [0, 14], "set_breakpoints_act": [0, 14], "set_instrumentation_breakpoint": [0, 14, 18, 22], "set_pause_on_except": [0, 14], "set_return_valu": [0, 14], "set_script_sourc": [0, 14], "set_skip_all_paus": [0, 14], "set_variable_valu": [0, 14], "step_into": [0, 14], "step_out": [0, 14], "step_ov": [0, 14], "breakpointresolv": [0, 14], "breakpoint_id": [0, 14], "call_fram": [0, 14, 28, 43, 45], "data": [0, 2, 5, 6, 7, 9, 12, 14, 17, 19, 21, 23, 25, 27, 29, 30, 32, 33, 35, 36, 37, 38, 39, 43, 45, 48, 49, 53, 54], "hit_breakpoint": [0, 14], "async_stack_trac": [0, 14], "async_stack_trace_id": [0, 14], "async_call_stack_trace_id": [0, 14], "scriptfailedtopars": [0, 14], "execution_context_id": [0, 14, 17, 45], "hash_": [0, 14], "execution_context_aux_data": [0, 14], "is_modul": [0, 14], "stack_trac": [0, 14, 34, 45], "code_offset": [0, 14], "script_languag": [0, 14], "embedder_nam": [0, 14], "scriptpars": [0, 14], "is_live_edit": [0, 14], "debug_symbol": [0, 14], "deviceaccess": [0, 1], "requestid": [0, 4, 15, 25, 34, 37, 42, 49], "deviceid": [0, 15], "promptdevic": [0, 15], "cancel_prompt": [0, 15], "select_prompt": [0, 15], "devicerequestprompt": [0, 15], "devic": [0, 7, 10, 15, 16, 21, 30, 38, 39, 50, 55], "deviceorient": [0, 1], "clear_device_orientation_overrid": [0, 16, 39], "set_device_orientation_overrid": [0, 16, 39], "dom": [0, 1, 2, 5, 8, 12, 14, 18, 19, 20, 30, 36, 38, 39, 41, 45, 55, 56, 57, 59], "nodeid": [0, 2, 12, 17, 18, 38], "backendnodeid": [0, 2, 3, 4, 5, 12, 17, 18, 19, 33, 38, 39, 41, 42], "backendnod": [0, 17], "pseudotyp": [0, 12, 17, 19], "first_lin": [0, 17], "first_lett": [0, 17], "befor": [0, 4, 14, 17, 21, 24, 25, 27, 28, 32, 33, 37, 39, 40, 41, 43, 49, 57, 60, 61], "after": [0, 4, 12, 14, 17, 21, 25, 30, 31, 36, 37, 38, 39, 45, 56, 59], "marker": [0, 17, 30, 53], "backdrop": [0, 17], "search_text": [0, 17], "target_text": [0, 17], "spelling_error": [0, 17], "grammar_error": [0, 17], "highlight": [0, 17, 38, 57], "first_line_inherit": [0, 17], "scroll_mark": [0, 17], "scroll_marker_group": [0, 17], "scrollbar": [0, 17, 21, 39], "scrollbar_thumb": [0, 17], "scrollbar_button": [0, 17], "scrollbar_track": [0, 17], "scrollbar_track_piec": [0, 17], "scrollbar_corn": [0, 17], "resiz": [0, 12, 17, 21, 38], "input_list_button": [0, 17], "view_transit": [0, 17], "view_transition_group": [0, 17], "view_transition_image_pair": [0, 17], "view_transition_old": [0, 17], "view_transition_new": [0, 17], "shadowroottyp": [0, 17, 19], "open_": [0, 17], "compatibilitymod": [0, 17], "quirks_mod": [0, 17], "limited_quirks_mod": [0, 17], "no_quirks_mod": [0, 17], "physicalax": [0, 12, 17], "horizont": [0, 17, 19, 21, 39], "vertic": [0, 17, 19, 21, 39], "both": [0, 17, 30, 37, 39], "logicalax": [0, 12, 17], "inlin": [0, 12, 17, 19, 39, 42, 59], "block": [0, 4, 17, 33, 37, 39, 43, 45, 50, 57, 59], "scrollorient": [0, 3, 17], "rgba": [0, 17, 21, 38], "r": [0, 17], "g": [0, 2, 4, 5, 12, 17, 21, 30, 37, 39, 45, 47, 50, 53, 55], "quad": [0, 17, 38], "boxmodel": [0, 17], "pad": [0, 17, 38], "border": [0, 17, 38], "margin": [0, 17, 38, 39], "shape_outsid": [0, 17], "shapeoutsideinfo": [0, 17], "shape": [0, 17, 38], "margin_shap": [0, 17], "rect": [0, 17, 19, 33, 38, 39, 41], "x": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 57, 58, 59], "y": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 57], "collect_class_names_from_subtre": [0, 17], "copy_to": [0, 17], "describe_nod": [0, 17], "discard_search_result": [0, 17], "get_anchor_el": [0, 17], "get_attribut": [0, 17], "get_box_model": [0, 17], "get_container_for_nod": [0, 17], "get_content_quad": [0, 17], "get_docu": [0, 17], "get_element_by_rel": [0, 17], "get_file_info": [0, 17], "get_flattened_docu": [0, 17], "get_frame_own": [0, 17], "get_node_for_loc": [0, 17], "get_node_stack_trac": [0, 17], "get_nodes_for_subtree_by_styl": [0, 17], "get_outer_html": [0, 17], "get_querying_descendants_for_contain": [0, 17], "get_relayout_boundari": [0, 17], "get_search_result": [0, 17], "get_top_layer_el": [0, 17], "hide_highlight": [0, 17, 38], "highlight_nod": [0, 17, 38], "highlight_rect": [0, 17, 38], "mark_undoable_st": [0, 17], "move_to": [0, 17], "perform_search": [0, 17], "push_node_by_path_to_frontend": [0, 17], "push_nodes_by_backend_ids_to_frontend": [0, 17], "redo": [0, 17], "remove_attribut": [0, 17], "remove_nod": [0, 17], "request_child_nod": [0, 17], "request_nod": [0, 17], "resolve_nod": [0, 17], "scroll_into_view_if_need": [0, 17], "set_attribute_valu": [0, 17], "set_attributes_as_text": [0, 17], "set_file_input_fil": [0, 17], "set_inspected_nod": [0, 17], "set_node_nam": [0, 17], "set_node_stack_traces_en": [0, 17], "set_node_valu": [0, 17], "set_outer_html": [0, 17], "undo": [0, 17], "attributemodifi": [0, 17], "attributeremov": [0, 17], "characterdatamodifi": [0, 17], "character_data": [0, 17], "childnodecountupd": [0, 17], "childnodeinsert": [0, 17], "parent_node_id": [0, 17], "previous_node_id": [0, 17], "childnoderemov": [0, 17], "distributednodesupd": [0, 17], "insertion_point_id": [0, 17], "documentupd": [0, 17], "inlinestyleinvalid": [0, 17], "pseudoelementad": [0, 17], "toplayerelementsupd": [0, 17], "pseudoelementremov": [0, 17], "pseudo_element_id": [0, 17], "setchildnod": [0, 17], "shadowrootpop": [0, 17], "host_id": [0, 17], "root_id": [0, 17], "shadowrootpush": [0, 17], "domdebugg": [0, 1], "dombreakpointtyp": [0, 18], "subtree_modifi": [0, 18], "attribute_modifi": [0, 18], "node_remov": [0, 18], "cspviolationtyp": [0, 18], "trustedtype_sink_viol": [0, 18], "trustedtype_policy_viol": [0, 18], "eventlisten": [0, 18, 19], "use_captur": [0, 18], "passiv": [0, 18], "onc": [0, 14, 17, 18, 22, 23, 37, 39, 45], "handler": [0, 18, 37, 39, 44, 45, 59], "original_handl": [0, 18], "get_event_listen": [0, 18], "remove_dom_breakpoint": [0, 18], "remove_event_listener_breakpoint": [0, 18], "remove_instrumentation_breakpoint": [0, 18, 22], "remove_xhr_breakpoint": [0, 18], "set_break_on_csp_viol": [0, 18], "set_dom_breakpoint": [0, 18], "set_event_listener_breakpoint": [0, 18], "set_xhr_breakpoint": [0, 18], "domsnapshot": [0, 1, 17], "domnod": [0, 17, 19], "text_valu": [0, 19], "input_valu": [0, 19], "input_check": [0, 19], "option_select": [0, 19], "child_node_index": [0, 19], "pseudo_element_index": [0, 19], "layout_node_index": [0, 19], "content_languag": [0, 19], "document_encod": [0, 19], "content_document_index": [0, 19], "is_click": [0, 19], "event_listen": [0, 19], "current_source_url": [0, 19], "origin_url": [0, 19], "scroll_offset_x": [0, 19, 39], "scroll_offset_i": [0, 19, 39], "inlinetextbox": [0, 19], "bounding_box": [0, 19], "start_character_index": [0, 19], "num_charact": [0, 19], "layouttreenod": [0, 19], "dom_node_index": [0, 19], "layout_text": [0, 19], "inline_text_nod": [0, 19], "style_index": [0, 19], "paint_ord": [0, 19], "is_stacking_context": [0, 19], "computedstyl": [0, 19], "namevalu": [0, 19], "stringindex": [0, 19], "arrayofstr": [0, 19], "rarestringdata": [0, 19], "index": [0, 12, 17, 19, 28, 29, 37, 39, 45], "rarebooleandata": [0, 19], "rareintegerdata": [0, 19], "rectangl": [0, 17, 19, 33, 38, 39], "documentsnapshot": [0, 19], "encoding_nam": [0, 19], "layout": [0, 4, 17, 19, 27, 30, 33, 38, 39, 41], "text_box": [0, 19], "content_width": [0, 19], "content_height": [0, 19], "nodetreesnapshot": [0, 19], "parent_index": [0, 19], "layouttreesnapshot": [0, 19], "node_index": [0, 19], "stacking_context": [0, 19], "offset_rect": [0, 19], "scroll_rect": [0, 19, 33], "client_rect": [0, 19], "blended_background_color": [0, 19], "text_color_opac": [0, 19], "textboxsnapshot": [0, 19], "layout_index": [0, 19], "capture_snapshot": [0, 19, 39], "get_snapshot": [0, 19], "domstorag": [0, 1], "serializedstoragekei": [0, 20, 26, 49], "storageid": [0, 20], "is_local_storag": [0, 20], "get_dom_storage_item": [0, 20], "remove_dom_storage_item": [0, 20], "set_dom_storage_item": [0, 20], "domstorageitemad": [0, 20], "storage_id": [0, 20], "new_valu": [0, 14, 20], "domstorageitemremov": [0, 20], "domstorageitemupd": [0, 20], "old_valu": [0, 20], "domstorageitemsclear": [0, 20], "emul": [0, 1, 30, 37, 38, 39], "screenorient": [0, 21, 39], "angl": [0, 21, 30], "displayfeatur": [0, 21], "mask_length": [0, 21], "devicepostur": [0, 21], "mediafeatur": [0, 21], "virtualtimepolici": [0, 21], "advanc": [0, 21], "pause_if_network_fetches_pend": [0, 21], "useragentbrandvers": [0, 21], "brand": [0, 21], "useragentmetadata": [0, 21, 37], "platform": [0, 6, 8, 12, 21, 30, 37, 38, 39, 41, 50, 53, 54], "platform_vers": [0, 21], "architectur": [0, 21], "model": [0, 17, 21, 39, 50], "mobil": [0, 21, 39], "full_version_list": [0, 21], "full_vers": [0, 21], "bit": [0, 21, 30, 39, 49, 55, 57], "wow64": [0, 21, 39], "sensortyp": [0, 21], "absolute_orient": [0, 21], "acceleromet": [0, 21, 39], "ambient_light": [0, 21], "graviti": [0, 21], "gyroscop": [0, 21, 39], "linear_acceler": [0, 21], "magnetomet": [0, 21, 39], "proxim": [], "relative_orient": [0, 21], "sensormetadata": [0, 21], "minimum_frequ": [0, 21], "maximum_frequ": [0, 21], "sensorreadingsingl": [0, 21], "sensorreadingxyz": [0, 21], "z": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55], "sensorreadingquaternion": [0, 21], "w": [0, 21], "sensorread": [0, 21], "xyz": [0, 21], "quaternion": [0, 21], "disabledimagetyp": [0, 21], "avif": [0, 21], "webp": [0, 21, 27, 50], "can_emul": [0, 21], "clear_device_metrics_overrid": [0, 21, 39], "clear_device_posture_overrid": [0, 21], "clear_geolocation_overrid": [0, 21, 39], "clear_idle_overrid": [0, 21], "get_overridden_sensor_inform": [0, 21], "reset_page_scale_factor": [0, 21], "set_auto_dark_mode_overrid": [0, 21], "set_automation_overrid": [0, 21], "set_cpu_throttling_r": [0, 21], "set_default_background_color_overrid": [0, 21], "set_device_metrics_overrid": [0, 21, 39], "set_device_posture_overrid": [0, 21], "set_disabled_image_typ": [0, 21], "set_document_cookie_dis": [0, 21], "set_emit_touch_events_for_mous": [0, 21], "set_emulated_media": [0, 21], "set_emulated_vision_defici": [0, 21], "set_focus_emulation_en": [0, 21], "set_geolocation_overrid": [0, 21, 39], "set_hardware_concurrency_overrid": [0, 21], "set_idle_overrid": [0, 21], "set_locale_overrid": [0, 21], "set_navigator_overrid": [0, 21], "set_page_scale_factor": [0, 21], "set_script_execution_dis": [0, 21], "set_scrollbars_hidden": [0, 21], "set_sensor_override_en": [0, 21], "set_sensor_override_read": [0, 21], "set_timezone_overrid": [0, 21], "set_touch_emulation_en": [0, 21, 39], "set_user_agent_overrid": [0, 21, 37], "set_virtual_time_polici": [0, 21], "set_visible_s": [0, 21], "virtualtimebudgetexpir": [0, 21], "eventbreakpoint": [0, 1], "extens": [0, 1, 12, 38, 39, 44, 55, 58], "load_unpack": [0, 23], "fedcm": [0, 1], "loginst": [0, 24], "sign_in": [0, 24], "sign_up": [0, 24], "dialogtyp": [0, 24, 39], "account_choos": [0, 24], "auto_reauthn": [0, 24], "confirm_idp_login": [0, 24], "dialogbutton": [0, 24], "confirm_idp_login_continu": [0, 24], "error_got_it": [0, 24], "error_more_detail": [0, 24], "accounturltyp": [0, 24], "terms_of_servic": [0, 24], "privacy_polici": [0, 24], "account": [0, 24, 39, 60, 61], "account_id": [0, 24], "email": [0, 24, 60, 61], "given_nam": [0, 5, 24], "picture_url": [0, 24], "idp_config_url": [0, 24], "idp_login_url": [0, 24], "login_st": [0, 24], "terms_of_service_url": [0, 24], "privacy_policy_url": [0, 24], "click_dialog_button": [0, 24], "dismiss_dialog": [0, 24], "open_url": [0, 24], "reset_cooldown": [0, 24], "select_account": [0, 24], "dialogshown": [0, 24], "dialog_id": [0, 24], "dialog_typ": [0, 24], "subtitl": [0, 24], "dialogclos": [0, 24], "fetch": [0, 1, 2, 9, 21, 29, 37, 39, 49, 54, 59], "requeststag": [0, 25], "respons": [0, 4, 9, 15, 17, 25, 27, 37, 39, 48, 51, 55, 59], "requestpattern": [0, 25, 37], "url_pattern": [0, 25, 37], "request_stag": [0, 25], "headerentri": [0, 25], "authchalleng": [0, 25, 37], "scheme": [0, 25, 37, 39], "realm": [0, 25, 37], "authchallengerespons": [0, 25, 37], "usernam": [0, 25, 37], "password": [0, 5, 25, 37], "continue_request": [0, 25], "continue_respons": [0, 25], "continue_with_auth": [0, 25], "fail_request": [0, 25], "fulfill_request": [0, 25], "get_response_bodi": [0, 25, 37], "take_response_body_as_stream": [0, 25], "requestpaus": [0, 25, 37, 59], "response_error_reason": [0, 25, 37], "response_status_cod": [0, 25, 37], "network_id": [0, 25], "redirected_request_id": [0, 25], "authrequir": [0, 25], "auth_challeng": [0, 25, 37], "headlessexperiment": [0, 1], "screenshotparam": [0, 27], "format_": [0, 27, 39], "qualiti": [0, 4, 27, 39], "optimize_for_spe": [0, 27, 39], "begin_fram": [0, 27], "heapprofil": [0, 1], "heapsnapshotobjectid": [0, 28], "samplingheapprofilenod": [0, 28], "self_siz": [0, 28], "samplingheapprofilesampl": [0, 28], "size": [0, 4, 8, 12, 14, 21, 26, 27, 28, 32, 36, 37, 38, 39, 41, 45, 49, 50, 53, 54, 55, 57, 59], "ordin": [0, 28], "samplingheapprofil": [0, 28], "head": [0, 28, 59], "sampl": [0, 8, 28, 36, 43, 53, 54], "add_inspected_heap_object": [0, 28], "collect_garbag": [0, 28], "get_heap_object_id": [0, 28], "get_object_by_heap_object_id": [0, 28], "get_sampling_profil": [0, 28, 36], "start_sampl": [0, 28, 36], "start_tracking_heap_object": [0, 28], "stop_sampl": [0, 28, 36], "stop_tracking_heap_object": [0, 28], "take_heap_snapshot": [0, 28], "addheapsnapshotchunk": [0, 28], "chunk": [0, 14, 28, 32, 37], "heapstatsupd": [0, 28], "stats_upd": [0, 28], "lastseenobjectid": [0, 28], "last_seen_object_id": [0, 28], "reportheapsnapshotprogress": [0, 28], "done": [0, 5, 8, 28, 39, 49, 59], "total": [0, 4, 8, 14, 17, 28, 36, 37, 39, 45, 49, 53, 59], "finish": [0, 2, 4, 28, 37, 44, 54, 60], "resetprofil": [0, 28], "indexeddb": [0, 1, 49], "databasewithobjectstor": [0, 29], "object_stor": [0, 29], "objectstor": [0, 29, 49], "key_path": [0, 29], "auto_incr": [0, 29], "objectstoreindex": [0, 29], "uniqu": [0, 2, 3, 4, 8, 9, 13, 14, 17, 25, 28, 29, 30, 33, 35, 37, 39, 42, 43, 45, 51, 54], "multi_entri": [0, 29], "date": [0, 29, 37, 39, 47, 59], "keyrang": [0, 29], "lower_open": [0, 29], "upper_open": [0, 29], "lower": [0, 29], "upper": [0, 29], "primary_kei": [0, 29], "keypath": [0, 29], "clear_object_stor": [0, 29], "delete_databas": [0, 29], "delete_object_store_entri": [0, 29], "get_metadata": [0, 29], "request_data": [0, 29], "request_databas": [0, 29], "request_database_nam": [0, 29], "input": [0, 1, 17, 19, 21, 32, 39, 44, 45, 57, 60, 61, 62], "touchpoint": [0, 30], "radius_x": [0, 30], "radius_i": [0, 30], "rotation_angl": [0, 30], "forc": [0, 12, 14, 21, 30, 33, 39, 53], "tangential_pressur": [0, 30], "tilt_x": [0, 30], "tilt_i": [0, 30], "twist": [0, 30], "gesturesourcetyp": [0, 30], "touch": [0, 21, 30, 39], "mous": [0, 19, 21, 30, 39, 57], "mousebutton": [0, 30], "none": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59], "middl": [0, 30], "right": [0, 30, 35, 39], "timesinceepoch": [0, 6, 21, 26, 30, 37, 39, 41, 47, 49], "dragdataitem": [0, 30], "mime_typ": [0, 30, 37, 39], "dragdata": [0, 30], "drag_operations_mask": [0, 30], "cancel_drag": [0, 30], "dispatch_drag_ev": [0, 30], "dispatch_key_ev": [0, 30], "dispatch_mouse_ev": [0, 30], "dispatch_touch_ev": [0, 30], "emulate_touch_from_mouse_ev": [0, 30], "ime_set_composit": [0, 30], "insert_text": [0, 30], "set_ignore_input_ev": [0, 30], "set_intercept_drag": [0, 30], "synthesize_pinch_gestur": [0, 30], "synthesize_scroll_gestur": [0, 30], "synthesize_tap_gestur": [0, 30], "dragintercept": [0, 30], "detach": [0, 17, 31, 39, 51], "targetcrash": [0, 31, 51], "targetreloadedaftercrash": [0, 31], "io": [0, 1, 8, 21, 24, 25, 37, 39, 41, 42, 49, 54, 55], "streamhandl": [0, 25, 32, 37, 39, 53], "read": [0, 9, 12, 14, 17, 21, 25, 32, 37, 39, 59], "resolve_blob": [0, 32], "layertre": [0, 1], "layerid": [0, 33], "snapshotid": [0, 33], "scrollrect": [0, 19, 33], "stickypositionconstraint": [0, 33], "sticky_box_rect": [0, 33], "containing_block_rect": [0, 33], "nearest_layer_shifting_sticky_box": [0, 33], "nearest_layer_shifting_containing_block": [0, 33], "picturetil": [0, 33], "pictur": [0, 33, 39], "layer_id": [0, 33], "offset_x": [0, 33, 39], "offset_i": [0, 33, 39], "paint_count": [0, 33], "draws_cont": [0, 33], "parent_layer_id": [0, 33], "transform": [0, 33], "anchor_x": [0, 33], "anchor_i": [0, 33], "anchor_z": [0, 33], "invis": [0, 33], "sticky_position_constraint": [0, 33], "paintprofil": [0, 33], "compositing_reason": [0, 33], "load_snapshot": [0, 33], "make_snapshot": [0, 33], "profile_snapshot": [0, 33], "release_snapshot": [0, 33], "replay_snapshot": [0, 33], "snapshot_command_log": [0, 33], "layerpaint": [0, 33], "clip": [0, 33, 39], "layertreedidchang": [0, 33], "log": [0, 1, 11, 33, 35, 37, 53, 60, 61], "logentri": [0, 34], "categori": [0, 34, 47, 53], "network_request_id": [0, 34], "worker_id": [0, 34], "arg": [0, 34, 45, 58, 60], "violationset": [0, 34], "threshold": [0, 34], "start_violations_report": [0, 34], "stop_violations_report": [0, 34], "entryad": [0, 34], "entri": [0, 7, 9, 25, 29, 34, 35, 37, 39, 45, 48, 49, 51, 56], "playerid": [0, 35], "playermessag": [0, 35], "playerproperti": [0, 35], "playerev": [0, 35], "playererrorsourceloc": [0, 35], "playererror": [0, 35], "stack": [0, 14, 17, 19, 25, 34, 35, 36, 37, 39, 43, 45, 53], "caus": [0, 2, 4, 8, 14, 25, 28, 35, 37, 38, 39, 42, 44, 51, 56, 59], "playerpropertieschang": [0, 35], "player_id": [0, 35], "playereventsad": [0, 35], "playermessageslog": [0, 35], "playererrorsrais": [0, 35], "playerscr": [0, 35], "player": [0, 35], "memori": [0, 1, 28, 39, 45, 53], "pressurelevel": [0, 36], "moder": [0, 36], "critic": [0, 21, 36, 39], "samplingprofilenod": [0, 36], "samplingprofil": [0, 36], "uuid": [0, 7, 32, 36], "base_address": [0, 36], "forcibly_purge_java_script_memori": [0, 36], "get_all_time_sampling_profil": [0, 36], "get_browser_sampling_profil": [0, 36], "get_dom_count": [0, 36], "prepare_for_leak_detect": [0, 36], "set_pressure_notifications_suppress": [0, 36], "simulate_pressure_notif": [0, 36], "network": [0, 1, 4, 12, 25, 34, 42, 45, 47, 49, 59], "resourcetyp": [0, 25, 37, 39], "document": [0, 2, 3, 4, 12, 17, 19, 21, 30, 36, 37, 39, 41, 42, 59], "text_track": [0, 37], "xhr": [0, 18, 37, 39], "web_socket": [0, 37, 39], "signed_exchang": [0, 37], "csp_violation_report": [0, 37], "preflight": [0, 37], "loaderid": [0, 4, 37, 39, 42], "interceptionid": [0, 37], "errorreason": [0, 25, 37], "fail": [0, 4, 12, 14, 25, 27, 37, 39, 44, 55], "abort": [0, 24, 37], "timed_out": [0, 37], "access_deni": [0, 37], "connection_clos": [0, 37], "connection_reset": [0, 37], "connection_refus": [0, 37], "connection_abort": [0, 37], "connection_fail": [0, 37], "name_not_resolv": [0, 37], "internet_disconnect": [0, 37], "address_unreach": [0, 37], "blocked_by_cli": [0, 37, 42], "blocked_by_respons": [0, 4, 37], "monotonictim": [0, 37, 39], "connectiontyp": [0, 37], "cellular2g": [0, 37], "cellular3g": [0, 37], "cellular4g": [0, 37], "bluetooth": [0, 7, 37, 39], "ethernet": [0, 37], "wifi": [0, 37], "wimax": [0, 37], "cookiesamesit": [0, 37], "strict": [0, 37, 49], "lax": [0, 37], "cookieprior": [0, 37], "medium": [0, 37], "cookiesourceschem": [0, 37], "unset": [0, 37, 44, 59], "non_secur": [0, 37], "secur": [0, 1, 9, 20, 29, 37, 39, 45, 49], "resourcetim": [0, 37], "request_tim": [0, 37], "proxy_start": [0, 37], "proxy_end": [0, 37], "dns_start": [0, 37], "dns_end": [0, 37], "connect_start": [0, 37], "connect_end": [0, 37], "ssl_start": [0, 37], "ssl_end": [0, 37], "worker_start": [0, 37], "worker_readi": [0, 37], "worker_fetch_start": [0, 37], "worker_respond_with_settl": [0, 37], "send_start": [0, 37], "send_end": [0, 37], "push_start": [0, 37], "push_end": [0, 37], "receive_headers_start": [0, 37], "receive_headers_end": [0, 37], "worker_router_evaluation_start": [0, 37], "worker_cache_lookup_start": [0, 37], "resourceprior": [0, 37], "very_low": [0, 37], "very_high": [0, 37], "postdataentri": [0, 37], "bytes_": [0, 37], "initial_prior": [0, 37], "referrer_polici": [0, 37, 39], "url_frag": [0, 37, 39], "post_data": [0, 25, 37], "has_post_data": [0, 37], "post_data_entri": [0, 37], "mixed_content_typ": [0, 37, 47], "is_link_preload": [0, 37], "trust_token_param": [0, 37], "is_same_sit": [0, 37], "signedcertificatetimestamp": [0, 37], "statu": [0, 4, 8, 9, 14, 25, 37, 39, 42, 48, 50, 51], "log_descript": [0, 37], "log_id": [0, 37], "hash_algorithm": [0, 37], "signature_algorithm": [0, 37], "signature_data": [0, 37], "securitydetail": [0, 37], "protocol": [0, 8, 25, 37, 39, 46, 47, 51, 53, 54, 55, 59], "key_exchang": [0, 37, 47], "cipher": [0, 37, 47], "certificate_id": [0, 37], "subject_nam": [0, 37, 47], "san_list": [0, 37], "issuer": [0, 37, 47, 49], "valid_from": [0, 37, 47], "valid_to": [0, 37, 47], "signed_certificate_timestamp_list": [0, 37], "certificate_transparency_compli": [0, 37], "encrypted_client_hello": [0, 37], "key_exchange_group": [0, 37, 47], "mac": [0, 37, 47, 50], "server_signature_algorithm": [0, 37], "certificatetransparencycompli": [0, 37], "unknown": [0, 37, 39, 47, 50], "not_compli": [0, 37], "compliant": [0, 37], "blockedreason": [0, 37], "csp": [0, 4, 18, 37, 39, 45], "mixed_cont": [0, 37, 42], "subresource_filt": [0, 37], "content_typ": [0, 37], "coop_sandboxed_iframe_cannot_navigate_to_coop_pag": [0, 37], "corserror": [0, 37], "disallowed_by_mod": [0, 37], "invalid_respons": [0, 37], "wildcard_origin_not_allow": [0, 37], "missing_allow_origin_head": [0, 37], "multiple_allow_origin_valu": [0, 37], "invalid_allow_origin_valu": [0, 37], "allow_origin_mismatch": [0, 37], "invalid_allow_credenti": [0, 37], "cors_disabled_schem": [0, 37], "preflight_invalid_statu": [0, 37], "preflight_disallowed_redirect": [0, 37], "preflight_wildcard_origin_not_allow": [0, 37], "preflight_missing_allow_origin_head": [0, 37], "preflight_multiple_allow_origin_valu": [0, 37], "preflight_invalid_allow_origin_valu": [0, 37], "preflight_allow_origin_mismatch": [0, 37], "preflight_invalid_allow_credenti": [0, 37], "preflight_missing_allow_extern": [0, 37], "preflight_invalid_allow_extern": [0, 37], "preflight_missing_allow_private_network": [0, 37], "preflight_invalid_allow_private_network": [0, 37], "invalid_allow_methods_preflight_respons": [0, 37], "invalid_allow_headers_preflight_respons": [0, 37], "method_disallowed_by_preflight_respons": [0, 37], "header_disallowed_by_preflight_respons": [0, 37], "redirect_contains_credenti": [0, 37], "insecure_private_network": [0, 37], "invalid_private_network_access": [0, 37], "unexpected_private_network_access": [0, 37], "no_cors_redirect_mode_not_follow": [0, 37], "preflight_missing_private_network_access_id": [0, 37], "preflight_missing_private_network_access_nam": [0, 37], "private_network_access_permission_unavail": [0, 37], "private_network_access_permission_deni": [0, 37], "corserrorstatu": [0, 4, 37], "cors_error": [0, 37], "failed_paramet": [0, 37], "serviceworkerresponsesourc": [0, 37], "cache_storag": [0, 37, 49], "http_cach": [0, 37], "fallback_cod": [0, 37], "trusttokenparam": [0, 37], "refresh_polici": [0, 37], "trusttokenoperationtyp": [0, 37], "issuanc": [0, 37, 39], "redempt": [0, 37, 39, 49], "sign": [0, 24, 37, 44, 49, 60, 61], "alternateprotocolusag": [0, 37], "alternative_job_won_without_rac": [0, 37], "alternative_job_won_rac": [0, 37], "main_job_won_rac": [0, 37], "mapping_miss": [0, 37], "broken": [0, 37, 47], "dns_alpn_h3_job_won_without_rac": [0, 37], "dns_alpn_h3_job_won_rac": [0, 37], "unspecified_reason": [0, 37], "serviceworkerroutersourc": [0, 37], "fetch_ev": [0, 37], "race_network_and_fetch_handl": [0, 37], "serviceworkerrouterinfo": [0, 37], "rule_id_match": [0, 37], "matched_source_typ": [0, 37], "actual_source_typ": [0, 37], "status_text": [0, 37], "charset": [0, 37], "connection_reus": [0, 37], "connection_id": [0, 37, 52], "encoded_data_length": [0, 37], "security_st": [0, 37, 47], "headers_text": [0, 37], "request_headers_text": [0, 37], "remote_ip_address": [0, 37], "remote_port": [0, 37], "from_disk_cach": [0, 37], "from_service_work": [0, 37], "from_prefetch_cach": [0, 37], "from_early_hint": [0, 37], "service_worker_router_info": [0, 37], "time": [0, 2, 3, 4, 12, 14, 21, 24, 27, 28, 30, 33, 34, 35, 37, 40, 41, 43, 45, 47, 48, 49, 51, 54, 56, 57, 59], "service_worker_response_sourc": [0, 37], "cache_storage_cache_nam": [0, 37], "alternate_protocol_usag": [0, 37], "security_detail": [0, 37], "websocketrequest": [0, 37], "websocketrespons": [0, 37], "websocketfram": [0, 37], "opcod": [0, 37], "mask": [0, 21, 37, 38], "payload_data": [0, 37], "cachedresourc": [0, 37], "body_s": [0, 37], "initi": [0, 6, 14, 21, 25, 27, 37, 39, 42, 43, 44, 45, 51, 57], "cookiepartitionkei": [0, 37], "top_level_sit": [0, 37], "has_cross_site_ancestor": [0, 37], "http_onli": [0, 37], "prioriti": [0, 2, 12, 37, 47, 49], "same_parti": [0, 37], "source_schem": [0, 37], "source_port": [0, 37], "expir": [0, 37, 39, 47, 49], "same_sit": [0, 37], "partition_kei": [0, 37], "partition_key_opaqu": [0, 37], "setcookieblockedreason": [0, 37], "secure_onli": [0, 37], "same_site_strict": [0, 37], "same_site_lax": [0, 37], "same_site_unspecified_treated_as_lax": [0, 37], "same_site_none_insecur": [0, 37], "user_prefer": [0, 37], "third_party_phaseout": [0, 37], "third_party_blocked_in_first_party_set": [0, 37], "syntax_error": [0, 37], "scheme_not_support": [0, 37], "overwrite_secur": [0, 37], "invalid_domain": [0, 37], "invalid_prefix": [0, 37], "unknown_error": [0, 37], "schemeful_same_site_strict": [0, 37], "schemeful_same_site_lax": [0, 37], "schemeful_same_site_unspecified_treated_as_lax": [0, 37], "same_party_from_cross_party_context": [0, 37], "same_party_conflicts_with_other_attribut": [0, 37], "name_value_pair_exceeds_max_s": [0, 37], "disallowed_charact": [0, 37], "no_cookie_cont": [0, 37], "cookieblockedreason": [0, 37], "not_on_path": [0, 37], "domain_mismatch": [0, 37], "cookieexemptionreason": [0, 37], "user_set": [0, 37], "tpcd_metadata": [0, 37], "tpcd_deprecation_tri": [0, 37], "tpcd_heurist": [0, 37], "enterprise_polici": [0, 37], "cors_opt_in": [], "blockedsetcookiewithreason": [0, 37], "blocked_reason": [0, 37], "cookie_lin": [0, 37], "exemptedsetcookiewithreason": [0, 37], "exemption_reason": [0, 37], "associatedcooki": [0, 37], "cookieparam": [0, 37, 49], "interceptionstag": [0, 37], "headers_receiv": [0, 37], "interception_stag": [0, 37], "signedexchangesignatur": [0, 37], "signatur": [0, 37, 47, 55], "integr": [0, 35, 37, 53], "validity_url": [0, 37], "cert_url": [0, 37], "cert_sha256": [0, 37], "certif": [0, 37, 47], "signedexchangehead": [0, 37], "response_cod": [0, 25, 37], "header_integr": [0, 37], "signedexchangeerrorfield": [0, 37], "signature_sig": [0, 37], "signature_integr": [0, 37], "signature_cert_url": [0, 37], "signature_cert_sha256": [0, 37], "signature_validity_url": [0, 37], "signature_timestamp": [0, 37], "signedexchangeerror": [0, 37], "signature_index": [0, 37], "error_field": [0, 37], "signedexchangeinfo": [0, 37], "outer_respons": [0, 37], "contentencod": [0, 37], "deflat": [0, 37], "gzip": [0, 37, 53], "br": [0, 37], "zstd": [0, 37], "privatenetworkrequestpolici": [0, 37], "allow": [0, 4, 5, 7, 8, 14, 18, 21, 24, 25, 29, 30, 35, 37, 39, 42, 43, 44, 45, 47, 51, 54, 55, 59], "block_from_insecure_to_more_priv": [0, 37], "warn_from_insecure_to_more_priv": [0, 37], "preflight_block": [0, 37], "preflight_warn": [0, 37], "ipaddressspac": [0, 4, 37], "local": [0, 12, 14, 20, 21, 23, 37, 39, 44, 49, 59], "privat": [0, 37, 39, 45, 55], "public": [0, 4, 7, 37, 39], "connecttim": [0, 37], "clientsecurityst": [0, 4, 37], "initiator_is_secure_context": [0, 37], "initiator_ip_address_spac": [0, 37], "private_network_request_polici": [0, 37], "crossoriginopenerpolicyvalu": [0, 37], "same_origin": [0, 37, 39], "same_origin_allow_popup": [0, 37], "restrict_properti": [0, 37], "unsafe_non": [0, 37], "same_origin_plus_coep": [0, 37], "restrict_properties_plus_coep": [0, 37], "crossoriginopenerpolicystatu": [0, 37], "report_only_valu": [0, 37], "reporting_endpoint": [0, 37], "report_only_reporting_endpoint": [0, 37], "crossoriginembedderpolicyvalu": [0, 37], "credentialless": [0, 37], "require_corp": [0, 37], "crossoriginembedderpolicystatu": [0, 37], "contentsecuritypolicysourc": [0, 37], "http": [0, 4, 7, 8, 9, 12, 17, 21, 24, 25, 26, 27, 30, 37, 39, 41, 42, 44, 47, 49, 51, 54, 55, 59, 60, 61], "meta": [0, 21, 30, 37, 39, 45, 57, 59], "contentsecuritypolicystatu": [0, 37], "effective_direct": [0, 37], "is_enforc": [0, 37], "securityisolationstatu": [0, 37], "coop": [0, 4, 37], "coep": [0, 4, 37], "reportstatu": [0, 37], "queu": [0, 37], "pend": [0, 21, 37, 39, 42, 49, 53], "marked_for_remov": [0, 37], "success": [0, 4, 14, 37, 39, 42, 49, 53, 55], "reportid": [0, 37], "reportingapireport": [0, 37], "initiator_url": [0, 37], "destin": [0, 37, 39, 54, 57], "depth": [0, 2, 14, 17, 18, 37, 45], "completed_attempt": [0, 37], "reportingapiendpoint": [0, 37], "group_nam": [0, 37], "loadnetworkresourcepageresult": [0, 37], "net_error": [0, 37], "net_error_nam": [0, 37], "http_status_cod": [0, 37], "stream": [0, 14, 25, 32, 37, 39, 53], "loadnetworkresourceopt": [0, 37], "disable_cach": [0, 37], "include_credenti": [0, 37], "can_clear_browser_cach": [0, 37], "can_clear_browser_cooki": [0, 37], "can_emulate_network_condit": [0, 37], "clear_accepted_encodings_overrid": [0, 37], "clear_browser_cach": [0, 37], "clear_browser_cooki": [0, 37], "continue_intercepted_request": [0, 37], "delete_cooki": [0, 37, 39], "emulate_network_condit": [0, 37], "enable_reporting_api": [0, 37], "get_all_cooki": [0, 37], "get_certif": [0, 37], "get_cooki": [0, 37, 49], "get_request_post_data": [0, 37], "get_response_body_for_intercept": [0, 37], "get_security_isolation_statu": [0, 37], "load_network_resourc": [0, 37], "replay_xhr": [0, 37], "search_in_response_bodi": [0, 37], "set_accepted_encod": [0, 37], "set_attach_debug_stack": [0, 37], "set_blocked_ur_l": [0, 37], "set_bypass_service_work": [0, 37], "set_cache_dis": [0, 37], "set_extra_http_head": [0, 37], "set_request_intercept": [0, 37], "stream_resource_cont": [0, 37], "take_response_body_for_interception_as_stream": [0, 37], "datareceiv": [0, 37], "data_length": [0, 37], "eventsourcemessagereceiv": [0, 37], "event_id": [0, 37, 47, 49], "loadingfail": [0, 37, 49], "error_text": [0, 37], "loadingfinish": [0, 37, 49], "requestintercept": [0, 37], "interception_id": [0, 37], "is_navigation_request": [0, 37], "is_download": [0, 37], "redirect_url": [0, 37], "requestservedfromcach": [0, 37], "requestwillbes": [0, 25, 37, 49, 59], "wall_tim": [0, 37], "redirect_has_extra_info": [0, 37], "redirect_respons": [0, 37], "has_user_gestur": [0, 37], "resourcechangedprior": [0, 37], "new_prior": [0, 37], "signedexchangereceiv": [0, 37], "info": [0, 4, 37, 38, 47, 50], "responsereceiv": [0, 37], "has_extra_info": [0, 37], "websocketclos": [0, 37], "websocketcr": [0, 37], "websocketframeerror": [0, 37], "error_messag": [0, 37, 42, 48], "websocketframereceiv": [0, 37], "websocketframes": [0, 37], "websockethandshakeresponsereceiv": [0, 37], "websocketwillsendhandshakerequest": [0, 37], "webtransportcr": [0, 37], "transport_id": [0, 37], "webtransportconnectionestablish": [0, 37], "webtransportclos": [0, 37], "requestwillbesentextrainfo": [0, 37], "associated_cooki": [0, 37], "connect_tim": [0, 37], "site_has_cookie_in_other_partit": [0, 37], "responsereceivedextrainfo": [0, 37], "blocked_cooki": [0, 37], "status_cod": [0, 37], "cookie_partition_kei": [0, 37], "cookie_partition_key_opaqu": [0, 37], "exempted_cooki": [0, 37], "responsereceivedearlyhint": [0, 37], "trusttokenoperationdon": [0, 37], "top_level_origin": [0, 37], "issuer_origin": [0, 37, 49], "issued_token_count": [0, 37], "policyupd": [0, 37], "subresourcewebbundlemetadatareceiv": [0, 37], "subresourcewebbundlemetadataerror": [0, 37], "subresourcewebbundleinnerresponsepars": [0, 37], "inner_request_id": [0, 37], "inner_request_url": [0, 37], "bundle_request_id": [0, 37], "subresourcewebbundleinnerresponseerror": [0, 37], "reportingapireportad": [0, 37], "report": [0, 4, 11, 12, 14, 18, 21, 22, 25, 27, 28, 34, 35, 37, 39, 40, 41, 43, 45, 49, 51, 53, 59], "reportingapireportupd": [0, 37], "reportingapiendpointschangedfororigin": [0, 37], "endpoint": [0, 37, 39, 49], "overlai": [0, 1, 21, 39], "sourceorderconfig": [0, 38], "parent_outline_color": [0, 38], "child_outline_color": [0, 38], "gridhighlightconfig": [0, 38], "show_grid_extension_lin": [0, 38], "show_positive_line_numb": [0, 38], "show_negative_line_numb": [0, 38], "show_area_nam": [0, 38], "show_line_nam": [0, 38], "show_track_s": [0, 38], "grid_border_color": [0, 38], "cell_border_color": [0, 38], "row_line_color": [0, 38], "column_line_color": [0, 38], "grid_border_dash": [0, 38], "cell_border_dash": [0, 38], "row_line_dash": [0, 38], "column_line_dash": [0, 38], "row_gap_color": [0, 38], "row_hatch_color": [0, 38], "column_gap_color": [0, 38], "column_hatch_color": [0, 38], "area_border_color": [0, 38], "grid_background_color": [0, 38], "flexcontainerhighlightconfig": [0, 38], "container_bord": [0, 38], "line_separ": [0, 38], "item_separ": [0, 38], "main_distributed_spac": [0, 38], "cross_distributed_spac": [0, 38], "row_gap_spac": [0, 38], "column_gap_spac": [0, 38], "cross_align": [0, 38], "flexitemhighlightconfig": [0, 38], "base_size_box": [0, 38], "base_size_bord": [0, 38], "flexibility_arrow": [0, 38], "linestyl": [0, 38], "color": [0, 12, 17, 19, 21, 38, 39], "pattern": [0, 14, 25, 37, 38], "boxstyl": [0, 38], "fill_color": [0, 38], "hatch_color": [0, 38], "contrastalgorithm": [0, 38], "aa": [0, 38], "aaa": [0, 4, 38], "apca": [0, 38], "highlightconfig": [0, 38], "show_info": [0, 38], "show_styl": [0, 38], "show_rul": [0, 38], "show_accessibility_info": [0, 38], "show_extension_lin": [0, 38], "content_color": [0, 38], "padding_color": [0, 38], "border_color": [0, 38], "margin_color": [0, 38], "event_target_color": [0, 38], "shape_color": [0, 38], "shape_margin_color": [0, 38], "css_grid_color": [0, 38], "color_format": [0, 38], "grid_highlight_config": [0, 38], "flex_container_highlight_config": [0, 38], "flex_item_highlight_config": [0, 38], "contrast_algorithm": [0, 38], "container_query_container_highlight_config": [0, 38], "colorformat": [0, 38], "rgb": [0, 38], "hsl": [0, 38], "hwb": [0, 38], "hex_": [0, 38], "gridnodehighlightconfig": [0, 38], "flexnodehighlightconfig": [0, 38], "scrollsnapcontainerhighlightconfig": [0, 38], "snapport_bord": [0, 38], "snap_area_bord": [0, 38], "scroll_margin_color": [0, 38], "scroll_padding_color": [0, 38], "scrollsnaphighlightconfig": [0, 38], "scroll_snap_container_highlight_config": [0, 38], "hingeconfig": [0, 38], "outline_color": [0, 38], "windowcontrolsoverlayconfig": [0, 38], "show_css": [0, 38], "selected_platform": [0, 38], "theme_color": [0, 38, 39], "containerqueryhighlightconfig": [0, 38], "containerquerycontainerhighlightconfig": [0, 38], "descendant_bord": [0, 38], "isolatedelementhighlightconfig": [0, 38], "isolation_mode_highlight_config": [0, 38], "isolationmodehighlightconfig": [0, 38], "resizer_color": [0, 38], "resizer_handle_color": [0, 38], "mask_color": [0, 38], "inspectmod": [0, 38], "search_for_nod": [0, 38], "search_for_ua_shadow_dom": [0, 38], "capture_area_screenshot": [0, 38], "show_dist": [0, 38], "get_grid_highlight_objects_for_test": [0, 38], "get_highlight_object_for_test": [0, 38], "get_source_order_highlight_object_for_test": [0, 38], "highlight_fram": [0, 38], "highlight_quad": [0, 38], "highlight_source_ord": [0, 38], "set_inspect_mod": [0, 38], "set_paused_in_debugger_messag": [0, 38], "set_show_ad_highlight": [0, 38], "set_show_container_query_overlai": [0, 38], "set_show_debug_bord": [0, 38], "set_show_flex_overlai": [0, 38], "set_show_fps_count": [0, 38], "set_show_grid_overlai": [0, 38], "set_show_hing": [0, 38], "set_show_hit_test_bord": [0, 38], "set_show_isolated_el": [0, 38], "set_show_layout_shift_region": [0, 38], "set_show_paint_rect": [0, 38], "set_show_scroll_bottleneck_rect": [0, 38], "set_show_scroll_snap_overlai": [0, 38], "set_show_viewport_size_on_res": [0, 38], "set_show_web_vit": [0, 38], "set_show_window_controls_overlai": [0, 38], "inspectnoderequest": [0, 38], "nodehighlightrequest": [0, 38], "screenshotrequest": [0, 38], "viewport": [0, 12, 17, 21, 30, 38, 39, 59], "inspectmodecancel": [0, 38], "page": [0, 1, 2, 3, 4, 8, 10, 12, 14, 17, 19, 21, 25, 30, 37, 38, 44, 45, 47, 49, 51, 56, 59, 60, 61], "frameid": [0, 2, 4, 5, 8, 12, 14, 17, 19, 25, 37, 38, 39, 41, 42, 45, 49, 51], "adframetyp": [0, 39], "child": [0, 2, 5, 12, 17, 19, 28, 38, 39, 43, 49, 51], "adframeexplan": [0, 39], "parent_is_ad": [0, 39], "created_by_ad_script": [0, 39], "matched_blocking_rul": [0, 39], "adframestatu": [0, 39], "ad_frame_typ": [0, 39], "explan": [0, 39, 47], "adscriptid": [0, 39], "debugger_id": [0, 39, 45], "securecontexttyp": [0, 39], "secure_localhost": [0, 39], "insecure_schem": [0, 39], "insecure_ancestor": [0, 39], "crossoriginisolatedcontexttyp": [0, 39], "isol": [0, 4, 14, 37, 38, 39, 43, 44, 45], "not_isol": [0, 39], "not_isolated_feature_dis": [0, 39], "gatedapifeatur": [0, 39], "shared_array_buff": [0, 39], "shared_array_buffers_transfer_allow": [0, 39], "performance_measure_memori": [0, 39], "performance_profil": [0, 39], "permissionspolicyfeatur": [0, 39], "ambient_light_sensor": [0, 39], "attribution_report": [0, 39], "autoplai": [0, 39], "browsing_top": [0, 39], "camera": [0, 8, 39], "ch_dpr": [0, 39], "ch_device_memori": [0, 39], "ch_downlink": [0, 39], "ch_ect": [0, 39], "ch_prefers_color_schem": [0, 39], "ch_prefers_reduced_mot": [0, 39], "ch_prefers_reduced_transpar": [0, 39], "ch_rtt": [0, 39], "ch_save_data": [0, 39], "ch_ua": [0, 39], "ch_ua_arch": [0, 39], "ch_ua_bit": [0, 39], "ch_ua_platform": [0, 39], "ch_ua_model": [0, 39], "ch_ua_mobil": [0, 39], "ch_ua_form_factor": [0, 39], "ch_ua_full_vers": [0, 39], "ch_ua_full_version_list": [0, 39], "ch_ua_platform_vers": [0, 39], "ch_ua_wow64": [0, 39], "ch_viewport_height": [0, 39], "ch_viewport_width": [0, 39], "ch_width": [0, 39], "clipboard_read": [0, 39], "clipboard_writ": [0, 39], "compute_pressur": [0, 39], "cross_origin_isol": [0, 39], "deferred_fetch": [0, 39], "direct_socket": [0, 39], "document_domain": [0, 39], "encrypted_media": [0, 39], "execution_while_out_of_viewport": [0, 39], "execution_while_not_rend": [0, 39], "focus_without_user_activ": [0, 39], "frobul": [0, 39], "gamepad": [0, 39], "hid": [0, 39], "identity_credentials_get": [0, 39], "interest_cohort": [0, 39], "join_ad_interest_group": [0, 39], "keyboard_map": [0, 39], "microphon": [0, 39], "otp_credenti": [0, 39], "payment": [0, 39], "picture_in_pictur": [0, 39], "private_aggreg": [0, 39], "private_state_token_issu": [0, 39], "private_state_token_redempt": [0, 39], "publickey_credentials_cr": [0, 39], "publickey_credentials_get": [0, 39], "run_ad_auct": [0, 39], "screen_wake_lock": [0, 39], "serial": [0, 33, 39, 45, 49, 53], "shared_autofil": [0, 39], "shared_storag": [0, 39, 49], "shared_storage_select_url": [0, 39], "smart_card": [0, 39], "sub_app": [0, 39], "sync_xhr": [0, 39], "unload": [0, 39], "usb": [0, 7, 39, 55], "usb_unrestrict": [0, 39], "vertical_scrol": [0, 39], "web_print": [0, 39], "web_shar": [0, 39], "xr_spatial_track": [0, 39], "permissionspolicyblockreason": [0, 39], "iframe_attribut": [0, 39], "in_fenced_frame_tre": [0, 39], "in_isolated_app": [0, 39], "permissionspolicyblockloc": [0, 39], "block_reason": [0, 39], "permissionspolicyfeaturest": [0, 39], "origintrialtokenstatu": [0, 39], "not_support": [0, 39, 42], "insecur": [0, 39, 47], "wrong_origin": [0, 39], "invalid_signatur": [0, 39], "malform": [0, 4, 39], "wrong_vers": [0, 39], "feature_dis": [0, 39], "token_dis": [0, 39], "feature_disabled_for_us": [0, 39], "unknown_tri": [0, 39], "origintrialstatu": [0, 39], "valid_token_not_provid": [0, 39], "os_not_support": [0, 39], "trial_not_allow": [0, 39], "origintrialusagerestrict": [0, 39], "subset": [0, 19, 39], "origintrialtoken": [0, 39], "match_sub_domain": [0, 39], "trial_nam": [0, 39], "expiry_tim": [0, 39], "is_third_parti": [0, 39], "usage_restrict": [0, 39], "origintrialtokenwithstatu": [0, 39], "raw_token_text": [0, 39], "parsed_token": [0, 39], "origintri": [0, 39], "tokens_with_statu": [0, 39], "domain_and_registri": [0, 39], "secure_context_typ": [0, 39], "cross_origin_isolated_context_typ": [0, 39], "gated_api_featur": [0, 39], "unreachable_url": [0, 39], "ad_frame_statu": [0, 39], "frameresourc": [0, 39], "last_modifi": [0, 26, 39], "content_s": [0, 39], "frameresourcetre": [0, 39], "child_fram": [0, 39], "frametre": [0, 39], "scriptidentifi": [0, 39], "transitiontyp": [0, 39], "link": [0, 4, 12, 17, 30, 37, 39, 42, 44, 49, 59], "address_bar": [0, 39], "auto_bookmark": [0, 39], "auto_subfram": [0, 39], "manual_subfram": [0, 39], "gener": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 59], "auto_toplevel": [0, 39], "form_submit": [0, 39], "keyword": [0, 39], "keyword_gener": [0, 39], "navigationentri": [0, 39], "user_typed_url": [0, 39], "transition_typ": [0, 39], "screencastframemetadata": [0, 39], "offset_top": [0, 39], "page_scale_factor": [0, 21, 39], "device_width": [0, 39], "device_height": [0, 39], "alert": [0, 39, 57], "confirm": [0, 39], "beforeunload": [0, 39, 51], "appmanifesterror": [0, 39], "appmanifestparsedproperti": [0, 39], "layoutviewport": [0, 39], "page_x": [0, 39], "page_i": [0, 39], "client_width": [0, 39], "client_height": [0, 39], "visualviewport": [0, 39, 59], "scale": [0, 21, 30, 33, 39, 57], "zoom": [0, 30, 39], "fontfamili": [0, 39], "standard": [0, 25, 29, 39], "fix": [0, 38, 39, 47, 57], "serif": [0, 39], "sans_serif": [0, 39], "cursiv": [0, 39], "fantasi": [0, 39], "math": [0, 39], "scriptfontfamili": [0, 39], "fontsiz": [0, 39], "clientnavigationreason": [0, 39], "form_submission_get": [0, 39], "form_submission_post": [0, 39], "http_header_refresh": [0, 39], "script_initi": [0, 39], "meta_tag_refresh": [0, 39], "page_block_interstiti": [0, 39], "anchor_click": [0, 39], "clientnavigationdisposit": [0, 39], "current_tab": [0, 39], "new_tab": [0, 39, 56, 59, 60, 61], "new_window": [0, 39, 51, 56, 59, 60, 61], "installabilityerrorargu": [0, 39], "installabilityerror": [0, 39], "error_id": [0, 39], "error_argu": [0, 39], "referrerpolici": [0, 39], "no_referr": [0, 39], "no_referrer_when_downgrad": [0, 39], "origin_when_cross_origin": [0, 39], "strict_origin": [0, 39], "strict_origin_when_cross_origin": [0, 39], "unsafe_url": [0, 39], "compilationcacheparam": [0, 39], "eager": [0, 39], "filefilt": [0, 39], "filehandl": [0, 39, 44], "action": [0, 2, 8, 17, 24, 39, 42, 44, 47, 57, 58, 59], "launch_typ": [0, 39], "icon": [0, 39], "imageresourc": [0, 39], "launchhandl": [0, 39], "client_mod": [0, 39], "protocolhandl": [0, 39], "relatedappl": [0, 39], "scopeextens": [0, 39], "has_origin_wildcard": [0, 39], "screenshot": [0, 21, 27, 38, 39, 57, 59], "form_factor": [0, 39], "sharetarget": [0, 39], "enctyp": [0, 39], "shortcut": [0, 30, 39], "webappmanifest": [0, 39], "background_color": [0, 39], "dir_": [0, 39], "displai": [0, 5, 12, 15, 21, 25, 27, 37, 38, 39, 42, 57], "display_overrid": [0, 39], "file_handl": [0, 39], "lang": [0, 39, 58, 60], "launch_handl": [0, 39], "prefer_related_appl": [0, 39], "protocol_handl": [0, 39], "related_appl": [0, 39], "scope_extens": [0, 39], "share_target": [0, 39], "short_nam": [0, 39], "start_url": [0, 39], "autoresponsemod": [0, 39], "auto_accept": [0, 39], "auto_reject": [0, 39], "auto_opt_out": [0, 39], "navigationtyp": [0, 39], "navig": [0, 4, 19, 21, 37, 39, 42, 45, 49, 51, 56, 59, 60], "back_forward_cache_restor": [0, 39], "backforwardcachenotrestoredreason": [0, 39], "not_primary_main_fram": [0, 39], "back_forward_cache_dis": [0, 39], "related_active_contents_exist": [0, 39], "http_status_not_ok": [0, 39], "scheme_not_http_or_http": [0, 39], "was_granted_media_access": [0, 39], "disable_for_render_frame_host_cal": [0, 39], "domain_not_allow": [0, 39], "http_method_not_get": [0, 39], "subframe_is_navig": [0, 39], "cache_limit": [0, 39], "java_script_execut": [0, 39], "renderer_process_kil": [0, 39, 42], "renderer_process_crash": [0, 39, 42], "scheduler_tracked_feature_us": [0, 39], "conflicting_browsing_inst": [0, 39], "cache_flush": [0, 39], "service_worker_version_activ": [0, 39], "session_restor": [0, 39], "service_worker_post_messag": [0, 39], "entered_back_forward_cache_before_service_worker_host_ad": [0, 39], "render_frame_host_reused_same_sit": [0, 39], "render_frame_host_reused_cross_sit": [0, 39], "service_worker_claim": [0, 39], "ignore_event_and_evict": [0, 39], "have_inner_cont": [0, 39], "timeout_putting_in_cach": [0, 39], "back_forward_cache_disabled_by_low_memori": [0, 39], "back_forward_cache_disabled_by_command_lin": [0, 39], "network_request_datapipe_drained_as_bytes_consum": [0, 39], "network_request_redirect": [0, 39], "network_request_timeout": [0, 39], "network_exceeds_buffer_limit": [0, 39], "navigation_cancelled_while_restor": [0, 39], "not_most_recent_navigation_entri": [0, 39], "back_forward_cache_disabled_for_prerend": [0, 39], "user_agent_override_diff": [0, 39], "foreground_cache_limit": [0, 39], "browsing_instance_not_swap": [0, 39], "back_forward_cache_disabled_for_deleg": [0, 39], "unload_handler_exists_in_main_fram": [0, 39], "unload_handler_exists_in_sub_fram": [0, 39], "service_worker_unregistr": [0, 39], "cache_control_no_stor": [0, 39], "cache_control_no_store_cookie_modifi": [0, 39], "cache_control_no_store_http_only_cookie_modifi": [0, 39], "no_response_head": [0, 39], "activation_navigations_disallowed_for_bug1234857": [0, 39], "error_docu": [0, 39], "fenced_frames_embedd": [0, 39], "cookie_dis": [0, 39], "http_auth_requir": [0, 39], "cookie_flush": [0, 39], "broadcast_channel_on_messag": [0, 39], "web_view_settings_chang": [0, 39], "web_view_java_script_object_chang": [0, 39], "web_view_message_listener_inject": [0, 39], "web_view_safe_browsing_allowlist_chang": [0, 39], "web_view_document_start_javascript_chang": [0, 39], "web_transport": [0, 39], "web_rtc": [0, 39], "main_resource_has_cache_control_no_stor": [0, 39], "main_resource_has_cache_control_no_cach": [0, 39], "subresource_has_cache_control_no_stor": [0, 39], "subresource_has_cache_control_no_cach": [0, 39], "contains_plugin": [0, 39], "document_load": [0, 39], "outstanding_network_request_oth": [0, 39], "requested_midi_permiss": [0, 39], "requested_audio_capture_permiss": [0, 39], "requested_video_capture_permiss": [0, 39], "requested_back_forward_cache_blocked_sensor": [0, 39], "requested_background_work_permiss": [0, 39], "broadcast_channel": [0, 39], "web_xr": [0, 39], "web_lock": [0, 39], "web_hid": [0, 39], "requested_storage_access_gr": [0, 39], "web_nfc": [0, 39], "outstanding_network_request_fetch": [0, 39], "outstanding_network_request_xhr": [0, 39], "app_bann": [0, 39], "print": [0, 4, 35, 39, 59, 60, 61], "web_databas": [0, 39], "portal": [], "speech_recogn": [0, 39], "idle_manag": [0, 39], "payment_manag": [0, 39], "speech_synthesi": [0, 39], "keyboard_lock": [0, 39], "web_otp_servic": [0, 39], "outstanding_network_request_direct_socket": [0, 39], "injected_javascript": [0, 39], "injected_style_sheet": [0, 39], "keepalive_request": [0, 39], "indexed_db_ev": [0, 39], "dummi": [0, 39], "js_network_request_received_cache_control_no_store_resourc": [0, 39], "web_rtc_sticki": [0, 39], "web_transport_sticki": [0, 39], "web_socket_sticki": [0, 39], "live_media_stream_track": [0, 39], "unload_handl": [0, 39], "parser_abort": [0, 39], "content_security_handl": [0, 39], "content_web_authentication_api": [0, 39], "content_file_choos": [0, 39], "content_seri": [0, 39], "content_file_system_access": [0, 39], "content_media_devices_dispatcher_host": [0, 39], "content_web_bluetooth": [0, 39], "content_web_usb": [0, 39], "content_media_session_servic": [0, 39], "content_screen_read": [0, 39], "embedder_popup_blocker_tab_help": [0, 39], "embedder_safe_browsing_triggered_popup_block": [0, 39], "embedder_safe_browsing_threat_detail": [0, 39], "embedder_app_banner_manag": [0, 39], "embedder_dom_distiller_viewer_sourc": [0, 39], "embedder_dom_distiller_self_deleting_request_deleg": [0, 39], "embedder_oom_intervention_tab_help": [0, 39], "embedder_offline_pag": [0, 39], "embedder_chrome_password_manager_client_bind_credential_manag": [0, 39], "embedder_permission_request_manag": [0, 39], "embedder_modal_dialog": [0, 39], "embedder_extens": [0, 39], "embedder_extension_messag": [0, 39], "embedder_extension_messaging_for_open_port": [0, 39], "embedder_extension_sent_message_to_cached_fram": [0, 39], "requested_by_web_view_cli": [0, 39], "backforwardcachenotrestoredreasontyp": [0, 39], "support_pend": [0, 39], "page_support_need": [0, 39], "circumstanti": [0, 39], "backforwardcacheblockingdetail": [0, 39], "backforwardcachenotrestoredexplan": [0, 39], "context": [0, 2, 4, 8, 12, 14, 17, 18, 19, 24, 30, 35, 37, 39, 45, 49, 51, 54], "backforwardcachenotrestoredexplanationtre": [0, 39], "add_compilation_cach": [0, 39], "add_script_to_evaluate_on_load": [0, 39], "add_script_to_evaluate_on_new_docu": [0, 39], "capture_screenshot": [0, 39], "clear_compilation_cach": [0, 39], "create_isolated_world": [0, 39], "generate_test_report": [0, 39], "get_ad_script_id": [0, 39], "get_app_id": [0, 39], "get_app_manifest": [0, 39], "get_frame_tre": [0, 39], "get_installability_error": [0, 39], "get_layout_metr": [0, 39], "get_manifest_icon": [0, 39], "get_navigation_histori": [0, 39], "get_origin_tri": [0, 39], "get_permissions_policy_st": [0, 39], "get_resource_cont": [0, 39], "get_resource_tre": [0, 39], "handle_java_script_dialog": [0, 39], "navigate_to_history_entri": [0, 39], "print_to_pdf": [0, 39], "produce_compilation_cach": [0, 39], "remove_script_to_evaluate_on_load": [0, 39], "remove_script_to_evaluate_on_new_docu": [0, 39], "reset_navigation_histori": [0, 39], "screencast_frame_ack": [0, 39], "search_in_resourc": [0, 39], "set_ad_blocking_en": [0, 39], "set_bypass_csp": [0, 39], "set_document_cont": [0, 39], "set_font_famili": [0, 39], "set_font_s": [0, 39], "set_intercept_file_chooser_dialog": [0, 39], "set_lifecycle_events_en": [0, 39], "set_prerendering_allow": [0, 39], "set_rph_registration_mod": [0, 39], "set_spc_transaction_mod": [0, 39], "set_web_lifecycle_st": [0, 39], "start_screencast": [0, 39], "stop_load": [0, 39], "stop_screencast": [0, 39], "wait_for_debugg": [0, 39], "domcontenteventfir": [0, 39], "filechooseropen": [0, 39], "mode": [0, 3, 4, 14, 17, 21, 27, 33, 38, 39, 44, 45, 51, 53, 59], "frameattach": [0, 39], "parent_frame_id": [0, 39], "frameclearedschedulednavig": [0, 39], "framedetach": [0, 39], "framenavig": [0, 39], "documentopen": [0, 39], "frameres": [0, 39], "framerequestednavig": [0, 39], "disposit": [0, 39], "frameschedulednavig": [0, 39], "framestartedload": [0, 39], "framestoppedload": [0, 39], "interstitialhidden": [0, 39], "interstitialshown": [0, 39], "javascriptdialogclos": [0, 39], "result": [0, 12, 14, 17, 21, 23, 25, 27, 28, 33, 37, 38, 39, 43, 44, 45, 49, 53, 59], "user_input": [0, 39], "javascriptdialogopen": [0, 39], "has_browser_handl": [0, 39], "default_prompt": [0, 39], "lifecycleev": [0, 39], "backforwardcachenotus": [0, 39], "not_restored_explan": [0, 39], "not_restored_explanations_tre": [0, 39], "loadeventfir": [0, 39], "navigatedwithindocu": [0, 39], "screencastfram": [0, 39], "metadata": [0, 4, 21, 29, 39, 49], "session_id": [0, 39, 51], "screencastvisibilitychang": [0, 39], "visibl": [0, 3, 12, 17, 21, 27, 33, 39, 45, 47, 56, 57], "windowopen": [0, 39], "window_nam": [0, 39], "window_featur": [0, 39], "user_gestur": [0, 39, 45], "compilationcacheproduc": [0, 39], "metric": [0, 21, 39, 40], "get_metr": [0, 40], "set_time_domain": [0, 40], "performancetimelin": [0, 1], "largestcontentfulpaint": [0, 41], "render_tim": [0, 41], "load_tim": [0, 41], "element_id": [0, 41], "layoutshiftattribut": [0, 41], "previous_rect": [0, 41], "current_rect": [0, 41], "layoutshift": [0, 41], "had_recent_input": [0, 41], "last_input_tim": [0, 41], "timelineev": [0, 41], "lcp_detail": [0, 41], "layout_shift_detail": [0, 41], "timelineeventad": [0, 41], "preload": [0, 1, 37], "rulesetid": [0, 42], "ruleset": [0, 42], "source_text": [0, 42], "ruleseterrortyp": [0, 42], "source_is_not_json_object": [0, 42], "invalid_rules_skip": [0, 42], "speculationact": [0, 42], "prerend": [0, 39, 42, 51], "speculationtargethint": [0, 42], "blank": [0, 42, 51], "self": [0, 38, 42, 59], "preloadingattemptkei": [0, 42], "target_hint": [0, 42], "preloadingattemptsourc": [0, 42], "rule_set_id": [0, 42], "prerenderfinalstatu": [0, 42], "destroi": [0, 42, 45, 51, 54], "low_end_devic": [0, 42], "invalid_scheme_redirect": [0, 42], "invalid_scheme_navig": [0, 42], "navigation_request_blocked_by_csp": [0, 42], "main_frame_navig": [0, 42], "mojo_binder_polici": [0, 42], "trigger_destroi": [0, 42], "navigation_not_commit": [0, 42], "navigation_bad_http_statu": [0, 42], "client_cert_request": [0, 42], "navigation_request_network_error": [0, 42], "cancel_all_hosts_for_test": [0, 42], "did_fail_load": [0, 42], "ssl_certificate_error": [0, 42], "login_auth_request": [0, 42], "ua_change_requires_reload": [0, 42], "audio_output_device_request": [0, 42], "trigger_background": [0, 42], "memory_limit_exceed": [0, 42], "data_saver_en": [0, 42], "trigger_url_has_effective_url": [0, 42], "activated_before_start": [0, 42], "inactive_page_restrict": [0, 42], "start_fail": [0, 42], "timeout_background": [0, 42], "cross_site_redirect_in_initial_navig": [0, 42], "cross_site_navigation_in_initial_navig": [0, 42], "same_site_cross_origin_redirect_not_opt_in_in_initial_navig": [0, 42], "same_site_cross_origin_navigation_not_opt_in_in_initial_navig": [0, 42], "activation_navigation_parameter_mismatch": [0, 42], "activated_in_background": [0, 42], "embedder_host_disallow": [0, 42], "activation_navigation_destroyed_before_success": [0, 42], "tab_closed_by_user_gestur": [0, 42], "tab_closed_without_user_gestur": [0, 42], "primary_main_frame_renderer_process_crash": [0, 42], "primary_main_frame_renderer_process_kil": [0, 42], "activation_frame_policy_not_compat": [0, 42], "preloading_dis": [0, 42], "battery_saver_en": [0, 42], "activated_during_main_frame_navig": [0, 42], "preloading_unsupported_by_web_cont": [0, 42], "cross_site_redirect_in_main_frame_navig": [0, 42], "cross_site_navigation_in_main_frame_navig": [0, 42], "same_site_cross_origin_redirect_not_opt_in_in_main_frame_navig": [0, 42], "same_site_cross_origin_navigation_not_opt_in_in_main_frame_navig": [0, 42], "memory_pressure_on_trigg": [0, 42], "memory_pressure_after_trigg": [0, 42], "prerendering_disabled_by_dev_tool": [0, 42], "speculation_rule_remov": [0, 42], "activated_with_auxiliary_browsing_context": [0, 42], "max_num_of_running_eager_prerenders_exceed": [0, 42], "max_num_of_running_non_eager_prerenders_exceed": [0, 42], "max_num_of_running_embedder_prerenders_exceed": [0, 42], "prerendering_url_has_effective_url": [0, 42], "redirected_prerendering_url_has_effective_url": [0, 42], "activation_url_has_effective_url": [0, 42], "java_script_interface_ad": [0, 42], "java_script_interface_remov": [0, 42], "all_prerendering_cancel": [0, 42], "preloadingstatu": [0, 42], "readi": [0, 42], "failur": [0, 4, 37, 42], "prefetchstatu": [0, 42], "prefetch_allow": [0, 42], "prefetch_failed_ineligible_redirect": [0, 42], "prefetch_failed_invalid_redirect": [0, 42], "prefetch_failed_mime_not_support": [0, 42], "prefetch_failed_net_error": [0, 42], "prefetch_failed_non2_xx": [0, 42], "prefetch_failed_per_page_limit_exceed": [], "prefetch_evicted_after_candidate_remov": [0, 42], "prefetch_evicted_for_newer_prefetch": [0, 42], "prefetch_heldback": [0, 42], "prefetch_ineligible_retry_aft": [0, 42], "prefetch_is_privacy_decoi": [0, 42], "prefetch_is_stal": [0, 42], "prefetch_not_eligible_browser_context_off_the_record": [0, 42], "prefetch_not_eligible_data_saver_en": [0, 42], "prefetch_not_eligible_existing_proxi": [0, 42], "prefetch_not_eligible_host_is_non_uniqu": [0, 42], "prefetch_not_eligible_non_default_storage_partit": [0, 42], "prefetch_not_eligible_same_site_cross_origin_prefetch_required_proxi": [0, 42], "prefetch_not_eligible_scheme_is_not_http": [0, 42], "prefetch_not_eligible_user_has_cooki": [0, 42], "prefetch_not_eligible_user_has_service_work": [0, 42], "prefetch_not_eligible_battery_saver_en": [0, 42], "prefetch_not_eligible_preloading_dis": [0, 42], "prefetch_not_finished_in_tim": [0, 42], "prefetch_not_start": [0, 42], "prefetch_not_used_cookies_chang": [0, 42], "prefetch_proxy_not_avail": [0, 42], "prefetch_response_us": [0, 42], "prefetch_successful_but_not_us": [0, 42], "prefetch_not_used_probe_fail": [0, 42], "prerendermismatchedhead": [0, 42], "header_nam": [0, 42], "activation_valu": [0, 42], "rulesetupd": [0, 42], "rule_set": [0, 42], "rulesetremov": [0, 42], "preloadenabledstateupd": [0, 42], "disabled_by_prefer": [0, 42], "disabled_by_data_sav": [0, 42], "disabled_by_battery_sav": [0, 42], "disabled_by_holdback_prefetch_speculation_rul": [0, 42], "disabled_by_holdback_prerender_speculation_rul": [0, 42], "prefetchstatusupd": [0, 42], "initiating_frame_id": [0, 42], "prefetch_url": [0, 42], "prefetch_statu": [0, 42], "prerenderstatusupd": [0, 42], "prerender_statu": [0, 42], "disallowed_mojo_interfac": [0, 42], "mismatched_head": [0, 42], "preloadingattemptsourcesupd": [0, 42], "preloading_attempt_sourc": [0, 42], "profilenod": [0, 43], "hit_count": [0, 43], "deopt_reason": [0, 43], "position_tick": [0, 43], "end_tim": [0, 43], "time_delta": [0, 43], "positiontickinfo": [0, 43], "tick": [0, 37, 43], "coveragerang": [0, 43], "functioncoverag": [0, 43], "rang": [0, 12, 14, 17, 27, 29, 30, 39, 43, 53], "is_block_coverag": [0, 43], "scriptcoverag": [0, 43], "get_best_effort_coverag": [0, 43], "set_sampling_interv": [0, 43], "start_precise_coverag": [0, 43], "stop_precise_coverag": [0, 43], "take_precise_coverag": [0, 43], "consoleprofilefinish": [0, 43], "consoleprofilestart": [0, 43], "precisecoveragedeltaupd": [0, 43], "occas": [0, 43], "pwa": [0, 1, 38, 39], "filehandleraccept": [0, 44], "media_typ": [0, 44], "file_extens": [0, 44], "display_nam": [0, 44], "displaymod": [0, 44], "standalon": [0, 44], "change_app_user_set": [0, 44], "get_os_app_st": [0, 44], "launch": [0, 39, 44, 50, 56], "launch_files_in_app": [0, 44], "open_current_page_in_app": [0, 44], "uninstal": [0, 44], "runtim": [0, 1, 11, 14, 39, 51], "scriptid": [0, 4, 14, 18, 39, 43, 45], "serializationopt": [0, 45], "max_depth": [0, 14, 45], "additional_paramet": [0, 45], "deepserializedvalu": [0, 45], "weak_local_object_refer": [0, 45], "remoteobjectid": [0, 2, 14, 17, 18, 28, 32, 38, 45, 57], "unserializablevalu": [0, 45], "remoteobject": [0, 3, 14, 17, 18, 28, 29, 34, 45, 57, 59], "subtyp": [0, 2, 45, 51], "class_nam": [0, 45], "unserializable_valu": [0, 45], "deep_serialized_valu": [0, 45], "preview": [0, 14, 45], "custom_preview": [0, 45], "custompreview": [0, 45], "body_getter_id": [0, 45], "objectpreview": [0, 45], "overflow": [0, 45], "propertypreview": [0, 45], "value_preview": [0, 45], "entrypreview": [0, 45], "propertydescriptor": [0, 45], "configur": [0, 7, 21, 34, 37, 38, 39, 45, 53, 55], "enumer": [0, 12, 14, 45], "writabl": [0, 45], "set_": [0, 45], "was_thrown": [0, 45], "is_own": [0, 45], "symbol": [0, 14, 17, 28, 45], "internalpropertydescriptor": [0, 45], "privatepropertydescriptor": [0, 45], "callargu": [0, 14, 45], "executioncontextid": [0, 14, 17, 39, 45], "executioncontextdescript": [0, 39, 45], "unique_id": [0, 14, 45], "aux_data": [0, 45], "exceptiondetail": [0, 14, 45, 59], "exception_id": [0, 45], "except": [0, 4, 14, 30, 45, 59], "exception_meta_data": [0, 45], "timedelta": [0, 14, 45], "stacktrac": [0, 14, 17, 34, 37, 39, 45], "uniquedebuggerid": [0, 14, 39, 45], "stacktraceid": [0, 14, 45], "add_bind": [0, 45], "await_promis": [0, 45, 59], "call_function_on": [0, 45], "compile_script": [0, 45], "discard_console_entri": [0, 45], "get_exception_detail": [0, 45], "get_heap_usag": [0, 45], "get_isolate_id": [0, 45], "get_properti": [0, 45], "global_lexical_scope_nam": [0, 45], "query_object": [0, 45], "release_object": [0, 45], "release_object_group": [0, 45], "remove_bind": [0, 45], "run_if_waiting_for_debugg": [0, 45], "run_script": [0, 45], "set_custom_object_formatter_en": [0, 45], "set_max_call_stack_size_to_captur": [0, 45], "terminate_execut": [0, 45], "bindingcal": [0, 45], "payload": [0, 37, 45], "consoleapical": [0, 45], "exceptionrevok": [0, 45], "exceptionthrown": [0, 45], "exception_detail": [0, 45], "executioncontextcr": [0, 45], "executioncontextdestroi": [0, 45], "execution_context_unique_id": [0, 45], "executioncontextsclear": [0, 45], "inspectrequest": [0, 45], "hint": [0, 4, 21, 37, 39, 42, 45, 57], "schema": [0, 1], "get_domain": [0, 46], "certificateid": [0, 37, 47], "mixedcontenttyp": [0, 37, 47], "blockabl": [0, 47], "optionally_block": [0, 47], "securityst": [0, 37, 47], "neutral": [0, 47], "insecure_broken": [0, 47], "certificatesecurityst": [0, 47], "certificate_has_weak_signatur": [0, 47], "certificate_has_sha1_signatur": [0, 47], "modern_ssl": [0, 47], "obsolete_ssl_protocol": [0, 47], "obsolete_ssl_key_exchang": [0, 47], "obsolete_ssl_ciph": [0, 47], "obsolete_ssl_signatur": [0, 47], "certificate_network_error": [0, 47], "safetytipstatu": [0, 47], "bad_reput": [0, 47], "lookalik": [0, 47, 59], "safetytipinfo": [0, 47], "safety_tip_statu": [0, 47], "safe_url": [0, 47], "visiblesecurityst": [0, 47], "security_state_issue_id": [0, 47], "certificate_security_st": [0, 47], "safety_tip_info": [0, 47], "securitystateexplan": [0, 47], "summari": [0, 47], "recommend": [0, 39, 47, 55, 60], "insecurecontentstatu": [0, 47], "ran_mixed_cont": [0, 47], "displayed_mixed_cont": [0, 47], "contained_mixed_form": [0, 47], "ran_content_with_cert_error": [0, 47], "displayed_content_with_cert_error": [0, 47], "ran_insecure_content_styl": [0, 47], "displayed_insecure_content_styl": [0, 47], "certificateerroract": [0, 47], "continu": [0, 14, 21, 25, 37, 47, 60, 61], "handle_certificate_error": [0, 47], "set_ignore_certificate_error": [0, 47], "set_override_certificate_error": [0, 47], "certificateerror": [0, 47], "visiblesecuritystatechang": [0, 47], "visible_security_st": [0, 47], "securitystatechang": [0, 47], "scheme_is_cryptograph": [0, 47], "insecure_content_statu": [0, 47], "servicework": [0, 1, 4, 37, 59], "registrationid": [0, 6, 48], "serviceworkerregistr": [0, 48], "registration_id": [0, 48], "scope_url": [0, 48], "is_delet": [0, 48], "serviceworkerversionrunningstatu": [0, 48], "serviceworkerversionstatu": [0, 48], "new": [0, 2, 4, 6, 8, 11, 12, 14, 17, 19, 21, 27, 28, 34, 35, 37, 39, 43, 44, 45, 48, 51, 54, 56, 58, 59], "redund": [0, 48], "serviceworkervers": [0, 48], "version_id": [0, 48], "script_url": [0, 48], "running_statu": [0, 48], "script_last_modifi": [0, 48], "script_response_tim": [0, 48], "controlled_cli": [0, 48], "target_id": [0, 8, 48, 51], "router_rul": [0, 48], "serviceworkererrormessag": [0, 48], "deliver_push_messag": [0, 48], "dispatch_periodic_sync_ev": [0, 48], "dispatch_sync_ev": [0, 48], "inspect_work": [0, 48], "set_force_update_on_page_load": [0, 48], "skip_wait": [0, 48], "start_work": [0, 48], "stop_all_work": [0, 48], "stop_work": [0, 48], "unregist": [0, 48, 49], "update_registr": [0, 48], "workererrorreport": [0, 48], "workerregistrationupd": [0, 48], "registr": [0, 4, 12, 48, 49], "workerversionupd": [0, 48], "storag": [0, 1, 6, 9, 20, 23, 26, 29, 32, 37, 39, 55, 59], "storagetyp": [0, 49], "appcach": [0, 49], "file_system": [0, 49], "local_storag": [0, 49], "shader_cach": [0, 49], "websql": [0, 49], "interest_group": [0, 49], "all_": [0, 49], "usagefortyp": [0, 49], "storage_typ": [0, 49], "trusttoken": [0, 37, 49], "interestgroupauctionid": [0, 49], "interestgroupaccesstyp": [0, 49], "join": [0, 35, 39, 49, 60, 61], "leav": [0, 8, 14, 49, 60], "bid": [0, 49], "win": [0, 49], "additional_bid": [0, 49], "additional_bid_win": [0, 49], "top_level_bid": [0, 49], "top_level_additional_bid": [0, 49], "interestgroupauctioneventtyp": [0, 49], "config_resolv": [0, 49], "interestgroupauctionfetchtyp": [0, 49], "bidder_j": [0, 49], "bidder_wasm": [0, 49], "seller_j": [0, 49], "bidder_trusted_sign": [0, 49], "seller_trusted_sign": [0, 49], "sharedstorageaccesstyp": [0, 49], "document_add_modul": [0, 49], "document_select_url": [0, 49], "document_run": [0, 49], "document_set": [0, 49], "document_append": [0, 49], "document_delet": [0, 49], "document_clear": [0, 49], "document_get": [0, 49], "worklet_set": [0, 49], "worklet_append": [0, 49], "worklet_delet": [0, 49], "worklet_clear": [0, 49], "worklet_get": [0, 49], "worklet_kei": [0, 49], "worklet_entri": [0, 49], "worklet_length": [0, 49], "worklet_remaining_budget": [0, 49], "header_set": [0, 49], "header_append": [0, 49], "header_delet": [0, 49], "header_clear": [0, 49], "sharedstorageentri": [0, 49], "sharedstoragemetadata": [0, 49], "creation_tim": [0, 49], "remaining_budget": [0, 49], "bytes_us": [0, 49], "sharedstoragereportingmetadata": [0, 49], "event_typ": [0, 41, 49], "reporting_url": [0, 49], "sharedstorageurlwithmetadata": [0, 49], "reporting_metadata": [0, 49], "sharedstorageaccessparam": [0, 49], "script_source_url": [0, 49], "operation_nam": [0, 49], "serialized_data": [0, 49], "urls_with_metadata": [0, 49], "ignore_if_pres": [0, 49], "storagebucketsdur": [0, 49], "relax": [0, 49], "storagebucket": [0, 9, 29, 49], "storagebucketinfo": [0, 49], "quota": [0, 49], "persist": [0, 38, 45, 49], "durabl": [0, 49], "attributionreportingsourcetyp": [0, 49], "unsignedint64asbase10": [0, 49], "unsignedint128asbase16": [0, 49], "signedint64asbase10": [0, 49], "attributionreportingfilterdataentri": [0, 49], "attributionreportingfilterconfig": [0, 49], "filter_valu": [0, 49], "lookback_window": [0, 49], "attributionreportingfilterpair": [0, 49], "filter": [0, 17, 19, 23, 25, 37, 39, 41, 42, 49, 51, 53], "not_filt": [0, 49], "attributionreportingaggregationkeysentri": [0, 49], "attributionreportingeventreportwindow": [0, 49], "attributionreportingtriggerspec": [0, 49], "trigger_data": [0, 49], "event_report_window": [0, 49], "attributionreportingtriggerdatamatch": [0, 49], "exact": [0, 19, 37, 49], "modulu": [0, 49], "attributionreportingsourceregistr": [0, 49], "expiri": [0, 5, 49], "trigger_spec": [0, 49], "aggregatable_report_window": [0, 49], "source_origin": [0, 49], "reporting_origin": [0, 49], "destination_sit": [0, 49], "filter_data": [0, 49], "aggregation_kei": [0, 49], "trigger_data_match": [0, 49], "debug_kei": [0, 49], "attributionreportingsourceregistrationresult": [0, 49], "internal_error": [0, 49], "insufficient_source_capac": [0, 49], "insufficient_unique_destination_capac": [0, 49], "excessive_reporting_origin": [0, 49], "prohibited_by_browser_polici": [0, 49], "success_nois": [0, 49], "destination_reporting_limit_reach": [0, 49], "destination_global_limit_reach": [0, 49], "destination_both_limits_reach": [0, 49], "reporting_origins_per_site_limit_reach": [0, 49], "exceeds_max_channel_capac": [0, 49], "exceeds_max_trigger_state_cardin": [0, 49], "destination_per_day_reporting_limit_reach": [0, 49], "attributionreportingsourceregistrationtimeconfig": [0, 49], "exclud": [0, 14, 28, 39, 49, 51, 53], "attributionreportingaggregatablevaluedictentri": [0, 49], "attributionreportingaggregatablevalueentri": [0, 49], "attributionreportingeventtriggerdata": [0, 49], "dedup_kei": [0, 49], "attributionreportingaggregatabletriggerdata": [0, 49], "key_piec": [0, 49], "source_kei": [0, 49], "attributionreportingaggregatablededupkei": [0, 49], "attributionreportingtriggerregistr": [0, 49], "aggregatable_dedup_kei": [0, 49], "event_trigger_data": [0, 49], "aggregatable_trigger_data": [0, 49], "aggregatable_valu": [0, 49], "debug_report": [0, 49], "source_registration_time_config": [0, 49], "aggregation_coordinator_origin": [0, 49], "trigger_context_id": [0, 49], "attributionreportingeventlevelresult": [0, 49], "success_dropped_lower_prior": [0, 49], "no_capacity_for_attribution_destin": [0, 49], "no_matching_sourc": [0, 49], "dedupl": [0, 49], "excessive_attribut": [0, 49], "priority_too_low": [0, 49], "never_attributed_sourc": [0, 49], "no_matching_source_filter_data": [0, 49], "no_matching_configur": [0, 49], "excessive_report": [0, 49], "falsely_attributed_sourc": [0, 49], "report_window_pass": [0, 49], "not_regist": [0, 49], "report_window_not_start": [0, 49], "no_matching_trigger_data": [0, 49], "attributionreportingaggregatableresult": [0, 49], "no_histogram": [0, 49], "insufficient_budget": [0, 49], "relatedwebsiteset": [0, 49], "primary_sit": [0, 49], "associated_sit": [0, 49], "service_sit": [0, 49], "clear_cooki": [0, 49], "clear_data_for_origin": [0, 49], "clear_data_for_storage_kei": [0, 49], "clear_shared_storage_entri": [0, 49], "clear_trust_token": [0, 49], "delete_shared_storage_entri": [0, 49], "delete_storage_bucket": [0, 49], "get_interest_group_detail": [0, 49], "get_related_website_set": [0, 49], "get_shared_storage_entri": [0, 49], "get_shared_storage_metadata": [0, 49], "get_storage_key_for_fram": [0, 49], "get_trust_token": [0, 49], "get_usage_and_quota": [0, 49], "override_quota_for_origin": [0, 49], "reset_shared_storage_budget": [0, 49], "run_bounce_tracking_mitig": [0, 49], "send_pending_attribution_report": [0, 49], "set_attribution_reporting_local_testing_mod": [0, 49], "set_attribution_reporting_track": [0, 49], "set_interest_group_auction_track": [0, 49], "set_interest_group_track": [0, 49], "set_shared_storage_entri": [0, 49], "set_shared_storage_track": [0, 49], "set_storage_bucket_track": [0, 49], "track_cache_storage_for_origin": [0, 49], "track_cache_storage_for_storage_kei": [0, 49], "track_indexed_db_for_origin": [0, 49], "track_indexed_db_for_storage_kei": [0, 49], "untrack_cache_storage_for_origin": [0, 49], "untrack_cache_storage_for_storage_kei": [0, 49], "untrack_indexed_db_for_origin": [0, 49], "untrack_indexed_db_for_storage_kei": [0, 49], "cachestoragecontentupd": [0, 49], "bucket_id": [0, 49], "cachestoragelistupd": [0, 49], "indexeddbcontentupd": [0, 49], "database_nam": [0, 29, 49], "object_store_nam": [0, 29, 49], "indexeddblistupd": [0, 49], "interestgroupaccess": [0, 49], "access_tim": [0, 49], "owner_origin": [0, 49], "component_seller_origin": [0, 49], "bid_curr": [0, 49], "unique_auction_id": [0, 49], "interestgroupauctioneventoccur": [0, 49], "event_tim": [0, 49], "parent_auction_id": [0, 49], "auction_config": [0, 49], "interestgroupauctionnetworkrequestcr": [0, 49], "auction": [0, 39, 49], "sharedstorageaccess": [0, 49], "main_frame_id": [0, 49], "param": [0, 49, 54, 59], "storagebucketcreatedorupd": [0, 49], "bucket_info": [0, 49], "storagebucketdelet": [0, 49], "attributionreportingsourceregist": [0, 49], "attributionreportingtriggerregist": [0, 49], "event_level": [0, 49], "aggregat": [0, 49], "systeminfo": [0, 1], "gpudevic": [0, 50], "vendor_id": [0, 50], "device_id": [0, 15, 50], "vendor_str": [0, 50], "device_str": [0, 50], "driver_vendor": [0, 50], "driver_vers": [0, 50], "sub_sys_id": [0, 50], "revis": [0, 8, 50], "videodecodeacceleratorcap": [0, 50], "max_resolut": [0, 50], "min_resolut": [0, 50], "videoencodeacceleratorcap": [0, 50], "max_framerate_numer": [0, 50], "max_framerate_denomin": [0, 50], "subsamplingformat": [0, 50], "yuv420": [0, 50], "yuv422": [0, 50], "yuv444": [0, 50], "imagetyp": [0, 50], "jpeg": [0, 27, 39, 50, 57, 59], "imagedecodeacceleratorcap": [0, 50], "image_typ": [0, 21, 50], "max_dimens": [0, 50], "min_dimens": [0, 50], "subsampl": [0, 50], "gpuinfo": [0, 50], "driver_bug_workaround": [0, 50], "video_decod": [0, 50], "video_encod": [0, 50], "image_decod": [0, 50], "aux_attribut": [0, 50], "feature_statu": [0, 50], "processinfo": [0, 50], "cpu_tim": [0, 50], "get_feature_st": [0, 50], "get_info": [0, 50], "get_process_info": [0, 50], "targetid": [0, 8, 44, 48, 51], "sessionid": [0, 51], "targetinfo": [0, 51, 59], "can_access_open": [0, 51], "opener_id": [0, 51], "opener_frame_id": [0, 51], "browser_context_id": [0, 8, 49, 51], "filterentri": [0, 51], "targetfilt": [0, 51], "remoteloc": [0, 51], "host": [0, 8, 17, 21, 33, 37, 51, 56, 58], "port": [0, 37, 51, 52, 56, 58], "activate_target": [0, 51], "attach_to_browser_target": [0, 51], "attach_to_target": [0, 51], "auto_attach_rel": [0, 51], "close_target": [0, 51], "create_browser_context": [0, 51], "create_target": [0, 51], "detach_from_target": [0, 51], "dispose_browser_context": [0, 51], "expose_dev_tools_protocol": [0, 51], "get_browser_context": [0, 51], "get_target_info": [0, 51], "get_target": [0, 51], "send_message_to_target": [0, 51], "set_auto_attach": [0, 51], "set_discover_target": [0, 51], "set_remote_loc": [0, 51], "attachedtotarget": [0, 51], "target_info": [0, 51], "waiting_for_debugg": [0, 51], "detachedfromtarget": [0, 51], "receivedmessagefromtarget": [0, 51], "targetcr": [0, 51], "targetdestroi": [0, 51], "error_cod": [0, 51], "targetinfochang": [0, 51], "tether": [0, 1], "bind": [0, 45, 51, 52], "unbind": [0, 52], "trace": [0, 1, 14, 17, 34, 35, 37, 39, 45], "memorydumpconfig": [0, 53], "traceconfig": [0, 53], "record_mod": [0, 53], "trace_buffer_size_in_kb": [0, 53], "enable_sampl": [0, 53], "enable_systrac": [0, 53], "enable_argument_filt": [0, 53], "included_categori": [0, 53], "excluded_categori": [0, 53], "synthetic_delai": [0, 53], "memory_dump_config": [0, 53], "streamformat": [0, 53], "proto": [0, 44, 53], "streamcompress": [0, 53], "memorydumplevelofdetail": [0, 53], "background": [0, 6, 12, 19, 21, 27, 38, 39, 51, 53, 56, 59], "light": [0, 21, 39, 53], "tracingbackend": [0, 53], "auto": [0, 29, 30, 39, 51, 53, 57, 59], "system": [0, 7, 21, 30, 39, 45, 50, 53, 59], "get_categori": [0, 53], "record_clock_sync_mark": [0, 53], "request_memory_dump": [0, 53], "bufferusag": [0, 53], "percent_ful": [0, 53], "event_count": [0, 53], "datacollect": [0, 53], "tracingcomplet": [0, 53], "data_loss_occur": [0, 53], "trace_format": [0, 53], "stream_compress": [0, 53], "webaudio": [0, 1], "graphobjectid": [0, 54], "contexttyp": [0, 54], "realtim": [0, 54], "offlin": [0, 37, 54], "contextst": [0, 54], "suspend": [0, 54], "nodetyp": [0, 17, 19, 54], "channelcountmod": [0, 54], "clamped_max": [0, 54], "explicit": [0, 2, 21, 39, 54], "max_": [0, 54], "channelinterpret": [0, 54], "discret": [0, 32, 39, 54, 55], "speaker": [0, 39, 54], "paramtyp": [0, 54], "automationr": [0, 54], "a_rat": [0, 54], "k_rate": [0, 54], "contextrealtimedata": [0, 54], "render_capac": [0, 54], "callback_interval_mean": [0, 54], "callback_interval_vari": [0, 54], "baseaudiocontext": [0, 54], "context_id": [0, 45, 54], "context_typ": [0, 54], "context_st": [0, 54], "callback_buffer_s": [0, 54], "max_output_channel_count": [0, 54], "sample_r": [0, 54], "realtime_data": [0, 54], "audiolisten": [0, 54], "listener_id": [0, 54], "audionod": [0, 54], "number_of_input": [0, 54], "number_of_output": [0, 54], "channel_count": [0, 54], "channel_count_mod": [0, 54], "channel_interpret": [0, 54], "audioparam": [0, 54], "param_id": [0, 54], "param_typ": [0, 54], "rate": [0, 3, 21, 54], "get_realtime_data": [0, 54], "contextcr": [0, 54], "contextwillbedestroi": [0, 54], "contextchang": [0, 54], "audiolistenercr": [0, 54], "listen": [0, 18, 19, 54, 59], "audiolistenerwillbedestroi": [0, 54], "audionodecr": [0, 54], "audionodewillbedestroi": [0, 54], "audioparamcr": [0, 54], "audioparamwillbedestroi": [0, 54], "nodesconnect": [0, 54], "source_id": [0, 54], "destination_id": [0, 54], "source_output_index": [0, 54], "destination_input_index": [0, 54], "nodesdisconnect": [0, 54], "nodeparamconnect": [0, 54], "nodeparamdisconnect": [0, 54], "webauthn": [0, 1], "authenticatorid": [0, 55], "authenticatorprotocol": [0, 55], "u2f": [0, 55], "ctap2": [0, 55], "ctap2vers": [0, 55], "ctap2_0": [0, 55], "ctap2_1": [0, 55], "authenticatortransport": [0, 55], "ble": [0, 55], "cabl": [0, 55], "intern": [0, 3, 28, 36, 39, 45, 47, 55, 57, 59], "virtualauthenticatoropt": [0, 55], "transport": [0, 37, 47, 55], "ctap2_vers": [0, 55], "has_resident_kei": [0, 55], "has_user_verif": [0, 55], "has_large_blob": [0, 55], "has_cred_blob": [0, 55], "has_min_pin_length": [0, 55], "has_prf": [0, 55], "automatic_presence_simul": [0, 55], "is_user_verifi": [0, 55], "default_backup_elig": [0, 55], "default_backup_st": [0, 55], "credenti": [0, 39, 55], "credential_id": [0, 55], "is_resident_credenti": [0, 55], "private_kei": [0, 55], "sign_count": [0, 55], "rp_id": [0, 55], "user_handl": [0, 55], "large_blob": [0, 55], "backup_elig": [0, 55], "backup_st": [0, 55], "add_credenti": [0, 55], "add_virtual_authent": [0, 55], "clear_credenti": [0, 55], "get_credenti": [0, 55], "remove_credenti": [0, 55], "remove_virtual_authent": [0, 55], "set_automatic_presence_simul": [0, 55], "set_credential_properti": [0, 55], "set_response_override_bit": [0, 55], "set_user_verifi": [0, 55], "credentialad": [0, 55], "authenticator_id": [0, 55], "credentialassert": [0, 55], "cdp": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 61], "experiment": [2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 33, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 57], "you": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61], "do": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 57, 59], "need": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 57, 60, 61], "instanti": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56], "yourself": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55], "instead": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 57, 58, 59, 60, 61], "api": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 59], "object": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59], "can": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 59, 60, 61], "those": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 57, 59], "argument": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55], "identifi": [2, 4, 5, 6, 7, 8, 9, 12, 13, 14, 17, 18, 19, 20, 21, 25, 28, 30, 33, 34, 37, 38, 39, 41, 42, 43, 44, 45, 49, 51], "qualnam": [2, 4, 5, 6, 7, 8, 9, 12, 14, 17, 18, 21, 23, 24, 25, 30, 36, 37, 38, 39, 42, 44, 47, 48, 49, 50, 53, 54, 55], "start": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 61], "boundari": [2, 4, 5, 6, 7, 8, 9, 12, 14, 17, 18, 21, 23, 24, 25, 30, 33, 36, 37, 38, 39, 42, 44, 45, 47, 48, 49, 50, 53, 54, 55], "enum": [2, 4, 12, 14, 19, 21, 35, 39, 49, 54], "possibl": [2, 4, 14, 39, 42, 49, 51, 59], "booleanorundefin": 2, "idreflist": 2, "nodelist": 2, "computedstr": 2, "tokenlist": 2, "domrel": 2, "internalrol": 2, "valueundefin": 2, "relatedel": 2, "nativ": [2, 18, 22, 30, 36, 39, 57, 58], "particular": [2, 3, 14, 18, 22, 45, 49], "comput": [2, 12, 17, 19, 21, 39], "ax": [2, 12, 17], "The": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 60, 61], "str": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 57, 58, 59, 60, 61], "ani": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 57, 59], "bool": [2, 3, 4, 6, 8, 12, 14, 17, 18, 19, 20, 21, 24, 25, 27, 28, 29, 30, 32, 33, 36, 37, 38, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 53, 55, 56, 57, 58, 59], "whether": [2, 4, 5, 8, 12, 14, 17, 18, 19, 20, 21, 24, 27, 30, 33, 37, 38, 39, 43, 45, 47, 49, 51, 53, 55, 59], "higher": [2, 12], "markup": [2, 17, 30, 39], "e": [2, 3, 4, 5, 12, 14, 21, 24, 27, 30, 37, 39, 42, 45, 47, 50, 51, 53, 55, 58], "list": [2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 28, 29, 30, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 55, 56, 57, 58, 59], "being": [2, 4, 7, 8, 11, 13, 14, 20, 21, 22, 24, 28, 33, 34, 35, 37, 39, 41, 42, 43, 47, 49, 60, 61], "relat": [2, 4, 5, 6, 12, 17, 19, 21, 30, 37, 38, 39, 41, 49, 50, 51], "current": [2, 3, 4, 8, 10, 12, 14, 17, 19, 21, 27, 28, 29, 30, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 49, 51, 54, 56, 57, 59], "One": [2, 4, 30, 49], "applic": [2, 12, 28, 37, 41, 47], "contribut": [2, 28, 47], "everi": [2, 4, 6, 12, 37, 39, 45], "region": [2, 38, 39], "widget": 2, "relationship": 2, "between": [2, 12, 17, 19, 27, 28, 30, 36, 38, 43, 51, 56], "than": [2, 17, 18, 21, 33, 37, 39, 45, 51, 58, 59], "sibl": [2, 17], "hiddenroot": 2, "haspopup": 2, "collect": [2, 4, 11, 12, 14, 17, 19, 28, 34, 36, 39, 40, 43, 45, 53], "why": [2, 4, 14, 31, 33, 37, 39, 45], "raw": [2, 4, 28, 37], "all": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61], "id": [2, 3, 4, 5, 6, 8, 9, 12, 13, 14, 15, 17, 18, 19, 23, 25, 28, 32, 33, 35, 37, 38, 39, 41, 42, 43, 44, 45, 47, 49, 50, 51, 52, 53, 54, 55], "backend": [2, 12, 14, 17, 21, 28, 29, 33, 37, 38, 39, 43, 45, 53], "associ": [2, 6, 8, 12, 14, 17, 19, 30, 33, 34, 37, 39, 42, 45, 49, 50, 55], "indic": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55], "yield": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55], "must": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 59], "an": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61], "In": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 58, 61], "ar": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61], "same": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 57, 59], "should": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 59], "pai": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55], "attent": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55], "For": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 59], "inform": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55], "see": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 59, 60, 61], "dict": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 58, 59], "remain": [2, 49], "consist": [2, 5, 12, 36, 39, 51, 53], "call": [2, 4, 6, 8, 12, 14, 17, 21, 24, 25, 33, 34, 35, 36, 37, 38, 39, 40, 43, 44, 45, 49, 51, 57, 59], "turn": [2, 21, 51, 53], "impact": [2, 44], "ancestor": [2, 12, 17, 37], "been": [2, 3, 4, 6, 7, 11, 12, 14, 17, 19, 21, 23, 24, 28, 30, 31, 37, 39, 43, 47, 49, 51, 53, 54], "previous": [2, 12, 14, 21, 39, 41, 47], "javascript": [2, 14, 17, 18, 19, 21, 22, 34, 37, 38, 39, 43, 45, 53, 57, 59], "wrapper": [2, 14, 17, 32, 38], "whose": [2, 3, 12, 49], "resid": 2, "If": [2, 4, 5, 8, 9, 12, 14, 17, 18, 21, 23, 25, 27, 28, 29, 35, 36, 37, 39, 42, 44, 45, 47, 49, 51, 53, 55, 58], "omit": [2, 4, 8, 12, 14, 17, 21, 25, 37, 38, 39, 42, 45, 47, 51], "int": [2, 4, 7, 8, 9, 11, 12, 13, 14, 17, 18, 19, 21, 24, 25, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 43, 44, 45, 47, 48, 49, 50, 51, 52, 55, 56, 57, 59], "maximum": [2, 8, 12, 14, 17, 18, 21, 32, 33, 39, 45, 50, 55, 59], "descend": [2, 17, 38], "retriev": [2, 8, 12, 17, 18, 19, 21, 23, 26, 28, 36, 40, 45, 51, 55, 56, 57, 59], "full": [2, 12, 19, 21, 35, 39, 45, 47, 54, 57, 59], "fetch_rel": 2, "partial": 2, "exist": [2, 3, 4, 6, 12, 14, 17, 21, 23, 24, 37, 39, 44, 45, 49, 51, 54, 60], "true": [2, 4, 8, 12, 14, 17, 19, 21, 25, 27, 28, 29, 30, 36, 37, 38, 39, 45, 47, 49, 51, 53, 55, 56, 57, 58, 60, 61, 62], "plu": 2, "its": [2, 12, 14, 17, 20, 25, 30, 33, 37, 39, 43, 44, 45, 49, 50, 53, 59], "accessible_nam": 2, "queri": [2, 8, 12, 13, 14, 17, 20, 21, 30, 37, 38, 39, 49, 50, 51, 57], "subtre": [2, 17, 18, 39], "specifi": [2, 4, 5, 8, 9, 12, 14, 17, 19, 21, 23, 25, 29, 32, 33, 37, 38, 39, 41, 42, 43, 45, 49, 50, 51, 52, 53, 55, 58, 59, 60], "doe": [2, 3, 4, 5, 11, 12, 14, 17, 21, 25, 37, 39, 44, 45, 47, 57, 58, 60, 61], "neither": [2, 45], "accessiblenam": 2, "mirror": [2, 10, 17, 45], "sent": [2, 7, 13, 14, 17, 20, 21, 25, 28, 37, 39, 41, 43, 45, 47, 49, 53, 59], "assist": 2, "technologi": [2, 37], "when": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 17, 18, 19, 24, 25, 27, 28, 30, 31, 33, 34, 35, 37, 38, 39, 41, 42, 43, 45, 47, 49, 51, 53, 55, 56, 57, 59, 60, 61], "ha": [2, 3, 4, 6, 7, 8, 11, 12, 14, 17, 19, 21, 23, 24, 25, 28, 29, 30, 31, 33, 37, 38, 39, 42, 43, 44, 47, 49, 51, 54, 57, 58, 59], "chang": [2, 10, 12, 14, 17, 19, 21, 28, 30, 37, 39, 43, 44, 45, 47, 49, 51, 54, 60], "plai": [3, 57], "float": [3, 4, 8, 9, 12, 14, 16, 17, 19, 21, 26, 27, 28, 29, 30, 33, 34, 36, 37, 39, 40, 41, 43, 45, 48, 49, 50, 53, 54, 56, 57, 59], "playback": [3, 10, 39], "millisecond": [3, 14, 21, 27, 30, 37, 45, 53], "base": [3, 11, 12, 14, 17, 18, 19, 21, 30, 35, 36, 37, 38, 39, 43, 45, 56, 58, 59], "percentag": [3, 59], "0": [3, 4, 12, 14, 17, 18, 19, 21, 25, 27, 30, 35, 37, 39, 45, 50, 53, 56, 57, 59, 60, 61], "100": [3, 12, 27, 37, 39, 54, 57], "scroll": [3, 12, 17, 19, 30, 33, 38, 39, 57, 59], "driven": 3, "transit": [3, 17, 39], "view": [3, 17, 21, 39, 57, 58, 59], "timelin": [3, 41], "contain": [3, 4, 5, 8, 9, 12, 14, 17, 19, 21, 25, 30, 31, 33, 37, 38, 39, 43, 45, 53, 56, 58, 59], "posit": [3, 4, 8, 12, 14, 17, 19, 21, 25, 30, 33, 37, 38, 39, 43, 57, 59], "pixel": [3, 8, 17, 21, 30, 38, 39, 41, 50, 59], "princip": 3, "box": [3, 17, 19, 25, 33, 37, 38], "scrollport": 3, "defin": [3, 5, 6, 8, 12, 14, 17, 19, 23, 30, 37, 38, 39, 44, 47, 50, 52], "progress": [3, 8, 39], "scrolltimelin": 3, "releas": [3, 14, 17, 28, 30, 33, 43, 45], "set": [3, 4, 5, 6, 8, 10, 12, 14, 17, 18, 19, 21, 22, 23, 24, 25, 27, 29, 30, 32, 33, 34, 35, 37, 38, 39, 40, 42, 44, 45, 47, 49, 51, 53, 55, 57, 58, 59, 60], "longer": [3, 17, 38, 39, 47], "manipul": [3, 14], "seek": [3, 32], "animation_id": 3, "remot": [3, 10, 23, 28, 31, 32, 37, 45, 51], "correspond": [3, 14, 17, 19, 24, 25, 28, 35, 37, 39, 42, 44, 45, 49, 58], "within": [3, 12, 14, 17, 30, 33, 35, 37, 41], "wa": [3, 4, 5, 12, 14, 18, 19, 21, 24, 25, 27, 30, 33, 34, 35, 37, 39, 42, 43, 44, 45, 47, 48, 49, 51, 52, 56], "investig": 4, "violat": [4, 18, 34], "improv": 4, "about": [4, 5, 8, 12, 17, 27, 28, 31, 33, 37, 39, 42, 45, 47, 49, 50, 51, 57], "affect": [4, 19, 21, 25, 37], "follow": [4, 5, 8, 9, 12, 13, 14, 17, 19, 21, 25, 27, 29, 32, 33, 36, 37, 39, 43, 44, 45, 49, 50, 51, 53, 57, 58, 59], "three": 4, "excludesamesiteunspecifiedtreatedaslax": 4, "excludesamesitenoneinsecur": 4, "excludesamesitelax": 4, "excludesamesitestrict": 4, "excludeinvalidsameparti": 4, "excludesamepartycrosspartycontext": 4, "excludedomainnonascii": 4, "excludethirdpartycookieblockedinfirstpartyset": 4, "excludethirdpartyphaseout": 4, "warnsamesiteunspecifiedcrosssitecontext": 4, "warnsamesitenoneinsecur": 4, "warnsamesiteunspecifiedlaxallowunsaf": 4, "warnsamesitestrictlaxdowngradestrict": 4, "warnsamesitestrictcrossdowngradestrict": 4, "warnsamesitestrictcrossdowngradelax": 4, "warnsamesitelaxcrossdowngradestrict": 4, "warnsamesitelaxcrossdowngradelax": 4, "warnattributevalueexceedsmaxs": 4, "warndomainnonascii": 4, "warnthirdpartyphaseout": 4, "warncrosssiteredirectdowngradechangesinclus": 4, "setcooki": 4, "readcooki": 4, "necessari": [4, 42], "front": [4, 12, 17, 39], "difficult": 4, "With": 4, "we": [4, 12, 14, 33, 35, 37, 42, 51, 59, 60, 61], "convei": 4, "without": [4, 8, 14, 28, 37, 39, 44, 49, 51, 59], "site": [4, 8, 37, 39, 44, 49, 57], "mai": [4, 8, 12, 14, 17, 19, 21, 25, 27, 28, 32, 37, 38, 39, 41, 43, 44, 45, 49, 51, 54, 59, 60, 61], "addit": [4, 6, 12, 14, 17, 30, 37, 50, 51, 56], "rawcookielin": 4, "problem": [4, 14, 57], "where": [4, 5, 9, 12, 14, 17, 32, 33, 35, 36, 37, 39, 42, 43, 45, 57], "syntact": 4, "semant": [4, 37], "wai": [4, 25, 37, 44, 45, 56, 59], "valid": [4, 8, 12, 14, 17, 19, 29, 30, 37, 39, 42, 47, 48], "mixedcontentblock": 4, "mixedcontentautomaticallyupgrad": 4, "mixedcontentwarn": 4, "attributionsrc": 4, "cspreport": 4, "eventsourc": [4, 37], "plugindata": 4, "pluginresourc": 4, "sharedwork": [4, 39], "speculationrul": 4, "xmlhttprequest": [4, 18, 37], "mix": [4, 37, 47], "resolv": [4, 12, 14, 17, 37, 45, 55, 57], "unsaf": [4, 23, 45], "j": [4, 24, 35, 57, 59], "mark": [4, 17, 37, 43], "becaus": [4, 35, 37, 39, 49, 51, 53, 57, 60, 61], "map": [4, 12, 14, 37, 39, 45, 55], "blink": [4, 8, 30, 37, 39], "mojom": [4, 42, 53], "requestcontexttyp": 4, "replac": [4, 12, 14, 17, 21, 30, 37, 42, 58], "requestdestin": 4, "alwai": [4, 14, 17, 21, 35, 37, 39, 47, 51, 59, 60, 61], "submiss": [4, 39], "necessarili": 4, "These": [4, 24, 30, 49], "refin": [4, 37], "net": [4, 25, 37], "coepframeresourceneedscoephead": 4, "coopsandboxediframecannotnavigatetocooppag": 4, "corpnotsameorigin": 4, "corpnotsameoriginafterdefaultedtosameoriginbycoep": 4, "corpnotsameoriginafterdefaultedtosameoriginbydip": 4, "corpnotsameoriginafterdefaultedtosameoriginbycoepanddip": 4, "corpnotsamesit": 4, "onli": [4, 8, 9, 10, 12, 14, 17, 19, 21, 24, 25, 27, 28, 30, 32, 33, 37, 39, 42, 43, 45, 47, 49, 50, 51, 53, 56, 57, 59], "extend": [4, 25, 37, 44], "some": [4, 12, 17, 25, 32, 37, 38, 44, 45, 49, 51, 53, 54, 57, 60], "futur": [4, 27, 37, 45], "heavyadblock": 4, "heavyadwarn": 4, "networktotallimit": 4, "cputotallimit": 4, "cpupeaklimit": 4, "either": [4, 14, 17, 21, 24, 25, 32, 37, 38, 39, 42, 43, 44, 45, 53, 58, 59], "warn": [4, 45, 47], "ad": [4, 10, 11, 12, 17, 18, 34, 37, 38, 39, 41, 42, 45, 49, 51, 55, 59], "cpu": [0, 4, 21, 43, 50], "peak": 4, "kinlineviol": 4, "kevalviol": 4, "kurlviol": 4, "ktrustedtypessinkviol": 4, "ktrustedtypespolicyviol": 4, "kwasmevalviol": 4, "transferissu": 4, "creationissu": 4, "aris": 4, "sab": 4, "transfer": [4, 39, 53], "cross": [4, 37, 38, 39, 45, 51], "rfc1918": 4, "enforc": 4, "permissionpolicydis": 4, "untrustworthyreportingorigin": 4, "insecurecontext": 4, "invalidhead": 4, "invalidregistertriggerhead": 4, "sourceandtriggerhead": 4, "sourceignor": 4, "triggerignor": 4, "ossourceignor": 4, "ostriggerignor": 4, "invalidregisterossourcehead": 4, "invalidregisterostriggerhead": 4, "webandoshead": 4, "noweborossupport": 4, "navigationregistrationwithouttransientuseractiv": 4, "invalidinfohead": 4, "noregistersourcehead": 4, "noregistertriggerhead": 4, "noregisterossourcehead": 4, "noregisterostriggerhead": 4, "useerrorcrossoriginnocorsrequest": 4, "useerrordictionaryloadfailur": 4, "useerrormatchingdictionarynotus": 4, "useerrorunexpectedcontentdictionaryhead": 4, "writeerrorcossoriginnocorsrequest": 4, "writeerrordisallowedbyset": 4, "writeerrorexpiredrespons": 4, "writeerrorfeaturedis": 4, "writeerrorinsufficientresourc": 4, "writeerrorinvalidmatchfield": 4, "writeerrorinvalidstructuredhead": 4, "writeerrornavigationrequest": 4, "writeerrornomatchfield": 4, "writeerrornonlistmatchdestfield": 4, "writeerrornonsecurecontext": 4, "writeerrornonstringidfield": 4, "writeerrornonstringinmatchdestlist": 4, "writeerrornonstringmatchfield": 4, "writeerrornontokentypefield": 4, "writeerrorrequestabort": 4, "writeerrorshuttingdown": 4, "writeerrortoolongidfield": 4, "writeerrorunsupportedtyp": 4, "around": [4, 30, 38, 53], "explain": [4, 39, 47], "github": [4, 8, 21, 24, 37, 39, 41, 42, 49, 54, 55, 60, 61], "com": [4, 17, 39, 41, 42, 44, 45, 51, 59, 60, 61], "wicg": [4, 21, 37, 39, 41, 42, 49], "quirk": 4, "limit": [0, 4, 14, 37, 49], "fals": [4, 8, 12, 14, 17, 18, 19, 27, 30, 37, 38, 39, 47, 49, 51, 55, 56, 57, 58, 59, 60, 62], "mean": [4, 11, 17, 25, 28, 30, 34, 37, 38, 39, 45, 47, 54], "crossoriginportalpostmessageerror": [], "formlabelfornameerror": 4, "formduplicateidforinputerror": 4, "forminputwithnolabelerror": 4, "formautocompleteattributeemptyerror": 4, "formemptyidandnameattributesforinputerror": 4, "formarialabelledbytononexistingid": 4, "forminputassignedautocompletevaluetoidornameattributeerror": 4, "formlabelhasneitherfornornestedinput": 4, "formlabelformatchesnonexistingiderror": 4, "forminputhaswrongbutwellintendedautocompletevalueerror": 4, "responsewasblockedbyorb": 4, "concret": [4, 60, 61], "errortyp": [4, 42], "aggreg": [4, 37, 39], "frontend": [4, 39], "deprec": [4, 11, 14, 17, 18, 19, 21, 27, 28, 37, 38, 39, 40, 45, 46, 47, 51, 53], "chromium": [4, 8, 21, 30, 35, 37, 39, 51, 56], "org": [4, 7, 8, 12, 17, 21, 26, 30, 37, 39, 44, 47, 51, 55], "main": [4, 7, 8, 30, 33, 37, 38, 39, 42, 48, 50, 51, 59, 60, 61], "third_parti": [4, 8, 30, 37, 39], "render": [4, 5, 8, 12, 17, 19, 21, 27, 30, 36, 37, 39, 54], "core": [4, 30, 37, 39, 58, 59], "readm": 4, "md": [4, 39, 42], "json5": [4, 39], "redirect": [4, 25, 37], "chain": [4, 12, 14, 45, 47], "tracker": [4, 49], "thei": [4, 6, 12, 35, 37, 44, 45, 55, 59], "don": [4, 43, 56, 60, 61], "t": [4, 14, 25, 30, 37, 38, 39, 42, 43, 45, 49, 56, 58, 59, 60, 61], "receiv": [4, 5, 7, 8, 12, 14, 17, 25, 35, 37, 39, 48, 49, 51, 57, 59], "user": [4, 8, 12, 15, 17, 21, 24, 30, 37, 38, 39, 42, 44, 45, 47, 55, 57, 59], "interact": [4, 10, 17, 24, 30, 44, 59, 60, 61], "note": [4, 8, 14, 17, 19, 21, 25, 27, 35, 36, 37, 39, 40, 41, 42, 44, 45, 47, 49, 53, 56, 57, 59], "etld": 4, "test": [4, 7, 17, 24, 38, 39, 55], "80": 4, "bounc": [4, 49], "would": [4, 19, 21, 24, 30, 37, 39, 41, 45, 53, 57, 59], "third": [4, 28], "parti": [4, 37, 55], "permit": [4, 22], "due": [4, 25, 37, 38, 39, 43, 45, 60, 61], "global": [4, 8, 14, 19, 39, 45, 49, 53], "web_pag": 4, "metatagallowlistinvalidorigin": 4, "metatagmodifiedhtml": 4, "feder": 4, "authent": [4, 25, 37, 55], "alongsid": 4, "requestidtokenstatu": 4, "devtool": [4, 8, 12, 32, 47, 49, 51, 57, 59], "inspector_issu": 4, "case": [4, 12, 14, 17, 27, 37, 39, 42, 45, 49, 57, 58, 59, 61], "shouldembargo": 4, "toomanyrequest": 4, "wellknownhttpnotfound": 4, "wellknownnorespons": 4, "wellknowninvalidrespons": 4, "wellknownlistempti": 4, "wellknowninvalidcontenttyp": 4, "confignotinwellknown": 4, "wellknowntoobig": 4, "confighttpnotfound": 4, "confignorespons": 4, "configinvalidrespons": 4, "configinvalidcontenttyp": 4, "clientmetadatahttpnotfound": 4, "clientmetadatanorespons": 4, "clientmetadatainvalidrespons": 4, "clientmetadatainvalidcontenttyp": 4, "idpnotpotentiallytrustworthi": 4, "disabledinset": 4, "disabledinflag": 4, "errorfetchingsignin": 4, "invalidsigninrespons": 4, "accountshttpnotfound": 4, "accountsnorespons": 4, "accountsinvalidrespons": 4, "accountslistempti": 4, "accountsinvalidcontenttyp": 4, "idtokenhttpnotfound": 4, "idtokennorespons": 4, "idtokeninvalidrespons": 4, "idtokenidperrorrespons": 4, "idtokencrosssiteidperrorrespons": 4, "idtokeninvalidrequest": 4, "idtokeninvalidcontenttyp": 4, "erroridtoken": 4, "rppagenotvis": 4, "silentmediationfailur": 4, "thirdpartycookiesblock": 4, "notsignedinwithidp": 4, "missingtransientuseractiv": 4, "replacedbybuttonmod": [], "invalidfieldsspecifi": 4, "relyingpartyoriginisopaqu": 4, "typenotmatch": 4, "getuserinfo": 4, "federatedauthuserinforequestresult": 4, "notsameorigin": 4, "notifram": 4, "notpotentiallytrustworthi": 4, "noapipermiss": 4, "noaccountsharingpermiss": 4, "invalidconfigorwellknown": 4, "invalidaccountsrespons": 4, "noreturninguserfromfetchedaccount": 4, "client": [4, 11, 12, 13, 14, 17, 19, 20, 21, 23, 25, 34, 36, 37, 38, 39, 42, 45, 47, 51, 55], "old": [4, 14, 17], "featur": [4, 6, 8, 12, 21, 37, 39, 50], "encourag": 4, "ones": [4, 14, 37, 42, 44], "guidanc": 4, "lateimportrul": 4, "requestfail": 4, "referenc": [4, 14, 45], "couldn": 4, "invalidsyntax": 4, "invalidinitialvalu": 4, "invalidinherit": 4, "invalidnam": 4, "lead": [4, 59], "discard": [4, 17, 28, 32, 45], "pars": [4, 12, 14, 17, 37, 39], "one": [4, 9, 12, 14, 17, 21, 24, 25, 27, 28, 29, 30, 33, 35, 37, 39, 44, 45, 47, 51, 53, 55, 59, 60, 61], "kind": [4, 12], "cookieissu": 4, "mixedcontentissu": 4, "blockedbyresponseissu": 4, "heavyadissu": 4, "contentsecuritypolicyissu": 4, "sharedarraybufferissu": 4, "lowtextcontrastissu": 4, "corsissu": 4, "attributionreportingissu": 4, "quirksmodeissu": 4, "navigatoruseragentissu": 4, "genericissu": 4, "deprecationissu": 4, "clienthintissu": 4, "federatedauthrequestissu": 4, "bouncetrackingissu": 4, "cookiedeprecationmetadataissu": 4, "stylesheetloadingissu": 4, "federatedauthuserinforequestissu": 4, "propertyruleissu": 4, "shareddictionaryissu": 4, "struct": [4, 49], "hold": [4, 12, 14, 17, 28, 37, 39, 43, 53, 57], "pleas": [4, 37, 38, 39, 59], "add": [4, 38, 45, 49, 51, 55, 58, 59], "entiti": [4, 50], "etc": [4, 5, 14, 17, 21, 30, 35, 36, 37, 39, 45, 50, 58], "refer": [4, 14, 17, 19, 28, 30, 39, 45, 56, 59], "report_aaa": 4, "contrast": [4, 14, 38], "wcag": 4, "prevent": [4, 11, 13, 20, 21, 30, 34, 37, 39, 43, 45, 59], "further": [4, 11, 14, 34, 45, 60, 61], "far": [4, 11, 34, 37], "encod": [4, 7, 8, 9, 14, 19, 25, 27, 32, 33, 36, 37, 39, 50, 53, 55], "size_onli": 4, "were": [4, 5, 12, 17, 28, 30, 32, 37, 45, 48, 49, 53], "re": [4, 17, 35, 45, 59, 60, 61], "tupl": [4, 8, 9, 12, 13, 14, 17, 19, 25, 27, 29, 32, 33, 36, 37, 39, 43, 44, 45, 49, 50, 53, 57, 58, 59], "base64": [4, 7, 8, 9, 14, 25, 27, 32, 33, 37, 39, 53, 55], "sizeonli": 4, "pass": [4, 6, 7, 8, 9, 12, 14, 17, 19, 25, 26, 27, 28, 33, 35, 37, 39, 41, 43, 51, 53, 55], "over": [4, 7, 8, 9, 14, 25, 27, 30, 33, 37, 38, 39, 47, 51, 53, 55], "originals": 4, "encodeds": 4, "16": [5, 19, 27, 30], "digit": [5, 39], "credit": 5, "card": [5, 39], "owner": [5, 12, 17, 19, 38], "month": [5, 60, 61], "4": [5, 24, 30, 39, 50, 57], "year": [5, 60, 61], "3": [5, 14, 17, 18, 19, 21, 27, 37, 38, 39, 40, 47, 51, 60, 61], "verif": [5, 55, 60, 61], "jon": 5, "how": [5, 25, 33, 37, 53, 59], "like": [5, 14, 25, 37, 43, 45, 57, 58, 59, 60, 61], "ui": [5, 35, 45, 47, 55], "two": [5, 24, 37, 54], "dimension": 5, "inner": 5, "surfac": [5, 10, 39], "give_nam": 5, "citi": 5, "munich": 5, "zip": 5, "81456": 5, "dimens": [5, 21, 39, 50], "represent": [5, 12, 25, 35, 37, 45], "heurist": [5, 39], "autocompleteattribut": 5, "autofillinf": 5, "actual": [5, 8, 12, 14, 17, 37, 39, 47, 49, 56, 59, 60, 61], "strategi": 5, "belong": [5, 6, 12, 17, 39, 45, 51], "develop": [5, 7, 26, 37, 42], "verifi": [5, 24], "implement": [5, 12, 17, 35, 45, 60, 61], "fieldid": 5, "cannot": [5, 8, 14, 37, 38, 44, 45], "serv": [5, 37, 39, 45], "anchor": [5, 17, 19, 33, 39], "out": [5, 14, 21, 30, 39, 42, 45, 51, 58, 60, 61], "emit": [5, 8, 30, 37, 39, 42], "2d": 5, "independ": [6, 38, 39], "share": [6, 19, 39, 42, 49], "backgroundfetch": [6, 8, 56], "backgroundsync": [6, 8, 56], "pushmessag": 6, "paymenthandl": [6, 8, 56], "periodicbackgroundsync": [6, 8, 56], "pair": [6, 17, 19, 25, 37, 49, 58], "along": [6, 21, 25, 30, 33, 37, 39, 45, 49], "second": [6, 9, 12, 27, 28, 30, 33, 37, 39, 41, 42, 43, 49, 50, 54, 56, 57, 59, 60, 61], "group": [6, 14, 17, 28, 37, 39, 45, 47, 49], "togeth": [6, 19, 45], "store": [6, 7, 9, 29, 30, 37, 49, 53, 55, 57], "should_record": 6, "record": [6, 9, 12, 28, 29, 37, 41, 43, 49, 53, 57], "afterward": 6, "manag": [0, 8, 23, 39], "window": [8, 12, 21, 30, 38, 39, 42, 44, 50, 51, 56, 59], "edg": 8, "screen": [8, 21, 38, 39, 56, 59], "accessibilityev": [8, 56], "audiocaptur": [8, 56], "capturedsurfacecontrol": 8, "clipboardreadwrit": [8, 56], "clipboardsanitizedwrit": [8, 56], "displaycaptur": [8, 56], "durablestorag": [8, 56], "idledetect": [8, 56], "localfont": [8, 56], "midisysex": [8, 56], "protectedmediaidentifi": [8, 56], "storageaccess": [8, 37, 56], "speakerselect": 8, "toplevelstorageaccess": [8, 37, 56], "videocaptur": [8, 56], "videocapturepantiltzoom": [8, 56], "wakelockscreen": [8, 56], "wakelocksystem": [8, 56], "windowmanag": [8, 56], "definit": [8, 39, 44, 57], "permiss": [8, 39, 56], "w3c": [8, 21, 39, 41, 55], "permission_descriptor": 8, "idl": [8, 21, 37, 39, 41, 59], "push": [8, 12, 17, 37], "uservisibleonli": 8, "clipboard": [8, 39], "allowwithoutsanit": 8, "allowwithoutgestur": 8, "pantiltzoom": 8, "executebrowsercommand": 8, "opentabsearch": 8, "closetabsearch": 8, "minimum": [8, 12, 21, 33, 37, 39, 50], "inclus": [8, 12], "exclus": [8, 12, 14, 25, 45, 51], "sum": 8, "privaci": 8, "sandbox": [8, 37, 56, 58], "enrol": 8, "browsercontext": [8, 51], "gracefulli": 8, "thread": [8, 33, 39, 50], "gpu": [8, 50], "process": [8, 21, 30, 36, 37, 38, 39, 44, 45, 47, 50, 56, 60, 61], "command_id": 8, "invok": [8, 22, 49], "telemetri": [8, 21], "switch": [8, 21], "commandlin": [8, 50], "delta": [8, 30, 43], "last": [8, 12, 14, 17, 28, 32, 33, 36, 39, 43, 48, 49, 58], "substr": [8, 9, 18, 19], "extract": [8, 39], "empti": [8, 9, 10, 12, 14, 21, 25, 29, 30, 37, 38, 39, 41, 45, 47, 50, 51, 55, 58], "absent": [0, 7, 8, 12, 17, 25, 33, 37], "protocolvers": 8, "product": 8, "userag": 8, "agent": [8, 12, 17, 19, 21, 32, 35, 37, 45, 53], "jsversion": 8, "v8": [8, 14, 36, 45], "window_id": 8, "restor": [8, 21, 30, 35, 39], "part": [8, 25, 37, 39, 51, 60, 61], "given": [8, 12, 14, 17, 18, 19, 21, 23, 25, 28, 29, 30, 33, 37, 38, 39, 44, 45, 49, 50, 51, 55, 56, 57, 58, 59], "reject": [8, 24, 45], "overrid": [8, 14, 16, 21, 25, 35, 37, 39, 41, 44, 45, 47, 49, 55], "reset": [8, 21, 24, 39, 43, 44, 49, 55], "badge_label": 8, "dock": 8, "tile": [8, 33], "png": [8, 27, 39, 57, 59], "behavior": [8, 14, 25, 30, 37, 39], "download_path": [8, 39], "events_en": 8, "otherwis": [8, 14, 21, 25, 27, 37, 39, 49, 50, 53, 55, 57, 58], "allowandnam": 8, "accord": [8, 17, 19, 39, 44, 49], "descriptor": [8, 12, 38, 45], "combin": 8, "unspecifi": [8, 37], "unchang": 8, "fire": [8, 10, 12, 14, 17, 21, 25, 31, 37, 38, 39, 42, 47, 56, 57, 59], "begin": [8, 12, 14, 19, 25, 37, 39], "suggest": [8, 37, 39, 47], "disk": [8, 37, 39], "byte": [7, 8, 14, 26, 28, 32, 36, 37, 39, 45, 49, 55], "opaquerespons": 9, "opaqueredirect": 9, "epoch": [9, 37, 41, 45], "opaqu": [9, 37, 55], "delet": [9, 29, 37, 39, 45, 49, 51, 55], "spec": [9, 39, 49, 54, 55], "At": [9, 29], "least": [9, 29, 30, 53], "securityorigin": [9, 29], "storagekei": [9, 29, 49], "skip_count": [9, 29], "page_s": [9, 29], "path_filt": 9, "skip": [9, 14, 17, 29, 59], "present": [9, 10, 12, 14, 17, 19, 25, 33, 37, 39, 41, 49, 51, 55, 58], "cachedataentri": 9, "returncount": 9, "pathfilt": 9, "There": [7, 9, 12, 16, 18, 19, 22, 23, 26, 27, 29, 31, 32, 36, 44, 46, 47, 50, 52], "describ": [7, 10, 14, 17, 21, 28, 30, 45, 47, 50], "observ": [10, 21, 25, 37], "presentation_url": 10, "compat": [10, 14, 17], "presentationurl": 10, "well": [10, 17, 19, 51, 57, 59, 60, 61], "remov": [10, 12, 14, 17, 18, 22, 23, 27, 35, 37, 39, 45, 49, 55, 57, 58], "sink_nam": 10, "choos": [10, 53], "via": [10, 12, 14, 17, 19, 21, 28, 30, 37, 39, 42, 44, 45, 51, 53, 60, 61], "sdk": 10, "desktop": 10, "whenev": [10, 12, 35, 37, 59], "softwar": 10, "outstand": 10, "issuemessag": 10, "sever": [11, 14, 17, 34, 47], "noth": [11, 21, 58, 59], "expos": [12, 14, 17, 28, 37, 41, 45, 53], "write": [12, 17, 39], "subsequ": [12, 14, 25, 51], "structur": [12, 17, 39, 42], "interchang": 12, "fornod": 12, "keep": [12, 17, 35, 53, 56, 59, 60, 61], "getstylesheet": 12, "pseudo": [12, 17, 19], "ident": [12, 33, 37, 39, 44], "delimit": 12, "comma": [12, 49], "underli": [12, 37], "draft": [12, 37], "csswg": 12, "compon": [12, 17, 26, 37, 58], "metainform": 12, "construct": [12, 54], "cssstylesheet": 12, "non": [12, 14, 17, 25, 36, 38, 39, 41, 45, 49, 51, 53], "denot": [12, 14], "parser": [12, 17, 37], "written": 12, "mutabl": 12, "becom": [12, 17, 29, 33, 37, 57], "modifi": [12, 14, 17, 18, 20, 25, 30, 37, 39, 48, 49, 57], "cssom": 12, "them": [12, 17, 21, 25, 35, 39, 45, 49, 51, 56, 57], "immedi": [12, 17, 21, 39, 43, 44, 45, 49, 55], "creation": [12, 14, 17, 37, 39, 45, 51], "through": [12, 14, 22, 35, 42, 51, 55, 57], "zero": [12, 25, 37, 53, 55], "charact": [12, 19, 25, 37], "sourceurl": [12, 14], "come": [12, 21, 30, 42, 45, 58], "comment": [12, 25, 44], "sheet": 12, "declar": [12, 45, 53, 57], "came": 12, "sort": [12, 14], "distanc": [12, 30, 38], "involv": [12, 49], "innermost": 12, "go": [12, 35, 39, 59, 60, 61], "outward": 12, "cascad": 12, "hierarchi": [12, 39, 56], "dure": [12, 14, 27, 37, 39, 42, 45, 49, 59], "mediarul": 12, "supportsrul": 12, "containerrul": 12, "layerrul": 12, "scoperul": 12, "stylerul": 12, "coverag": [12, 43], "shorthand": 12, "annot": 12, "impli": [12, 39, 45], "enclos": 12, "understood": [12, 37], "longhand": 12, "importrul": 12, "linkedsheet": 12, "inlinesheet": 12, "satisfi": 12, "physic": [12, 17, 21, 30, 37], "logic": [12, 14, 17], "determin": [12, 19, 25, 28, 37, 38, 39, 41, 45, 51], "sub": [12, 17, 39, 49, 50], "amount": [12, 49, 59], "glyph": 12, "famili": [12, 39], "postscript": 12, "variat": 12, "variabl": [12, 14, 45], "k": [12, 54, 58, 60, 61], "human": [12, 45], "readabl": [12, 45], "languag": [12, 14, 19, 21, 37, 60], "en": [12, 26, 58, 60], "www": [12, 17, 37, 39, 44, 47, 59, 60, 61], "w3": [12, 17, 37, 47], "tr": [12, 17, 37, 47], "2008": 12, "rec": 12, "css2": 12, "20080411": 12, "platformfontfamili": 12, "fontvariationax": 12, "variant": [12, 14, 59], "weight": 12, "stretch": 12, "unicod": 12, "try": [12, 14, 59], "fallback": [12, 37], "prelud": 12, "dash": [12, 38], "registerproperti": 12, "palett": 12, "mutat": [12, 14], "rule_text": 12, "node_for_property_syntax_valid": 12, "insert": [12, 17, 29, 30, 58], "ruletext": 12, "regist": [12, 39, 44, 49, 54], "static": [12, 37, 60, 61], "produc": [12, 21, 25, 32, 39, 41, 45], "incorrect": 12, "var": 12, "newli": [12, 45], "special": 12, "assum": [12, 14, 37, 39, 51], "forced_pseudo_class": 12, "ensur": [12, 59], "backgroundcolor": 12, "behind": 12, "undefin": [12, 17, 25, 45], "flat": [12, 17, 51], "simpli": 12, "gradient": 12, "anyth": [12, 45], "complic": 12, "had": [12, 19, 25, 37, 42], "computedfonts": 12, "12px": 12, "computedfontweight": 12, "explicitli": [12, 45, 53], "implicitli": [12, 17], "inlinestyl": 12, "attributesstyl": 12, "20": [12, 51], "engin": [12, 37], "getlayersfornod": 12, "nearest": [12, 17, 33], "shadow": [12, 17, 18, 19, 39], "selector_text": 12, "getlocationforselector": 12, "matchedcssrul": 12, "pseudoel": 12, "inheritedpseudoel": 12, "parentlayoutnodeid": 12, "textnod": 12, "statist": [12, 28, 43], "emploi": 12, "textual": [12, 25], "modif": [12, 17, 37], "takecoveragedelta": 12, "instrument": [12, 14, 18, 22, 37], "poll": [12, 43], "batch": [12, 17, 35], "obtain": [12, 19, 32, 37], "becam": 12, "monoton": [12, 37, 41, 43], "properties_to_track": 12, "takecomputedstyleupd": 12, "occur": [12, 22, 30, 32, 37, 42, 47, 49, 51, 54, 60, 61], "successfulli": [12, 17, 27, 52], "consid": [12, 14, 37, 51, 59], "metainfo": 12, "now": [13, 14, 17, 20, 21, 35, 37, 39, 47, 60, 61], "deliv": [13, 20, 21, 35, 37, 39, 53], "database_id": 13, "columnnam": 13, "sqlerror": 13, "debug": [14, 18, 23, 31, 37, 38, 51, 55, 59], "capabl": [14, 39, 50], "breakpoint": [14, 18, 22, 45], "execut": [14, 17, 18, 21, 36, 37, 39, 40, 43, 45], "explor": 14, "virtual": [7, 14, 21, 30, 55], "machin": [14, 50], "favor": [14, 28, 39, 45], "vm": 14, "restart": 14, "here": [14, 37, 45, 57, 60], "guarante": [14, 37, 39, 44, 45, 59], "restartfram": 14, "veri": [14, 33, 57, 59], "rest": [14, 17, 60, 61], "artifici": [14, 28], "transient": 14, "search": [14, 17, 37, 39, 59], "disassembl": 14, "bytecod": 14, "webassembli": 14, "wasm": 14, "extern": [7, 14, 39, 42], "target_call_fram": 14, "reach": [14, 54], "streamid": 14, "larg": [14, 28, 49, 55], "disassembli": 14, "totalnumberoflin": 14, "functionbodyoffset": 14, "format": [14, 17, 27, 38, 39, 50, 53, 55, 57, 59], "start1": 14, "end1": 14, "start2": 14, "end2": 14, "max_scripts_cache_s": 14, "heap": [14, 28, 36, 45], "put": 14, "object_group": [14, 17, 28, 45], "include_command_line_api": [14, 39, 45], "silent": [14, 45], "return_by_valu": [14, 45, 57, 59], "generate_preview": [14, 45], "throw_on_side_effect": [14, 45], "rapid": 14, "handl": [14, 25, 30, 32, 37, 38, 39, 44, 45, 47, 53, 56, 59, 60, 61], "releaseobjectgroup": 14, "thrown": [14, 39, 45], "setpauseonexcept": [14, 45], "throw": [14, 45], "side": [14, 27, 30, 45], "effect": [14, 27, 38, 45, 49, 51, 57], "termin": [14, 31, 36, 45, 51], "restrict_to_funct": 14, "nest": [14, 26, 45], "scriptsourc": 14, "stack_trace_id": 14, "getscriptsourc": 14, "stream_id": 14, "statement": 14, "parent_stack_trace_id": 14, "async": [14, 37, 45, 56, 57, 59, 60, 61], "schedul": [14, 21, 39, 49], "immediatli": 14, "To": [14, 21, 37, 57], "ward": 14, "miss": [14, 17, 21, 39], "variou": [7, 14, 38], "stepinto": 14, "asyncstacktrac": 14, "asyncstacktraceid": 14, "terminate_on_resum": 14, "upon": [14, 17, 18, 21, 32, 34, 37, 38, 39, 59], "terminateexecut": 14, "case_sensit": [14, 37, 39], "is_regex": [14, 37, 39], "sensit": [14, 28, 37, 39], "treat": [14, 37, 39, 45, 57], "regex": [14, 37, 39], "previou": [12, 14, 17, 21, 30, 41, 51], "blackbox": 14, "final": [14, 19, 30, 42, 49], "resort": 14, "unsuccess": 14, "regexp": 14, "blacklist": 14, "interv": [14, 27, 28, 36, 43, 53, 54], "isn": [14, 37, 42, 45, 59], "actualloc": 14, "url_regex": 14, "script_hash": 14, "surviv": [14, 39, 45], "urlregex": 14, "hash": [14, 37], "deactiv": 14, "uncaught": 14, "caught": 14, "break": 14, "script_sourc": [14, 39], "dry_run": 14, "allow_top_frame_edit": 14, "automat": [14, 21, 45, 51, 59, 60], "dry": 14, "long": [14, 28, 29, 37, 60, 61], "happen": [14, 17, 24, 25, 33, 38, 39, 45, 49, 51, 57, 59], "stackchang": 14, "ok": 14, "compileerror": 14, "interrupt": [0, 14, 54], "scope_numb": 14, "variable_nam": 14, "manual": [14, 38, 39, 59], "closur": 14, "catch": 14, "break_on_async_cal": 14, "skip_list": 14, "task": [14, 21, 59], "skiplist": 14, "criteria": 14, "auxiliari": [14, 45], "hit": [14, 17, 22, 37, 38], "never": [14, 17, 60, 61], "sha": 14, "256": [14, 55], "embedd": [14, 39, 43, 45, 55], "isdefault": [14, 45], "es6": 14, "section": [14, 37, 59], "suppli": [14, 25], "uncollect": 14, "open": [15, 17, 29, 39, 44, 45, 51, 56, 59, 60, 61], "respond": [15, 19, 25], "selectprompt": 15, "cancelprompt": 15, "overridden": [16, 21, 25, 37, 39, 47, 49], "alpha": [16, 17, 39], "beta": [16, 39], "gamma": [16, 39], "mock": [16, 21, 37, 39], "twice": 17, "friendli": [17, 39, 45], "nodenam": [17, 19], "letter": 17, "spell": 17, "grammar": 17, "thumb": 17, "button": [17, 24, 30, 57, 59, 60, 61], "piec": 17, "corner": [17, 58, 59], "quirksmod": 17, "limitedquirksmod": 17, "noquirksmod": 17, "containerselector": 17, "term": [17, 39], "awar": 17, "localnam": 17, "nodevalu": [17, 19], "name1": 17, "value1": 17, "name2": 17, "value2": 17, "frameown": [17, 19], "documenttyp": [17, 19], "publicid": [17, 19], "systemid": [17, 19], "internalsubset": 17, "xml": 17, "fragment": [17, 28, 33, 37, 39], "templat": [17, 19, 39], "crbug": [17, 39, 42, 44, 45, 51], "937746": 17, "htmlimport": 17, "distribut": [17, 28, 38], "svg": 17, "red": [17, 57], "255": 17, "green": 17, "blue": 17, "clock": [17, 53], "wise": 17, "outsid": [17, 38, 60, 61], "coordin": [17, 19, 30, 33, 38, 57], "target_node_id": 17, "insert_before_node_id": 17, "deep": [17, 37, 45], "place": [17, 49], "drop": [17, 30, 36, 37], "targetnodeid": 17, "clone": 17, "pierc": [17, 18], "larger": [17, 18], "travers": [17, 18], "search_id": 17, "getsearchresult": 17, "include_whitespac": 17, "whitespac": [17, 58], "anchor_specifi": 17, "interleav": 17, "container_nam": 17, "containernam": 17, "null": [17, 35, 38, 42, 54], "might": [17, 19, 35, 37, 38, 45, 57, 59], "multipl": [17, 28, 29, 35, 37, 38, 42, 45, 49, 51, 57, 59], "caller": [17, 24], "certain": [17, 43, 59], "design": [17, 27], "capturesnapshot": [17, 19], "include_user_agent_shadow_dom": 17, "ignore_pointer_events_non": 17, "ua": [17, 19, 21, 37, 39], "pointer": [17, 30], "As": 17, "computed_styl": [17, 19], "outer": [17, 37, 45], "relayout": 17, "from_index": 17, "to_index": 17, "fromindex": 17, "toindex": 17, "therefor": [17, 57, 59], "hide": [17, 38], "undoabl": 17, "move": [17, 30, 35, 57], "cancelsearch": 17, "plain": 17, "xpath": 17, "searchid": 17, "resultcount": 17, "fixm": 17, "proprietari": 17, "queryselector": [17, 57], "queryselectoral": [17, 57, 59], "undon": 17, "down": [17, 57, 59], "seri": [17, 25, 53], "alreadi": [7, 17, 37, 49, 57], "exactli": [17, 25, 37, 45], "objectid": [17, 38, 45], "center": 17, "similar": [17, 23, 44, 51, 59], "scrollintoview": 17, "Will": [17, 45, 50], "deriv": [17, 44], "captur": [17, 27, 33, 38, 39, 45, 57, 59], "getnodestacktrac": 17, "outer_html": 17, "ttribut": 17, "domcharacterdatamodifi": 17, "domnodeinsert": 17, "domnoderemov": 17, "want": [17, 33, 57, 59, 60, 61], "popul": [17, 37, 45], "trustedtyp": [18, 59], "polici": [18, 21, 37, 39, 45], "usecaptur": 18, "setdombreakpoint": 18, "target_nam": 18, "eventtarget": 18, "facilit": 19, "snapshot": [19, 28, 33, 39], "textarea": 19, "radio": 19, "checkbox": 19, "getsnapshot": 19, "natur": [19, 57], "srcset": 19, "post": [19, 25, 37], "regard": 19, "stabl": 19, "textbox": 19, "surrog": 19, "utf": [19, 37], "layoutobject": 19, "layouttext": 19, "paint": [19, 33, 38, 39, 41], "includepaintord": 19, "whitelist": 19, "tabl": 19, "rare": 19, "flatten": [19, 51], "absolut": [19, 21, 23, 38, 49, 59], "includedomrect": 19, "blend": 19, "overlap": 19, "opac": 19, "include_paint_ord": 19, "include_dom_rect": 19, "include_blended_background_color": 19, "include_text_color_opac": 19, "white": 19, "offsetrect": 19, "clientrect": 19, "achiev": 19, "computed_style_whitelist": 19, "include_event_listen": 19, "include_user_agent_shadow_tre": 19, "cachedstoragearea": 20, "environ": [21, 45], "area": [21, 23, 30, 38, 39, 42], "split": 21, "postur": 21, "pauseifnetworkfetchespend": 21, "sec": [21, 37, 41], "ch": [21, 37, 39], "ambient": [21, 39], "linear": 21, "acceler": [21, 30, 50], "tell": [21, 37, 45], "setdevicemetricsoverrid": 21, "setdevicepostureoverrid": 21, "again": [21, 35, 44, 57, 59, 60, 61], "factor": [21, 30, 39, 47], "dark": [21, 38], "theme": [21, 38], "throttl": [12, 21, 37], "slow": 21, "slowdown": 21, "2x": 21, "device_scale_factor": [21, 39], "screen_width": [21, 39], "screen_height": [21, 39], "position_x": [21, 39], "position_i": [21, 39], "dont_set_visible_s": [21, 39], "screen_orient": [21, 39], "display_featur": 21, "device_postur": 21, "innerwidth": [21, 39], "innerheight": [21, 39], "10000000": [21, 39], "autos": [21, 39], "reli": [21, 39, 55], "setvisibles": [21, 39], "multi": [21, 45], "segment": 21, "off": [7, 21, 51, 60, 61], "foldabl": 21, "coooki": 21, "gestur": [21, 30, 37, 39], "vision": 21, "defici": 21, "effort": 21, "physiolog": 21, "accur": [21, 43], "medic": 21, "recogn": 21, "simul": [7, 21, 36], "latitud": [21, 39], "longitud": [21, 39], "accuraci": [21, 39], "unavail": [21, 39], "hardware_concurr": 21, "hardwar": [21, 54], "concurr": 21, "is_user_act": 21, "is_screen_unlock": 21, "isuseract": 21, "isscreenunlock": 21, "icu": 21, "en_u": 21, "rather": [21, 33, 39, 56], "real": [21, 54, 55], "attempt": [21, 37, 42, 59], "setsensoroverrideen": 21, "timezone_id": 21, "timezon": 21, "dep": 21, "git": 21, "faee8bc70570192d82d2978a71e2a615788597d1": 21, "misc": 21, "metazon": 21, "txt": 21, "max_touch_point": 21, "accept_languag": [21, 37], "user_agent_metadata": [21, 37], "useragentdata": [21, 37], "budget": [0, 21, 49], "max_virtual_time_task_starvation_count": 21, "initial_virtual_tim": 21, "synthet": 21, "mani": [21, 33, 37, 57, 58, 59], "elaps": 21, "deadlock": 21, "Not": [21, 26, 30, 37, 39], "android": 21, "dip": [21, 30, 37, 38, 39, 51], "similarli": [22, 25], "pipe": 23, "unpack": [23, 60, 61], "filesystem": [0, 1, 23], "cli": 23, "dialog": [24, 25, 37, 39], "ever": [24, 57, 59], "rp": 24, "signin": 24, "signup": 24, "accountchoos": 24, "autoreauthn": 24, "confirmidplogin": 24, "confirmidplogincontinu": 24, "errorgotit": 24, "errormoredetail": 24, "termsofservic": 24, "privacypolici": 24, "identityrequestaccount": 24, "dialog_button": 24, "trigger_cooldown": 24, "disable_rejection_delai": 24, "promis": [24, 37, 45], "unimport": 24, "fedidcg": 24, "account_index": 24, "account_url_typ": 24, "cooldown": 24, "show": [24, 28, 38, 39, 45, 59, 60, 61], "recent": [24, 59], "dismiss": [24, 39], "primarili": 24, "appropri": [24, 30, 49], "below": [24, 39, 45], "let": [25, 35, 45, 59, 60, 61], "substitut": 25, "stage": [25, 27, 37], "intercept": [25, 37, 39, 55], "wildcard": [25, 37], "escap": [25, 37], "backslash": [25, 37], "equival": [25, 37, 55, 59], "author": [25, 37], "challeng": [25, 37], "401": [25, 37], "407": [25, 37], "digest": [25, 37], "decis": [25, 37], "defer": [25, 37, 39], "popup": [25, 37], "possibli": [25, 37], "providecredenti": [25, 37], "intercept_respons": 25, "hop": 25, "response_phras": 25, "binary_response_head": 25, "responsecod": 25, "phrase": [25, 47], "separ": [25, 35, 37, 38, 47, 49], "prefer": [25, 30, 39, 44, 59], "abov": [25, 39, 59], "unless": [25, 45, 59], "utf8": 25, "transmit": [25, 37], "auth_challenge_respons": [25, 37], "handle_auth_request": 25, "failrequest": [25, 37], "fulfillrequest": [25, 37], "continuerequest": [25, 37], "continuewithauth": 25, "fetchrequest": 25, "error_reason": [25, 37], "server": [25, 37, 39, 48, 49, 51], "mutual": [25, 45], "takeresponsebodyforinterceptionasstream": 25, "_redirect": 25, "received_": 25, "differenti": 25, "presenc": [25, 49, 55], "base64encod": [25, 32, 37, 39], "headersreceiv": [25, 37], "sequenti": [25, 32, 37, 51], "getresponsebodi": 25, "responseerrorreason": 25, "responsestatuscod": 25, "distinguish": [25, 37, 43], "301": 25, "302": 25, "303": 25, "307": 25, "308": 25, "redirectedrequestid": 25, "networkid": 25, "handleauthrequest": 25, "encount": [25, 37, 39], "headless": [27, 51, 56, 58, 59, 60], "compress": [27, 37, 39, 53], "speed": [27, 30, 39, 60, 61], "frame_time_tick": 27, "no_display_upd": 27, "beginfram": [27, 51], "beginframecontrol": 27, "compositor": 27, "draw": [27, 38], "goo": 27, "gle": 27, "timetick": 27, "uptim": 27, "60": 27, "666": 27, "commit": [27, 30, 39], "drawn": 27, "onto": 27, "visual": [27, 39, 60, 61], "hasdamag": 27, "damag": 27, "thu": [27, 37, 59], "diagnost": 27, "screenshotdata": 27, "taken": [27, 28, 43], "rtype": [27, 39, 57, 59], "callsit": [28, 43], "alloc": [28, 36, 45], "across": [28, 36, 45, 50], "startsampl": [28, 36], "stopsampl": 28, "heap_object_id": 28, "sampling_interv": [28, 36], "include_objects_collected_by_major_gc": 28, "include_objects_collected_by_minor_gc": 28, "averag": [28, 36], "poisson": 28, "32768": 28, "By": 28, "still": [28, 37, 39, 42, 59], "aliv": 28, "getsamplingprofil": 28, "steadi": 28, "instruct": 28, "major": [28, 30], "gc": 28, "temporari": [28, 32, 37], "minor": 28, "tune": 28, "latenc": [28, 37], "track_alloc": 28, "report_progress": 28, "treat_global_objects_as_root": 28, "capture_numeric_valu": 28, "expose_intern": 28, "exposeintern": 28, "numer": [28, 35, 50], "triplet": 28, "regularli": 28, "seen": 28, "unsign": 29, "increment": [29, 41, 55], "primari": [29, 49, 50], "key_rang": 29, "entriescount": 29, "keygeneratorvalu": 29, "autoincr": 29, "index_nam": 29, "objectstoredataentri": 29, "hasmor": 29, "proce": [30, 32], "toward": 30, "bottom": [30, 39], "radiu": 30, "rotat": 30, "tangenti": 30, "pressur": [21, 30, 36, 39], "plane": 30, "stylu": 30, "degre": 30, "90": 30, "tiltx": 30, "tilti": 30, "clockwis": 30, "pen": 30, "359": 30, "utc": [30, 37], "januari": [30, 37, 60, 61], "1970": [30, 37], "mime": 30, "drag": [30, 57], "mimetyp": [30, 37, 39, 44], "uri": [30, 37], "filenam": [30, 57, 59], "dispatch": 30, "alt": [30, 57], "ctrl": [30, 57], "shift": [30, 33, 38, 39, 41, 57], "8": [30, 37, 39, 55, 57, 60, 61], "unmodified_text": 30, "key_identifi": 30, "windows_virtual_key_cod": 30, "native_virtual_key_cod": 30, "auto_repeat": 30, "is_keypad": 30, "is_system_kei": 30, "keyboard": [30, 39], "keyup": 30, "rawkeydown": 30, "u": [26, 30, 35, 38, 58, 59, 60], "0041": 30, "keya": 30, "altgr": 30, "keypad": 30, "selectal": 30, "execcommand": 30, "nsstandardkeybindingrespond": 30, "editor_command_nam": 30, "h": [30, 35, 37, 53], "click_count": 30, "delta_x": 30, "delta_i": 30, "pointer_typ": 30, "wheel": 30, "touch_point": 30, "touchend": 30, "touchcancel": 30, "touchstart": 30, "touchmov": 30, "per": [30, 33, 35, 37, 39, 45, 47, 49, 50, 51, 60, 61], "compar": [30, 45, 59], "sequenc": [30, 53, 55], "selection_start": 30, "selection_end": 30, "replacement_start": 30, "replacement_end": 30, "im": 30, "imecommitcomposit": 30, "imesetcomposit": 30, "composit": [30, 33], "doesn": [30, 38, 49], "emoji": 30, "directli": [26, 30, 57, 58], "dispatchdragev": 30, "scale_factor": 30, "relative_spe": 30, "gesture_source_typ": 30, "synthes": [30, 53], "pinch": 30, "period": 30, "800": 30, "x_distanc": 30, "y_distanc": 30, "x_overscrol": 30, "y_overscrol": 30, "prevent_fl": 30, "repeat_count": 30, "repeat_delay_m": 30, "interaction_marker_nam": 30, "fling": 30, "swipe": 30, "250": 30, "tap_count": 30, "tap": 30, "touchdown": 30, "touchup": 30, "m": [30, 37], "50": [30, 57, 59], "doubl": [30, 57], "setinterceptdrag": 30, "output": [32, 54, 62], "blob": [32, 39, 42, 55], "eof": 32, "itself": [33, 37, 45, 57], "sticki": 33, "constraint": 33, "purpos": [33, 37, 55], "matrix": 33, "compositingreason": 33, "compositingreasonid": 33, "inspect": [33, 35, 38, 39, 45, 51, 54], "compos": [33, 59], "snapshot_id": 33, "min_repeat_count": 33, "min_dur": 33, "clip_rect": 33, "replai": [33, 37], "from_step": 33, "to_step": 33, "bitmap": 33, "till": 33, "canva": 33, "medialogrecord": 35, "kmessag": 35, "sync": [0, 23, 35, 39, 53], "medialogmessagelevel": 35, "thing": [35, 59], "dvlog": 35, "pipelinestatu": 35, "soon": [35, 53], "howev": [35, 37, 57, 59], "awai": 35, "introduc": 35, "hopefulli": 35, "kmediapropertychang": 35, "kmediaeventtrigg": 35, "kmediaerror": 35, "pipelinestatuscod": 35, "pipeline_statu": 35, "potenti": [35, 37, 39, 49], "ie": [35, 59], "decodererror": 35, "windowserror": 35, "extra": [35, 37, 39, 56], "hresult": 35, "codec": [35, 50], "propvalu": 35, "congest": 35, "chronolog": 35, "decim": 36, "hexadecim": 36, "0x": 36, "prefix": 36, "oomintervent": 36, "purg": 36, "startup": 36, "jseventlisten": 36, "suppress": [36, 49], "suppress_random": 36, "random": [36, 60, 61], "perceiv": 37, "texttrack": 37, "signedexchang": 37, "cspviolationreport": 37, "loader": [37, 39], "timedout": 37, "accessdeni": 37, "connectionclos": 37, "connectionreset": 37, "connectionrefus": 37, "connectionabort": 37, "connectionfail": 37, "namenotresolv": 37, "internetdisconnect": 37, "addressunreach": 37, "blockedbycli": [37, 42], "blockedbyrespons": 37, "arbitrari": 37, "past": [37, 60, 61], "supposedli": 37, "samesit": 37, "tool": 37, "ietf": 37, "west": 37, "00": 37, "legaci": [37, 53], "abil": 37, "nonsecur": 37, "requesttim": 37, "baselin": 37, "proxi": [37, 51], "dn": 37, "ssl": [37, 47], "handshak": 37, "settl": 37, "respondwith": 37, "rout": 37, "verylow": 37, "veryhigh": 37, "referr": [37, 39], "postdata": 37, "too": [37, 51, 58], "individu": [25, 37, 39], "sct": 37, "unlik": [37, 39, 44, 45], "algorithm": [37, 38, 47], "tl": [37, 47], "quic": [37, 47], "exchang": [37, 47], "subject": [37, 47], "san": 37, "ip": 37, "ca": [37, 47], "compli": 37, "transpar": [37, 38, 39], "encrypt": [37, 39], "clienthello": 37, "ec": [37, 47], "dh": [37, 47], "aead": [37, 47], "signatureschem": 37, "subresourc": 37, "corp": 37, "disallowedbymod": 37, "invalidrespons": 37, "wildcardoriginnotallow": 37, "missingalloworiginhead": 37, "multiplealloworiginvalu": 37, "invalidalloworiginvalu": 37, "alloworiginmismatch": 37, "invalidallowcredenti": 37, "corsdisabledschem": 37, "preflightinvalidstatu": 37, "preflightdisallowedredirect": 37, "preflightwildcardoriginnotallow": 37, "preflightmissingalloworiginhead": 37, "preflightmultiplealloworiginvalu": 37, "preflightinvalidalloworiginvalu": 37, "preflightalloworiginmismatch": 37, "preflightinvalidallowcredenti": 37, "preflightmissingallowextern": 37, "preflightinvalidallowextern": 37, "preflightmissingallowprivatenetwork": 37, "preflightinvalidallowprivatenetwork": 37, "invalidallowmethodspreflightrespons": 37, "invalidallowheaderspreflightrespons": 37, "methoddisallowedbypreflightrespons": 37, "headerdisallowedbypreflightrespons": 37, "redirectcontainscredenti": 37, "insecureprivatenetwork": 37, "invalidprivatenetworkaccess": 37, "unexpectedprivatenetworkaccess": 37, "nocorsredirectmodenotfollow": 37, "preflightmissingprivatenetworkaccessid": 37, "preflightmissingprivatenetworkaccessnam": 37, "privatenetworkaccesspermissionunavail": 37, "privatenetworkaccesspermissiondeni": 37, "trust": [37, 49], "trust_token": 37, "srr": 37, "whom": 37, "alternativejobwonwithoutrac": 37, "alternativejobwonrac": 37, "mainjobwonrac": 37, "mappingmiss": 37, "dnsalpnh3jobwonwithoutrac": 37, "dnsalpnh3jobwonrac": 37, "unspecifiedreason": 37, "router": 37, "race": [37, 39], "reus": [37, 45], "matchedsourcetyp": 37, "matchedsourc": 37, "just": [37, 57, 58, 59, 60, 61], "payloaddata": 37, "visit": 37, "toplevelsit": 37, "sameparti": 37, "65535": 37, "unix": 37, "partit": 37, "secureonli": 37, "samesitestrict": 37, "samesitelax": 37, "samesiteunspecifiedtreatedaslax": 37, "samesitenoneinsecur": 37, "userprefer": 37, "thirdpartyphaseout": 37, "thirdpartyblockedinfirstpartyset": 37, "syntaxerror": 37, "schemenotsupport": 37, "overwritesecur": 37, "invaliddomain": 37, "invalidprefix": 37, "unknownerror": 37, "schemefulsamesitestrict": 37, "schemefulsamesitelax": 37, "schemefulsamesiteunspecifiedtreatedaslax": 37, "samepartyfromcrosspartycontext": 37, "samepartyconflictswithotherattribut": 37, "namevaluepairexceedsmaxs": 37, "disallowedcharact": 37, "nocookiecont": 37, "notonpath": 37, "domainmismatch": 37, "3pcd": 37, "exempt": 37, "userset": 37, "tpcdmetadata": 37, "tpcddeprecationtri": 37, "tpcdheurist": 37, "enterprisepolici": 37, "corsoptin": [], "sometim": [37, 56, 60, 61], "webpackag": 37, "yasskin": 37, "httpbi": 37, "impl": 37, "rfc": 37, "hex": [37, 38], "cert": 37, "sha256": 37, "cbor": 37, "signaturesig": 37, "signatureintegr": 37, "signaturecerturl": 37, "signaturecertsha256": 37, "signaturevalidityurl": 37, "signaturetimestamp": 37, "blockfrominsecuretomorepriv": 37, "warnfrominsecuretomorepriv": 37, "preflightblock": 37, "preflightwarn": 37, "sameorigin": [37, 39], "sameoriginallowpopup": 37, "restrictproperti": 37, "unsafenon": 37, "sameoriginpluscoep": 37, "restrictpropertiespluscoep": 37, "requirecorp": 37, "markedforremov": 37, "upload": [37, 57], "deliveri": 37, "made": [37, 45, 59], "later": [37, 45], "corb": 37, "setacceptedencod": 37, "raw_respons": 37, "isnavigationrequest": 37, "partitionkei": 37, "download_throughput": 37, "upload_throughput": 37, "connection_typ": 37, "packet_loss": 37, "packet_queue_length": 37, "packet_reord": 37, "internet": 37, "disconnect": [37, 51, 54], "throughput": 37, "webrtc": [37, 39], "packet": [7, 37], "loss": 37, "percent": 37, "queue": [12, 37], "packetreord": 37, "max_total_buffer_s": 37, "max_resource_buffer_s": 37, "max_post_data_s": 37, "buffer": [37, 41, 53, 54], "preserv": 37, "longest": 37, "getcooki": 37, "der": 37, "subfram": 37, "multipart": 37, "mandatori": 37, "withcredenti": 37, "bypass": [37, 39, 45, 51], "toggl": [37, 39], "cache_dis": 37, "overwrit": [37, 58], "continueinterceptedrequest": 37, "datalength": 37, "net_error_list": 37, "likewis": 37, "auth": 37, "redirectrespons": 37, "webtransport": [37, 39], "dispos": [37, 51], "latter": 37, "wire": 37, "proper": [37, 59], "space": [37, 38], "establish": 37, "correct": [37, 59], "200": [37, 53, 57, 60, 61], "304": 37, "serializ": [37, 45, 58, 59], "103": 37, "earli": 37, "common": 37, "succeed": [37, 53], "alreadyexist": 37, "signifi": 37, "und": 37, "preemptiv": 37, "wbn": 37, "bundl": [37, 44, 49], "webpag": [37, 39, 59], "webbundl": 37, "And": 37, "enablereportingapi": 37, "atop": 38, "outlin": [38, 39], "grid": 38, "cell": 38, "ruler": 38, "shown": [38, 39, 47, 60, 61], "neg": 38, "rowlinecolor": 38, "columnlinecolor": 38, "row": 38, "rowlinedash": 38, "columnlinedash": 38, "gap": 38, "hatch": 38, "flex": 38, "justifi": 38, "align": 38, "arrow": [17, 38, 57], "grew": 38, "shrank": 38, "solid": 38, "tooltip": 38, "a11i": 38, "ratio": [38, 39], "snapport": 38, "snap": 38, "dual": 38, "hing": 38, "bar": [38, 39], "app": [38, 39, 44], "cover": [38, 43], "searchfornod": 38, "searchforuashadowdom": 38, "captureareascreenshot": 38, "showdist": 38, "include_dist": 38, "include_styl": 38, "viewer": 38, "content_outline_color": 38, "reliabl": [38, 45], "highlightnod": 38, "highlight_config": 38, "respect": [38, 45, 49], "source_order_config": 38, "enter": [38, 39], "hover": [38, 57], "container_query_highlight_config": 38, "flex_node_highlight_config": 38, "fp": [38, 50], "counter": [36, 38, 43, 55], "grid_node_highlight_config": 38, "hinge_config": 38, "hidehing": 38, "isolated_element_highlight_config": 38, "bottleneck": 38, "scroll_snap_highlight_config": 38, "vital": [], "window_controls_overlay_config": 38, "setinspectmod": 38, "ask": [38, 60, 61], "parentisad": 39, "createdbyadscript": 39, "matchedblockingrul": 39, "securelocalhost": 39, "insecureschem": 39, "insecureancestor": 39, "notisol": 39, "notisolatedfeaturedis": 39, "sharedarraybuff": 39, "sharedarraybufferstransferallow": 39, "performancemeasurememori": 39, "performanceprofil": 39, "permissions_polici": 39, "permissions_policy_featur": 39, "brows": [39, 49, 57, 59], "topic": 39, "dpr": 39, "downlink": 39, "ect": 39, "reduc": 39, "motion": 39, "rtt": 39, "arch": 39, "socket": 39, "interest": [39, 49], "cohort": 39, "otp": 39, "publickei": 39, "wake": 39, "lock": 39, "unrestrict": 39, "xr": 39, "spatial": 39, "iframeattribut": 39, "infencedframetre": 39, "inisolatedapp": 39, "trial": 39, "notsupport": [39, 42], "wrongorigin": 39, "invalidsignatur": 39, "wrongvers": 39, "featuredis": 39, "tokendis": 39, "featuredisabledforus": 39, "unknowntri": 39, "validtokennotprovid": 39, "osnotsupport": 39, "trialnotallow": 39, "parsedtoken": 39, "parsabl": 39, "take": [39, 45, 47, 49, 59], "suffix": 39, "googl": 39, "co": 39, "uk": 39, "gate": 39, "histori": [39, 59], "screencast": 39, "swap": 39, "pare": 39, "recover": 39, "ideal": 39, "sansserif": 39, "formsubmissionget": 39, "formsubmissionpost": 39, "httpheaderrefresh": 39, "scriptiniti": 39, "metatagrefresh": 39, "pageblockinterstiti": 39, "anchorclick": 39, "currenttab": 39, "newtab": 39, "newwindow": 39, "64": [39, 55], "suitabl": [39, 59], "noreferr": 39, "noreferrerwhendowngrad": 39, "originwhencrossorigin": 39, "strictorigin": 39, "strictoriginwhencrossorigin": 39, "unsafeurl": 39, "compil": [39, 45], "producecompilationcach": 39, "won": [39, 58, 59, 60], "comparison": 39, "mimic": 39, "understand": 39, "emb": 39, "sharetargetparam": 39, "experi": [39, 55, 59], "todo": [39, 42, 44, 60], "1231886": 39, "incub": 39, "gh": 39, "autoaccept": 39, "autoreject": 39, "autooptout": 39, "backforwardcacherestor": 39, "notprimarymainfram": 39, "backforwardcachedis": 39, "relatedactivecontentsexist": 39, "httpstatusnotok": 39, "schemenothttporhttp": 39, "wasgrantedmediaaccess": 39, "disableforrenderframehostcal": 39, "domainnotallow": 39, "httpmethodnotget": 39, "subframeisnavig": 39, "cachelimit": 39, "javascriptexecut": 39, "rendererprocesskil": [39, 42], "rendererprocesscrash": [39, 42], "schedulertrackedfeatureus": 39, "conflictingbrowsinginst": 39, "cacheflush": 39, "serviceworkerversionactiv": 39, "sessionrestor": 39, "serviceworkerpostmessag": 39, "enteredbackforwardcachebeforeserviceworkerhostad": 39, "renderframehostreused_samesit": 39, "renderframehostreused_crosssit": 39, "serviceworkerclaim": 39, "ignoreeventandevict": 39, "haveinnercont": 39, "timeoutputtingincach": 39, "backforwardcachedisabledbylowmemori": 39, "backforwardcachedisabledbycommandlin": 39, "networkrequestdatapipedrainedasbytesconsum": 39, "networkrequestredirect": 39, "networkrequesttimeout": 39, "networkexceedsbufferlimit": 39, "navigationcancelledwhilerestor": 39, "notmostrecentnavigationentri": 39, "backforwardcachedisabledforprerend": 39, "useragentoverridediff": 39, "foregroundcachelimit": 39, "browsinginstancenotswap": 39, "backforwardcachedisabledfordeleg": 39, "unloadhandlerexistsinmainfram": 39, "unloadhandlerexistsinsubfram": 39, "serviceworkerunregistr": 39, "cachecontrolnostor": 39, "cachecontrolnostorecookiemodifi": 39, "cachecontrolnostorehttponlycookiemodifi": 39, "noresponsehead": 39, "activationnavigationsdisallowedforbug1234857": 39, "errordocu": 39, "fencedframesembedd": 39, "cookiedis": 39, "httpauthrequir": 39, "cookieflush": 39, "broadcastchannelonmessag": 39, "webviewsettingschang": 39, "webviewjavascriptobjectchang": 39, "webviewmessagelistenerinject": 39, "webviewsafebrowsingallowlistchang": 39, "webviewdocumentstartjavascriptchang": 39, "mainresourcehascachecontrolnostor": 39, "mainresourcehascachecontrolnocach": 39, "subresourcehascachecontrolnostor": 39, "subresourcehascachecontrolnocach": 39, "containsplugin": 39, "documentload": 39, "outstandingnetworkrequestoth": 39, "requestedmidipermiss": 39, "requestedaudiocapturepermiss": 39, "requestedvideocapturepermiss": 39, "requestedbackforwardcacheblockedsensor": 39, "requestedbackgroundworkpermiss": 39, "broadcastchannel": 39, "webxr": 39, "weblock": 39, "webhid": 39, "webshar": 39, "requestedstorageaccessgr": 39, "webnfc": 39, "outstandingnetworkrequestfetch": 39, "outstandingnetworkrequestxhr": 39, "appbann": 39, "webdatabas": 39, "pictureinpictur": 39, "speechrecogn": 39, "idlemanag": 39, "paymentmanag": 39, "speechsynthesi": 39, "keyboardlock": 39, "webotpservic": 39, "outstandingnetworkrequestdirectsocket": 39, "injectedjavascript": 39, "injectedstylesheet": 39, "keepaliverequest": 39, "indexeddbev": 39, "jsnetworkrequestreceivedcachecontrolnostoreresourc": 39, "webrtcsticki": 39, "webtransportsticki": 39, "websocketsticki": 39, "smartcard": 39, "livemediastreamtrack": 39, "unloadhandl": 39, "parserabort": 39, "contentsecurityhandl": 39, "contentwebauthenticationapi": 39, "contentfilechoos": 39, "contentseri": 39, "contentfilesystemaccess": 39, "contentmediadevicesdispatcherhost": 39, "contentwebbluetooth": 39, "contentwebusb": 39, "contentmediasessionservic": 39, "contentscreenread": 39, "embedderpopupblockertabhelp": 39, "embeddersafebrowsingtriggeredpopupblock": 39, "embeddersafebrowsingthreatdetail": 39, "embedderappbannermanag": 39, "embedderdomdistillerviewersourc": 39, "embedderdomdistillerselfdeletingrequestdeleg": 39, "embedderoominterventiontabhelp": 39, "embedderofflinepag": 39, "embedderchromepasswordmanagerclientbindcredentialmanag": 39, "embedderpermissionrequestmanag": 39, "embeddermodaldialog": 39, "embedderextens": 39, "embedderextensionmessag": 39, "embedderextensionmessagingforopenport": 39, "embedderextensionsentmessagetocachedfram": 39, "requestedbywebviewcli": 39, "supportpend": 39, "pagesupportneed": 39, "blockag": 39, "anonym": [39, 45], "seed": 39, "addscripttoevaluateonnewdocu": [39, 45], "world_nam": 39, "run_immedi": 39, "world": [39, 45], "bring": 39, "from_surfac": 39, "capture_beyond_viewport": 39, "beyond": [39, 43], "mhtml": 39, "tri": [39, 45], "hook": [39, 51], "minidump": 39, "grant_univeral_access": 39, "univers": 39, "power": [7, 39, 59], "caution": 39, "cookie_nam": 39, "cook": 39, "webappenablemanifestid": 39, "appid": 39, "recommendedid": 39, "manifest_id": [39, 44], "manifestid": [39, 44], "csslayoutviewport": 39, "cssvisualviewport": 39, "contents": 39, "scrollabl": [17, 39], "dp": 39, "csscontents": 39, "fact": 39, "currentindex": 39, "prompt_text": 39, "onbeforeunload": 39, "intend": [39, 45], "errortext": 39, "entry_id": 39, "landscap": 39, "display_header_foot": 39, "print_background": 39, "paper_width": 39, "paper_height": 39, "margin_top": 39, "margin_bottom": 39, "margin_left": 39, "margin_right": 39, "page_rang": 39, "header_templ": 39, "footer_templ": 39, "prefer_css_page_s": 39, "transfer_mod": [39, 53], "generate_tagged_pdf": 39, "generate_document_outlin": 39, "pdf": 39, "paper": 39, "footer": 39, "graphic": [39, 50], "inch": 39, "5": [39, 57], "11": [39, 60, 61], "1cm": 39, "13": 39, "quietli": 39, "cap": 39, "greater": 39, "pagenumb": 39, "totalpag": 39, "span": [39, 59], "headertempl": 39, "fit": [39, 45], "choic": [39, 60, 61], "returnasstream": [39, 53], "append": 39, "ignore_cach": [39, 59], "script_to_evaluate_on_load": [39, 59], "refresh": 39, "dataurl": 39, "accident": [39, 45], "unintend": 39, "removescripttoevaluateonnewdocu": 39, "acknowledg": 39, "for_script": 39, "chooser": 39, "lifecycl": 39, "is_allow": 39, "short": [39, 47, 57, 60, 61], "1440085": 39, "doc": [26, 39], "d": [39, 58, 59], "12hvmfxyj5jc": 39, "ejr5omwsa2bqtjsbgglki6ziyx0_wpa": 39, "puppet": 39, "whatwg": 39, "multipag": 39, "rph": 39, "transact": 39, "sctn": [39, 55], "spc": 39, "max_width": 39, "max_height": 39, "every_nth_fram": 39, "n": [39, 57], "th": 39, "runifwaitingfordebugg": [39, 51], "interceptfilechoos": 39, "interstiti": 39, "iff": [39, 42, 45, 53], "act": [39, 59], "engag": 39, "stall": 39, "handlejavascriptdialog": 39, "bfcach": 39, "backforwardcach": 39, "startscreencast": 39, "setgeneratecompilationcach": 39, "time_domain": 40, "performanceobserv": 41, "largest_contentful_paint": 41, "trim": 41, "instabl": 41, "layout_shift": 41, "score": 41, "performanceentri": 41, "entrytyp": 41, "lifetim": [41, 54], "reportperformancetimelin": 41, "speculationruleset": 42, "textcont": 42, "nav": 42, "specul": 42, "1425354": 42, "sourceisnotjsonobject": 42, "invalidrulesskip": 42, "although": [42, 59], "prefetchwithsubresourc": 42, "href": [42, 59], "finalstatu": 42, "prerender2": 42, "lowenddevic": 42, "invalidschemeredirect": 42, "invalidschemenavig": 42, "navigationrequestblockedbycsp": 42, "mainframenavig": 42, "mojobinderpolici": 42, "triggerdestroi": 42, "navigationnotcommit": 42, "navigationbadhttpstatu": 42, "clientcertrequest": 42, "navigationrequestnetworkerror": 42, "cancelallhostsfortest": 42, "didfailload": 42, "sslcertificateerror": 42, "loginauthrequest": 42, "uachangerequiresreload": 42, "audiooutputdevicerequest": 42, "mixedcont": 42, "triggerbackground": 42, "memorylimitexceed": 42, "datasaveren": 42, "triggerurlhaseffectiveurl": 42, "activatedbeforestart": 42, "inactivepagerestrict": 42, "startfail": 42, "timeoutbackground": 42, "crosssiteredirectininitialnavig": 42, "crosssitenavigationininitialnavig": 42, "samesitecrossoriginredirectnotoptinininitialnavig": 42, "samesitecrossoriginnavigationnotoptinininitialnavig": 42, "activationnavigationparametermismatch": 42, "activatedinbackground": 42, "embedderhostdisallow": 42, "activationnavigationdestroyedbeforesuccess": 42, "tabclosedbyusergestur": 42, "tabclosedwithoutusergestur": 42, "primarymainframerendererprocesscrash": 42, "primarymainframerendererprocesskil": 42, "activationframepolicynotcompat": 42, "preloadingdis": 42, "batterysaveren": 42, "activatedduringmainframenavig": 42, "preloadingunsupportedbywebcont": 42, "crosssiteredirectinmainframenavig": 42, "crosssitenavigationinmainframenavig": 42, "samesitecrossoriginredirectnotoptininmainframenavig": 42, "samesitecrossoriginnavigationnotoptininmainframenavig": 42, "memorypressureontrigg": 42, "memorypressureaftertrigg": 42, "prerenderingdisabledbydevtool": 42, "speculationruleremov": 42, "activatedwithauxiliarybrowsingcontext": 42, "maxnumofrunningeagerprerendersexceed": 42, "maxnumofrunningnoneagerprerendersexceed": 42, "maxnumofrunningembedderprerendersexceed": 42, "prerenderingurlhaseffectiveurl": 42, "redirectedprerenderingurlhaseffectiveurl": 42, "activationurlhaseffectiveurl": 42, "javascriptinterfacead": 42, "javascriptinterfaceremov": 42, "allprerenderingcancel": 42, "preloadingtriggeringoutcom": 42, "1384419": 42, "revisit": 42, "aren": 42, "prefetchallow": 42, "prefetchfailedineligibleredirect": 42, "prefetchfailedinvalidredirect": 42, "prefetchfailedmimenotsupport": 42, "prefetchfailedneterror": 42, "prefetchfailednon2xx": 42, "prefetchfailedperpagelimitexceed": [], "prefetchevictedaftercandidateremov": 42, "prefetchevictedfornewerprefetch": 42, "prefetchheldback": 42, "prefetchineligibleretryaft": 42, "prefetchisprivacydecoi": 42, "prefetchisstal": 42, "prefetchnoteligiblebrowsercontextofftherecord": 42, "prefetchnoteligibledatasaveren": 42, "prefetchnoteligibleexistingproxi": 42, "prefetchnoteligiblehostisnonuniqu": 42, "prefetchnoteligiblenondefaultstoragepartit": 42, "prefetchnoteligiblesamesitecrossoriginprefetchrequiredproxi": 42, "prefetchnoteligibleschemeisnothttp": 42, "prefetchnoteligibleuserhascooki": 42, "prefetchnoteligibleuserhasservicework": 42, "prefetchnoteligiblebatterysaveren": 42, "prefetchnoteligiblepreloadingdis": 42, "prefetchnotfinishedintim": 42, "prefetchnotstart": 42, "prefetchnotusedcookieschang": 42, "prefetchproxynotavail": 42, "prefetchresponseus": 42, "prefetchsuccessfulbutnotus": 42, "prefetchnotusedprobefail": 42, "mismatch": 42, "upsert": 42, "give": 42, "mojo": 42, "incompat": 42, "deoptim": 43, "microsecond": 43, "adjac": 43, "starttim": 43, "insid": 43, "granular": 43, "incomplet": 43, "garbag": [36, 43, 53], "call_count": 43, "allow_triggered_upd": 43, "precis": 43, "unnecessari": 43, "profileend": 43, "takeprecisecoverag": 43, "trig": 43, "replica": 44, "crsrc": 44, "web_appl": 44, "web_app_os_integration_st": 44, "drc": 44, "9910d3be894c8f142c977ba1023f30a656bc13fc": 44, "l": 44, "67": 44, "iana": 44, "assign": [44, 51, 58, 60, 61], "xhtml": 44, "link_captur": 44, "display_mod": 44, "unrecogn": 44, "desktoppwaslinkcapturingwithscopeextens": 44, "webappenablescopeextens": 44, "linkcaptur": 44, "339453269": 44, "chromeo": 44, "yet": [44, 51], "o": [44, 50, 53, 58], "webapp": 44, "commonli": 44, "dev": 44, "learn": 44, "badgecount": 44, "install_url_or_bundle_url": 44, "install_url": 44, "iwa": 44, "337872319": 44, "meet": 44, "swbn": 44, "regardless": [44, 49], "allowlist": 44, "attachtotarget": [44, 51], "339454034": 44, "maintain": [45, 49], "generatepreview": 45, "returnbyvalu": 45, "maxnodedepth": 45, "includeshadowtre": 45, "met": 45, "primit": 45, "stringifi": [45, 57], "nan": 45, "infin": 45, "bigint": 45, "liter": [45, 59], "sure": [45, 56, 57], "constructor": 45, "abbrevi": 45, "formatt": 45, "ml": 45, "hasbodi": 45, "bodygetterid": 45, "did": [45, 47], "accessor": 45, "getter": 45, "setter": 45, "convent": 45, "unserializ": 45, "dictionari": [45, 50, 58], "assert": [45, 55], "preced": 45, "debuggerid": 45, "execution_context_nam": 45, "executioncontextnam": 45, "unclear": 45, "bug": [45, 50], "1169639": 45, "executioncontext": 45, "worldnam": 45, "promise_object_id": 45, "strace": 45, "function_declar": 45, "unique_context_id": 45, "serialization_opt": 45, "overriden": 45, "await": [45, 56, 57, 60, 61], "objectgroup": 45, "contextid": 45, "persist_script": 45, "disable_break": 45, "repl_mod": 45, "allow_unsafe_eval_blocked_by_csp": 45, "uniquecontextid": 45, "offer": 45, "disablebreak": 45, "replmod": 45, "themselv": 45, "eval": 45, "settimeout": 45, "setinterv": 45, "callabl": [45, 59], "error_object_id": 45, "portion": 45, "useds": 45, "totals": 45, "own_properti": 45, "accessor_properties_onli": 45, "non_indexed_properties_onli": 45, "internalproperti": 45, "privateproperti": 45, "const": 45, "prototype_object_id": 45, "unsubscrib": 45, "getstacktrac": 45, "parentid": 45, "logger": 45, "unnam": 45, "unhandl": 45, "revok": 45, "weak": 47, "sha1": 47, "modern": 47, "obsolet": 47, "highest": 47, "badreput": 47, "safeti": 47, "tip": 47, "reput": 47, "answer": 47, "handlecertificateerror": 47, "cryptograph": 47, "last_chanc": 48, "force_update_on_page_load": 48, "protect": 49, "audienc": 49, "additionalbid": 49, "additionalbidwin": 49, "toplevelbid": 49, "topleveladditionalbid": 49, "configresolv": 49, "bidderj": 49, "bidderwasm": 49, "sellerj": 49, "biddertrustedsign": 49, "sellertrustedsign": 49, "documentaddmodul": 49, "documentselecturl": 49, "documentrun": 49, "documentset": 49, "documentappend": 49, "documentdelet": 49, "documentclear": 49, "documentget": 49, "workletset": 49, "workletappend": 49, "workletdelet": 49, "workletclear": 49, "workletget": 49, "workletkei": 49, "workletentri": 49, "workletlength": 49, "workletremainingbudget": 49, "headerset": 49, "headerappend": 49, "headerdelet": 49, "headerclear": 49, "entropi": 49, "selecturl": 49, "absenc": 49, "vari": 49, "uint32": 49, "internalerror": 49, "insufficientsourcecapac": 49, "insufficientuniquedestinationcapac": 49, "excessivereportingorigin": 49, "prohibitedbybrowserpolici": 49, "successnois": 49, "destinationreportinglimitreach": 49, "destinationgloballimitreach": 49, "destinationbothlimitsreach": 49, "reportingoriginspersitelimitreach": 49, "exceedsmaxchannelcapac": 49, "exceedsmaxtriggerstatecardin": 49, "destinationperdayreportinglimitreach": 49, "successdroppedlowerprior": 49, "nocapacityforattributiondestin": 49, "nomatchingsourc": 49, "excessiveattribut": 49, "prioritytoolow": 49, "neverattributedsourc": 49, "nomatchingsourcefilterdata": 49, "nomatchingconfigur": 49, "excessivereport": 49, "falselyattributedsourc": 49, "reportwindowpass": 49, "notregist": 49, "reportwindownotstart": 49, "nomatchingtriggerdata": 49, "nohistogram": 49, "insufficientbudget": 49, "websit": 49, "cctld": 49, "issuerorigin": 49, "intact": 49, "turtledov": 49, "dictdef": 49, "generatebidinterestgroup": 49, "expirationtim": 49, "lifetimem": 49, "joiningorigin": 49, "overrideact": 49, "usagebreakdown": 49, "quota_s": 49, "quotas": 49, "ownerorigin": 49, "withdraw": 49, "nois": 49, "ignoreifpres": 49, "notifi": [49, 51, 54], "somethingbid": 49, "interestgroupauctionev": 49, "worklet": 49, "signal": [49, 53], "care": [49, 59], "wrap": [49, 53], "processor": 50, "pci": 50, "vendor": 50, "driver": [50, 60, 61], "sy": 50, "decod": 50, "vp9": 50, "framer": 50, "h264": 50, "fraction": [50, 53], "denomin": 50, "24": 50, "24000": 50, "1001": 50, "yuv": 50, "workaround": 50, "cumul": 50, "feature_st": 50, "modelnam": 50, "On": 50, "macbookpro": 50, "modelvers": 50, "10": [50, 59, 60, 61], "discoveri": 51, "devtools_agent_host_impl": 51, "cc": 51, "ss": 51, "q": 51, "f": [51, 58], "22": 51, "ktypetab": 51, "5b": 51, "5d": 51, "plan": 51, "eventu": [21, 51], "retir": 51, "991325": 51, "wait_for_debugger_on_start": 51, "filter_": 51, "monitor": 51, "setautoattach": 51, "dispose_on_detach": 51, "proxy_serv": 51, "proxy_bypass_list": 51, "origins_with_universal_network_access": 51, "incognito": 51, "unlimit": 51, "constitut": 51, "enable_begin_frame_control": 51, "for_tab": 51, "maco": 51, "foreground": 51, "binding_nam": 51, "channel": [51, 54], "bindingnam": 51, "onmessag": 51, "handlemessag": 51, "callback": [51, 54, 59], "createbrowsercontext": 51, "auto_attach": 51, "autoattachrel": 51, "watch": 51, "discov": 51, "setdiscovertarget": 51, "detachfromtarget": 51, "got": 52, "dump": [53, 58, 59], "infra": 53, "kilobyt": 53, "mb": 53, "memory_dump_request_arg": 53, "memory_instrument": 53, "perfetto": 53, "perfettoconfig": 53, "sync_id": 53, "determinist": 53, "level_of_detail": 53, "dumpguid": 53, "buffer_usage_reporting_interv": 53, "stream_format": 53, "trace_config": 53, "perfetto_config": 53, "tracing_backend": 53, "reportev": 53, "protobuf": 53, "approxim": 53, "flush": 53, "lost": 53, "ring": 53, "graph": 54, "audiocontext": 54, "audiocontextst": 54, "clamp": 54, "max": [54, 59], "spent": 54, "divid": 54, "quantum": 54, "multipli": 54, "capac": 54, "glitch": 54, "varianc": 54, "outgo": 54, "largeblob": 55, "credblob": 55, "fidoalli": 55, "fido": 55, "v2": 55, "rd": 55, "20201208": 55, "minpinlength": 55, "p": [55, 60, 61], "20210615": 55, "prf": 55, "succe": 55, "backup": 55, "elig": 55, "BE": 55, "ecdsa": 55, "pkc": 55, "defaultbackupelig": 55, "defaultbackupst": 55, "enable_ui": 55, "demo": 55, "closer": 55, "is_bogus_signatur": 55, "is_bad_uv": 55, "is_bad_up": 55, "isbogussignatur": 55, "isbaduv": 55, "isbadup": 55, "uv": 55, "filepath": 56, "dat": 56, "export": 56, "requests_style_cooki": 56, "get_al": 56, "requests_cookie_format": 56, "kwarg": [56, 58, 59], "usual": [56, 57], "nodriv": [56, 58, 59, 60], "besid": 56, "your": [56, 59], "under": [26, 56, 59], "know": 56, "__init__": 56, "stubborn": 56, "correctli": 56, "kill": 56, "classmethod": 56, "browser_executable_path": [56, 58, 60], "cookiejar": 56, "especi": [56, 59], "union": [56, 57, 58, 59], "alia": [56, 59], "welcom": [56, 59], "safest": [56, 59], "max_column": 56, "word": 57, "_node": [57, 59], "opbject": 57, "seper": [57, 60], "quit": [57, 59], "expens": [57, 59], "advis": 57, "bunch": [57, 59], "js_function": 57, "eg": [57, 59], "elem": [57, 60, 61], "blabla": 57, "consolelog": 57, "myfunct": 57, "ab": 57, "_until_ev": 57, "atm": 57, "mouseov": 57, "cours": 57, "100px": 57, "200px": 57, "look": 57, "slower": [57, 59], "smooth": 57, "stuck": [57, 59], "py": 57, "meth": 57, "keystrok": 57, "rn": 57, "spacebar": 57, "wonder": 57, "file_path": 57, "needl": 57, "sai": [57, 60, 61], "fileinputel": 57, "temp": 57, "myuser": 57, "lol": 57, "gif": 57, "often": 57, "concaten": 57, "runtimeerror": 57, "rais": [57, 58, 59], "pathlik": [57, 59], "half": [57, 59], "dot": [57, 58], "coord": 57, "folder": [57, 58, 59, 60, 61], "desir": [57, 59], "html5": 57, "videoel": 57, "extension_path": 58, "crx": 58, "built": 58, "_contradict": 58, "AND": 58, "notat": 58, "obj": 58, "snake_cas": 58, "hyphen": 58, "underscor": 58, "_": 58, "recurs": 58, "shallow": 58, "els": 58, "v": 58, "keyerror": 58, "lifo": 58, "lack": 58, "factori": 58, "mechan": 59, "much": 59, "someth": [59, 62], "ll": [59, 60], "yoururlher": 59, "build": 59, "combo": 59, "consum": 59, "luckili": 59, "whole": 59, "pick": 59, "help": 59, "probabl": 59, "thousand": 59, "stuff": 59, "hood": 59, "breath": 59, "oftentim": 59, "faster": 59, "easili": 59, "craft": 59, "THE": 59, "realli": 59, "namespac": 59, "event_type_or_domain": 59, "traffic": 59, "coroutin": 59, "lamba": 59, "lambda": [59, 60, 61], "crazi": 59, "moduletyp": 59, "kw": 59, "return_enclosing_el": 59, "tremend": 59, "tag_hint": 59, "narrow": 59, "div": 59, "img": 59, "obj_nam": 59, "complex": 59, "thruth": 59, "returnvalu": 59, "pageyoffset": 59, "screenx": 59, "screeni": 59, "outerwidth": 59, "1050": 59, "outerheight": 59, "832": 59, "devicepixelratio": 59, "screenleft": 59, "screentop": 59, "stylemedia": 59, "onsearch": 59, "issecurecontext": 59, "timeorigin": 59, "1707823094767": 59, "9": 59, "connectstart": 59, "navigationstart": 59, "1707823094768": 59, "handi": 59, "w3school": 59, "cssref": 59, "css_selector": 59, "php": 59, "haven": 59, "full_pag": 59, "25": 59, "mayb": 59, "quarter": 59, "1000": 59, "10x": 59, "include_fram": 59, "cdp_obj": 59, "_is_upd": 59, "infinit": 59, "loop": [59, 60, 61], "register": 59, "1280": 59, "1024": 59, "720": 59, "min": 59, "mini": 59, "mi": 59, "ma": 59, "maxi": 59, "fu": 59, "nor": 59, "timespan": 59, "matter": 59, "timeouterror": 59, "asyncio": [59, 60, 61], "websocketclientprotocol": 59, "goe": [60, 61], "pip": [60, 61], "Or": 60, "aim": [60, 61], "project": [60, 61], "somewher": [60, 61], "ago": [60, 61], "quickli": [60, 61], "editor": [60, 61], "few": [60, 61], "uc": [60, 61], "def": [60, 61], "nowsecur": [60, 61], "nl": [60, 61], "__name__": [60, 61], "__main__": [60, 61], "me": [60, 61], "run_until_complet": [60, 61], "150": [60, 61], "page2": [60, 61], "twitter": [60, 61], "page3": [60, 61], "ultrafunkamsterdam": [60, 61], "boilerpl": 60, "iso": 60, "somewebsit": 60, "basicconfig": [60, 61], "30": [60, 61], "februari": [60, 61], "march": [60, 61], "april": [60, 61], "june": [60, 61], "juli": [60, 61], "august": [60, 61], "septemb": [60, 61], "octob": [60, 61], "novemb": [60, 61], "decemb": [60, 61], "create_account": [60, 61], "phone": [60, 61], "small": [60, 61], "use_mail_instead": [60, 61], "randstr": [60, 61], "ascii_lett": [60, 61], "dai": [60, 61], "sel_month": [60, 61], "sel_dai": [60, 61], "sel_year": [60, 61], "randint": [60, 61], "bother": [60, 61], "leap": [60, 61], "28": [60, 61], "ag": [60, 61], "restrict": [60, 61], "1980": [60, 61], "2005": [60, 61], "nag": [60, 61], "cookie_bar_accept": [60, 61], "next_btn": [60, 61], "btn": [60, 61], "revers": [60, 61], "sign_up_btn": [60, 61], "mail": [60, 61], "quick": 61, "02": 57, "08": 57, "2024": 57, "programatt": 57, "get_local_storag": [0, 59], "set_local_storag": [0, 59], "deseri": 59, "feed_cdp": [0, 59], "mostli": 59, "expert": 58, "shadow_children": [0, 57], "exclude_port_mismatch": [0, 4], "exclude_scheme_mismatch": [0, 4], "warn_deprecation_trial_metadata": [0, 4], "warn_third_party_cookie_heurist": [0, 4], "navigation_registration_unique_scope_already_set": [0, 4], "replaced_by_active_mod": [0, 4], "bluetoothemul": [0, 1], "centralst": [0, 7], "powered_off": [0, 7], "powered_on": [0, 7], "manufacturerdata": [0, 7], "scanrecord": [0, 7], "tx_power": [0, 7], "manufacturer_data": [0, 7], "scanentri": [0, 7], "device_address": [0, 7], "rssi": [0, 7], "scan_record": [0, 7], "simulate_advertis": [0, 7], "simulate_preconnected_peripher": [0, 7], "web_app_instal": [0, 8, 39], "starting_styl": [0, 12], "starting_style_rul": [0, 12], "queries_scroll_st": [0, 12, 17], "cssstartingstyl": [0, 12], "track_computed_style_updates_for_nod": [0, 12], "computedstyleupd": [0, 12], "set_blackbox_execution_context": [0, 14], "select_arrow": [0, 17], "scroll_next_button": [0, 17], "scroll_prev_button": [0, 17], "file_selector_button": [0, 17], "details_cont": [0, 17], "picker": [0, 17], "is_scrol": [0, 17], "detachedelementinfo": [0, 17], "tree_nod": [0, 17], "retained_node_id": [0, 17], "get_detached_dom_nod": [0, 17], "scrollableflagupd": [0, 17], "pressuresourc": [0, 21], "pressurest": [0, 21], "nomin": [0, 21], "fair": [0, 21], "seriou": [0, 21], "pressuremetadata": [0, 21], "set_pressure_source_override_en": [0, 21], "set_pressure_state_overrid": [0, 21], "storagearea": [0, 23], "clear_storage_item": [0, 23], "get_storage_item": [0, 23], "remove_storage_item": [0, 23], "set_storage_item": [0, 23], "directori": [0, 26], "nested_directori": [0, 26], "nested_fil": [0, 26], "bucketfilesystemloc": [0, 26], "path_compon": [0, 26], "bucket_nam": [0, 26], "get_directori": [0, 26], "domcount": [0, 36], "get_dom_counters_for_leak_detect": [0, 36], "port_mismatch": [0, 37], "scheme_mismatch": [0, 37], "top_level_tpcd_deprecation_tri": [0, 37], "noopener_allow_popup": [0, 37], "all_screens_captur": [0, 39], "controlled_fram": [0, 39], "deferred_fetch_minim": [0, 39], "digital_credentials_get": [0, 39], "direct_sockets_priv": [0, 39], "fenced_unpartitioned_storage_read": [0, 39], "media_playback_while_not_vis": [0, 39], "popin": [0, 39], "initial_frame_navig": [0, 39], "content_discard": [0, 39], "post_message_by_web_view_cli": [0, 39], "framesubtreewillbedetach": [0, 39], "navigation_typ": [0, 39], "window_clos": [0, 42], "slow_network": [0, 42], "other_prerendered_page_activ": [0, 42], "v8_optimizer_dis": [0, 42], "prerender_failed_during_prefetch": [0, 42], "attributionreportingaggregatabledebugreportingdata": [0, 49], "attributionreportingaggregatabledebugreportingconfig": [0, 49], "debug_data": [0, 49], "attributionscopesdata": [0, 49], "max_event_st": [0, 49], "destination_limit_prior": [0, 49], "aggregatable_debug_reporting_config": [0, 49], "max_event_level_report": [0, 49], "scopes_data": [0, 49], "exceeds_max_scopes_channel_capac": [0, 49], "exceeds_max_event_states_limit": [0, 49], "filtering_id": [0, 49], "aggregatable_filtering_id_max_byt": [0, 49], "insufficient_named_budget": [0, 49], "user_nam": [0, 55], "user_display_nam": [0, 55], "credentialdelet": [0, 55], "credentialupd": [0, 55], "excludeportmismatch": 4, "excludeschememismatch": 4, "warndeprecationtrialmetadata": 4, "warnthirdpartycookieheurist": 4, "navigationregistrationuniquescopealreadyset": 4, "replacedbyactivemod": 4, "central": 7, "manufactur": 7, "compani": 7, "bitbucket": 7, "sig": 7, "assigned_numb": 7, "company_identifi": 7, "yaml": 7, "advertis": 7, "transmiss": 7, "broadcast": 7, "known_service_uuid": 7, "peripher": 7, "knownserviceuuid": 7, "webappinstal": 8, "startingstylerul": 12, "activepositionfallbackindex": 12, "skip_anonym": 14, "prev": 17, "retain": 17, "queriesscrollst": 17, "pressureobserv": 21, "setpressurestateoverrid": 21, "setpressuresourceoverrideen": 21, "storage_area": 23, "merg": 23, "mozilla": 26, "storage_api": 26, "bucketnam": 26, "bucket_file_system_loc": 26, "presum": 36, "volatil": 36, "retrun": 36, "prepar": 36, "leak": 36, "spellcheck": 36, "essenti": 36, "portmismatch": 37, "schememismatch": 37, "topleveltpcddeprecationtri": 37, "noopenerallowpopup": 37, "fenc": 39, "unpartit": 39, "initialframenavig": 39, "contentdiscard": 39, "postmessagebywebviewcli": 39, "windowclos": 42, "slownetwork": 42, "otherprerenderedpageactiv": 42, "v8optimizerdis": 42, "prerenderfailedduringprefetch": 42, "exceedsmaxscopeschannelcapac": 49, "exceedsmaxeventstateslimit": 49, "insufficientnamedbudget": 49, "publickeycredentialent": 55, "displaynam": 55, "publickeycredentialuserent": 55, "publickeycredenti": 55, "signalunknowncredenti": 55, "signalcurrentuserdetail": 55}, "objects": {"nodriver": [[56, 0, 1, "", "Browser"], [58, 0, 1, "", "Config"], [57, 0, 1, "", "Element"], [59, 0, 1, "", "Tab"]], "nodriver.Browser": [[56, 1, 1, "", "config"], [56, 1, 1, "", "connection"], [56, 2, 1, "", "cookies"], [56, 3, 1, "", "create"], [56, 3, 1, "", "get"], [56, 3, 1, "", "grant_all_permissions"], [56, 2, 1, "", "main_tab"], [56, 3, 1, "", "sleep"], [56, 3, 1, "", "start"], [56, 3, 1, "", "stop"], [56, 2, 1, "", "stopped"], [56, 2, 1, "", "tabs"], [56, 1, 1, "", "targets"], [56, 3, 1, "", "tile_windows"], [56, 3, 1, "", "update_targets"], [56, 3, 1, "", "wait"], [56, 2, 1, "", "websocket_url"]], "nodriver.Config": [[58, 3, 1, "", "add_argument"], [58, 3, 1, "", "add_extension"], [58, 2, 1, "", "browser_args"], [58, 2, 1, "", "user_data_dir"], [58, 2, 1, "", "uses_custom_data_dir"]], "nodriver.Element": [[57, 3, 1, "", "apply"], [57, 2, 1, "", "assigned_slot"], [57, 2, 1, "", "attributes"], [57, 2, 1, "", "attrs"], [57, 2, 1, "", "backend_node_id"], [57, 2, 1, "", "base_url"], [57, 2, 1, "", "child_node_count"], [57, 2, 1, "", "children"], [57, 3, 1, "", "clear_input"], [57, 3, 1, "", "click"], [57, 2, 1, "", "compatibility_mode"], [57, 2, 1, "", "content_document"], [57, 2, 1, "", "distributed_nodes"], [57, 2, 1, "", "document_url"], [57, 3, 1, "", "flash"], [57, 3, 1, "", "focus"], [57, 2, 1, "", "frame_id"], [57, 3, 1, "", "get_html"], [57, 3, 1, "", "get_js_attributes"], [57, 3, 1, "", "get_position"], [57, 3, 1, "", "highlight_overlay"], [57, 2, 1, "", "imported_document"], [57, 2, 1, "", "internal_subset"], [57, 3, 1, "", "is_recording"], [57, 2, 1, "", "is_svg"], [57, 2, 1, "", "local_name"], [57, 3, 1, "", "mouse_click"], [57, 3, 1, "", "mouse_drag"], [57, 3, 1, "", "mouse_move"], [57, 2, 1, "", "node"], [57, 2, 1, "", "node_id"], [57, 2, 1, "", "node_name"], [57, 2, 1, "", "node_type"], [57, 2, 1, "", "node_value"], [57, 2, 1, "", "object_id"], [57, 2, 1, "", "parent"], [57, 2, 1, "", "parent_id"], [57, 2, 1, "", "pseudo_elements"], [57, 2, 1, "", "pseudo_identifier"], [57, 2, 1, "", "pseudo_type"], [57, 2, 1, "", "public_id"], [57, 3, 1, "", "query_selector"], [57, 3, 1, "", "query_selector_all"], [57, 3, 1, "", "record_video"], [57, 2, 1, "", "remote_object"], [57, 3, 1, "", "remove_from_dom"], [57, 3, 1, "", "save_screenshot"], [57, 3, 1, "", "save_to_dom"], [57, 3, 1, "", "scroll_into_view"], [57, 3, 1, "", "select_option"], [57, 3, 1, "", "send_file"], [57, 3, 1, "", "send_keys"], [57, 3, 1, "", "set_text"], [57, 3, 1, "", "set_value"], [57, 2, 1, "", "shadow_children"], [57, 2, 1, "", "shadow_root_type"], [57, 2, 1, "", "shadow_roots"], [57, 2, 1, "", "system_id"], [57, 2, 1, "", "tab"], [57, 2, 1, "", "tag"], [57, 2, 1, "", "tag_name"], [57, 2, 1, "", "template_content"], [57, 2, 1, "", "text"], [57, 2, 1, "", "text_all"], [57, 2, 1, "", "tree"], [57, 3, 1, "", "update"], [57, 2, 1, "", "value"], [57, 2, 1, "", "xml_version"]], "nodriver.Tab": [[59, 3, 1, "", "aclose"], [59, 3, 1, "", "activate"], [59, 3, 1, "", "add_handler"], [59, 3, 1, "", "aopen"], [59, 1, 1, "", "attached"], [59, 3, 1, "", "back"], [59, 3, 1, "", "bring_to_front"], [59, 1, 1, "", "browser"], [59, 3, 1, "", "close"], [59, 2, 1, "", "closed"], [59, 3, 1, "", "download_file"], [59, 3, 1, "", "evaluate"], [59, 3, 1, "", "feed_cdp"], [59, 3, 1, "", "find"], [59, 3, 1, "", "find_all"], [59, 3, 1, "", "find_element_by_text"], [59, 3, 1, "", "find_elements_by_text"], [59, 3, 1, "", "forward"], [59, 3, 1, "", "fullscreen"], [59, 3, 1, "", "get"], [59, 3, 1, "", "get_all_linked_sources"], [59, 3, 1, "", "get_all_urls"], [59, 3, 1, "", "get_content"], [59, 3, 1, "", "get_local_storage"], [59, 3, 1, "", "get_window"], [59, 3, 1, "", "inspector_open"], [59, 2, 1, "", "inspector_url"], [59, 3, 1, "", "js_dumps"], [59, 3, 1, "", "maximize"], [59, 3, 1, "", "medimize"], [59, 3, 1, "", "minimize"], [59, 3, 1, "", "open_external_inspector"], [59, 3, 1, "", "query_selector"], [59, 3, 1, "", "query_selector_all"], [59, 3, 1, "", "reload"], [59, 3, 1, "", "save_screenshot"], [59, 3, 1, "", "scroll_down"], [59, 3, 1, "", "scroll_up"], [59, 3, 1, "", "select"], [59, 3, 1, "", "select_all"], [59, 3, 1, "", "send"], [59, 3, 1, "", "set_download_path"], [59, 3, 1, "", "set_local_storage"], [59, 3, 1, "", "set_window_size"], [59, 3, 1, "", "set_window_state"], [59, 3, 1, "", "sleep"], [59, 2, 1, "", "target"], [59, 3, 1, "", "update_target"], [59, 3, 1, "", "verify_cf"], [59, 3, 1, "", "wait"], [59, 3, 1, "", "wait_for"], [59, 1, 1, "", "websocket"]], "nodriver.cdp": [[2, 4, 0, "-", "accessibility"], [3, 4, 0, "-", "animation"], [4, 4, 0, "-", "audits"], [5, 4, 0, "-", "autofill"], [6, 4, 0, "-", "background_service"], [7, 4, 0, "-", "bluetooth_emulation"], [8, 4, 0, "-", "browser"], [9, 4, 0, "-", "cache_storage"], [10, 4, 0, "-", "cast"], [11, 4, 0, "-", "console"], [12, 4, 0, "-", "css"], [13, 4, 0, "-", "database"], [14, 4, 0, "-", "debugger"], [15, 4, 0, "-", "device_access"], [16, 4, 0, "-", "device_orientation"], [17, 4, 0, "-", "dom"], [18, 4, 0, "-", "dom_debugger"], [19, 4, 0, "-", "dom_snapshot"], [20, 4, 0, "-", "dom_storage"], [21, 4, 0, "-", "emulation"], [22, 4, 0, "-", "event_breakpoints"], [23, 4, 0, "-", "extensions"], [24, 4, 0, "-", "fed_cm"], [25, 4, 0, "-", "fetch"], [26, 4, 0, "-", "file_system"], [27, 4, 0, "-", "headless_experimental"], [28, 4, 0, "-", "heap_profiler"], [29, 4, 0, "-", "indexed_db"], [30, 4, 0, "-", "input_"], [31, 4, 0, "-", "inspector"], [32, 4, 0, "-", "io"], [33, 4, 0, "-", "layer_tree"], [34, 4, 0, "-", "log"], [35, 4, 0, "-", "media"], [36, 4, 0, "-", "memory"], [37, 4, 0, "-", "network"], [38, 4, 0, "-", "overlay"], [39, 4, 0, "-", "page"], [40, 4, 0, "-", "performance"], [41, 4, 0, "-", "performance_timeline"], [42, 4, 0, "-", "preload"], [43, 4, 0, "-", "profiler"], [44, 4, 0, "-", "pwa"], [45, 4, 0, "-", "runtime"], [46, 4, 0, "-", "schema"], [47, 4, 0, "-", "security"], [48, 4, 0, "-", "service_worker"], [49, 4, 0, "-", "storage"], [50, 4, 0, "-", "system_info"], [51, 4, 0, "-", "target"], [52, 4, 0, "-", "tethering"], [53, 4, 0, "-", "tracing"], [54, 4, 0, "-", "web_audio"], [55, 4, 0, "-", "web_authn"]], "nodriver.cdp.accessibility": [[2, 0, 1, "", "AXNode"], [2, 0, 1, "", "AXNodeId"], [2, 0, 1, "", "AXProperty"], [2, 0, 1, "", "AXPropertyName"], [2, 0, 1, "", "AXRelatedNode"], [2, 0, 1, "", "AXValue"], [2, 0, 1, "", "AXValueNativeSourceType"], [2, 0, 1, "", "AXValueSource"], [2, 0, 1, "", "AXValueSourceType"], [2, 0, 1, "", "AXValueType"], [2, 0, 1, "", "LoadComplete"], [2, 0, 1, "", "NodesUpdated"], [2, 5, 1, "", "disable"], [2, 5, 1, "", "enable"], [2, 5, 1, "", "get_ax_node_and_ancestors"], [2, 5, 1, "", "get_child_ax_nodes"], [2, 5, 1, "", "get_full_ax_tree"], [2, 5, 1, "", "get_partial_ax_tree"], [2, 5, 1, "", "get_root_ax_node"], [2, 5, 1, "", "query_ax_tree"]], "nodriver.cdp.accessibility.AXNode": [[2, 1, 1, "", "backend_dom_node_id"], [2, 1, 1, "", "child_ids"], [2, 1, 1, "", "chrome_role"], [2, 1, 1, "", "description"], [2, 1, 1, "", "frame_id"], [2, 1, 1, "", "ignored"], [2, 1, 1, "", "ignored_reasons"], [2, 1, 1, "", "name"], [2, 1, 1, "", "node_id"], [2, 1, 1, "", "parent_id"], [2, 1, 1, "", "properties"], [2, 1, 1, "", "role"], [2, 1, 1, "", "value"]], "nodriver.cdp.accessibility.AXProperty": [[2, 1, 1, "", "name"], [2, 1, 1, "", "value"]], "nodriver.cdp.accessibility.AXPropertyName": [[2, 1, 1, "", "ACTIONS"], [2, 1, 1, "", "ACTIVEDESCENDANT"], [2, 1, 1, "", "ATOMIC"], [2, 1, 1, "", "AUTOCOMPLETE"], [2, 1, 1, "", "BUSY"], [2, 1, 1, "", "CHECKED"], [2, 1, 1, "", "CONTROLS"], [2, 1, 1, "", "DESCRIBEDBY"], [2, 1, 1, "", "DETAILS"], [2, 1, 1, "", "DISABLED"], [2, 1, 1, "", "EDITABLE"], [2, 1, 1, "", "ERRORMESSAGE"], [2, 1, 1, "", "EXPANDED"], [2, 1, 1, "", "FLOWTO"], [2, 1, 1, "", "FOCUSABLE"], [2, 1, 1, "", "FOCUSED"], [2, 1, 1, "", "HAS_POPUP"], [2, 1, 1, "", "HIDDEN"], [2, 1, 1, "", "HIDDEN_ROOT"], [2, 1, 1, "", "INVALID"], [2, 1, 1, "", "KEYSHORTCUTS"], [2, 1, 1, "", "LABELLEDBY"], [2, 1, 1, "", "LEVEL"], [2, 1, 1, "", "LIVE"], [2, 1, 1, "", "MODAL"], [2, 1, 1, "", "MULTILINE"], [2, 1, 1, "", "MULTISELECTABLE"], [2, 1, 1, "", "ORIENTATION"], [2, 1, 1, "", "OWNS"], [2, 1, 1, "", "PRESSED"], [2, 1, 1, "", "READONLY"], [2, 1, 1, "", "RELEVANT"], [2, 1, 1, "", "REQUIRED"], [2, 1, 1, "", "ROLEDESCRIPTION"], [2, 1, 1, "", "ROOT"], [2, 1, 1, "", "SELECTED"], [2, 1, 1, "", "SETTABLE"], [2, 1, 1, "", "URL"], [2, 1, 1, "", "VALUEMAX"], [2, 1, 1, "", "VALUEMIN"], [2, 1, 1, "", "VALUETEXT"]], "nodriver.cdp.accessibility.AXRelatedNode": [[2, 1, 1, "", "backend_dom_node_id"], [2, 1, 1, "", "idref"], [2, 1, 1, "", "text"]], "nodriver.cdp.accessibility.AXValue": [[2, 1, 1, "", "related_nodes"], [2, 1, 1, "", "sources"], [2, 1, 1, "", "type_"], [2, 1, 1, "", "value"]], "nodriver.cdp.accessibility.AXValueNativeSourceType": [[2, 1, 1, "", "DESCRIPTION"], [2, 1, 1, "", "FIGCAPTION"], [2, 1, 1, "", "LABEL"], [2, 1, 1, "", "LABELFOR"], [2, 1, 1, "", "LABELWRAPPED"], [2, 1, 1, "", "LEGEND"], [2, 1, 1, "", "OTHER"], [2, 1, 1, "", "RUBYANNOTATION"], [2, 1, 1, "", "TABLECAPTION"], [2, 1, 1, "", "TITLE"]], "nodriver.cdp.accessibility.AXValueSource": [[2, 1, 1, "", "attribute"], [2, 1, 1, "", "attribute_value"], [2, 1, 1, "", "invalid"], [2, 1, 1, "", "invalid_reason"], [2, 1, 1, "", "native_source"], [2, 1, 1, "", "native_source_value"], [2, 1, 1, "", "superseded"], [2, 1, 1, "", "type_"], [2, 1, 1, "", "value"]], "nodriver.cdp.accessibility.AXValueSourceType": [[2, 1, 1, "", "ATTRIBUTE"], [2, 1, 1, "", "CONTENTS"], [2, 1, 1, "", "IMPLICIT"], [2, 1, 1, "", "PLACEHOLDER"], [2, 1, 1, "", "RELATED_ELEMENT"], [2, 1, 1, "", "STYLE"]], "nodriver.cdp.accessibility.AXValueType": [[2, 1, 1, "", "BOOLEAN"], [2, 1, 1, "", "BOOLEAN_OR_UNDEFINED"], [2, 1, 1, "", "COMPUTED_STRING"], [2, 1, 1, "", "DOM_RELATION"], [2, 1, 1, "", "IDREF"], [2, 1, 1, "", "IDREF_LIST"], [2, 1, 1, "", "INTEGER"], [2, 1, 1, "", "INTERNAL_ROLE"], [2, 1, 1, "", "NODE"], [2, 1, 1, "", "NODE_LIST"], [2, 1, 1, "", "NUMBER"], [2, 1, 1, "", "ROLE"], [2, 1, 1, "", "STRING"], [2, 1, 1, "", "TOKEN"], [2, 1, 1, "", "TOKEN_LIST"], [2, 1, 1, "", "TRISTATE"], [2, 1, 1, "", "VALUE_UNDEFINED"]], "nodriver.cdp.accessibility.LoadComplete": [[2, 1, 1, "", "root"]], "nodriver.cdp.accessibility.NodesUpdated": [[2, 1, 1, "", "nodes"]], "nodriver.cdp.animation": [[3, 0, 1, "", "Animation"], [3, 0, 1, "", "AnimationCanceled"], [3, 0, 1, "", "AnimationCreated"], [3, 0, 1, "", "AnimationEffect"], [3, 0, 1, "", "AnimationStarted"], [3, 0, 1, "", "AnimationUpdated"], [3, 0, 1, "", "KeyframeStyle"], [3, 0, 1, "", "KeyframesRule"], [3, 0, 1, "", "ViewOrScrollTimeline"], [3, 5, 1, "", "disable"], [3, 5, 1, "", "enable"], [3, 5, 1, "", "get_current_time"], [3, 5, 1, "", "get_playback_rate"], [3, 5, 1, "", "release_animations"], [3, 5, 1, "", "resolve_animation"], [3, 5, 1, "", "seek_animations"], [3, 5, 1, "", "set_paused"], [3, 5, 1, "", "set_playback_rate"], [3, 5, 1, "", "set_timing"]], "nodriver.cdp.animation.Animation": [[3, 1, 1, "", "css_id"], [3, 1, 1, "", "current_time"], [3, 1, 1, "", "id_"], [3, 1, 1, "", "name"], [3, 1, 1, "", "paused_state"], [3, 1, 1, "", "play_state"], [3, 1, 1, "", "playback_rate"], [3, 1, 1, "", "source"], [3, 1, 1, "", "start_time"], [3, 1, 1, "", "type_"], [3, 1, 1, "", "view_or_scroll_timeline"]], "nodriver.cdp.animation.AnimationCanceled": [[3, 1, 1, "", "id_"]], "nodriver.cdp.animation.AnimationCreated": [[3, 1, 1, "", "id_"]], "nodriver.cdp.animation.AnimationEffect": [[3, 1, 1, "", "backend_node_id"], [3, 1, 1, "", "delay"], [3, 1, 1, "", "direction"], [3, 1, 1, "", "duration"], [3, 1, 1, "", "easing"], [3, 1, 1, "", "end_delay"], [3, 1, 1, "", "fill"], [3, 1, 1, "", "iteration_start"], [3, 1, 1, "", "iterations"], [3, 1, 1, "", "keyframes_rule"]], "nodriver.cdp.animation.AnimationStarted": [[3, 1, 1, "", "animation"]], "nodriver.cdp.animation.AnimationUpdated": [[3, 1, 1, "", "animation"]], "nodriver.cdp.animation.KeyframeStyle": [[3, 1, 1, "", "easing"], [3, 1, 1, "", "offset"]], "nodriver.cdp.animation.KeyframesRule": [[3, 1, 1, "", "keyframes"], [3, 1, 1, "", "name"]], "nodriver.cdp.animation.ViewOrScrollTimeline": [[3, 1, 1, "", "axis"], [3, 1, 1, "", "end_offset"], [3, 1, 1, "", "source_node_id"], [3, 1, 1, "", "start_offset"], [3, 1, 1, "", "subject_node_id"]], "nodriver.cdp.audits": [[4, 0, 1, "", "AffectedCookie"], [4, 0, 1, "", "AffectedFrame"], [4, 0, 1, "", "AffectedRequest"], [4, 0, 1, "", "AttributionReportingIssueDetails"], [4, 0, 1, "", "AttributionReportingIssueType"], [4, 0, 1, "", "BlockedByResponseIssueDetails"], [4, 0, 1, "", "BlockedByResponseReason"], [4, 0, 1, "", "BounceTrackingIssueDetails"], [4, 0, 1, "", "ClientHintIssueDetails"], [4, 0, 1, "", "ClientHintIssueReason"], [4, 0, 1, "", "ContentSecurityPolicyIssueDetails"], [4, 0, 1, "", "ContentSecurityPolicyViolationType"], [4, 0, 1, "", "CookieDeprecationMetadataIssueDetails"], [4, 0, 1, "", "CookieExclusionReason"], [4, 0, 1, "", "CookieIssueDetails"], [4, 0, 1, "", "CookieOperation"], [4, 0, 1, "", "CookieWarningReason"], [4, 0, 1, "", "CorsIssueDetails"], [4, 0, 1, "", "DeprecationIssueDetails"], [4, 0, 1, "", "FailedRequestInfo"], [4, 0, 1, "", "FederatedAuthRequestIssueDetails"], [4, 0, 1, "", "FederatedAuthRequestIssueReason"], [4, 0, 1, "", "FederatedAuthUserInfoRequestIssueDetails"], [4, 0, 1, "", "FederatedAuthUserInfoRequestIssueReason"], [4, 0, 1, "", "GenericIssueDetails"], [4, 0, 1, "", "GenericIssueErrorType"], [4, 0, 1, "", "HeavyAdIssueDetails"], [4, 0, 1, "", "HeavyAdReason"], [4, 0, 1, "", "HeavyAdResolutionStatus"], [4, 0, 1, "", "InspectorIssue"], [4, 0, 1, "", "InspectorIssueCode"], [4, 0, 1, "", "InspectorIssueDetails"], [4, 0, 1, "", "IssueAdded"], [4, 0, 1, "", "IssueId"], [4, 0, 1, "", "LowTextContrastIssueDetails"], [4, 0, 1, "", "MixedContentIssueDetails"], [4, 0, 1, "", "MixedContentResolutionStatus"], [4, 0, 1, "", "MixedContentResourceType"], [4, 0, 1, "", "NavigatorUserAgentIssueDetails"], [4, 0, 1, "", "PropertyRuleIssueDetails"], [4, 0, 1, "", "PropertyRuleIssueReason"], [4, 0, 1, "", "QuirksModeIssueDetails"], [4, 0, 1, "", "SharedArrayBufferIssueDetails"], [4, 0, 1, "", "SharedArrayBufferIssueType"], [4, 0, 1, "", "SharedDictionaryError"], [4, 0, 1, "", "SharedDictionaryIssueDetails"], [4, 0, 1, "", "SourceCodeLocation"], [4, 0, 1, "", "StyleSheetLoadingIssueReason"], [4, 0, 1, "", "StylesheetLoadingIssueDetails"], [4, 5, 1, "", "check_contrast"], [4, 5, 1, "", "check_forms_issues"], [4, 5, 1, "", "disable"], [4, 5, 1, "", "enable"], [4, 5, 1, "", "get_encoded_response"]], "nodriver.cdp.audits.AffectedCookie": [[4, 1, 1, "", "domain"], [4, 1, 1, "", "name"], [4, 1, 1, "", "path"]], "nodriver.cdp.audits.AffectedFrame": [[4, 1, 1, "", "frame_id"]], "nodriver.cdp.audits.AffectedRequest": [[4, 1, 1, "", "request_id"], [4, 1, 1, "", "url"]], "nodriver.cdp.audits.AttributionReportingIssueDetails": [[4, 1, 1, "", "invalid_parameter"], [4, 1, 1, "", "request"], [4, 1, 1, "", "violating_node_id"], [4, 1, 1, "", "violation_type"]], "nodriver.cdp.audits.AttributionReportingIssueType": [[4, 1, 1, "", "INSECURE_CONTEXT"], [4, 1, 1, "", "INVALID_HEADER"], [4, 1, 1, "", "INVALID_INFO_HEADER"], [4, 1, 1, "", "INVALID_REGISTER_OS_SOURCE_HEADER"], [4, 1, 1, "", "INVALID_REGISTER_OS_TRIGGER_HEADER"], [4, 1, 1, "", "INVALID_REGISTER_TRIGGER_HEADER"], [4, 1, 1, "", "NAVIGATION_REGISTRATION_UNIQUE_SCOPE_ALREADY_SET"], [4, 1, 1, "", "NAVIGATION_REGISTRATION_WITHOUT_TRANSIENT_USER_ACTIVATION"], [4, 1, 1, "", "NO_REGISTER_OS_SOURCE_HEADER"], [4, 1, 1, "", "NO_REGISTER_OS_TRIGGER_HEADER"], [4, 1, 1, "", "NO_REGISTER_SOURCE_HEADER"], [4, 1, 1, "", "NO_REGISTER_TRIGGER_HEADER"], [4, 1, 1, "", "NO_WEB_OR_OS_SUPPORT"], [4, 1, 1, "", "OS_SOURCE_IGNORED"], [4, 1, 1, "", "OS_TRIGGER_IGNORED"], [4, 1, 1, "", "PERMISSION_POLICY_DISABLED"], [4, 1, 1, "", "SOURCE_AND_TRIGGER_HEADERS"], [4, 1, 1, "", "SOURCE_IGNORED"], [4, 1, 1, "", "TRIGGER_IGNORED"], [4, 1, 1, "", "UNTRUSTWORTHY_REPORTING_ORIGIN"], [4, 1, 1, "", "WEB_AND_OS_HEADERS"]], "nodriver.cdp.audits.BlockedByResponseIssueDetails": [[4, 1, 1, "", "blocked_frame"], [4, 1, 1, "", "parent_frame"], [4, 1, 1, "", "reason"], [4, 1, 1, "", "request"]], "nodriver.cdp.audits.BlockedByResponseReason": [[4, 1, 1, "", "COEP_FRAME_RESOURCE_NEEDS_COEP_HEADER"], [4, 1, 1, "", "COOP_SANDBOXED_I_FRAME_CANNOT_NAVIGATE_TO_COOP_PAGE"], [4, 1, 1, "", "CORP_NOT_SAME_ORIGIN"], [4, 1, 1, "", "CORP_NOT_SAME_ORIGIN_AFTER_DEFAULTED_TO_SAME_ORIGIN_BY_COEP"], [4, 1, 1, "", "CORP_NOT_SAME_ORIGIN_AFTER_DEFAULTED_TO_SAME_ORIGIN_BY_COEP_AND_DIP"], [4, 1, 1, "", "CORP_NOT_SAME_ORIGIN_AFTER_DEFAULTED_TO_SAME_ORIGIN_BY_DIP"], [4, 1, 1, "", "CORP_NOT_SAME_SITE"]], "nodriver.cdp.audits.BounceTrackingIssueDetails": [[4, 1, 1, "", "tracking_sites"]], "nodriver.cdp.audits.ClientHintIssueDetails": [[4, 1, 1, "", "client_hint_issue_reason"], [4, 1, 1, "", "source_code_location"]], "nodriver.cdp.audits.ClientHintIssueReason": [[4, 1, 1, "", "META_TAG_ALLOW_LIST_INVALID_ORIGIN"], [4, 1, 1, "", "META_TAG_MODIFIED_HTML"]], "nodriver.cdp.audits.ContentSecurityPolicyIssueDetails": [[4, 1, 1, "", "blocked_url"], [4, 1, 1, "", "content_security_policy_violation_type"], [4, 1, 1, "", "frame_ancestor"], [4, 1, 1, "", "is_report_only"], [4, 1, 1, "", "source_code_location"], [4, 1, 1, "", "violated_directive"], [4, 1, 1, "", "violating_node_id"]], "nodriver.cdp.audits.ContentSecurityPolicyViolationType": [[4, 1, 1, "", "K_EVAL_VIOLATION"], [4, 1, 1, "", "K_INLINE_VIOLATION"], [4, 1, 1, "", "K_TRUSTED_TYPES_POLICY_VIOLATION"], [4, 1, 1, "", "K_TRUSTED_TYPES_SINK_VIOLATION"], [4, 1, 1, "", "K_URL_VIOLATION"], [4, 1, 1, "", "K_WASM_EVAL_VIOLATION"]], "nodriver.cdp.audits.CookieDeprecationMetadataIssueDetails": [[4, 1, 1, "", "allowed_sites"], [4, 1, 1, "", "is_opt_out_top_level"], [4, 1, 1, "", "operation"], [4, 1, 1, "", "opt_out_percentage"]], "nodriver.cdp.audits.CookieExclusionReason": [[4, 1, 1, "", "EXCLUDE_DOMAIN_NON_ASCII"], [4, 1, 1, "", "EXCLUDE_INVALID_SAME_PARTY"], [4, 1, 1, "", "EXCLUDE_PORT_MISMATCH"], [4, 1, 1, "", "EXCLUDE_SAME_PARTY_CROSS_PARTY_CONTEXT"], [4, 1, 1, "", "EXCLUDE_SAME_SITE_LAX"], [4, 1, 1, "", "EXCLUDE_SAME_SITE_NONE_INSECURE"], [4, 1, 1, "", "EXCLUDE_SAME_SITE_STRICT"], [4, 1, 1, "", "EXCLUDE_SAME_SITE_UNSPECIFIED_TREATED_AS_LAX"], [4, 1, 1, "", "EXCLUDE_SCHEME_MISMATCH"], [4, 1, 1, "", "EXCLUDE_THIRD_PARTY_COOKIE_BLOCKED_IN_FIRST_PARTY_SET"], [4, 1, 1, "", "EXCLUDE_THIRD_PARTY_PHASEOUT"]], "nodriver.cdp.audits.CookieIssueDetails": [[4, 1, 1, "", "cookie"], [4, 1, 1, "", "cookie_exclusion_reasons"], [4, 1, 1, "", "cookie_url"], [4, 1, 1, "", "cookie_warning_reasons"], [4, 1, 1, "", "operation"], [4, 1, 1, "", "raw_cookie_line"], [4, 1, 1, "", "request"], [4, 1, 1, "", "site_for_cookies"]], "nodriver.cdp.audits.CookieOperation": [[4, 1, 1, "", "READ_COOKIE"], [4, 1, 1, "", "SET_COOKIE"]], "nodriver.cdp.audits.CookieWarningReason": [[4, 1, 1, "", "WARN_ATTRIBUTE_VALUE_EXCEEDS_MAX_SIZE"], [4, 1, 1, "", "WARN_CROSS_SITE_REDIRECT_DOWNGRADE_CHANGES_INCLUSION"], [4, 1, 1, "", "WARN_DEPRECATION_TRIAL_METADATA"], [4, 1, 1, "", "WARN_DOMAIN_NON_ASCII"], [4, 1, 1, "", "WARN_SAME_SITE_LAX_CROSS_DOWNGRADE_LAX"], [4, 1, 1, "", "WARN_SAME_SITE_LAX_CROSS_DOWNGRADE_STRICT"], [4, 1, 1, "", "WARN_SAME_SITE_NONE_INSECURE"], [4, 1, 1, "", "WARN_SAME_SITE_STRICT_CROSS_DOWNGRADE_LAX"], [4, 1, 1, "", "WARN_SAME_SITE_STRICT_CROSS_DOWNGRADE_STRICT"], [4, 1, 1, "", "WARN_SAME_SITE_STRICT_LAX_DOWNGRADE_STRICT"], [4, 1, 1, "", "WARN_SAME_SITE_UNSPECIFIED_CROSS_SITE_CONTEXT"], [4, 1, 1, "", "WARN_SAME_SITE_UNSPECIFIED_LAX_ALLOW_UNSAFE"], [4, 1, 1, "", "WARN_THIRD_PARTY_COOKIE_HEURISTIC"], [4, 1, 1, "", "WARN_THIRD_PARTY_PHASEOUT"]], "nodriver.cdp.audits.CorsIssueDetails": [[4, 1, 1, "", "client_security_state"], [4, 1, 1, "", "cors_error_status"], [4, 1, 1, "", "initiator_origin"], [4, 1, 1, "", "is_warning"], [4, 1, 1, "", "location"], [4, 1, 1, "", "request"], [4, 1, 1, "", "resource_ip_address_space"]], "nodriver.cdp.audits.DeprecationIssueDetails": [[4, 1, 1, "", "affected_frame"], [4, 1, 1, "", "source_code_location"], [4, 1, 1, "", "type_"]], "nodriver.cdp.audits.FailedRequestInfo": [[4, 1, 1, "", "failure_message"], [4, 1, 1, "", "request_id"], [4, 1, 1, "", "url"]], "nodriver.cdp.audits.FederatedAuthRequestIssueDetails": [[4, 1, 1, "", "federated_auth_request_issue_reason"]], "nodriver.cdp.audits.FederatedAuthRequestIssueReason": [[4, 1, 1, "", "ACCOUNTS_HTTP_NOT_FOUND"], [4, 1, 1, "", "ACCOUNTS_INVALID_CONTENT_TYPE"], [4, 1, 1, "", "ACCOUNTS_INVALID_RESPONSE"], [4, 1, 1, "", "ACCOUNTS_LIST_EMPTY"], [4, 1, 1, "", "ACCOUNTS_NO_RESPONSE"], [4, 1, 1, "", "CANCELED"], [4, 1, 1, "", "CLIENT_METADATA_HTTP_NOT_FOUND"], [4, 1, 1, "", "CLIENT_METADATA_INVALID_CONTENT_TYPE"], [4, 1, 1, "", "CLIENT_METADATA_INVALID_RESPONSE"], [4, 1, 1, "", "CLIENT_METADATA_NO_RESPONSE"], [4, 1, 1, "", "CONFIG_HTTP_NOT_FOUND"], [4, 1, 1, "", "CONFIG_INVALID_CONTENT_TYPE"], [4, 1, 1, "", "CONFIG_INVALID_RESPONSE"], [4, 1, 1, "", "CONFIG_NOT_IN_WELL_KNOWN"], [4, 1, 1, "", "CONFIG_NO_RESPONSE"], [4, 1, 1, "", "DISABLED_IN_FLAGS"], [4, 1, 1, "", "DISABLED_IN_SETTINGS"], [4, 1, 1, "", "ERROR_FETCHING_SIGNIN"], [4, 1, 1, "", "ERROR_ID_TOKEN"], [4, 1, 1, "", "IDP_NOT_POTENTIALLY_TRUSTWORTHY"], [4, 1, 1, "", "ID_TOKEN_CROSS_SITE_IDP_ERROR_RESPONSE"], [4, 1, 1, "", "ID_TOKEN_HTTP_NOT_FOUND"], [4, 1, 1, "", "ID_TOKEN_IDP_ERROR_RESPONSE"], [4, 1, 1, "", "ID_TOKEN_INVALID_CONTENT_TYPE"], [4, 1, 1, "", "ID_TOKEN_INVALID_REQUEST"], [4, 1, 1, "", "ID_TOKEN_INVALID_RESPONSE"], [4, 1, 1, "", "ID_TOKEN_NO_RESPONSE"], [4, 1, 1, "", "INVALID_FIELDS_SPECIFIED"], [4, 1, 1, "", "INVALID_SIGNIN_RESPONSE"], [4, 1, 1, "", "MISSING_TRANSIENT_USER_ACTIVATION"], [4, 1, 1, "", "NOT_SIGNED_IN_WITH_IDP"], [4, 1, 1, "", "RELYING_PARTY_ORIGIN_IS_OPAQUE"], [4, 1, 1, "", "REPLACED_BY_ACTIVE_MODE"], [4, 1, 1, "", "RP_PAGE_NOT_VISIBLE"], [4, 1, 1, "", "SHOULD_EMBARGO"], [4, 1, 1, "", "SILENT_MEDIATION_FAILURE"], [4, 1, 1, "", "THIRD_PARTY_COOKIES_BLOCKED"], [4, 1, 1, "", "TOO_MANY_REQUESTS"], [4, 1, 1, "", "TYPE_NOT_MATCHING"], [4, 1, 1, "", "WELL_KNOWN_HTTP_NOT_FOUND"], [4, 1, 1, "", "WELL_KNOWN_INVALID_CONTENT_TYPE"], [4, 1, 1, "", "WELL_KNOWN_INVALID_RESPONSE"], [4, 1, 1, "", "WELL_KNOWN_LIST_EMPTY"], [4, 1, 1, "", "WELL_KNOWN_NO_RESPONSE"], [4, 1, 1, "", "WELL_KNOWN_TOO_BIG"]], "nodriver.cdp.audits.FederatedAuthUserInfoRequestIssueDetails": [[4, 1, 1, "", "federated_auth_user_info_request_issue_reason"]], "nodriver.cdp.audits.FederatedAuthUserInfoRequestIssueReason": [[4, 1, 1, "", "INVALID_ACCOUNTS_RESPONSE"], [4, 1, 1, "", "INVALID_CONFIG_OR_WELL_KNOWN"], [4, 1, 1, "", "NOT_IFRAME"], [4, 1, 1, "", "NOT_POTENTIALLY_TRUSTWORTHY"], [4, 1, 1, "", "NOT_SAME_ORIGIN"], [4, 1, 1, "", "NOT_SIGNED_IN_WITH_IDP"], [4, 1, 1, "", "NO_ACCOUNT_SHARING_PERMISSION"], [4, 1, 1, "", "NO_API_PERMISSION"], [4, 1, 1, "", "NO_RETURNING_USER_FROM_FETCHED_ACCOUNTS"]], "nodriver.cdp.audits.GenericIssueDetails": [[4, 1, 1, "", "error_type"], [4, 1, 1, "", "frame_id"], [4, 1, 1, "", "request"], [4, 1, 1, "", "violating_node_attribute"], [4, 1, 1, "", "violating_node_id"]], "nodriver.cdp.audits.GenericIssueErrorType": [[4, 1, 1, "", "FORM_ARIA_LABELLED_BY_TO_NON_EXISTING_ID"], [4, 1, 1, "", "FORM_AUTOCOMPLETE_ATTRIBUTE_EMPTY_ERROR"], [4, 1, 1, "", "FORM_DUPLICATE_ID_FOR_INPUT_ERROR"], [4, 1, 1, "", "FORM_EMPTY_ID_AND_NAME_ATTRIBUTES_FOR_INPUT_ERROR"], [4, 1, 1, "", "FORM_INPUT_ASSIGNED_AUTOCOMPLETE_VALUE_TO_ID_OR_NAME_ATTRIBUTE_ERROR"], [4, 1, 1, "", "FORM_INPUT_HAS_WRONG_BUT_WELL_INTENDED_AUTOCOMPLETE_VALUE_ERROR"], [4, 1, 1, "", "FORM_INPUT_WITH_NO_LABEL_ERROR"], [4, 1, 1, "", "FORM_LABEL_FOR_MATCHES_NON_EXISTING_ID_ERROR"], [4, 1, 1, "", "FORM_LABEL_FOR_NAME_ERROR"], [4, 1, 1, "", "FORM_LABEL_HAS_NEITHER_FOR_NOR_NESTED_INPUT"], [4, 1, 1, "", "RESPONSE_WAS_BLOCKED_BY_ORB"]], "nodriver.cdp.audits.HeavyAdIssueDetails": [[4, 1, 1, "", "frame"], [4, 1, 1, "", "reason"], [4, 1, 1, "", "resolution"]], "nodriver.cdp.audits.HeavyAdReason": [[4, 1, 1, "", "CPU_PEAK_LIMIT"], [4, 1, 1, "", "CPU_TOTAL_LIMIT"], [4, 1, 1, "", "NETWORK_TOTAL_LIMIT"]], "nodriver.cdp.audits.HeavyAdResolutionStatus": [[4, 1, 1, "", "HEAVY_AD_BLOCKED"], [4, 1, 1, "", "HEAVY_AD_WARNING"]], "nodriver.cdp.audits.InspectorIssue": [[4, 1, 1, "", "code"], [4, 1, 1, "", "details"], [4, 1, 1, "", "issue_id"]], "nodriver.cdp.audits.InspectorIssueCode": [[4, 1, 1, "", "ATTRIBUTION_REPORTING_ISSUE"], [4, 1, 1, "", "BLOCKED_BY_RESPONSE_ISSUE"], [4, 1, 1, "", "BOUNCE_TRACKING_ISSUE"], [4, 1, 1, "", "CLIENT_HINT_ISSUE"], [4, 1, 1, "", "CONTENT_SECURITY_POLICY_ISSUE"], [4, 1, 1, "", "COOKIE_DEPRECATION_METADATA_ISSUE"], [4, 1, 1, "", "COOKIE_ISSUE"], [4, 1, 1, "", "CORS_ISSUE"], [4, 1, 1, "", "DEPRECATION_ISSUE"], [4, 1, 1, "", "FEDERATED_AUTH_REQUEST_ISSUE"], [4, 1, 1, "", "FEDERATED_AUTH_USER_INFO_REQUEST_ISSUE"], [4, 1, 1, "", "GENERIC_ISSUE"], [4, 1, 1, "", "HEAVY_AD_ISSUE"], [4, 1, 1, "", "LOW_TEXT_CONTRAST_ISSUE"], [4, 1, 1, "", "MIXED_CONTENT_ISSUE"], [4, 1, 1, "", "NAVIGATOR_USER_AGENT_ISSUE"], [4, 1, 1, "", "PROPERTY_RULE_ISSUE"], [4, 1, 1, "", "QUIRKS_MODE_ISSUE"], [4, 1, 1, "", "SHARED_ARRAY_BUFFER_ISSUE"], [4, 1, 1, "", "SHARED_DICTIONARY_ISSUE"], [4, 1, 1, "", "STYLESHEET_LOADING_ISSUE"]], "nodriver.cdp.audits.InspectorIssueDetails": [[4, 1, 1, "", "attribution_reporting_issue_details"], [4, 1, 1, "", "blocked_by_response_issue_details"], [4, 1, 1, "", "bounce_tracking_issue_details"], [4, 1, 1, "", "client_hint_issue_details"], [4, 1, 1, "", "content_security_policy_issue_details"], [4, 1, 1, "", "cookie_deprecation_metadata_issue_details"], [4, 1, 1, "", "cookie_issue_details"], [4, 1, 1, "", "cors_issue_details"], [4, 1, 1, "", "deprecation_issue_details"], [4, 1, 1, "", "federated_auth_request_issue_details"], [4, 1, 1, "", "federated_auth_user_info_request_issue_details"], [4, 1, 1, "", "generic_issue_details"], [4, 1, 1, "", "heavy_ad_issue_details"], [4, 1, 1, "", "low_text_contrast_issue_details"], [4, 1, 1, "", "mixed_content_issue_details"], [4, 1, 1, "", "navigator_user_agent_issue_details"], [4, 1, 1, "", "property_rule_issue_details"], [4, 1, 1, "", "quirks_mode_issue_details"], [4, 1, 1, "", "shared_array_buffer_issue_details"], [4, 1, 1, "", "shared_dictionary_issue_details"], [4, 1, 1, "", "stylesheet_loading_issue_details"]], "nodriver.cdp.audits.IssueAdded": [[4, 1, 1, "", "issue"]], "nodriver.cdp.audits.LowTextContrastIssueDetails": [[4, 1, 1, "", "contrast_ratio"], [4, 1, 1, "", "font_size"], [4, 1, 1, "", "font_weight"], [4, 1, 1, "", "threshold_aa"], [4, 1, 1, "", "threshold_aaa"], [4, 1, 1, "", "violating_node_id"], [4, 1, 1, "", "violating_node_selector"]], "nodriver.cdp.audits.MixedContentIssueDetails": [[4, 1, 1, "", "frame"], [4, 1, 1, "", "insecure_url"], [4, 1, 1, "", "main_resource_url"], [4, 1, 1, "", "request"], [4, 1, 1, "", "resolution_status"], [4, 1, 1, "", "resource_type"]], "nodriver.cdp.audits.MixedContentResolutionStatus": [[4, 1, 1, "", "MIXED_CONTENT_AUTOMATICALLY_UPGRADED"], [4, 1, 1, "", "MIXED_CONTENT_BLOCKED"], [4, 1, 1, "", "MIXED_CONTENT_WARNING"]], "nodriver.cdp.audits.MixedContentResourceType": [[4, 1, 1, "", "ATTRIBUTION_SRC"], [4, 1, 1, "", "AUDIO"], [4, 1, 1, "", "BEACON"], [4, 1, 1, "", "CSP_REPORT"], [4, 1, 1, "", "DOWNLOAD"], [4, 1, 1, "", "EVENT_SOURCE"], [4, 1, 1, "", "FAVICON"], [4, 1, 1, "", "FONT"], [4, 1, 1, "", "FORM"], [4, 1, 1, "", "FRAME"], [4, 1, 1, "", "IMAGE"], [4, 1, 1, "", "IMPORT"], [4, 1, 1, "", "JSON"], [4, 1, 1, "", "MANIFEST"], [4, 1, 1, "", "PING"], [4, 1, 1, "", "PLUGIN_DATA"], [4, 1, 1, "", "PLUGIN_RESOURCE"], [4, 1, 1, "", "PREFETCH"], [4, 1, 1, "", "RESOURCE"], [4, 1, 1, "", "SCRIPT"], [4, 1, 1, "", "SERVICE_WORKER"], [4, 1, 1, "", "SHARED_WORKER"], [4, 1, 1, "", "SPECULATION_RULES"], [4, 1, 1, "", "STYLESHEET"], [4, 1, 1, "", "TRACK"], [4, 1, 1, "", "VIDEO"], [4, 1, 1, "", "WORKER"], [4, 1, 1, "", "XML_HTTP_REQUEST"], [4, 1, 1, "", "XSLT"]], "nodriver.cdp.audits.NavigatorUserAgentIssueDetails": [[4, 1, 1, "", "location"], [4, 1, 1, "", "url"]], "nodriver.cdp.audits.PropertyRuleIssueDetails": [[4, 1, 1, "", "property_rule_issue_reason"], [4, 1, 1, "", "property_value"], [4, 1, 1, "", "source_code_location"]], "nodriver.cdp.audits.PropertyRuleIssueReason": [[4, 1, 1, "", "INVALID_INHERITS"], [4, 1, 1, "", "INVALID_INITIAL_VALUE"], [4, 1, 1, "", "INVALID_NAME"], [4, 1, 1, "", "INVALID_SYNTAX"]], "nodriver.cdp.audits.QuirksModeIssueDetails": [[4, 1, 1, "", "document_node_id"], [4, 1, 1, "", "frame_id"], [4, 1, 1, "", "is_limited_quirks_mode"], [4, 1, 1, "", "loader_id"], [4, 1, 1, "", "url"]], "nodriver.cdp.audits.SharedArrayBufferIssueDetails": [[4, 1, 1, "", "is_warning"], [4, 1, 1, "", "source_code_location"], [4, 1, 1, "", "type_"]], "nodriver.cdp.audits.SharedArrayBufferIssueType": [[4, 1, 1, "", "CREATION_ISSUE"], [4, 1, 1, "", "TRANSFER_ISSUE"]], "nodriver.cdp.audits.SharedDictionaryError": [[4, 1, 1, "", "USE_ERROR_CROSS_ORIGIN_NO_CORS_REQUEST"], [4, 1, 1, "", "USE_ERROR_DICTIONARY_LOAD_FAILURE"], [4, 1, 1, "", "USE_ERROR_MATCHING_DICTIONARY_NOT_USED"], [4, 1, 1, "", "USE_ERROR_UNEXPECTED_CONTENT_DICTIONARY_HEADER"], [4, 1, 1, "", "WRITE_ERROR_COSS_ORIGIN_NO_CORS_REQUEST"], [4, 1, 1, "", "WRITE_ERROR_DISALLOWED_BY_SETTINGS"], [4, 1, 1, "", "WRITE_ERROR_EXPIRED_RESPONSE"], [4, 1, 1, "", "WRITE_ERROR_FEATURE_DISABLED"], [4, 1, 1, "", "WRITE_ERROR_INSUFFICIENT_RESOURCES"], [4, 1, 1, "", "WRITE_ERROR_INVALID_MATCH_FIELD"], [4, 1, 1, "", "WRITE_ERROR_INVALID_STRUCTURED_HEADER"], [4, 1, 1, "", "WRITE_ERROR_NAVIGATION_REQUEST"], [4, 1, 1, "", "WRITE_ERROR_NON_LIST_MATCH_DEST_FIELD"], [4, 1, 1, "", "WRITE_ERROR_NON_SECURE_CONTEXT"], [4, 1, 1, "", "WRITE_ERROR_NON_STRING_ID_FIELD"], [4, 1, 1, "", "WRITE_ERROR_NON_STRING_IN_MATCH_DEST_LIST"], [4, 1, 1, "", "WRITE_ERROR_NON_STRING_MATCH_FIELD"], [4, 1, 1, "", "WRITE_ERROR_NON_TOKEN_TYPE_FIELD"], [4, 1, 1, "", "WRITE_ERROR_NO_MATCH_FIELD"], [4, 1, 1, "", "WRITE_ERROR_REQUEST_ABORTED"], [4, 1, 1, "", "WRITE_ERROR_SHUTTING_DOWN"], [4, 1, 1, "", "WRITE_ERROR_TOO_LONG_ID_FIELD"], [4, 1, 1, "", "WRITE_ERROR_UNSUPPORTED_TYPE"]], "nodriver.cdp.audits.SharedDictionaryIssueDetails": [[4, 1, 1, "", "request"], [4, 1, 1, "", "shared_dictionary_error"]], "nodriver.cdp.audits.SourceCodeLocation": [[4, 1, 1, "", "column_number"], [4, 1, 1, "", "line_number"], [4, 1, 1, "", "script_id"], [4, 1, 1, "", "url"]], "nodriver.cdp.audits.StyleSheetLoadingIssueReason": [[4, 1, 1, "", "LATE_IMPORT_RULE"], [4, 1, 1, "", "REQUEST_FAILED"]], "nodriver.cdp.audits.StylesheetLoadingIssueDetails": [[4, 1, 1, "", "failed_request_info"], [4, 1, 1, "", "source_code_location"], [4, 1, 1, "", "style_sheet_loading_issue_reason"]], "nodriver.cdp.autofill": [[5, 0, 1, "", "Address"], [5, 0, 1, "", "AddressField"], [5, 0, 1, "", "AddressFields"], [5, 0, 1, "", "AddressFormFilled"], [5, 0, 1, "", "AddressUI"], [5, 0, 1, "", "CreditCard"], [5, 0, 1, "", "FilledField"], [5, 0, 1, "", "FillingStrategy"], [5, 5, 1, "", "disable"], [5, 5, 1, "", "enable"], [5, 5, 1, "", "set_addresses"], [5, 5, 1, "", "trigger"]], "nodriver.cdp.autofill.Address": [[5, 1, 1, "", "fields"]], "nodriver.cdp.autofill.AddressField": [[5, 1, 1, "", "name"], [5, 1, 1, "", "value"]], "nodriver.cdp.autofill.AddressFields": [[5, 1, 1, "", "fields"]], "nodriver.cdp.autofill.AddressFormFilled": [[5, 1, 1, "", "address_ui"], [5, 1, 1, "", "filled_fields"]], "nodriver.cdp.autofill.AddressUI": [[5, 1, 1, "", "address_fields"]], "nodriver.cdp.autofill.CreditCard": [[5, 1, 1, "", "cvc"], [5, 1, 1, "", "expiry_month"], [5, 1, 1, "", "expiry_year"], [5, 1, 1, "", "name"], [5, 1, 1, "", "number"]], "nodriver.cdp.autofill.FilledField": [[5, 1, 1, "", "autofill_type"], [5, 1, 1, "", "field_id"], [5, 1, 1, "", "filling_strategy"], [5, 1, 1, "", "frame_id"], [5, 1, 1, "", "html_type"], [5, 1, 1, "", "id_"], [5, 1, 1, "", "name"], [5, 1, 1, "", "value"]], "nodriver.cdp.autofill.FillingStrategy": [[5, 1, 1, "", "AUTOCOMPLETE_ATTRIBUTE"], [5, 1, 1, "", "AUTOFILL_INFERRED"]], "nodriver.cdp.background_service": [[6, 0, 1, "", "BackgroundServiceEvent"], [6, 0, 1, "", "BackgroundServiceEventReceived"], [6, 0, 1, "", "EventMetadata"], [6, 0, 1, "", "RecordingStateChanged"], [6, 0, 1, "", "ServiceName"], [6, 5, 1, "", "clear_events"], [6, 5, 1, "", "set_recording"], [6, 5, 1, "", "start_observing"], [6, 5, 1, "", "stop_observing"]], "nodriver.cdp.background_service.BackgroundServiceEvent": [[6, 1, 1, "", "event_metadata"], [6, 1, 1, "", "event_name"], [6, 1, 1, "", "instance_id"], [6, 1, 1, "", "origin"], [6, 1, 1, "", "service"], [6, 1, 1, "", "service_worker_registration_id"], [6, 1, 1, "", "storage_key"], [6, 1, 1, "", "timestamp"]], "nodriver.cdp.background_service.BackgroundServiceEventReceived": [[6, 1, 1, "", "background_service_event"]], "nodriver.cdp.background_service.EventMetadata": [[6, 1, 1, "", "key"], [6, 1, 1, "", "value"]], "nodriver.cdp.background_service.RecordingStateChanged": [[6, 1, 1, "", "is_recording"], [6, 1, 1, "", "service"]], "nodriver.cdp.background_service.ServiceName": [[6, 1, 1, "", "BACKGROUND_FETCH"], [6, 1, 1, "", "BACKGROUND_SYNC"], [6, 1, 1, "", "NOTIFICATIONS"], [6, 1, 1, "", "PAYMENT_HANDLER"], [6, 1, 1, "", "PERIODIC_BACKGROUND_SYNC"], [6, 1, 1, "", "PUSH_MESSAGING"]], "nodriver.cdp.bluetooth_emulation": [[7, 0, 1, "", "CentralState"], [7, 0, 1, "", "ManufacturerData"], [7, 0, 1, "", "ScanEntry"], [7, 0, 1, "", "ScanRecord"], [7, 5, 1, "", "disable"], [7, 5, 1, "", "enable"], [7, 5, 1, "", "simulate_advertisement"], [7, 5, 1, "", "simulate_preconnected_peripheral"]], "nodriver.cdp.bluetooth_emulation.CentralState": [[7, 1, 1, "", "ABSENT"], [7, 1, 1, "", "POWERED_OFF"], [7, 1, 1, "", "POWERED_ON"]], "nodriver.cdp.bluetooth_emulation.ManufacturerData": [[7, 1, 1, "", "data"], [7, 1, 1, "", "key"]], "nodriver.cdp.bluetooth_emulation.ScanEntry": [[7, 1, 1, "", "device_address"], [7, 1, 1, "", "rssi"], [7, 1, 1, "", "scan_record"]], "nodriver.cdp.bluetooth_emulation.ScanRecord": [[7, 1, 1, "", "appearance"], [7, 1, 1, "", "manufacturer_data"], [7, 1, 1, "", "name"], [7, 1, 1, "", "tx_power"], [7, 1, 1, "", "uuids"]], "nodriver.cdp.browser": [[8, 0, 1, "", "Bounds"], [8, 0, 1, "", "BrowserCommandId"], [8, 0, 1, "", "BrowserContextID"], [8, 0, 1, "", "Bucket"], [8, 0, 1, "", "DownloadProgress"], [8, 0, 1, "", "DownloadWillBegin"], [8, 0, 1, "", "Histogram"], [8, 0, 1, "", "PermissionDescriptor"], [8, 0, 1, "", "PermissionSetting"], [8, 0, 1, "", "PermissionType"], [8, 0, 1, "", "WindowID"], [8, 0, 1, "", "WindowState"], [8, 5, 1, "", "add_privacy_sandbox_enrollment_override"], [8, 5, 1, "", "cancel_download"], [8, 5, 1, "", "close"], [8, 5, 1, "", "crash"], [8, 5, 1, "", "crash_gpu_process"], [8, 5, 1, "", "execute_browser_command"], [8, 5, 1, "", "get_browser_command_line"], [8, 5, 1, "", "get_histogram"], [8, 5, 1, "", "get_histograms"], [8, 5, 1, "", "get_version"], [8, 5, 1, "", "get_window_bounds"], [8, 5, 1, "", "get_window_for_target"], [8, 5, 1, "", "grant_permissions"], [8, 5, 1, "", "reset_permissions"], [8, 5, 1, "", "set_dock_tile"], [8, 5, 1, "", "set_download_behavior"], [8, 5, 1, "", "set_permission"], [8, 5, 1, "", "set_window_bounds"]], "nodriver.cdp.browser.Bounds": [[8, 1, 1, "", "height"], [8, 1, 1, "", "left"], [8, 1, 1, "", "top"], [8, 1, 1, "", "width"], [8, 1, 1, "", "window_state"]], "nodriver.cdp.browser.BrowserCommandId": [[8, 1, 1, "", "CLOSE_TAB_SEARCH"], [8, 1, 1, "", "OPEN_TAB_SEARCH"]], "nodriver.cdp.browser.Bucket": [[8, 1, 1, "", "count"], [8, 1, 1, "", "high"], [8, 1, 1, "", "low"]], "nodriver.cdp.browser.DownloadProgress": [[8, 1, 1, "", "guid"], [8, 1, 1, "", "received_bytes"], [8, 1, 1, "", "state"], [8, 1, 1, "", "total_bytes"]], "nodriver.cdp.browser.DownloadWillBegin": [[8, 1, 1, "", "frame_id"], [8, 1, 1, "", "guid"], [8, 1, 1, "", "suggested_filename"], [8, 1, 1, "", "url"]], "nodriver.cdp.browser.Histogram": [[8, 1, 1, "", "buckets"], [8, 1, 1, "", "count"], [8, 1, 1, "", "name"], [8, 1, 1, "", "sum_"]], "nodriver.cdp.browser.PermissionDescriptor": [[8, 1, 1, "", "allow_without_gesture"], [8, 1, 1, "", "allow_without_sanitization"], [8, 1, 1, "", "name"], [8, 1, 1, "", "pan_tilt_zoom"], [8, 1, 1, "", "sysex"], [8, 1, 1, "", "user_visible_only"]], "nodriver.cdp.browser.PermissionSetting": [[8, 1, 1, "", "DENIED"], [8, 1, 1, "", "GRANTED"], [8, 1, 1, "", "PROMPT"]], "nodriver.cdp.browser.PermissionType": [[8, 1, 1, "", "ACCESSIBILITY_EVENTS"], [8, 1, 1, "", "AUDIO_CAPTURE"], [8, 1, 1, "", "BACKGROUND_FETCH"], [8, 1, 1, "", "BACKGROUND_SYNC"], [8, 1, 1, "", "CAPTURED_SURFACE_CONTROL"], [8, 1, 1, "", "CLIPBOARD_READ_WRITE"], [8, 1, 1, "", "CLIPBOARD_SANITIZED_WRITE"], [8, 1, 1, "", "DISPLAY_CAPTURE"], [8, 1, 1, "", "DURABLE_STORAGE"], [8, 1, 1, "", "FLASH"], [8, 1, 1, "", "GEOLOCATION"], [8, 1, 1, "", "IDLE_DETECTION"], [8, 1, 1, "", "LOCAL_FONTS"], [8, 1, 1, "", "MIDI"], [8, 1, 1, "", "MIDI_SYSEX"], [8, 1, 1, "", "NFC"], [8, 1, 1, "", "NOTIFICATIONS"], [8, 1, 1, "", "PAYMENT_HANDLER"], [8, 1, 1, "", "PERIODIC_BACKGROUND_SYNC"], [8, 1, 1, "", "PROTECTED_MEDIA_IDENTIFIER"], [8, 1, 1, "", "SENSORS"], [8, 1, 1, "", "SPEAKER_SELECTION"], [8, 1, 1, "", "STORAGE_ACCESS"], [8, 1, 1, "", "TOP_LEVEL_STORAGE_ACCESS"], [8, 1, 1, "", "VIDEO_CAPTURE"], [8, 1, 1, "", "VIDEO_CAPTURE_PAN_TILT_ZOOM"], [8, 1, 1, "", "WAKE_LOCK_SCREEN"], [8, 1, 1, "", "WAKE_LOCK_SYSTEM"], [8, 1, 1, "", "WEB_APP_INSTALLATION"], [8, 1, 1, "", "WINDOW_MANAGEMENT"]], "nodriver.cdp.browser.WindowState": [[8, 1, 1, "", "FULLSCREEN"], [8, 1, 1, "", "MAXIMIZED"], [8, 1, 1, "", "MINIMIZED"], [8, 1, 1, "", "NORMAL"]], "nodriver.cdp.cache_storage": [[9, 0, 1, "", "Cache"], [9, 0, 1, "", "CacheId"], [9, 0, 1, "", "CachedResponse"], [9, 0, 1, "", "CachedResponseType"], [9, 0, 1, "", "DataEntry"], [9, 0, 1, "", "Header"], [9, 5, 1, "", "delete_cache"], [9, 5, 1, "", "delete_entry"], [9, 5, 1, "", "request_cache_names"], [9, 5, 1, "", "request_cached_response"], [9, 5, 1, "", "request_entries"]], "nodriver.cdp.cache_storage.Cache": [[9, 1, 1, "", "cache_id"], [9, 1, 1, "", "cache_name"], [9, 1, 1, "", "security_origin"], [9, 1, 1, "", "storage_bucket"], [9, 1, 1, "", "storage_key"]], "nodriver.cdp.cache_storage.CachedResponse": [[9, 1, 1, "", "body"]], "nodriver.cdp.cache_storage.CachedResponseType": [[9, 1, 1, "", "BASIC"], [9, 1, 1, "", "CORS"], [9, 1, 1, "", "DEFAULT"], [9, 1, 1, "", "ERROR"], [9, 1, 1, "", "OPAQUE_REDIRECT"], [9, 1, 1, "", "OPAQUE_RESPONSE"]], "nodriver.cdp.cache_storage.DataEntry": [[9, 1, 1, "", "request_headers"], [9, 1, 1, "", "request_method"], [9, 1, 1, "", "request_url"], [9, 1, 1, "", "response_headers"], [9, 1, 1, "", "response_status"], [9, 1, 1, "", "response_status_text"], [9, 1, 1, "", "response_time"], [9, 1, 1, "", "response_type"]], "nodriver.cdp.cache_storage.Header": [[9, 1, 1, "", "name"], [9, 1, 1, "", "value"]], "nodriver.cdp.cast": [[10, 0, 1, "", "IssueUpdated"], [10, 0, 1, "", "Sink"], [10, 0, 1, "", "SinksUpdated"], [10, 5, 1, "", "disable"], [10, 5, 1, "", "enable"], [10, 5, 1, "", "set_sink_to_use"], [10, 5, 1, "", "start_desktop_mirroring"], [10, 5, 1, "", "start_tab_mirroring"], [10, 5, 1, "", "stop_casting"]], "nodriver.cdp.cast.IssueUpdated": [[10, 1, 1, "", "issue_message"]], "nodriver.cdp.cast.Sink": [[10, 1, 1, "", "id_"], [10, 1, 1, "", "name"], [10, 1, 1, "", "session"]], "nodriver.cdp.cast.SinksUpdated": [[10, 1, 1, "", "sinks"]], "nodriver.cdp.console": [[11, 0, 1, "", "ConsoleMessage"], [11, 0, 1, "", "MessageAdded"], [11, 5, 1, "", "clear_messages"], [11, 5, 1, "", "disable"], [11, 5, 1, "", "enable"]], "nodriver.cdp.console.ConsoleMessage": [[11, 1, 1, "", "column"], [11, 1, 1, "", "level"], [11, 1, 1, "", "line"], [11, 1, 1, "", "source"], [11, 1, 1, "", "text"], [11, 1, 1, "", "url"]], "nodriver.cdp.console.MessageAdded": [[11, 1, 1, "", "message"]], "nodriver.cdp.css": [[12, 0, 1, "", "CSSComputedStyleProperty"], [12, 0, 1, "", "CSSContainerQuery"], [12, 0, 1, "", "CSSFontPaletteValuesRule"], [12, 0, 1, "", "CSSKeyframeRule"], [12, 0, 1, "", "CSSKeyframesRule"], [12, 0, 1, "", "CSSLayer"], [12, 0, 1, "", "CSSLayerData"], [12, 0, 1, "", "CSSMedia"], [12, 0, 1, "", "CSSPositionTryRule"], [12, 0, 1, "", "CSSProperty"], [12, 0, 1, "", "CSSPropertyRegistration"], [12, 0, 1, "", "CSSPropertyRule"], [12, 0, 1, "", "CSSRule"], [12, 0, 1, "", "CSSRuleType"], [12, 0, 1, "", "CSSScope"], [12, 0, 1, "", "CSSStartingStyle"], [12, 0, 1, "", "CSSStyle"], [12, 0, 1, "", "CSSStyleSheetHeader"], [12, 0, 1, "", "CSSSupports"], [12, 0, 1, "", "CSSTryRule"], [12, 0, 1, "", "ComputedStyleUpdated"], [12, 0, 1, "", "FontFace"], [12, 0, 1, "", "FontVariationAxis"], [12, 0, 1, "", "FontsUpdated"], [12, 0, 1, "", "InheritedPseudoElementMatches"], [12, 0, 1, "", "InheritedStyleEntry"], [12, 0, 1, "", "MediaQuery"], [12, 0, 1, "", "MediaQueryExpression"], [12, 0, 1, "", "MediaQueryResultChanged"], [12, 0, 1, "", "PlatformFontUsage"], [12, 0, 1, "", "PseudoElementMatches"], [12, 0, 1, "", "RuleMatch"], [12, 0, 1, "", "RuleUsage"], [12, 0, 1, "", "SelectorList"], [12, 0, 1, "", "ShorthandEntry"], [12, 0, 1, "", "SourceRange"], [12, 0, 1, "", "Specificity"], [12, 0, 1, "", "StyleDeclarationEdit"], [12, 0, 1, "", "StyleSheetAdded"], [12, 0, 1, "", "StyleSheetChanged"], [12, 0, 1, "", "StyleSheetId"], [12, 0, 1, "", "StyleSheetOrigin"], [12, 0, 1, "", "StyleSheetRemoved"], [12, 0, 1, "", "Value"], [12, 5, 1, "", "add_rule"], [12, 5, 1, "", "collect_class_names"], [12, 5, 1, "", "create_style_sheet"], [12, 5, 1, "", "disable"], [12, 5, 1, "", "enable"], [12, 5, 1, "", "force_pseudo_state"], [12, 5, 1, "", "get_background_colors"], [12, 5, 1, "", "get_computed_style_for_node"], [12, 5, 1, "", "get_inline_styles_for_node"], [12, 5, 1, "", "get_layers_for_node"], [12, 5, 1, "", "get_location_for_selector"], [12, 5, 1, "", "get_matched_styles_for_node"], [12, 5, 1, "", "get_media_queries"], [12, 5, 1, "", "get_platform_fonts_for_node"], [12, 5, 1, "", "get_style_sheet_text"], [12, 5, 1, "", "set_container_query_text"], [12, 5, 1, "", "set_effective_property_value_for_node"], [12, 5, 1, "", "set_keyframe_key"], [12, 5, 1, "", "set_local_fonts_enabled"], [12, 5, 1, "", "set_media_text"], [12, 5, 1, "", "set_property_rule_property_name"], [12, 5, 1, "", "set_rule_selector"], [12, 5, 1, "", "set_scope_text"], [12, 5, 1, "", "set_style_sheet_text"], [12, 5, 1, "", "set_style_texts"], [12, 5, 1, "", "set_supports_text"], [12, 5, 1, "", "start_rule_usage_tracking"], [12, 5, 1, "", "stop_rule_usage_tracking"], [12, 5, 1, "", "take_computed_style_updates"], [12, 5, 1, "", "take_coverage_delta"], [12, 5, 1, "", "track_computed_style_updates"], [12, 5, 1, "", "track_computed_style_updates_for_node"]], "nodriver.cdp.css.CSSComputedStyleProperty": [[12, 1, 1, "", "name"], [12, 1, 1, "", "value"]], "nodriver.cdp.css.CSSContainerQuery": [[12, 1, 1, "", "logical_axes"], [12, 1, 1, "", "name"], [12, 1, 1, "", "physical_axes"], [12, 1, 1, "", "queries_scroll_state"], [12, 1, 1, "", "range_"], [12, 1, 1, "", "style_sheet_id"], [12, 1, 1, "", "text"]], "nodriver.cdp.css.CSSFontPaletteValuesRule": [[12, 1, 1, "", "font_palette_name"], [12, 1, 1, "", "origin"], [12, 1, 1, "", "style"], [12, 1, 1, "", "style_sheet_id"]], "nodriver.cdp.css.CSSKeyframeRule": [[12, 1, 1, "", "key_text"], [12, 1, 1, "", "origin"], [12, 1, 1, "", "style"], [12, 1, 1, "", "style_sheet_id"]], "nodriver.cdp.css.CSSKeyframesRule": [[12, 1, 1, "", "animation_name"], [12, 1, 1, "", "keyframes"]], "nodriver.cdp.css.CSSLayer": [[12, 1, 1, "", "range_"], [12, 1, 1, "", "style_sheet_id"], [12, 1, 1, "", "text"]], "nodriver.cdp.css.CSSLayerData": [[12, 1, 1, "", "name"], [12, 1, 1, "", "order"], [12, 1, 1, "", "sub_layers"]], "nodriver.cdp.css.CSSMedia": [[12, 1, 1, "", "media_list"], [12, 1, 1, "", "range_"], [12, 1, 1, "", "source"], [12, 1, 1, "", "source_url"], [12, 1, 1, "", "style_sheet_id"], [12, 1, 1, "", "text"]], "nodriver.cdp.css.CSSPositionTryRule": [[12, 1, 1, "", "active"], [12, 1, 1, "", "name"], [12, 1, 1, "", "origin"], [12, 1, 1, "", "style"], [12, 1, 1, "", "style_sheet_id"]], "nodriver.cdp.css.CSSProperty": [[12, 1, 1, "", "disabled"], [12, 1, 1, "", "implicit"], [12, 1, 1, "", "important"], [12, 1, 1, "", "longhand_properties"], [12, 1, 1, "", "name"], [12, 1, 1, "", "parsed_ok"], [12, 1, 1, "", "range_"], [12, 1, 1, "", "text"], [12, 1, 1, "", "value"]], "nodriver.cdp.css.CSSPropertyRegistration": [[12, 1, 1, "", "inherits"], [12, 1, 1, "", "initial_value"], [12, 1, 1, "", "property_name"], [12, 1, 1, "", "syntax"]], "nodriver.cdp.css.CSSPropertyRule": [[12, 1, 1, "", "origin"], [12, 1, 1, "", "property_name"], [12, 1, 1, "", "style"], [12, 1, 1, "", "style_sheet_id"]], "nodriver.cdp.css.CSSRule": [[12, 1, 1, "", "container_queries"], [12, 1, 1, "", "layers"], [12, 1, 1, "", "media"], [12, 1, 1, "", "nesting_selectors"], [12, 1, 1, "", "origin"], [12, 1, 1, "", "rule_types"], [12, 1, 1, "", "scopes"], [12, 1, 1, "", "selector_list"], [12, 1, 1, "", "starting_styles"], [12, 1, 1, "", "style"], [12, 1, 1, "", "style_sheet_id"], [12, 1, 1, "", "supports"]], "nodriver.cdp.css.CSSRuleType": [[12, 1, 1, "", "CONTAINER_RULE"], [12, 1, 1, "", "LAYER_RULE"], [12, 1, 1, "", "MEDIA_RULE"], [12, 1, 1, "", "SCOPE_RULE"], [12, 1, 1, "", "STARTING_STYLE_RULE"], [12, 1, 1, "", "STYLE_RULE"], [12, 1, 1, "", "SUPPORTS_RULE"]], "nodriver.cdp.css.CSSScope": [[12, 1, 1, "", "range_"], [12, 1, 1, "", "style_sheet_id"], [12, 1, 1, "", "text"]], "nodriver.cdp.css.CSSStartingStyle": [[12, 1, 1, "", "range_"], [12, 1, 1, "", "style_sheet_id"]], "nodriver.cdp.css.CSSStyle": [[12, 1, 1, "", "css_properties"], [12, 1, 1, "", "css_text"], [12, 1, 1, "", "range_"], [12, 1, 1, "", "shorthand_entries"], [12, 1, 1, "", "style_sheet_id"]], "nodriver.cdp.css.CSSStyleSheetHeader": [[12, 1, 1, "", "disabled"], [12, 1, 1, "", "end_column"], [12, 1, 1, "", "end_line"], [12, 1, 1, "", "frame_id"], [12, 1, 1, "", "has_source_url"], [12, 1, 1, "", "is_constructed"], [12, 1, 1, "", "is_inline"], [12, 1, 1, "", "is_mutable"], [12, 1, 1, "", "length"], [12, 1, 1, "", "loading_failed"], [12, 1, 1, "", "origin"], [12, 1, 1, "", "owner_node"], [12, 1, 1, "", "source_map_url"], [12, 1, 1, "", "source_url"], [12, 1, 1, "", "start_column"], [12, 1, 1, "", "start_line"], [12, 1, 1, "", "style_sheet_id"], [12, 1, 1, "", "title"]], "nodriver.cdp.css.CSSSupports": [[12, 1, 1, "", "active"], [12, 1, 1, "", "range_"], [12, 1, 1, "", "style_sheet_id"], [12, 1, 1, "", "text"]], "nodriver.cdp.css.CSSTryRule": [[12, 1, 1, "", "origin"], [12, 1, 1, "", "style"], [12, 1, 1, "", "style_sheet_id"]], "nodriver.cdp.css.ComputedStyleUpdated": [[12, 1, 1, "", "node_id"]], "nodriver.cdp.css.FontFace": [[12, 1, 1, "", "font_display"], [12, 1, 1, "", "font_family"], [12, 1, 1, "", "font_stretch"], [12, 1, 1, "", "font_style"], [12, 1, 1, "", "font_variant"], [12, 1, 1, "", "font_variation_axes"], [12, 1, 1, "", "font_weight"], [12, 1, 1, "", "platform_font_family"], [12, 1, 1, "", "src"], [12, 1, 1, "", "unicode_range"]], "nodriver.cdp.css.FontVariationAxis": [[12, 1, 1, "", "default_value"], [12, 1, 1, "", "max_value"], [12, 1, 1, "", "min_value"], [12, 1, 1, "", "name"], [12, 1, 1, "", "tag"]], "nodriver.cdp.css.FontsUpdated": [[12, 1, 1, "", "font"]], "nodriver.cdp.css.InheritedPseudoElementMatches": [[12, 1, 1, "", "pseudo_elements"]], "nodriver.cdp.css.InheritedStyleEntry": [[12, 1, 1, "", "inline_style"], [12, 1, 1, "", "matched_css_rules"]], "nodriver.cdp.css.MediaQuery": [[12, 1, 1, "", "active"], [12, 1, 1, "", "expressions"]], "nodriver.cdp.css.MediaQueryExpression": [[12, 1, 1, "", "computed_length"], [12, 1, 1, "", "feature"], [12, 1, 1, "", "unit"], [12, 1, 1, "", "value"], [12, 1, 1, "", "value_range"]], "nodriver.cdp.css.PlatformFontUsage": [[12, 1, 1, "", "family_name"], [12, 1, 1, "", "glyph_count"], [12, 1, 1, "", "is_custom_font"], [12, 1, 1, "", "post_script_name"]], "nodriver.cdp.css.PseudoElementMatches": [[12, 1, 1, "", "matches"], [12, 1, 1, "", "pseudo_identifier"], [12, 1, 1, "", "pseudo_type"]], "nodriver.cdp.css.RuleMatch": [[12, 1, 1, "", "matching_selectors"], [12, 1, 1, "", "rule"]], "nodriver.cdp.css.RuleUsage": [[12, 1, 1, "", "end_offset"], [12, 1, 1, "", "start_offset"], [12, 1, 1, "", "style_sheet_id"], [12, 1, 1, "", "used"]], "nodriver.cdp.css.SelectorList": [[12, 1, 1, "", "selectors"], [12, 1, 1, "", "text"]], "nodriver.cdp.css.ShorthandEntry": [[12, 1, 1, "", "important"], [12, 1, 1, "", "name"], [12, 1, 1, "", "value"]], "nodriver.cdp.css.SourceRange": [[12, 1, 1, "", "end_column"], [12, 1, 1, "", "end_line"], [12, 1, 1, "", "start_column"], [12, 1, 1, "", "start_line"]], "nodriver.cdp.css.Specificity": [[12, 1, 1, "", "a"], [12, 1, 1, "", "b"], [12, 1, 1, "", "c"]], "nodriver.cdp.css.StyleDeclarationEdit": [[12, 1, 1, "", "range_"], [12, 1, 1, "", "style_sheet_id"], [12, 1, 1, "", "text"]], "nodriver.cdp.css.StyleSheetAdded": [[12, 1, 1, "", "header"]], "nodriver.cdp.css.StyleSheetChanged": [[12, 1, 1, "", "style_sheet_id"]], "nodriver.cdp.css.StyleSheetOrigin": [[12, 1, 1, "", "INJECTED"], [12, 1, 1, "", "INSPECTOR"], [12, 1, 1, "", "REGULAR"], [12, 1, 1, "", "USER_AGENT"]], "nodriver.cdp.css.StyleSheetRemoved": [[12, 1, 1, "", "style_sheet_id"]], "nodriver.cdp.css.Value": [[12, 1, 1, "", "range_"], [12, 1, 1, "", "specificity"], [12, 1, 1, "", "text"]], "nodriver.cdp.database": [[13, 0, 1, "", "AddDatabase"], [13, 0, 1, "", "Database"], [13, 0, 1, "", "DatabaseId"], [13, 0, 1, "", "Error"], [13, 5, 1, "", "disable"], [13, 5, 1, "", "enable"], [13, 5, 1, "", "execute_sql"], [13, 5, 1, "", "get_database_table_names"]], "nodriver.cdp.database.AddDatabase": [[13, 1, 1, "", "database"]], "nodriver.cdp.database.Database": [[13, 1, 1, "", "domain"], [13, 1, 1, "", "id_"], [13, 1, 1, "", "name"], [13, 1, 1, "", "version"]], "nodriver.cdp.database.Error": [[13, 1, 1, "", "code"], [13, 1, 1, "", "message"]], "nodriver.cdp.debugger": [[14, 0, 1, "", "BreakLocation"], [14, 0, 1, "", "BreakpointId"], [14, 0, 1, "", "BreakpointResolved"], [14, 0, 1, "", "CallFrame"], [14, 0, 1, "", "CallFrameId"], [14, 0, 1, "", "DebugSymbols"], [14, 0, 1, "", "Location"], [14, 0, 1, "", "LocationRange"], [14, 0, 1, "", "Paused"], [14, 0, 1, "", "Resumed"], [14, 0, 1, "", "Scope"], [14, 0, 1, "", "ScriptFailedToParse"], [14, 0, 1, "", "ScriptLanguage"], [14, 0, 1, "", "ScriptParsed"], [14, 0, 1, "", "ScriptPosition"], [14, 0, 1, "", "SearchMatch"], [14, 0, 1, "", "WasmDisassemblyChunk"], [14, 5, 1, "", "continue_to_location"], [14, 5, 1, "", "disable"], [14, 5, 1, "", "disassemble_wasm_module"], [14, 5, 1, "", "enable"], [14, 5, 1, "", "evaluate_on_call_frame"], [14, 5, 1, "", "get_possible_breakpoints"], [14, 5, 1, "", "get_script_source"], [14, 5, 1, "", "get_stack_trace"], [14, 5, 1, "", "get_wasm_bytecode"], [14, 5, 1, "", "next_wasm_disassembly_chunk"], [14, 5, 1, "", "pause"], [14, 5, 1, "", "pause_on_async_call"], [14, 5, 1, "", "remove_breakpoint"], [14, 5, 1, "", "restart_frame"], [14, 5, 1, "", "resume"], [14, 5, 1, "", "search_in_content"], [14, 5, 1, "", "set_async_call_stack_depth"], [14, 5, 1, "", "set_blackbox_execution_contexts"], [14, 5, 1, "", "set_blackbox_patterns"], [14, 5, 1, "", "set_blackboxed_ranges"], [14, 5, 1, "", "set_breakpoint"], [14, 5, 1, "", "set_breakpoint_by_url"], [14, 5, 1, "", "set_breakpoint_on_function_call"], [14, 5, 1, "", "set_breakpoints_active"], [14, 5, 1, "", "set_instrumentation_breakpoint"], [14, 5, 1, "", "set_pause_on_exceptions"], [14, 5, 1, "", "set_return_value"], [14, 5, 1, "", "set_script_source"], [14, 5, 1, "", "set_skip_all_pauses"], [14, 5, 1, "", "set_variable_value"], [14, 5, 1, "", "step_into"], [14, 5, 1, "", "step_out"], [14, 5, 1, "", "step_over"]], "nodriver.cdp.debugger.BreakLocation": [[14, 1, 1, "", "column_number"], [14, 1, 1, "", "line_number"], [14, 1, 1, "", "script_id"], [14, 1, 1, "", "type_"]], "nodriver.cdp.debugger.BreakpointResolved": [[14, 1, 1, "", "breakpoint_id"], [14, 1, 1, "", "location"]], "nodriver.cdp.debugger.CallFrame": [[14, 1, 1, "", "call_frame_id"], [14, 1, 1, "", "can_be_restarted"], [14, 1, 1, "", "function_location"], [14, 1, 1, "", "function_name"], [14, 1, 1, "", "location"], [14, 1, 1, "", "return_value"], [14, 1, 1, "", "scope_chain"], [14, 1, 1, "", "this"], [14, 1, 1, "", "url"]], "nodriver.cdp.debugger.DebugSymbols": [[14, 1, 1, "", "external_url"], [14, 1, 1, "", "type_"]], "nodriver.cdp.debugger.Location": [[14, 1, 1, "", "column_number"], [14, 1, 1, "", "line_number"], [14, 1, 1, "", "script_id"]], "nodriver.cdp.debugger.LocationRange": [[14, 1, 1, "", "end"], [14, 1, 1, "", "script_id"], [14, 1, 1, "", "start"]], "nodriver.cdp.debugger.Paused": [[14, 1, 1, "", "async_call_stack_trace_id"], [14, 1, 1, "", "async_stack_trace"], [14, 1, 1, "", "async_stack_trace_id"], [14, 1, 1, "", "call_frames"], [14, 1, 1, "", "data"], [14, 1, 1, "", "hit_breakpoints"], [14, 1, 1, "", "reason"]], "nodriver.cdp.debugger.Scope": [[14, 1, 1, "", "end_location"], [14, 1, 1, "", "name"], [14, 1, 1, "", "object_"], [14, 1, 1, "", "start_location"], [14, 1, 1, "", "type_"]], "nodriver.cdp.debugger.ScriptFailedToParse": [[14, 1, 1, "", "code_offset"], [14, 1, 1, "", "embedder_name"], [14, 1, 1, "", "end_column"], [14, 1, 1, "", "end_line"], [14, 1, 1, "", "execution_context_aux_data"], [14, 1, 1, "", "execution_context_id"], [14, 1, 1, "", "has_source_url"], [14, 1, 1, "", "hash_"], [14, 1, 1, "", "is_module"], [14, 1, 1, "", "length"], [14, 1, 1, "", "script_id"], [14, 1, 1, "", "script_language"], [14, 1, 1, "", "source_map_url"], [14, 1, 1, "", "stack_trace"], [14, 1, 1, "", "start_column"], [14, 1, 1, "", "start_line"], [14, 1, 1, "", "url"]], "nodriver.cdp.debugger.ScriptLanguage": [[14, 1, 1, "", "JAVA_SCRIPT"], [14, 1, 1, "", "WEB_ASSEMBLY"]], "nodriver.cdp.debugger.ScriptParsed": [[14, 1, 1, "", "code_offset"], [14, 1, 1, "", "debug_symbols"], [14, 1, 1, "", "embedder_name"], [14, 1, 1, "", "end_column"], [14, 1, 1, "", "end_line"], [14, 1, 1, "", "execution_context_aux_data"], [14, 1, 1, "", "execution_context_id"], [14, 1, 1, "", "has_source_url"], [14, 1, 1, "", "hash_"], [14, 1, 1, "", "is_live_edit"], [14, 1, 1, "", "is_module"], [14, 1, 1, "", "length"], [14, 1, 1, "", "script_id"], [14, 1, 1, "", "script_language"], [14, 1, 1, "", "source_map_url"], [14, 1, 1, "", "stack_trace"], [14, 1, 1, "", "start_column"], [14, 1, 1, "", "start_line"], [14, 1, 1, "", "url"]], "nodriver.cdp.debugger.ScriptPosition": [[14, 1, 1, "", "column_number"], [14, 1, 1, "", "line_number"]], "nodriver.cdp.debugger.SearchMatch": [[14, 1, 1, "", "line_content"], [14, 1, 1, "", "line_number"]], "nodriver.cdp.debugger.WasmDisassemblyChunk": [[14, 1, 1, "", "bytecode_offsets"], [14, 1, 1, "", "lines"]], "nodriver.cdp.device_access": [[15, 0, 1, "", "DeviceId"], [15, 0, 1, "", "DeviceRequestPrompted"], [15, 0, 1, "", "PromptDevice"], [15, 0, 1, "", "RequestId"], [15, 5, 1, "", "cancel_prompt"], [15, 5, 1, "", "disable"], [15, 5, 1, "", "enable"], [15, 5, 1, "", "select_prompt"]], "nodriver.cdp.device_access.DeviceRequestPrompted": [[15, 1, 1, "", "devices"], [15, 1, 1, "", "id_"]], "nodriver.cdp.device_access.PromptDevice": [[15, 1, 1, "", "id_"], [15, 1, 1, "", "name"]], "nodriver.cdp.device_orientation": [[16, 5, 1, "", "clear_device_orientation_override"], [16, 5, 1, "", "set_device_orientation_override"]], "nodriver.cdp.dom": [[17, 0, 1, "", "AttributeModified"], [17, 0, 1, "", "AttributeRemoved"], [17, 0, 1, "", "BackendNode"], [17, 0, 1, "", "BackendNodeId"], [17, 0, 1, "", "BoxModel"], [17, 0, 1, "", "CSSComputedStyleProperty"], [17, 0, 1, "", "CharacterDataModified"], [17, 0, 1, "", "ChildNodeCountUpdated"], [17, 0, 1, "", "ChildNodeInserted"], [17, 0, 1, "", "ChildNodeRemoved"], [17, 0, 1, "", "CompatibilityMode"], [17, 0, 1, "", "DetachedElementInfo"], [17, 0, 1, "", "DistributedNodesUpdated"], [17, 0, 1, "", "DocumentUpdated"], [17, 0, 1, "", "InlineStyleInvalidated"], [17, 0, 1, "", "LogicalAxes"], [17, 0, 1, "", "Node"], [17, 0, 1, "", "NodeId"], [17, 0, 1, "", "PhysicalAxes"], [17, 0, 1, "", "PseudoElementAdded"], [17, 0, 1, "", "PseudoElementRemoved"], [17, 0, 1, "", "PseudoType"], [17, 0, 1, "", "Quad"], [17, 0, 1, "", "RGBA"], [17, 0, 1, "", "Rect"], [17, 0, 1, "", "ScrollOrientation"], [17, 0, 1, "", "ScrollableFlagUpdated"], [17, 0, 1, "", "SetChildNodes"], [17, 0, 1, "", "ShadowRootPopped"], [17, 0, 1, "", "ShadowRootPushed"], [17, 0, 1, "", "ShadowRootType"], [17, 0, 1, "", "ShapeOutsideInfo"], [17, 0, 1, "", "TopLayerElementsUpdated"], [17, 5, 1, "", "collect_class_names_from_subtree"], [17, 5, 1, "", "copy_to"], [17, 5, 1, "", "describe_node"], [17, 5, 1, "", "disable"], [17, 5, 1, "", "discard_search_results"], [17, 5, 1, "", "enable"], [17, 5, 1, "", "focus"], [17, 5, 1, "", "get_anchor_element"], [17, 5, 1, "", "get_attributes"], [17, 5, 1, "", "get_box_model"], [17, 5, 1, "", "get_container_for_node"], [17, 5, 1, "", "get_content_quads"], [17, 5, 1, "", "get_detached_dom_nodes"], [17, 5, 1, "", "get_document"], [17, 5, 1, "", "get_element_by_relation"], [17, 5, 1, "", "get_file_info"], [17, 5, 1, "", "get_flattened_document"], [17, 5, 1, "", "get_frame_owner"], [17, 5, 1, "", "get_node_for_location"], [17, 5, 1, "", "get_node_stack_traces"], [17, 5, 1, "", "get_nodes_for_subtree_by_style"], [17, 5, 1, "", "get_outer_html"], [17, 5, 1, "", "get_querying_descendants_for_container"], [17, 5, 1, "", "get_relayout_boundary"], [17, 5, 1, "", "get_search_results"], [17, 5, 1, "", "get_top_layer_elements"], [17, 5, 1, "", "hide_highlight"], [17, 5, 1, "", "highlight_node"], [17, 5, 1, "", "highlight_rect"], [17, 5, 1, "", "mark_undoable_state"], [17, 5, 1, "", "move_to"], [17, 5, 1, "", "perform_search"], [17, 5, 1, "", "push_node_by_path_to_frontend"], [17, 5, 1, "", "push_nodes_by_backend_ids_to_frontend"], [17, 5, 1, "", "query_selector"], [17, 5, 1, "", "query_selector_all"], [17, 5, 1, "", "redo"], [17, 5, 1, "", "remove_attribute"], [17, 5, 1, "", "remove_node"], [17, 5, 1, "", "request_child_nodes"], [17, 5, 1, "", "request_node"], [17, 5, 1, "", "resolve_node"], [17, 5, 1, "", "scroll_into_view_if_needed"], [17, 5, 1, "", "set_attribute_value"], [17, 5, 1, "", "set_attributes_as_text"], [17, 5, 1, "", "set_file_input_files"], [17, 5, 1, "", "set_inspected_node"], [17, 5, 1, "", "set_node_name"], [17, 5, 1, "", "set_node_stack_traces_enabled"], [17, 5, 1, "", "set_node_value"], [17, 5, 1, "", "set_outer_html"], [17, 5, 1, "", "undo"]], "nodriver.cdp.dom.AttributeModified": [[17, 1, 1, "", "name"], [17, 1, 1, "", "node_id"], [17, 1, 1, "", "value"]], "nodriver.cdp.dom.AttributeRemoved": [[17, 1, 1, "", "name"], [17, 1, 1, "", "node_id"]], "nodriver.cdp.dom.BackendNode": [[17, 1, 1, "", "backend_node_id"], [17, 1, 1, "", "node_name"], [17, 1, 1, "", "node_type"]], "nodriver.cdp.dom.BoxModel": [[17, 1, 1, "", "border"], [17, 1, 1, "", "content"], [17, 1, 1, "", "height"], [17, 1, 1, "", "margin"], [17, 1, 1, "", "padding"], [17, 1, 1, "", "shape_outside"], [17, 1, 1, "", "width"]], "nodriver.cdp.dom.CSSComputedStyleProperty": [[17, 1, 1, "", "name"], [17, 1, 1, "", "value"]], "nodriver.cdp.dom.CharacterDataModified": [[17, 1, 1, "", "character_data"], [17, 1, 1, "", "node_id"]], "nodriver.cdp.dom.ChildNodeCountUpdated": [[17, 1, 1, "", "child_node_count"], [17, 1, 1, "", "node_id"]], "nodriver.cdp.dom.ChildNodeInserted": [[17, 1, 1, "", "node"], [17, 1, 1, "", "parent_node_id"], [17, 1, 1, "", "previous_node_id"]], "nodriver.cdp.dom.ChildNodeRemoved": [[17, 1, 1, "", "node_id"], [17, 1, 1, "", "parent_node_id"]], "nodriver.cdp.dom.CompatibilityMode": [[17, 1, 1, "", "LIMITED_QUIRKS_MODE"], [17, 1, 1, "", "NO_QUIRKS_MODE"], [17, 1, 1, "", "QUIRKS_MODE"]], "nodriver.cdp.dom.DetachedElementInfo": [[17, 1, 1, "", "retained_node_ids"], [17, 1, 1, "", "tree_node"]], "nodriver.cdp.dom.DistributedNodesUpdated": [[17, 1, 1, "", "distributed_nodes"], [17, 1, 1, "", "insertion_point_id"]], "nodriver.cdp.dom.InlineStyleInvalidated": [[17, 1, 1, "", "node_ids"]], "nodriver.cdp.dom.LogicalAxes": [[17, 1, 1, "", "BLOCK"], [17, 1, 1, "", "BOTH"], [17, 1, 1, "", "INLINE"]], "nodriver.cdp.dom.Node": [[17, 1, 1, "", "assigned_slot"], [17, 1, 1, "", "attributes"], [17, 1, 1, "", "backend_node_id"], [17, 1, 1, "", "base_url"], [17, 1, 1, "", "child_node_count"], [17, 1, 1, "", "children"], [17, 1, 1, "", "compatibility_mode"], [17, 1, 1, "", "content_document"], [17, 1, 1, "", "distributed_nodes"], [17, 1, 1, "", "document_url"], [17, 1, 1, "", "frame_id"], [17, 1, 1, "", "imported_document"], [17, 1, 1, "", "internal_subset"], [17, 1, 1, "", "is_scrollable"], [17, 1, 1, "", "is_svg"], [17, 1, 1, "", "local_name"], [17, 1, 1, "", "name"], [17, 1, 1, "", "node_id"], [17, 1, 1, "", "node_name"], [17, 1, 1, "", "node_type"], [17, 1, 1, "", "node_value"], [17, 1, 1, "", "parent_id"], [17, 1, 1, "", "pseudo_elements"], [17, 1, 1, "", "pseudo_identifier"], [17, 1, 1, "", "pseudo_type"], [17, 1, 1, "", "public_id"], [17, 1, 1, "", "shadow_root_type"], [17, 1, 1, "", "shadow_roots"], [17, 1, 1, "", "system_id"], [17, 1, 1, "", "template_content"], [17, 1, 1, "", "value"], [17, 1, 1, "", "xml_version"]], "nodriver.cdp.dom.PhysicalAxes": [[17, 1, 1, "", "BOTH"], [17, 1, 1, "", "HORIZONTAL"], [17, 1, 1, "", "VERTICAL"]], "nodriver.cdp.dom.PseudoElementAdded": [[17, 1, 1, "", "parent_id"], [17, 1, 1, "", "pseudo_element"]], "nodriver.cdp.dom.PseudoElementRemoved": [[17, 1, 1, "", "parent_id"], [17, 1, 1, "", "pseudo_element_id"]], "nodriver.cdp.dom.PseudoType": [[17, 1, 1, "", "AFTER"], [17, 1, 1, "", "BACKDROP"], [17, 1, 1, "", "BEFORE"], [17, 1, 1, "", "CHECK"], [17, 1, 1, "", "COLUMN"], [17, 1, 1, "", "DETAILS_CONTENT"], [17, 1, 1, "", "FILE_SELECTOR_BUTTON"], [17, 1, 1, "", "FIRST_LETTER"], [17, 1, 1, "", "FIRST_LINE"], [17, 1, 1, "", "FIRST_LINE_INHERITED"], [17, 1, 1, "", "GRAMMAR_ERROR"], [17, 1, 1, "", "HIGHLIGHT"], [17, 1, 1, "", "INPUT_LIST_BUTTON"], [17, 1, 1, "", "MARKER"], [17, 1, 1, "", "PICKER"], [17, 1, 1, "", "PLACEHOLDER"], [17, 1, 1, "", "RESIZER"], [17, 1, 1, "", "SCROLLBAR"], [17, 1, 1, "", "SCROLLBAR_BUTTON"], [17, 1, 1, "", "SCROLLBAR_CORNER"], [17, 1, 1, "", "SCROLLBAR_THUMB"], [17, 1, 1, "", "SCROLLBAR_TRACK"], [17, 1, 1, "", "SCROLLBAR_TRACK_PIECE"], [17, 1, 1, "", "SCROLL_MARKER"], [17, 1, 1, "", "SCROLL_MARKER_GROUP"], [17, 1, 1, "", "SCROLL_NEXT_BUTTON"], [17, 1, 1, "", "SCROLL_PREV_BUTTON"], [17, 1, 1, "", "SEARCH_TEXT"], [17, 1, 1, "", "SELECTION"], [17, 1, 1, "", "SELECT_ARROW"], [17, 1, 1, "", "SPELLING_ERROR"], [17, 1, 1, "", "TARGET_TEXT"], [17, 1, 1, "", "VIEW_TRANSITION"], [17, 1, 1, "", "VIEW_TRANSITION_GROUP"], [17, 1, 1, "", "VIEW_TRANSITION_IMAGE_PAIR"], [17, 1, 1, "", "VIEW_TRANSITION_NEW"], [17, 1, 1, "", "VIEW_TRANSITION_OLD"]], "nodriver.cdp.dom.RGBA": [[17, 1, 1, "", "a"], [17, 1, 1, "", "b"], [17, 1, 1, "", "g"], [17, 1, 1, "", "r"]], "nodriver.cdp.dom.Rect": [[17, 1, 1, "", "height"], [17, 1, 1, "", "width"], [17, 1, 1, "", "x"], [17, 1, 1, "", "y"]], "nodriver.cdp.dom.ScrollOrientation": [[17, 1, 1, "", "HORIZONTAL"], [17, 1, 1, "", "VERTICAL"]], "nodriver.cdp.dom.ScrollableFlagUpdated": [[17, 1, 1, "", "is_scrollable"], [17, 1, 1, "", "node_id"]], "nodriver.cdp.dom.SetChildNodes": [[17, 1, 1, "", "nodes"], [17, 1, 1, "", "parent_id"]], "nodriver.cdp.dom.ShadowRootPopped": [[17, 1, 1, "", "host_id"], [17, 1, 1, "", "root_id"]], "nodriver.cdp.dom.ShadowRootPushed": [[17, 1, 1, "", "host_id"], [17, 1, 1, "", "root"]], "nodriver.cdp.dom.ShadowRootType": [[17, 1, 1, "", "CLOSED"], [17, 1, 1, "", "OPEN_"], [17, 1, 1, "", "USER_AGENT"]], "nodriver.cdp.dom.ShapeOutsideInfo": [[17, 1, 1, "", "bounds"], [17, 1, 1, "", "margin_shape"], [17, 1, 1, "", "shape"]], "nodriver.cdp.dom_debugger": [[18, 0, 1, "", "CSPViolationType"], [18, 0, 1, "", "DOMBreakpointType"], [18, 0, 1, "", "EventListener"], [18, 5, 1, "", "get_event_listeners"], [18, 5, 1, "", "remove_dom_breakpoint"], [18, 5, 1, "", "remove_event_listener_breakpoint"], [18, 5, 1, "", "remove_instrumentation_breakpoint"], [18, 5, 1, "", "remove_xhr_breakpoint"], [18, 5, 1, "", "set_break_on_csp_violation"], [18, 5, 1, "", "set_dom_breakpoint"], [18, 5, 1, "", "set_event_listener_breakpoint"], [18, 5, 1, "", "set_instrumentation_breakpoint"], [18, 5, 1, "", "set_xhr_breakpoint"]], "nodriver.cdp.dom_debugger.CSPViolationType": [[18, 1, 1, "", "TRUSTEDTYPE_POLICY_VIOLATION"], [18, 1, 1, "", "TRUSTEDTYPE_SINK_VIOLATION"]], "nodriver.cdp.dom_debugger.DOMBreakpointType": [[18, 1, 1, "", "ATTRIBUTE_MODIFIED"], [18, 1, 1, "", "NODE_REMOVED"], [18, 1, 1, "", "SUBTREE_MODIFIED"]], "nodriver.cdp.dom_debugger.EventListener": [[18, 1, 1, "", "backend_node_id"], [18, 1, 1, "", "column_number"], [18, 1, 1, "", "handler"], [18, 1, 1, "", "line_number"], [18, 1, 1, "", "once"], [18, 1, 1, "", "original_handler"], [18, 1, 1, "", "passive"], [18, 1, 1, "", "script_id"], [18, 1, 1, "", "type_"], [18, 1, 1, "", "use_capture"]], "nodriver.cdp.dom_snapshot": [[19, 0, 1, "", "ArrayOfStrings"], [19, 0, 1, "", "ComputedStyle"], [19, 0, 1, "", "DOMNode"], [19, 0, 1, "", "DocumentSnapshot"], [19, 0, 1, "", "InlineTextBox"], [19, 0, 1, "", "LayoutTreeNode"], [19, 0, 1, "", "LayoutTreeSnapshot"], [19, 0, 1, "", "NameValue"], [19, 0, 1, "", "NodeTreeSnapshot"], [19, 0, 1, "", "RareBooleanData"], [19, 0, 1, "", "RareIntegerData"], [19, 0, 1, "", "RareStringData"], [19, 0, 1, "", "Rectangle"], [19, 0, 1, "", "StringIndex"], [19, 0, 1, "", "TextBoxSnapshot"], [19, 5, 1, "", "capture_snapshot"], [19, 5, 1, "", "disable"], [19, 5, 1, "", "enable"], [19, 5, 1, "", "get_snapshot"]], "nodriver.cdp.dom_snapshot.ComputedStyle": [[19, 1, 1, "", "properties"]], "nodriver.cdp.dom_snapshot.DOMNode": [[19, 1, 1, "", "attributes"], [19, 1, 1, "", "backend_node_id"], [19, 1, 1, "", "base_url"], [19, 1, 1, "", "child_node_indexes"], [19, 1, 1, "", "content_document_index"], [19, 1, 1, "", "content_language"], [19, 1, 1, "", "current_source_url"], [19, 1, 1, "", "document_encoding"], [19, 1, 1, "", "document_url"], [19, 1, 1, "", "event_listeners"], [19, 1, 1, "", "frame_id"], [19, 1, 1, "", "input_checked"], [19, 1, 1, "", "input_value"], [19, 1, 1, "", "is_clickable"], [19, 1, 1, "", "layout_node_index"], [19, 1, 1, "", "node_name"], [19, 1, 1, "", "node_type"], [19, 1, 1, "", "node_value"], [19, 1, 1, "", "option_selected"], [19, 1, 1, "", "origin_url"], [19, 1, 1, "", "pseudo_element_indexes"], [19, 1, 1, "", "pseudo_type"], [19, 1, 1, "", "public_id"], [19, 1, 1, "", "scroll_offset_x"], [19, 1, 1, "", "scroll_offset_y"], [19, 1, 1, "", "shadow_root_type"], [19, 1, 1, "", "system_id"], [19, 1, 1, "", "text_value"]], "nodriver.cdp.dom_snapshot.DocumentSnapshot": [[19, 1, 1, "", "base_url"], [19, 1, 1, "", "content_height"], [19, 1, 1, "", "content_language"], [19, 1, 1, "", "content_width"], [19, 1, 1, "", "document_url"], [19, 1, 1, "", "encoding_name"], [19, 1, 1, "", "frame_id"], [19, 1, 1, "", "layout"], [19, 1, 1, "", "nodes"], [19, 1, 1, "", "public_id"], [19, 1, 1, "", "scroll_offset_x"], [19, 1, 1, "", "scroll_offset_y"], [19, 1, 1, "", "system_id"], [19, 1, 1, "", "text_boxes"], [19, 1, 1, "", "title"]], "nodriver.cdp.dom_snapshot.InlineTextBox": [[19, 1, 1, "", "bounding_box"], [19, 1, 1, "", "num_characters"], [19, 1, 1, "", "start_character_index"]], "nodriver.cdp.dom_snapshot.LayoutTreeNode": [[19, 1, 1, "", "bounding_box"], [19, 1, 1, "", "dom_node_index"], [19, 1, 1, "", "inline_text_nodes"], [19, 1, 1, "", "is_stacking_context"], [19, 1, 1, "", "layout_text"], [19, 1, 1, "", "paint_order"], [19, 1, 1, "", "style_index"]], "nodriver.cdp.dom_snapshot.LayoutTreeSnapshot": [[19, 1, 1, "", "blended_background_colors"], [19, 1, 1, "", "bounds"], [19, 1, 1, "", "client_rects"], [19, 1, 1, "", "node_index"], [19, 1, 1, "", "offset_rects"], [19, 1, 1, "", "paint_orders"], [19, 1, 1, "", "scroll_rects"], [19, 1, 1, "", "stacking_contexts"], [19, 1, 1, "", "styles"], [19, 1, 1, "", "text"], [19, 1, 1, "", "text_color_opacities"]], "nodriver.cdp.dom_snapshot.NameValue": [[19, 1, 1, "", "name"], [19, 1, 1, "", "value"]], "nodriver.cdp.dom_snapshot.NodeTreeSnapshot": [[19, 1, 1, "", "attributes"], [19, 1, 1, "", "backend_node_id"], [19, 1, 1, "", "content_document_index"], [19, 1, 1, "", "current_source_url"], [19, 1, 1, "", "input_checked"], [19, 1, 1, "", "input_value"], [19, 1, 1, "", "is_clickable"], [19, 1, 1, "", "node_name"], [19, 1, 1, "", "node_type"], [19, 1, 1, "", "node_value"], [19, 1, 1, "", "option_selected"], [19, 1, 1, "", "origin_url"], [19, 1, 1, "", "parent_index"], [19, 1, 1, "", "pseudo_identifier"], [19, 1, 1, "", "pseudo_type"], [19, 1, 1, "", "shadow_root_type"], [19, 1, 1, "", "text_value"]], "nodriver.cdp.dom_snapshot.RareBooleanData": [[19, 1, 1, "", "index"]], "nodriver.cdp.dom_snapshot.RareIntegerData": [[19, 1, 1, "", "index"], [19, 1, 1, "", "value"]], "nodriver.cdp.dom_snapshot.RareStringData": [[19, 1, 1, "", "index"], [19, 1, 1, "", "value"]], "nodriver.cdp.dom_snapshot.TextBoxSnapshot": [[19, 1, 1, "", "bounds"], [19, 1, 1, "", "layout_index"], [19, 1, 1, "", "length"], [19, 1, 1, "", "start"]], "nodriver.cdp.dom_storage": [[20, 0, 1, "", "DomStorageItemAdded"], [20, 0, 1, "", "DomStorageItemRemoved"], [20, 0, 1, "", "DomStorageItemUpdated"], [20, 0, 1, "", "DomStorageItemsCleared"], [20, 0, 1, "", "Item"], [20, 0, 1, "", "SerializedStorageKey"], [20, 0, 1, "", "StorageId"], [20, 5, 1, "", "clear"], [20, 5, 1, "", "disable"], [20, 5, 1, "", "enable"], [20, 5, 1, "", "get_dom_storage_items"], [20, 5, 1, "", "remove_dom_storage_item"], [20, 5, 1, "", "set_dom_storage_item"]], "nodriver.cdp.dom_storage.DomStorageItemAdded": [[20, 1, 1, "", "key"], [20, 1, 1, "", "new_value"], [20, 1, 1, "", "storage_id"]], "nodriver.cdp.dom_storage.DomStorageItemRemoved": [[20, 1, 1, "", "key"], [20, 1, 1, "", "storage_id"]], "nodriver.cdp.dom_storage.DomStorageItemUpdated": [[20, 1, 1, "", "key"], [20, 1, 1, "", "new_value"], [20, 1, 1, "", "old_value"], [20, 1, 1, "", "storage_id"]], "nodriver.cdp.dom_storage.DomStorageItemsCleared": [[20, 1, 1, "", "storage_id"]], "nodriver.cdp.dom_storage.StorageId": [[20, 1, 1, "", "is_local_storage"], [20, 1, 1, "", "security_origin"], [20, 1, 1, "", "storage_key"]], "nodriver.cdp.emulation": [[21, 0, 1, "", "DevicePosture"], [21, 0, 1, "", "DisabledImageType"], [21, 0, 1, "", "DisplayFeature"], [21, 0, 1, "", "MediaFeature"], [21, 0, 1, "", "PressureMetadata"], [21, 0, 1, "", "PressureSource"], [21, 0, 1, "", "PressureState"], [21, 0, 1, "", "ScreenOrientation"], [21, 0, 1, "", "SensorMetadata"], [21, 0, 1, "", "SensorReading"], [21, 0, 1, "", "SensorReadingQuaternion"], [21, 0, 1, "", "SensorReadingSingle"], [21, 0, 1, "", "SensorReadingXYZ"], [21, 0, 1, "", "SensorType"], [21, 0, 1, "", "UserAgentBrandVersion"], [21, 0, 1, "", "UserAgentMetadata"], [21, 0, 1, "", "VirtualTimeBudgetExpired"], [21, 0, 1, "", "VirtualTimePolicy"], [21, 5, 1, "", "can_emulate"], [21, 5, 1, "", "clear_device_metrics_override"], [21, 5, 1, "", "clear_device_posture_override"], [21, 5, 1, "", "clear_geolocation_override"], [21, 5, 1, "", "clear_idle_override"], [21, 5, 1, "", "get_overridden_sensor_information"], [21, 5, 1, "", "reset_page_scale_factor"], [21, 5, 1, "", "set_auto_dark_mode_override"], [21, 5, 1, "", "set_automation_override"], [21, 5, 1, "", "set_cpu_throttling_rate"], [21, 5, 1, "", "set_default_background_color_override"], [21, 5, 1, "", "set_device_metrics_override"], [21, 5, 1, "", "set_device_posture_override"], [21, 5, 1, "", "set_disabled_image_types"], [21, 5, 1, "", "set_document_cookie_disabled"], [21, 5, 1, "", "set_emit_touch_events_for_mouse"], [21, 5, 1, "", "set_emulated_media"], [21, 5, 1, "", "set_emulated_vision_deficiency"], [21, 5, 1, "", "set_focus_emulation_enabled"], [21, 5, 1, "", "set_geolocation_override"], [21, 5, 1, "", "set_hardware_concurrency_override"], [21, 5, 1, "", "set_idle_override"], [21, 5, 1, "", "set_locale_override"], [21, 5, 1, "", "set_navigator_overrides"], [21, 5, 1, "", "set_page_scale_factor"], [21, 5, 1, "", "set_pressure_source_override_enabled"], [21, 5, 1, "", "set_pressure_state_override"], [21, 5, 1, "", "set_script_execution_disabled"], [21, 5, 1, "", "set_scrollbars_hidden"], [21, 5, 1, "", "set_sensor_override_enabled"], [21, 5, 1, "", "set_sensor_override_readings"], [21, 5, 1, "", "set_timezone_override"], [21, 5, 1, "", "set_touch_emulation_enabled"], [21, 5, 1, "", "set_user_agent_override"], [21, 5, 1, "", "set_virtual_time_policy"], [21, 5, 1, "", "set_visible_size"]], "nodriver.cdp.emulation.DevicePosture": [[21, 1, 1, "", "type_"]], "nodriver.cdp.emulation.DisabledImageType": [[21, 1, 1, "", "AVIF"], [21, 1, 1, "", "WEBP"]], "nodriver.cdp.emulation.DisplayFeature": [[21, 1, 1, "", "mask_length"], [21, 1, 1, "", "offset"], [21, 1, 1, "", "orientation"]], "nodriver.cdp.emulation.MediaFeature": [[21, 1, 1, "", "name"], [21, 1, 1, "", "value"]], "nodriver.cdp.emulation.PressureMetadata": [[21, 1, 1, "", "available"]], "nodriver.cdp.emulation.PressureSource": [[21, 1, 1, "", "CPU"]], "nodriver.cdp.emulation.PressureState": [[21, 1, 1, "", "CRITICAL"], [21, 1, 1, "", "FAIR"], [21, 1, 1, "", "NOMINAL"], [21, 1, 1, "", "SERIOUS"]], "nodriver.cdp.emulation.ScreenOrientation": [[21, 1, 1, "", "angle"], [21, 1, 1, "", "type_"]], "nodriver.cdp.emulation.SensorMetadata": [[21, 1, 1, "", "available"], [21, 1, 1, "", "maximum_frequency"], [21, 1, 1, "", "minimum_frequency"]], "nodriver.cdp.emulation.SensorReading": [[21, 1, 1, "", "quaternion"], [21, 1, 1, "", "single"], [21, 1, 1, "", "xyz"]], "nodriver.cdp.emulation.SensorReadingQuaternion": [[21, 1, 1, "", "w"], [21, 1, 1, "", "x"], [21, 1, 1, "", "y"], [21, 1, 1, "", "z"]], "nodriver.cdp.emulation.SensorReadingSingle": [[21, 1, 1, "", "value"]], "nodriver.cdp.emulation.SensorReadingXYZ": [[21, 1, 1, "", "x"], [21, 1, 1, "", "y"], [21, 1, 1, "", "z"]], "nodriver.cdp.emulation.SensorType": [[21, 1, 1, "", "ABSOLUTE_ORIENTATION"], [21, 1, 1, "", "ACCELEROMETER"], [21, 1, 1, "", "AMBIENT_LIGHT"], [21, 1, 1, "", "GRAVITY"], [21, 1, 1, "", "GYROSCOPE"], [21, 1, 1, "", "LINEAR_ACCELERATION"], [21, 1, 1, "", "MAGNETOMETER"], [21, 1, 1, "", "RELATIVE_ORIENTATION"]], "nodriver.cdp.emulation.UserAgentBrandVersion": [[21, 1, 1, "", "brand"], [21, 1, 1, "", "version"]], "nodriver.cdp.emulation.UserAgentMetadata": [[21, 1, 1, "", "architecture"], [21, 1, 1, "", "bitness"], [21, 1, 1, "", "brands"], [21, 1, 1, "", "full_version"], [21, 1, 1, "", "full_version_list"], [21, 1, 1, "", "mobile"], [21, 1, 1, "", "model"], [21, 1, 1, "", "platform"], [21, 1, 1, "", "platform_version"], [21, 1, 1, "", "wow64"]], "nodriver.cdp.emulation.VirtualTimePolicy": [[21, 1, 1, "", "ADVANCE"], [21, 1, 1, "", "PAUSE"], [21, 1, 1, "", "PAUSE_IF_NETWORK_FETCHES_PENDING"]], "nodriver.cdp.event_breakpoints": [[22, 5, 1, "", "disable"], [22, 5, 1, "", "remove_instrumentation_breakpoint"], [22, 5, 1, "", "set_instrumentation_breakpoint"]], "nodriver.cdp.extensions": [[23, 0, 1, "", "StorageArea"], [23, 5, 1, "", "clear_storage_items"], [23, 5, 1, "", "get_storage_items"], [23, 5, 1, "", "load_unpacked"], [23, 5, 1, "", "remove_storage_items"], [23, 5, 1, "", "set_storage_items"]], "nodriver.cdp.extensions.StorageArea": [[23, 1, 1, "", "LOCAL"], [23, 1, 1, "", "MANAGED"], [23, 1, 1, "", "SESSION"], [23, 1, 1, "", "SYNC"]], "nodriver.cdp.fed_cm": [[24, 0, 1, "", "Account"], [24, 0, 1, "", "AccountUrlType"], [24, 0, 1, "", "DialogButton"], [24, 0, 1, "", "DialogClosed"], [24, 0, 1, "", "DialogShown"], [24, 0, 1, "", "DialogType"], [24, 0, 1, "", "LoginState"], [24, 5, 1, "", "click_dialog_button"], [24, 5, 1, "", "disable"], [24, 5, 1, "", "dismiss_dialog"], [24, 5, 1, "", "enable"], [24, 5, 1, "", "open_url"], [24, 5, 1, "", "reset_cooldown"], [24, 5, 1, "", "select_account"]], "nodriver.cdp.fed_cm.Account": [[24, 1, 1, "", "account_id"], [24, 1, 1, "", "email"], [24, 1, 1, "", "given_name"], [24, 1, 1, "", "idp_config_url"], [24, 1, 1, "", "idp_login_url"], [24, 1, 1, "", "login_state"], [24, 1, 1, "", "name"], [24, 1, 1, "", "picture_url"], [24, 1, 1, "", "privacy_policy_url"], [24, 1, 1, "", "terms_of_service_url"]], "nodriver.cdp.fed_cm.AccountUrlType": [[24, 1, 1, "", "PRIVACY_POLICY"], [24, 1, 1, "", "TERMS_OF_SERVICE"]], "nodriver.cdp.fed_cm.DialogButton": [[24, 1, 1, "", "CONFIRM_IDP_LOGIN_CONTINUE"], [24, 1, 1, "", "ERROR_GOT_IT"], [24, 1, 1, "", "ERROR_MORE_DETAILS"]], "nodriver.cdp.fed_cm.DialogClosed": [[24, 1, 1, "", "dialog_id"]], "nodriver.cdp.fed_cm.DialogShown": [[24, 1, 1, "", "accounts"], [24, 1, 1, "", "dialog_id"], [24, 1, 1, "", "dialog_type"], [24, 1, 1, "", "subtitle"], [24, 1, 1, "", "title"]], "nodriver.cdp.fed_cm.DialogType": [[24, 1, 1, "", "ACCOUNT_CHOOSER"], [24, 1, 1, "", "AUTO_REAUTHN"], [24, 1, 1, "", "CONFIRM_IDP_LOGIN"], [24, 1, 1, "", "ERROR"]], "nodriver.cdp.fed_cm.LoginState": [[24, 1, 1, "", "SIGN_IN"], [24, 1, 1, "", "SIGN_UP"]], "nodriver.cdp.fetch": [[25, 0, 1, "", "AuthChallenge"], [25, 0, 1, "", "AuthChallengeResponse"], [25, 0, 1, "", "AuthRequired"], [25, 0, 1, "", "HeaderEntry"], [25, 0, 1, "", "RequestId"], [25, 0, 1, "", "RequestPattern"], [25, 0, 1, "", "RequestPaused"], [25, 0, 1, "", "RequestStage"], [25, 5, 1, "", "continue_request"], [25, 5, 1, "", "continue_response"], [25, 5, 1, "", "continue_with_auth"], [25, 5, 1, "", "disable"], [25, 5, 1, "", "enable"], [25, 5, 1, "", "fail_request"], [25, 5, 1, "", "fulfill_request"], [25, 5, 1, "", "get_response_body"], [25, 5, 1, "", "take_response_body_as_stream"]], "nodriver.cdp.fetch.AuthChallenge": [[25, 1, 1, "", "origin"], [25, 1, 1, "", "realm"], [25, 1, 1, "", "scheme"], [25, 1, 1, "", "source"]], "nodriver.cdp.fetch.AuthChallengeResponse": [[25, 1, 1, "", "password"], [25, 1, 1, "", "response"], [25, 1, 1, "", "username"]], "nodriver.cdp.fetch.AuthRequired": [[25, 1, 1, "", "auth_challenge"], [25, 1, 1, "", "frame_id"], [25, 1, 1, "", "request"], [25, 1, 1, "", "request_id"], [25, 1, 1, "", "resource_type"]], "nodriver.cdp.fetch.HeaderEntry": [[25, 1, 1, "", "name"], [25, 1, 1, "", "value"]], "nodriver.cdp.fetch.RequestPattern": [[25, 1, 1, "", "request_stage"], [25, 1, 1, "", "resource_type"], [25, 1, 1, "", "url_pattern"]], "nodriver.cdp.fetch.RequestPaused": [[25, 1, 1, "", "frame_id"], [25, 1, 1, "", "network_id"], [25, 1, 1, "", "redirected_request_id"], [25, 1, 1, "", "request"], [25, 1, 1, "", "request_id"], [25, 1, 1, "", "resource_type"], [25, 1, 1, "", "response_error_reason"], [25, 1, 1, "", "response_headers"], [25, 1, 1, "", "response_status_code"], [25, 1, 1, "", "response_status_text"]], "nodriver.cdp.fetch.RequestStage": [[25, 1, 1, "", "REQUEST"], [25, 1, 1, "", "RESPONSE"]], "nodriver.cdp.file_system": [[26, 0, 1, "", "BucketFileSystemLocator"], [26, 0, 1, "", "Directory"], [26, 0, 1, "", "File"], [26, 5, 1, "", "get_directory"]], "nodriver.cdp.file_system.BucketFileSystemLocator": [[26, 1, 1, "", "bucket_name"], [26, 1, 1, "", "path_components"], [26, 1, 1, "", "storage_key"]], "nodriver.cdp.file_system.Directory": [[26, 1, 1, "", "name"], [26, 1, 1, "", "nested_directories"], [26, 1, 1, "", "nested_files"]], "nodriver.cdp.file_system.File": [[26, 1, 1, "", "last_modified"], [26, 1, 1, "", "name"], [26, 1, 1, "", "size"], [26, 1, 1, "", "type_"]], "nodriver.cdp.headless_experimental": [[27, 0, 1, "", "ScreenshotParams"], [27, 5, 1, "", "begin_frame"], [27, 5, 1, "", "disable"], [27, 5, 1, "", "enable"]], "nodriver.cdp.headless_experimental.ScreenshotParams": [[27, 1, 1, "", "format_"], [27, 1, 1, "", "optimize_for_speed"], [27, 1, 1, "", "quality"]], "nodriver.cdp.heap_profiler": [[28, 0, 1, "", "AddHeapSnapshotChunk"], [28, 0, 1, "", "HeapSnapshotObjectId"], [28, 0, 1, "", "HeapStatsUpdate"], [28, 0, 1, "", "LastSeenObjectId"], [28, 0, 1, "", "ReportHeapSnapshotProgress"], [28, 0, 1, "", "ResetProfiles"], [28, 0, 1, "", "SamplingHeapProfile"], [28, 0, 1, "", "SamplingHeapProfileNode"], [28, 0, 1, "", "SamplingHeapProfileSample"], [28, 5, 1, "", "add_inspected_heap_object"], [28, 5, 1, "", "collect_garbage"], [28, 5, 1, "", "disable"], [28, 5, 1, "", "enable"], [28, 5, 1, "", "get_heap_object_id"], [28, 5, 1, "", "get_object_by_heap_object_id"], [28, 5, 1, "", "get_sampling_profile"], [28, 5, 1, "", "start_sampling"], [28, 5, 1, "", "start_tracking_heap_objects"], [28, 5, 1, "", "stop_sampling"], [28, 5, 1, "", "stop_tracking_heap_objects"], [28, 5, 1, "", "take_heap_snapshot"]], "nodriver.cdp.heap_profiler.AddHeapSnapshotChunk": [[28, 1, 1, "", "chunk"]], "nodriver.cdp.heap_profiler.HeapStatsUpdate": [[28, 1, 1, "", "stats_update"]], "nodriver.cdp.heap_profiler.LastSeenObjectId": [[28, 1, 1, "", "last_seen_object_id"], [28, 1, 1, "", "timestamp"]], "nodriver.cdp.heap_profiler.ReportHeapSnapshotProgress": [[28, 1, 1, "", "done"], [28, 1, 1, "", "finished"], [28, 1, 1, "", "total"]], "nodriver.cdp.heap_profiler.SamplingHeapProfile": [[28, 1, 1, "", "head"], [28, 1, 1, "", "samples"]], "nodriver.cdp.heap_profiler.SamplingHeapProfileNode": [[28, 1, 1, "", "call_frame"], [28, 1, 1, "", "children"], [28, 1, 1, "", "id_"], [28, 1, 1, "", "self_size"]], "nodriver.cdp.heap_profiler.SamplingHeapProfileSample": [[28, 1, 1, "", "node_id"], [28, 1, 1, "", "ordinal"], [28, 1, 1, "", "size"]], "nodriver.cdp.indexed_db": [[29, 0, 1, "", "DataEntry"], [29, 0, 1, "", "DatabaseWithObjectStores"], [29, 0, 1, "", "Key"], [29, 0, 1, "", "KeyPath"], [29, 0, 1, "", "KeyRange"], [29, 0, 1, "", "ObjectStore"], [29, 0, 1, "", "ObjectStoreIndex"], [29, 5, 1, "", "clear_object_store"], [29, 5, 1, "", "delete_database"], [29, 5, 1, "", "delete_object_store_entries"], [29, 5, 1, "", "disable"], [29, 5, 1, "", "enable"], [29, 5, 1, "", "get_metadata"], [29, 5, 1, "", "request_data"], [29, 5, 1, "", "request_database"], [29, 5, 1, "", "request_database_names"]], "nodriver.cdp.indexed_db.DataEntry": [[29, 1, 1, "", "key"], [29, 1, 1, "", "primary_key"], [29, 1, 1, "", "value"]], "nodriver.cdp.indexed_db.DatabaseWithObjectStores": [[29, 1, 1, "", "name"], [29, 1, 1, "", "object_stores"], [29, 1, 1, "", "version"]], "nodriver.cdp.indexed_db.Key": [[29, 1, 1, "", "array"], [29, 1, 1, "", "date"], [29, 1, 1, "", "number"], [29, 1, 1, "", "string"], [29, 1, 1, "", "type_"]], "nodriver.cdp.indexed_db.KeyPath": [[29, 1, 1, "", "array"], [29, 1, 1, "", "string"], [29, 1, 1, "", "type_"]], "nodriver.cdp.indexed_db.KeyRange": [[29, 1, 1, "", "lower"], [29, 1, 1, "", "lower_open"], [29, 1, 1, "", "upper"], [29, 1, 1, "", "upper_open"]], "nodriver.cdp.indexed_db.ObjectStore": [[29, 1, 1, "", "auto_increment"], [29, 1, 1, "", "indexes"], [29, 1, 1, "", "key_path"], [29, 1, 1, "", "name"]], "nodriver.cdp.indexed_db.ObjectStoreIndex": [[29, 1, 1, "", "key_path"], [29, 1, 1, "", "multi_entry"], [29, 1, 1, "", "name"], [29, 1, 1, "", "unique"]], "nodriver.cdp.input_": [[30, 0, 1, "", "DragData"], [30, 0, 1, "", "DragDataItem"], [30, 0, 1, "", "DragIntercepted"], [30, 0, 1, "", "GestureSourceType"], [30, 0, 1, "", "MouseButton"], [30, 0, 1, "", "TimeSinceEpoch"], [30, 0, 1, "", "TouchPoint"], [30, 5, 1, "", "cancel_dragging"], [30, 5, 1, "", "dispatch_drag_event"], [30, 5, 1, "", "dispatch_key_event"], [30, 5, 1, "", "dispatch_mouse_event"], [30, 5, 1, "", "dispatch_touch_event"], [30, 5, 1, "", "emulate_touch_from_mouse_event"], [30, 5, 1, "", "ime_set_composition"], [30, 5, 1, "", "insert_text"], [30, 5, 1, "", "set_ignore_input_events"], [30, 5, 1, "", "set_intercept_drags"], [30, 5, 1, "", "synthesize_pinch_gesture"], [30, 5, 1, "", "synthesize_scroll_gesture"], [30, 5, 1, "", "synthesize_tap_gesture"]], "nodriver.cdp.input_.DragData": [[30, 1, 1, "", "drag_operations_mask"], [30, 1, 1, "", "files"], [30, 1, 1, "", "items"]], "nodriver.cdp.input_.DragDataItem": [[30, 1, 1, "", "base_url"], [30, 1, 1, "", "data"], [30, 1, 1, "", "mime_type"], [30, 1, 1, "", "title"]], "nodriver.cdp.input_.DragIntercepted": [[30, 1, 1, "", "data"]], "nodriver.cdp.input_.GestureSourceType": [[30, 1, 1, "", "DEFAULT"], [30, 1, 1, "", "MOUSE"], [30, 1, 1, "", "TOUCH"]], "nodriver.cdp.input_.MouseButton": [[30, 1, 1, "", "BACK"], [30, 1, 1, "", "FORWARD"], [30, 1, 1, "", "LEFT"], [30, 1, 1, "", "MIDDLE"], [30, 1, 1, "", "NONE"], [30, 1, 1, "", "RIGHT"]], "nodriver.cdp.input_.TouchPoint": [[30, 1, 1, "", "force"], [30, 1, 1, "", "id_"], [30, 1, 1, "", "radius_x"], [30, 1, 1, "", "radius_y"], [30, 1, 1, "", "rotation_angle"], [30, 1, 1, "", "tangential_pressure"], [30, 1, 1, "", "tilt_x"], [30, 1, 1, "", "tilt_y"], [30, 1, 1, "", "twist"], [30, 1, 1, "", "x"], [30, 1, 1, "", "y"]], "nodriver.cdp.inspector": [[31, 0, 1, "", "Detached"], [31, 0, 1, "", "TargetCrashed"], [31, 0, 1, "", "TargetReloadedAfterCrash"], [31, 5, 1, "", "disable"], [31, 5, 1, "", "enable"]], "nodriver.cdp.inspector.Detached": [[31, 1, 1, "", "reason"]], "nodriver.cdp.io": [[32, 0, 1, "", "StreamHandle"], [32, 5, 1, "", "close"], [32, 5, 1, "", "read"], [32, 5, 1, "", "resolve_blob"]], "nodriver.cdp.layer_tree": [[33, 0, 1, "", "Layer"], [33, 0, 1, "", "LayerId"], [33, 0, 1, "", "LayerPainted"], [33, 0, 1, "", "LayerTreeDidChange"], [33, 0, 1, "", "PaintProfile"], [33, 0, 1, "", "PictureTile"], [33, 0, 1, "", "ScrollRect"], [33, 0, 1, "", "SnapshotId"], [33, 0, 1, "", "StickyPositionConstraint"], [33, 5, 1, "", "compositing_reasons"], [33, 5, 1, "", "disable"], [33, 5, 1, "", "enable"], [33, 5, 1, "", "load_snapshot"], [33, 5, 1, "", "make_snapshot"], [33, 5, 1, "", "profile_snapshot"], [33, 5, 1, "", "release_snapshot"], [33, 5, 1, "", "replay_snapshot"], [33, 5, 1, "", "snapshot_command_log"]], "nodriver.cdp.layer_tree.Layer": [[33, 1, 1, "", "anchor_x"], [33, 1, 1, "", "anchor_y"], [33, 1, 1, "", "anchor_z"], [33, 1, 1, "", "backend_node_id"], [33, 1, 1, "", "draws_content"], [33, 1, 1, "", "height"], [33, 1, 1, "", "invisible"], [33, 1, 1, "", "layer_id"], [33, 1, 1, "", "offset_x"], [33, 1, 1, "", "offset_y"], [33, 1, 1, "", "paint_count"], [33, 1, 1, "", "parent_layer_id"], [33, 1, 1, "", "scroll_rects"], [33, 1, 1, "", "sticky_position_constraint"], [33, 1, 1, "", "transform"], [33, 1, 1, "", "width"]], "nodriver.cdp.layer_tree.LayerPainted": [[33, 1, 1, "", "clip"], [33, 1, 1, "", "layer_id"]], "nodriver.cdp.layer_tree.LayerTreeDidChange": [[33, 1, 1, "", "layers"]], "nodriver.cdp.layer_tree.PictureTile": [[33, 1, 1, "", "picture"], [33, 1, 1, "", "x"], [33, 1, 1, "", "y"]], "nodriver.cdp.layer_tree.ScrollRect": [[33, 1, 1, "", "rect"], [33, 1, 1, "", "type_"]], "nodriver.cdp.layer_tree.StickyPositionConstraint": [[33, 1, 1, "", "containing_block_rect"], [33, 1, 1, "", "nearest_layer_shifting_containing_block"], [33, 1, 1, "", "nearest_layer_shifting_sticky_box"], [33, 1, 1, "", "sticky_box_rect"]], "nodriver.cdp.log": [[34, 0, 1, "", "EntryAdded"], [34, 0, 1, "", "LogEntry"], [34, 0, 1, "", "ViolationSetting"], [34, 5, 1, "", "clear"], [34, 5, 1, "", "disable"], [34, 5, 1, "", "enable"], [34, 5, 1, "", "start_violations_report"], [34, 5, 1, "", "stop_violations_report"]], "nodriver.cdp.log.EntryAdded": [[34, 1, 1, "", "entry"]], "nodriver.cdp.log.LogEntry": [[34, 1, 1, "", "args"], [34, 1, 1, "", "category"], [34, 1, 1, "", "level"], [34, 1, 1, "", "line_number"], [34, 1, 1, "", "network_request_id"], [34, 1, 1, "", "source"], [34, 1, 1, "", "stack_trace"], [34, 1, 1, "", "text"], [34, 1, 1, "", "timestamp"], [34, 1, 1, "", "url"], [34, 1, 1, "", "worker_id"]], "nodriver.cdp.log.ViolationSetting": [[34, 1, 1, "", "name"], [34, 1, 1, "", "threshold"]], "nodriver.cdp.media": [[35, 0, 1, "", "PlayerError"], [35, 0, 1, "", "PlayerErrorSourceLocation"], [35, 0, 1, "", "PlayerErrorsRaised"], [35, 0, 1, "", "PlayerEvent"], [35, 0, 1, "", "PlayerEventsAdded"], [35, 0, 1, "", "PlayerId"], [35, 0, 1, "", "PlayerMessage"], [35, 0, 1, "", "PlayerMessagesLogged"], [35, 0, 1, "", "PlayerPropertiesChanged"], [35, 0, 1, "", "PlayerProperty"], [35, 0, 1, "", "PlayersCreated"], [35, 0, 1, "", "Timestamp"], [35, 5, 1, "", "disable"], [35, 5, 1, "", "enable"]], "nodriver.cdp.media.PlayerError": [[35, 1, 1, "", "cause"], [35, 1, 1, "", "code"], [35, 1, 1, "", "data"], [35, 1, 1, "", "error_type"], [35, 1, 1, "", "stack"]], "nodriver.cdp.media.PlayerErrorSourceLocation": [[35, 1, 1, "", "file"], [35, 1, 1, "", "line"]], "nodriver.cdp.media.PlayerErrorsRaised": [[35, 1, 1, "", "errors"], [35, 1, 1, "", "player_id"]], "nodriver.cdp.media.PlayerEvent": [[35, 1, 1, "", "timestamp"], [35, 1, 1, "", "value"]], "nodriver.cdp.media.PlayerEventsAdded": [[35, 1, 1, "", "events"], [35, 1, 1, "", "player_id"]], "nodriver.cdp.media.PlayerMessage": [[35, 1, 1, "", "level"], [35, 1, 1, "", "message"]], "nodriver.cdp.media.PlayerMessagesLogged": [[35, 1, 1, "", "messages"], [35, 1, 1, "", "player_id"]], "nodriver.cdp.media.PlayerPropertiesChanged": [[35, 1, 1, "", "player_id"], [35, 1, 1, "", "properties"]], "nodriver.cdp.media.PlayerProperty": [[35, 1, 1, "", "name"], [35, 1, 1, "", "value"]], "nodriver.cdp.media.PlayersCreated": [[35, 1, 1, "", "players"]], "nodriver.cdp.memory": [[36, 0, 1, "", "DOMCounter"], [36, 0, 1, "", "Module"], [36, 0, 1, "", "PressureLevel"], [36, 0, 1, "", "SamplingProfile"], [36, 0, 1, "", "SamplingProfileNode"], [36, 5, 1, "", "forcibly_purge_java_script_memory"], [36, 5, 1, "", "get_all_time_sampling_profile"], [36, 5, 1, "", "get_browser_sampling_profile"], [36, 5, 1, "", "get_dom_counters"], [36, 5, 1, "", "get_dom_counters_for_leak_detection"], [36, 5, 1, "", "get_sampling_profile"], [36, 5, 1, "", "prepare_for_leak_detection"], [36, 5, 1, "", "set_pressure_notifications_suppressed"], [36, 5, 1, "", "simulate_pressure_notification"], [36, 5, 1, "", "start_sampling"], [36, 5, 1, "", "stop_sampling"]], "nodriver.cdp.memory.DOMCounter": [[36, 1, 1, "", "count"], [36, 1, 1, "", "name"]], "nodriver.cdp.memory.Module": [[36, 1, 1, "", "base_address"], [36, 1, 1, "", "name"], [36, 1, 1, "", "size"], [36, 1, 1, "", "uuid"]], "nodriver.cdp.memory.PressureLevel": [[36, 1, 1, "", "CRITICAL"], [36, 1, 1, "", "MODERATE"]], "nodriver.cdp.memory.SamplingProfile": [[36, 1, 1, "", "modules"], [36, 1, 1, "", "samples"]], "nodriver.cdp.memory.SamplingProfileNode": [[36, 1, 1, "", "size"], [36, 1, 1, "", "stack"], [36, 1, 1, "", "total"]], "nodriver.cdp.network": [[37, 0, 1, "", "AlternateProtocolUsage"], [37, 0, 1, "", "AssociatedCookie"], [37, 0, 1, "", "AuthChallenge"], [37, 0, 1, "", "AuthChallengeResponse"], [37, 0, 1, "", "BlockedReason"], [37, 0, 1, "", "BlockedSetCookieWithReason"], [37, 0, 1, "", "CachedResource"], [37, 0, 1, "", "CertificateTransparencyCompliance"], [37, 0, 1, "", "ClientSecurityState"], [37, 0, 1, "", "ConnectTiming"], [37, 0, 1, "", "ConnectionType"], [37, 0, 1, "", "ContentEncoding"], [37, 0, 1, "", "ContentSecurityPolicySource"], [37, 0, 1, "", "ContentSecurityPolicyStatus"], [37, 0, 1, "", "Cookie"], [37, 0, 1, "", "CookieBlockedReason"], [37, 0, 1, "", "CookieExemptionReason"], [37, 0, 1, "", "CookieParam"], [37, 0, 1, "", "CookiePartitionKey"], [37, 0, 1, "", "CookiePriority"], [37, 0, 1, "", "CookieSameSite"], [37, 0, 1, "", "CookieSourceScheme"], [37, 0, 1, "", "CorsError"], [37, 0, 1, "", "CorsErrorStatus"], [37, 0, 1, "", "CrossOriginEmbedderPolicyStatus"], [37, 0, 1, "", "CrossOriginEmbedderPolicyValue"], [37, 0, 1, "", "CrossOriginOpenerPolicyStatus"], [37, 0, 1, "", "CrossOriginOpenerPolicyValue"], [37, 0, 1, "", "DataReceived"], [37, 0, 1, "", "ErrorReason"], [37, 0, 1, "", "EventSourceMessageReceived"], [37, 0, 1, "", "ExemptedSetCookieWithReason"], [37, 0, 1, "", "Headers"], [37, 0, 1, "", "IPAddressSpace"], [37, 0, 1, "", "Initiator"], [37, 0, 1, "", "InterceptionId"], [37, 0, 1, "", "InterceptionStage"], [37, 0, 1, "", "LoadNetworkResourceOptions"], [37, 0, 1, "", "LoadNetworkResourcePageResult"], [37, 0, 1, "", "LoaderId"], [37, 0, 1, "", "LoadingFailed"], [37, 0, 1, "", "LoadingFinished"], [37, 0, 1, "", "MonotonicTime"], [37, 0, 1, "", "PolicyUpdated"], [37, 0, 1, "", "PostDataEntry"], [37, 0, 1, "", "PrivateNetworkRequestPolicy"], [37, 0, 1, "", "ReportId"], [37, 0, 1, "", "ReportStatus"], [37, 0, 1, "", "ReportingApiEndpoint"], [37, 0, 1, "", "ReportingApiEndpointsChangedForOrigin"], [37, 0, 1, "", "ReportingApiReport"], [37, 0, 1, "", "ReportingApiReportAdded"], [37, 0, 1, "", "ReportingApiReportUpdated"], [37, 0, 1, "", "Request"], [37, 0, 1, "", "RequestId"], [37, 0, 1, "", "RequestIntercepted"], [37, 0, 1, "", "RequestPattern"], [37, 0, 1, "", "RequestServedFromCache"], [37, 0, 1, "", "RequestWillBeSent"], [37, 0, 1, "", "RequestWillBeSentExtraInfo"], [37, 0, 1, "", "ResourceChangedPriority"], [37, 0, 1, "", "ResourcePriority"], [37, 0, 1, "", "ResourceTiming"], [37, 0, 1, "", "ResourceType"], [37, 0, 1, "", "Response"], [37, 0, 1, "", "ResponseReceived"], [37, 0, 1, "", "ResponseReceivedEarlyHints"], [37, 0, 1, "", "ResponseReceivedExtraInfo"], [37, 0, 1, "", "SecurityDetails"], [37, 0, 1, "", "SecurityIsolationStatus"], [37, 0, 1, "", "ServiceWorkerResponseSource"], [37, 0, 1, "", "ServiceWorkerRouterInfo"], [37, 0, 1, "", "ServiceWorkerRouterSource"], [37, 0, 1, "", "SetCookieBlockedReason"], [37, 0, 1, "", "SignedCertificateTimestamp"], [37, 0, 1, "", "SignedExchangeError"], [37, 0, 1, "", "SignedExchangeErrorField"], [37, 0, 1, "", "SignedExchangeHeader"], [37, 0, 1, "", "SignedExchangeInfo"], [37, 0, 1, "", "SignedExchangeReceived"], [37, 0, 1, "", "SignedExchangeSignature"], [37, 0, 1, "", "SubresourceWebBundleInnerResponseError"], [37, 0, 1, "", "SubresourceWebBundleInnerResponseParsed"], [37, 0, 1, "", "SubresourceWebBundleMetadataError"], [37, 0, 1, "", "SubresourceWebBundleMetadataReceived"], [37, 0, 1, "", "TimeSinceEpoch"], [37, 0, 1, "", "TrustTokenOperationDone"], [37, 0, 1, "", "TrustTokenOperationType"], [37, 0, 1, "", "TrustTokenParams"], [37, 0, 1, "", "WebSocketClosed"], [37, 0, 1, "", "WebSocketCreated"], [37, 0, 1, "", "WebSocketFrame"], [37, 0, 1, "", "WebSocketFrameError"], [37, 0, 1, "", "WebSocketFrameReceived"], [37, 0, 1, "", "WebSocketFrameSent"], [37, 0, 1, "", "WebSocketHandshakeResponseReceived"], [37, 0, 1, "", "WebSocketRequest"], [37, 0, 1, "", "WebSocketResponse"], [37, 0, 1, "", "WebSocketWillSendHandshakeRequest"], [37, 0, 1, "", "WebTransportClosed"], [37, 0, 1, "", "WebTransportConnectionEstablished"], [37, 0, 1, "", "WebTransportCreated"], [37, 5, 1, "", "can_clear_browser_cache"], [37, 5, 1, "", "can_clear_browser_cookies"], [37, 5, 1, "", "can_emulate_network_conditions"], [37, 5, 1, "", "clear_accepted_encodings_override"], [37, 5, 1, "", "clear_browser_cache"], [37, 5, 1, "", "clear_browser_cookies"], [37, 5, 1, "", "continue_intercepted_request"], [37, 5, 1, "", "delete_cookies"], [37, 5, 1, "", "disable"], [37, 5, 1, "", "emulate_network_conditions"], [37, 5, 1, "", "enable"], [37, 5, 1, "", "enable_reporting_api"], [37, 5, 1, "", "get_all_cookies"], [37, 5, 1, "", "get_certificate"], [37, 5, 1, "", "get_cookies"], [37, 5, 1, "", "get_request_post_data"], [37, 5, 1, "", "get_response_body"], [37, 5, 1, "", "get_response_body_for_interception"], [37, 5, 1, "", "get_security_isolation_status"], [37, 5, 1, "", "load_network_resource"], [37, 5, 1, "", "replay_xhr"], [37, 5, 1, "", "search_in_response_body"], [37, 5, 1, "", "set_accepted_encodings"], [37, 5, 1, "", "set_attach_debug_stack"], [37, 5, 1, "", "set_blocked_ur_ls"], [37, 5, 1, "", "set_bypass_service_worker"], [37, 5, 1, "", "set_cache_disabled"], [37, 5, 1, "", "set_cookie"], [37, 5, 1, "", "set_cookies"], [37, 5, 1, "", "set_extra_http_headers"], [37, 5, 1, "", "set_request_interception"], [37, 5, 1, "", "set_user_agent_override"], [37, 5, 1, "", "stream_resource_content"], [37, 5, 1, "", "take_response_body_for_interception_as_stream"]], "nodriver.cdp.network.AlternateProtocolUsage": [[37, 1, 1, "", "ALTERNATIVE_JOB_WON_RACE"], [37, 1, 1, "", "ALTERNATIVE_JOB_WON_WITHOUT_RACE"], [37, 1, 1, "", "BROKEN"], [37, 1, 1, "", "DNS_ALPN_H3_JOB_WON_RACE"], [37, 1, 1, "", "DNS_ALPN_H3_JOB_WON_WITHOUT_RACE"], [37, 1, 1, "", "MAIN_JOB_WON_RACE"], [37, 1, 1, "", "MAPPING_MISSING"], [37, 1, 1, "", "UNSPECIFIED_REASON"]], "nodriver.cdp.network.AssociatedCookie": [[37, 1, 1, "", "blocked_reasons"], [37, 1, 1, "", "cookie"], [37, 1, 1, "", "exemption_reason"]], "nodriver.cdp.network.AuthChallenge": [[37, 1, 1, "", "origin"], [37, 1, 1, "", "realm"], [37, 1, 1, "", "scheme"], [37, 1, 1, "", "source"]], "nodriver.cdp.network.AuthChallengeResponse": [[37, 1, 1, "", "password"], [37, 1, 1, "", "response"], [37, 1, 1, "", "username"]], "nodriver.cdp.network.BlockedReason": [[37, 1, 1, "", "COEP_FRAME_RESOURCE_NEEDS_COEP_HEADER"], [37, 1, 1, "", "CONTENT_TYPE"], [37, 1, 1, "", "COOP_SANDBOXED_IFRAME_CANNOT_NAVIGATE_TO_COOP_PAGE"], [37, 1, 1, "", "CORP_NOT_SAME_ORIGIN"], [37, 1, 1, "", "CORP_NOT_SAME_ORIGIN_AFTER_DEFAULTED_TO_SAME_ORIGIN_BY_COEP"], [37, 1, 1, "", "CORP_NOT_SAME_ORIGIN_AFTER_DEFAULTED_TO_SAME_ORIGIN_BY_COEP_AND_DIP"], [37, 1, 1, "", "CORP_NOT_SAME_ORIGIN_AFTER_DEFAULTED_TO_SAME_ORIGIN_BY_DIP"], [37, 1, 1, "", "CORP_NOT_SAME_SITE"], [37, 1, 1, "", "CSP"], [37, 1, 1, "", "INSPECTOR"], [37, 1, 1, "", "MIXED_CONTENT"], [37, 1, 1, "", "ORIGIN"], [37, 1, 1, "", "OTHER"], [37, 1, 1, "", "SUBRESOURCE_FILTER"]], "nodriver.cdp.network.BlockedSetCookieWithReason": [[37, 1, 1, "", "blocked_reasons"], [37, 1, 1, "", "cookie"], [37, 1, 1, "", "cookie_line"]], "nodriver.cdp.network.CachedResource": [[37, 1, 1, "", "body_size"], [37, 1, 1, "", "response"], [37, 1, 1, "", "type_"], [37, 1, 1, "", "url"]], "nodriver.cdp.network.CertificateTransparencyCompliance": [[37, 1, 1, "", "COMPLIANT"], [37, 1, 1, "", "NOT_COMPLIANT"], [37, 1, 1, "", "UNKNOWN"]], "nodriver.cdp.network.ClientSecurityState": [[37, 1, 1, "", "initiator_ip_address_space"], [37, 1, 1, "", "initiator_is_secure_context"], [37, 1, 1, "", "private_network_request_policy"]], "nodriver.cdp.network.ConnectTiming": [[37, 1, 1, "", "request_time"]], "nodriver.cdp.network.ConnectionType": [[37, 1, 1, "", "BLUETOOTH"], [37, 1, 1, "", "CELLULAR2G"], [37, 1, 1, "", "CELLULAR3G"], [37, 1, 1, "", "CELLULAR4G"], [37, 1, 1, "", "ETHERNET"], [37, 1, 1, "", "NONE"], [37, 1, 1, "", "OTHER"], [37, 1, 1, "", "WIFI"], [37, 1, 1, "", "WIMAX"]], "nodriver.cdp.network.ContentEncoding": [[37, 1, 1, "", "BR"], [37, 1, 1, "", "DEFLATE"], [37, 1, 1, "", "GZIP"], [37, 1, 1, "", "ZSTD"]], "nodriver.cdp.network.ContentSecurityPolicySource": [[37, 1, 1, "", "HTTP"], [37, 1, 1, "", "META"]], "nodriver.cdp.network.ContentSecurityPolicyStatus": [[37, 1, 1, "", "effective_directives"], [37, 1, 1, "", "is_enforced"], [37, 1, 1, "", "source"]], "nodriver.cdp.network.Cookie": [[37, 1, 1, "", "domain"], [37, 1, 1, "", "expires"], [37, 1, 1, "", "http_only"], [37, 1, 1, "", "name"], [37, 1, 1, "", "partition_key"], [37, 1, 1, "", "partition_key_opaque"], [37, 1, 1, "", "path"], [37, 1, 1, "", "priority"], [37, 1, 1, "", "same_party"], [37, 1, 1, "", "same_site"], [37, 1, 1, "", "secure"], [37, 1, 1, "", "session"], [37, 1, 1, "", "size"], [37, 1, 1, "", "source_port"], [37, 1, 1, "", "source_scheme"], [37, 1, 1, "", "value"]], "nodriver.cdp.network.CookieBlockedReason": [[37, 1, 1, "", "DOMAIN_MISMATCH"], [37, 1, 1, "", "NAME_VALUE_PAIR_EXCEEDS_MAX_SIZE"], [37, 1, 1, "", "NOT_ON_PATH"], [37, 1, 1, "", "PORT_MISMATCH"], [37, 1, 1, "", "SAME_PARTY_FROM_CROSS_PARTY_CONTEXT"], [37, 1, 1, "", "SAME_SITE_LAX"], [37, 1, 1, "", "SAME_SITE_NONE_INSECURE"], [37, 1, 1, "", "SAME_SITE_STRICT"], [37, 1, 1, "", "SAME_SITE_UNSPECIFIED_TREATED_AS_LAX"], [37, 1, 1, "", "SCHEMEFUL_SAME_SITE_LAX"], [37, 1, 1, "", "SCHEMEFUL_SAME_SITE_STRICT"], [37, 1, 1, "", "SCHEMEFUL_SAME_SITE_UNSPECIFIED_TREATED_AS_LAX"], [37, 1, 1, "", "SCHEME_MISMATCH"], [37, 1, 1, "", "SECURE_ONLY"], [37, 1, 1, "", "THIRD_PARTY_BLOCKED_IN_FIRST_PARTY_SET"], [37, 1, 1, "", "THIRD_PARTY_PHASEOUT"], [37, 1, 1, "", "UNKNOWN_ERROR"], [37, 1, 1, "", "USER_PREFERENCES"]], "nodriver.cdp.network.CookieExemptionReason": [[37, 1, 1, "", "ENTERPRISE_POLICY"], [37, 1, 1, "", "NONE"], [37, 1, 1, "", "SCHEME"], [37, 1, 1, "", "STORAGE_ACCESS"], [37, 1, 1, "", "TOP_LEVEL_STORAGE_ACCESS"], [37, 1, 1, "", "TOP_LEVEL_TPCD_DEPRECATION_TRIAL"], [37, 1, 1, "", "TPCD_DEPRECATION_TRIAL"], [37, 1, 1, "", "TPCD_HEURISTICS"], [37, 1, 1, "", "TPCD_METADATA"], [37, 1, 1, "", "USER_SETTING"]], "nodriver.cdp.network.CookieParam": [[37, 1, 1, "", "domain"], [37, 1, 1, "", "expires"], [37, 1, 1, "", "http_only"], [37, 1, 1, "", "name"], [37, 1, 1, "", "partition_key"], [37, 1, 1, "", "path"], [37, 1, 1, "", "priority"], [37, 1, 1, "", "same_party"], [37, 1, 1, "", "same_site"], [37, 1, 1, "", "secure"], [37, 1, 1, "", "source_port"], [37, 1, 1, "", "source_scheme"], [37, 1, 1, "", "url"], [37, 1, 1, "", "value"]], "nodriver.cdp.network.CookiePartitionKey": [[37, 1, 1, "", "has_cross_site_ancestor"], [37, 1, 1, "", "top_level_site"]], "nodriver.cdp.network.CookiePriority": [[37, 1, 1, "", "HIGH"], [37, 1, 1, "", "LOW"], [37, 1, 1, "", "MEDIUM"]], "nodriver.cdp.network.CookieSameSite": [[37, 1, 1, "", "LAX"], [37, 1, 1, "", "NONE"], [37, 1, 1, "", "STRICT"]], "nodriver.cdp.network.CookieSourceScheme": [[37, 1, 1, "", "NON_SECURE"], [37, 1, 1, "", "SECURE"], [37, 1, 1, "", "UNSET"]], "nodriver.cdp.network.CorsError": [[37, 1, 1, "", "ALLOW_ORIGIN_MISMATCH"], [37, 1, 1, "", "CORS_DISABLED_SCHEME"], [37, 1, 1, "", "DISALLOWED_BY_MODE"], [37, 1, 1, "", "HEADER_DISALLOWED_BY_PREFLIGHT_RESPONSE"], [37, 1, 1, "", "INSECURE_PRIVATE_NETWORK"], [37, 1, 1, "", "INVALID_ALLOW_CREDENTIALS"], [37, 1, 1, "", "INVALID_ALLOW_HEADERS_PREFLIGHT_RESPONSE"], [37, 1, 1, "", "INVALID_ALLOW_METHODS_PREFLIGHT_RESPONSE"], [37, 1, 1, "", "INVALID_ALLOW_ORIGIN_VALUE"], [37, 1, 1, "", "INVALID_PRIVATE_NETWORK_ACCESS"], [37, 1, 1, "", "INVALID_RESPONSE"], [37, 1, 1, "", "METHOD_DISALLOWED_BY_PREFLIGHT_RESPONSE"], [37, 1, 1, "", "MISSING_ALLOW_ORIGIN_HEADER"], [37, 1, 1, "", "MULTIPLE_ALLOW_ORIGIN_VALUES"], [37, 1, 1, "", "NO_CORS_REDIRECT_MODE_NOT_FOLLOW"], [37, 1, 1, "", "PREFLIGHT_ALLOW_ORIGIN_MISMATCH"], [37, 1, 1, "", "PREFLIGHT_DISALLOWED_REDIRECT"], [37, 1, 1, "", "PREFLIGHT_INVALID_ALLOW_CREDENTIALS"], [37, 1, 1, "", "PREFLIGHT_INVALID_ALLOW_EXTERNAL"], [37, 1, 1, "", "PREFLIGHT_INVALID_ALLOW_ORIGIN_VALUE"], [37, 1, 1, "", "PREFLIGHT_INVALID_ALLOW_PRIVATE_NETWORK"], [37, 1, 1, "", "PREFLIGHT_INVALID_STATUS"], [37, 1, 1, "", "PREFLIGHT_MISSING_ALLOW_EXTERNAL"], [37, 1, 1, "", "PREFLIGHT_MISSING_ALLOW_ORIGIN_HEADER"], [37, 1, 1, "", "PREFLIGHT_MISSING_ALLOW_PRIVATE_NETWORK"], [37, 1, 1, "", "PREFLIGHT_MISSING_PRIVATE_NETWORK_ACCESS_ID"], [37, 1, 1, "", "PREFLIGHT_MISSING_PRIVATE_NETWORK_ACCESS_NAME"], [37, 1, 1, "", "PREFLIGHT_MULTIPLE_ALLOW_ORIGIN_VALUES"], [37, 1, 1, "", "PREFLIGHT_WILDCARD_ORIGIN_NOT_ALLOWED"], [37, 1, 1, "", "PRIVATE_NETWORK_ACCESS_PERMISSION_DENIED"], [37, 1, 1, "", "PRIVATE_NETWORK_ACCESS_PERMISSION_UNAVAILABLE"], [37, 1, 1, "", "REDIRECT_CONTAINS_CREDENTIALS"], [37, 1, 1, "", "UNEXPECTED_PRIVATE_NETWORK_ACCESS"], [37, 1, 1, "", "WILDCARD_ORIGIN_NOT_ALLOWED"]], "nodriver.cdp.network.CorsErrorStatus": [[37, 1, 1, "", "cors_error"], [37, 1, 1, "", "failed_parameter"]], "nodriver.cdp.network.CrossOriginEmbedderPolicyStatus": [[37, 1, 1, "", "report_only_reporting_endpoint"], [37, 1, 1, "", "report_only_value"], [37, 1, 1, "", "reporting_endpoint"], [37, 1, 1, "", "value"]], "nodriver.cdp.network.CrossOriginEmbedderPolicyValue": [[37, 1, 1, "", "CREDENTIALLESS"], [37, 1, 1, "", "NONE"], [37, 1, 1, "", "REQUIRE_CORP"]], "nodriver.cdp.network.CrossOriginOpenerPolicyStatus": [[37, 1, 1, "", "report_only_reporting_endpoint"], [37, 1, 1, "", "report_only_value"], [37, 1, 1, "", "reporting_endpoint"], [37, 1, 1, "", "value"]], "nodriver.cdp.network.CrossOriginOpenerPolicyValue": [[37, 1, 1, "", "NOOPENER_ALLOW_POPUPS"], [37, 1, 1, "", "RESTRICT_PROPERTIES"], [37, 1, 1, "", "RESTRICT_PROPERTIES_PLUS_COEP"], [37, 1, 1, "", "SAME_ORIGIN"], [37, 1, 1, "", "SAME_ORIGIN_ALLOW_POPUPS"], [37, 1, 1, "", "SAME_ORIGIN_PLUS_COEP"], [37, 1, 1, "", "UNSAFE_NONE"]], "nodriver.cdp.network.DataReceived": [[37, 1, 1, "", "data"], [37, 1, 1, "", "data_length"], [37, 1, 1, "", "encoded_data_length"], [37, 1, 1, "", "request_id"], [37, 1, 1, "", "timestamp"]], "nodriver.cdp.network.ErrorReason": [[37, 1, 1, "", "ABORTED"], [37, 1, 1, "", "ACCESS_DENIED"], [37, 1, 1, "", "ADDRESS_UNREACHABLE"], [37, 1, 1, "", "BLOCKED_BY_CLIENT"], [37, 1, 1, "", "BLOCKED_BY_RESPONSE"], [37, 1, 1, "", "CONNECTION_ABORTED"], [37, 1, 1, "", "CONNECTION_CLOSED"], [37, 1, 1, "", "CONNECTION_FAILED"], [37, 1, 1, "", "CONNECTION_REFUSED"], [37, 1, 1, "", "CONNECTION_RESET"], [37, 1, 1, "", "FAILED"], [37, 1, 1, "", "INTERNET_DISCONNECTED"], [37, 1, 1, "", "NAME_NOT_RESOLVED"], [37, 1, 1, "", "TIMED_OUT"]], "nodriver.cdp.network.EventSourceMessageReceived": [[37, 1, 1, "", "data"], [37, 1, 1, "", "event_id"], [37, 1, 1, "", "event_name"], [37, 1, 1, "", "request_id"], [37, 1, 1, "", "timestamp"]], "nodriver.cdp.network.ExemptedSetCookieWithReason": [[37, 1, 1, "", "cookie"], [37, 1, 1, "", "cookie_line"], [37, 1, 1, "", "exemption_reason"]], "nodriver.cdp.network.IPAddressSpace": [[37, 1, 1, "", "LOCAL"], [37, 1, 1, "", "PRIVATE"], [37, 1, 1, "", "PUBLIC"], [37, 1, 1, "", "UNKNOWN"]], "nodriver.cdp.network.Initiator": [[37, 1, 1, "", "column_number"], [37, 1, 1, "", "line_number"], [37, 1, 1, "", "request_id"], [37, 1, 1, "", "stack"], [37, 1, 1, "", "type_"], [37, 1, 1, "", "url"]], "nodriver.cdp.network.InterceptionStage": [[37, 1, 1, "", "HEADERS_RECEIVED"], [37, 1, 1, "", "REQUEST"]], "nodriver.cdp.network.LoadNetworkResourceOptions": [[37, 1, 1, "", "disable_cache"], [37, 1, 1, "", "include_credentials"]], "nodriver.cdp.network.LoadNetworkResourcePageResult": [[37, 1, 1, "", "headers"], [37, 1, 1, "", "http_status_code"], [37, 1, 1, "", "net_error"], [37, 1, 1, "", "net_error_name"], [37, 1, 1, "", "stream"], [37, 1, 1, "", "success"]], "nodriver.cdp.network.LoadingFailed": [[37, 1, 1, "", "blocked_reason"], [37, 1, 1, "", "canceled"], [37, 1, 1, "", "cors_error_status"], [37, 1, 1, "", "error_text"], [37, 1, 1, "", "request_id"], [37, 1, 1, "", "timestamp"], [37, 1, 1, "", "type_"]], "nodriver.cdp.network.LoadingFinished": [[37, 1, 1, "", "encoded_data_length"], [37, 1, 1, "", "request_id"], [37, 1, 1, "", "timestamp"]], "nodriver.cdp.network.PostDataEntry": [[37, 1, 1, "", "bytes_"]], "nodriver.cdp.network.PrivateNetworkRequestPolicy": [[37, 1, 1, "", "ALLOW"], [37, 1, 1, "", "BLOCK_FROM_INSECURE_TO_MORE_PRIVATE"], [37, 1, 1, "", "PREFLIGHT_BLOCK"], [37, 1, 1, "", "PREFLIGHT_WARN"], [37, 1, 1, "", "WARN_FROM_INSECURE_TO_MORE_PRIVATE"]], "nodriver.cdp.network.ReportStatus": [[37, 1, 1, "", "MARKED_FOR_REMOVAL"], [37, 1, 1, "", "PENDING"], [37, 1, 1, "", "QUEUED"], [37, 1, 1, "", "SUCCESS"]], "nodriver.cdp.network.ReportingApiEndpoint": [[37, 1, 1, "", "group_name"], [37, 1, 1, "", "url"]], "nodriver.cdp.network.ReportingApiEndpointsChangedForOrigin": [[37, 1, 1, "", "endpoints"], [37, 1, 1, "", "origin"]], "nodriver.cdp.network.ReportingApiReport": [[37, 1, 1, "", "body"], [37, 1, 1, "", "completed_attempts"], [37, 1, 1, "", "depth"], [37, 1, 1, "", "destination"], [37, 1, 1, "", "id_"], [37, 1, 1, "", "initiator_url"], [37, 1, 1, "", "status"], [37, 1, 1, "", "timestamp"], [37, 1, 1, "", "type_"]], "nodriver.cdp.network.ReportingApiReportAdded": [[37, 1, 1, "", "report"]], "nodriver.cdp.network.ReportingApiReportUpdated": [[37, 1, 1, "", "report"]], "nodriver.cdp.network.Request": [[37, 1, 1, "", "has_post_data"], [37, 1, 1, "", "headers"], [37, 1, 1, "", "initial_priority"], [37, 1, 1, "", "is_link_preload"], [37, 1, 1, "", "is_same_site"], [37, 1, 1, "", "method"], [37, 1, 1, "", "mixed_content_type"], [37, 1, 1, "", "post_data"], [37, 1, 1, "", "post_data_entries"], [37, 1, 1, "", "referrer_policy"], [37, 1, 1, "", "trust_token_params"], [37, 1, 1, "", "url"], [37, 1, 1, "", "url_fragment"]], "nodriver.cdp.network.RequestIntercepted": [[37, 1, 1, "", "auth_challenge"], [37, 1, 1, "", "frame_id"], [37, 1, 1, "", "interception_id"], [37, 1, 1, "", "is_download"], [37, 1, 1, "", "is_navigation_request"], [37, 1, 1, "", "redirect_url"], [37, 1, 1, "", "request"], [37, 1, 1, "", "request_id"], [37, 1, 1, "", "resource_type"], [37, 1, 1, "", "response_error_reason"], [37, 1, 1, "", "response_headers"], [37, 1, 1, "", "response_status_code"]], "nodriver.cdp.network.RequestPattern": [[37, 1, 1, "", "interception_stage"], [37, 1, 1, "", "resource_type"], [37, 1, 1, "", "url_pattern"]], "nodriver.cdp.network.RequestServedFromCache": [[37, 1, 1, "", "request_id"]], "nodriver.cdp.network.RequestWillBeSent": [[37, 1, 1, "", "document_url"], [37, 1, 1, "", "frame_id"], [37, 1, 1, "", "has_user_gesture"], [37, 1, 1, "", "initiator"], [37, 1, 1, "", "loader_id"], [37, 1, 1, "", "redirect_has_extra_info"], [37, 1, 1, "", "redirect_response"], [37, 1, 1, "", "request"], [37, 1, 1, "", "request_id"], [37, 1, 1, "", "timestamp"], [37, 1, 1, "", "type_"], [37, 1, 1, "", "wall_time"]], "nodriver.cdp.network.RequestWillBeSentExtraInfo": [[37, 1, 1, "", "associated_cookies"], [37, 1, 1, "", "client_security_state"], [37, 1, 1, "", "connect_timing"], [37, 1, 1, "", "headers"], [37, 1, 1, "", "request_id"], [37, 1, 1, "", "site_has_cookie_in_other_partition"]], "nodriver.cdp.network.ResourceChangedPriority": [[37, 1, 1, "", "new_priority"], [37, 1, 1, "", "request_id"], [37, 1, 1, "", "timestamp"]], "nodriver.cdp.network.ResourcePriority": [[37, 1, 1, "", "HIGH"], [37, 1, 1, "", "LOW"], [37, 1, 1, "", "MEDIUM"], [37, 1, 1, "", "VERY_HIGH"], [37, 1, 1, "", "VERY_LOW"]], "nodriver.cdp.network.ResourceTiming": [[37, 1, 1, "", "connect_end"], [37, 1, 1, "", "connect_start"], [37, 1, 1, "", "dns_end"], [37, 1, 1, "", "dns_start"], [37, 1, 1, "", "proxy_end"], [37, 1, 1, "", "proxy_start"], [37, 1, 1, "", "push_end"], [37, 1, 1, "", "push_start"], [37, 1, 1, "", "receive_headers_end"], [37, 1, 1, "", "receive_headers_start"], [37, 1, 1, "", "request_time"], [37, 1, 1, "", "send_end"], [37, 1, 1, "", "send_start"], [37, 1, 1, "", "ssl_end"], [37, 1, 1, "", "ssl_start"], [37, 1, 1, "", "worker_cache_lookup_start"], [37, 1, 1, "", "worker_fetch_start"], [37, 1, 1, "", "worker_ready"], [37, 1, 1, "", "worker_respond_with_settled"], [37, 1, 1, "", "worker_router_evaluation_start"], [37, 1, 1, "", "worker_start"]], "nodriver.cdp.network.ResourceType": [[37, 1, 1, "", "CSP_VIOLATION_REPORT"], [37, 1, 1, "", "DOCUMENT"], [37, 1, 1, "", "EVENT_SOURCE"], [37, 1, 1, "", "FETCH"], [37, 1, 1, "", "FONT"], [37, 1, 1, "", "IMAGE"], [37, 1, 1, "", "MANIFEST"], [37, 1, 1, "", "MEDIA"], [37, 1, 1, "", "OTHER"], [37, 1, 1, "", "PING"], [37, 1, 1, "", "PREFETCH"], [37, 1, 1, "", "PREFLIGHT"], [37, 1, 1, "", "SCRIPT"], [37, 1, 1, "", "SIGNED_EXCHANGE"], [37, 1, 1, "", "STYLESHEET"], [37, 1, 1, "", "TEXT_TRACK"], [37, 1, 1, "", "WEB_SOCKET"], [37, 1, 1, "", "XHR"]], "nodriver.cdp.network.Response": [[37, 1, 1, "", "alternate_protocol_usage"], [37, 1, 1, "", "cache_storage_cache_name"], [37, 1, 1, "", "charset"], [37, 1, 1, "", "connection_id"], [37, 1, 1, "", "connection_reused"], [37, 1, 1, "", "encoded_data_length"], [37, 1, 1, "", "from_disk_cache"], [37, 1, 1, "", "from_early_hints"], [37, 1, 1, "", "from_prefetch_cache"], [37, 1, 1, "", "from_service_worker"], [37, 1, 1, "", "headers"], [37, 1, 1, "", "headers_text"], [37, 1, 1, "", "mime_type"], [37, 1, 1, "", "protocol"], [37, 1, 1, "", "remote_ip_address"], [37, 1, 1, "", "remote_port"], [37, 1, 1, "", "request_headers"], [37, 1, 1, "", "request_headers_text"], [37, 1, 1, "", "response_time"], [37, 1, 1, "", "security_details"], [37, 1, 1, "", "security_state"], [37, 1, 1, "", "service_worker_response_source"], [37, 1, 1, "", "service_worker_router_info"], [37, 1, 1, "", "status"], [37, 1, 1, "", "status_text"], [37, 1, 1, "", "timing"], [37, 1, 1, "", "url"]], "nodriver.cdp.network.ResponseReceived": [[37, 1, 1, "", "frame_id"], [37, 1, 1, "", "has_extra_info"], [37, 1, 1, "", "loader_id"], [37, 1, 1, "", "request_id"], [37, 1, 1, "", "response"], [37, 1, 1, "", "timestamp"], [37, 1, 1, "", "type_"]], "nodriver.cdp.network.ResponseReceivedEarlyHints": [[37, 1, 1, "", "headers"], [37, 1, 1, "", "request_id"]], "nodriver.cdp.network.ResponseReceivedExtraInfo": [[37, 1, 1, "", "blocked_cookies"], [37, 1, 1, "", "cookie_partition_key"], [37, 1, 1, "", "cookie_partition_key_opaque"], [37, 1, 1, "", "exempted_cookies"], [37, 1, 1, "", "headers"], [37, 1, 1, "", "headers_text"], [37, 1, 1, "", "request_id"], [37, 1, 1, "", "resource_ip_address_space"], [37, 1, 1, "", "status_code"]], "nodriver.cdp.network.SecurityDetails": [[37, 1, 1, "", "certificate_id"], [37, 1, 1, "", "certificate_transparency_compliance"], [37, 1, 1, "", "cipher"], [37, 1, 1, "", "encrypted_client_hello"], [37, 1, 1, "", "issuer"], [37, 1, 1, "", "key_exchange"], [37, 1, 1, "", "key_exchange_group"], [37, 1, 1, "", "mac"], [37, 1, 1, "", "protocol"], [37, 1, 1, "", "san_list"], [37, 1, 1, "", "server_signature_algorithm"], [37, 1, 1, "", "signed_certificate_timestamp_list"], [37, 1, 1, "", "subject_name"], [37, 1, 1, "", "valid_from"], [37, 1, 1, "", "valid_to"]], "nodriver.cdp.network.SecurityIsolationStatus": [[37, 1, 1, "", "coep"], [37, 1, 1, "", "coop"], [37, 1, 1, "", "csp"]], "nodriver.cdp.network.ServiceWorkerResponseSource": [[37, 1, 1, "", "CACHE_STORAGE"], [37, 1, 1, "", "FALLBACK_CODE"], [37, 1, 1, "", "HTTP_CACHE"], [37, 1, 1, "", "NETWORK"]], "nodriver.cdp.network.ServiceWorkerRouterInfo": [[37, 1, 1, "", "actual_source_type"], [37, 1, 1, "", "matched_source_type"], [37, 1, 1, "", "rule_id_matched"]], "nodriver.cdp.network.ServiceWorkerRouterSource": [[37, 1, 1, "", "CACHE"], [37, 1, 1, "", "FETCH_EVENT"], [37, 1, 1, "", "NETWORK"], [37, 1, 1, "", "RACE_NETWORK_AND_FETCH_HANDLER"]], "nodriver.cdp.network.SetCookieBlockedReason": [[37, 1, 1, "", "DISALLOWED_CHARACTER"], [37, 1, 1, "", "INVALID_DOMAIN"], [37, 1, 1, "", "INVALID_PREFIX"], [37, 1, 1, "", "NAME_VALUE_PAIR_EXCEEDS_MAX_SIZE"], [37, 1, 1, "", "NO_COOKIE_CONTENT"], [37, 1, 1, "", "OVERWRITE_SECURE"], [37, 1, 1, "", "SAME_PARTY_CONFLICTS_WITH_OTHER_ATTRIBUTES"], [37, 1, 1, "", "SAME_PARTY_FROM_CROSS_PARTY_CONTEXT"], [37, 1, 1, "", "SAME_SITE_LAX"], [37, 1, 1, "", "SAME_SITE_NONE_INSECURE"], [37, 1, 1, "", "SAME_SITE_STRICT"], [37, 1, 1, "", "SAME_SITE_UNSPECIFIED_TREATED_AS_LAX"], [37, 1, 1, "", "SCHEMEFUL_SAME_SITE_LAX"], [37, 1, 1, "", "SCHEMEFUL_SAME_SITE_STRICT"], [37, 1, 1, "", "SCHEMEFUL_SAME_SITE_UNSPECIFIED_TREATED_AS_LAX"], [37, 1, 1, "", "SCHEME_NOT_SUPPORTED"], [37, 1, 1, "", "SECURE_ONLY"], [37, 1, 1, "", "SYNTAX_ERROR"], [37, 1, 1, "", "THIRD_PARTY_BLOCKED_IN_FIRST_PARTY_SET"], [37, 1, 1, "", "THIRD_PARTY_PHASEOUT"], [37, 1, 1, "", "UNKNOWN_ERROR"], [37, 1, 1, "", "USER_PREFERENCES"]], "nodriver.cdp.network.SignedCertificateTimestamp": [[37, 1, 1, "", "hash_algorithm"], [37, 1, 1, "", "log_description"], [37, 1, 1, "", "log_id"], [37, 1, 1, "", "origin"], [37, 1, 1, "", "signature_algorithm"], [37, 1, 1, "", "signature_data"], [37, 1, 1, "", "status"], [37, 1, 1, "", "timestamp"]], "nodriver.cdp.network.SignedExchangeError": [[37, 1, 1, "", "error_field"], [37, 1, 1, "", "message"], [37, 1, 1, "", "signature_index"]], "nodriver.cdp.network.SignedExchangeErrorField": [[37, 1, 1, "", "SIGNATURE_CERT_SHA256"], [37, 1, 1, "", "SIGNATURE_CERT_URL"], [37, 1, 1, "", "SIGNATURE_INTEGRITY"], [37, 1, 1, "", "SIGNATURE_SIG"], [37, 1, 1, "", "SIGNATURE_TIMESTAMPS"], [37, 1, 1, "", "SIGNATURE_VALIDITY_URL"]], "nodriver.cdp.network.SignedExchangeHeader": [[37, 1, 1, "", "header_integrity"], [37, 1, 1, "", "request_url"], [37, 1, 1, "", "response_code"], [37, 1, 1, "", "response_headers"], [37, 1, 1, "", "signatures"]], "nodriver.cdp.network.SignedExchangeInfo": [[37, 1, 1, "", "errors"], [37, 1, 1, "", "header"], [37, 1, 1, "", "outer_response"], [37, 1, 1, "", "security_details"]], "nodriver.cdp.network.SignedExchangeReceived": [[37, 1, 1, "", "info"], [37, 1, 1, "", "request_id"]], "nodriver.cdp.network.SignedExchangeSignature": [[37, 1, 1, "", "cert_sha256"], [37, 1, 1, "", "cert_url"], [37, 1, 1, "", "certificates"], [37, 1, 1, "", "date"], [37, 1, 1, "", "expires"], [37, 1, 1, "", "integrity"], [37, 1, 1, "", "label"], [37, 1, 1, "", "signature"], [37, 1, 1, "", "validity_url"]], "nodriver.cdp.network.SubresourceWebBundleInnerResponseError": [[37, 1, 1, "", "bundle_request_id"], [37, 1, 1, "", "error_message"], [37, 1, 1, "", "inner_request_id"], [37, 1, 1, "", "inner_request_url"]], "nodriver.cdp.network.SubresourceWebBundleInnerResponseParsed": [[37, 1, 1, "", "bundle_request_id"], [37, 1, 1, "", "inner_request_id"], [37, 1, 1, "", "inner_request_url"]], "nodriver.cdp.network.SubresourceWebBundleMetadataError": [[37, 1, 1, "", "error_message"], [37, 1, 1, "", "request_id"]], "nodriver.cdp.network.SubresourceWebBundleMetadataReceived": [[37, 1, 1, "", "request_id"], [37, 1, 1, "", "urls"]], "nodriver.cdp.network.TrustTokenOperationDone": [[37, 1, 1, "", "issued_token_count"], [37, 1, 1, "", "issuer_origin"], [37, 1, 1, "", "request_id"], [37, 1, 1, "", "status"], [37, 1, 1, "", "top_level_origin"], [37, 1, 1, "", "type_"]], "nodriver.cdp.network.TrustTokenOperationType": [[37, 1, 1, "", "ISSUANCE"], [37, 1, 1, "", "REDEMPTION"], [37, 1, 1, "", "SIGNING"]], "nodriver.cdp.network.TrustTokenParams": [[37, 1, 1, "", "issuers"], [37, 1, 1, "", "operation"], [37, 1, 1, "", "refresh_policy"]], "nodriver.cdp.network.WebSocketClosed": [[37, 1, 1, "", "request_id"], [37, 1, 1, "", "timestamp"]], "nodriver.cdp.network.WebSocketCreated": [[37, 1, 1, "", "initiator"], [37, 1, 1, "", "request_id"], [37, 1, 1, "", "url"]], "nodriver.cdp.network.WebSocketFrame": [[37, 1, 1, "", "mask"], [37, 1, 1, "", "opcode"], [37, 1, 1, "", "payload_data"]], "nodriver.cdp.network.WebSocketFrameError": [[37, 1, 1, "", "error_message"], [37, 1, 1, "", "request_id"], [37, 1, 1, "", "timestamp"]], "nodriver.cdp.network.WebSocketFrameReceived": [[37, 1, 1, "", "request_id"], [37, 1, 1, "", "response"], [37, 1, 1, "", "timestamp"]], "nodriver.cdp.network.WebSocketFrameSent": [[37, 1, 1, "", "request_id"], [37, 1, 1, "", "response"], [37, 1, 1, "", "timestamp"]], "nodriver.cdp.network.WebSocketHandshakeResponseReceived": [[37, 1, 1, "", "request_id"], [37, 1, 1, "", "response"], [37, 1, 1, "", "timestamp"]], "nodriver.cdp.network.WebSocketRequest": [[37, 1, 1, "", "headers"]], "nodriver.cdp.network.WebSocketResponse": [[37, 1, 1, "", "headers"], [37, 1, 1, "", "headers_text"], [37, 1, 1, "", "request_headers"], [37, 1, 1, "", "request_headers_text"], [37, 1, 1, "", "status"], [37, 1, 1, "", "status_text"]], "nodriver.cdp.network.WebSocketWillSendHandshakeRequest": [[37, 1, 1, "", "request"], [37, 1, 1, "", "request_id"], [37, 1, 1, "", "timestamp"], [37, 1, 1, "", "wall_time"]], "nodriver.cdp.network.WebTransportClosed": [[37, 1, 1, "", "timestamp"], [37, 1, 1, "", "transport_id"]], "nodriver.cdp.network.WebTransportConnectionEstablished": [[37, 1, 1, "", "timestamp"], [37, 1, 1, "", "transport_id"]], "nodriver.cdp.network.WebTransportCreated": [[37, 1, 1, "", "initiator"], [37, 1, 1, "", "timestamp"], [37, 1, 1, "", "transport_id"], [37, 1, 1, "", "url"]], "nodriver.cdp.overlay": [[38, 0, 1, "", "BoxStyle"], [38, 0, 1, "", "ColorFormat"], [38, 0, 1, "", "ContainerQueryContainerHighlightConfig"], [38, 0, 1, "", "ContainerQueryHighlightConfig"], [38, 0, 1, "", "ContrastAlgorithm"], [38, 0, 1, "", "FlexContainerHighlightConfig"], [38, 0, 1, "", "FlexItemHighlightConfig"], [38, 0, 1, "", "FlexNodeHighlightConfig"], [38, 0, 1, "", "GridHighlightConfig"], [38, 0, 1, "", "GridNodeHighlightConfig"], [38, 0, 1, "", "HighlightConfig"], [38, 0, 1, "", "HingeConfig"], [38, 0, 1, "", "InspectMode"], [38, 0, 1, "", "InspectModeCanceled"], [38, 0, 1, "", "InspectNodeRequested"], [38, 0, 1, "", "IsolatedElementHighlightConfig"], [38, 0, 1, "", "IsolationModeHighlightConfig"], [38, 0, 1, "", "LineStyle"], [38, 0, 1, "", "NodeHighlightRequested"], [38, 0, 1, "", "ScreenshotRequested"], [38, 0, 1, "", "ScrollSnapContainerHighlightConfig"], [38, 0, 1, "", "ScrollSnapHighlightConfig"], [38, 0, 1, "", "SourceOrderConfig"], [38, 0, 1, "", "WindowControlsOverlayConfig"], [38, 5, 1, "", "disable"], [38, 5, 1, "", "enable"], [38, 5, 1, "", "get_grid_highlight_objects_for_test"], [38, 5, 1, "", "get_highlight_object_for_test"], [38, 5, 1, "", "get_source_order_highlight_object_for_test"], [38, 5, 1, "", "hide_highlight"], [38, 5, 1, "", "highlight_frame"], [38, 5, 1, "", "highlight_node"], [38, 5, 1, "", "highlight_quad"], [38, 5, 1, "", "highlight_rect"], [38, 5, 1, "", "highlight_source_order"], [38, 5, 1, "", "set_inspect_mode"], [38, 5, 1, "", "set_paused_in_debugger_message"], [38, 5, 1, "", "set_show_ad_highlights"], [38, 5, 1, "", "set_show_container_query_overlays"], [38, 5, 1, "", "set_show_debug_borders"], [38, 5, 1, "", "set_show_flex_overlays"], [38, 5, 1, "", "set_show_fps_counter"], [38, 5, 1, "", "set_show_grid_overlays"], [38, 5, 1, "", "set_show_hinge"], [38, 5, 1, "", "set_show_hit_test_borders"], [38, 5, 1, "", "set_show_isolated_elements"], [38, 5, 1, "", "set_show_layout_shift_regions"], [38, 5, 1, "", "set_show_paint_rects"], [38, 5, 1, "", "set_show_scroll_bottleneck_rects"], [38, 5, 1, "", "set_show_scroll_snap_overlays"], [38, 5, 1, "", "set_show_viewport_size_on_resize"], [38, 5, 1, "", "set_show_web_vitals"], [38, 5, 1, "", "set_show_window_controls_overlay"]], "nodriver.cdp.overlay.BoxStyle": [[38, 1, 1, "", "fill_color"], [38, 1, 1, "", "hatch_color"]], "nodriver.cdp.overlay.ColorFormat": [[38, 1, 1, "", "HEX_"], [38, 1, 1, "", "HSL"], [38, 1, 1, "", "HWB"], [38, 1, 1, "", "RGB"]], "nodriver.cdp.overlay.ContainerQueryContainerHighlightConfig": [[38, 1, 1, "", "container_border"], [38, 1, 1, "", "descendant_border"]], "nodriver.cdp.overlay.ContainerQueryHighlightConfig": [[38, 1, 1, "", "container_query_container_highlight_config"], [38, 1, 1, "", "node_id"]], "nodriver.cdp.overlay.ContrastAlgorithm": [[38, 1, 1, "", "AA"], [38, 1, 1, "", "AAA"], [38, 1, 1, "", "APCA"]], "nodriver.cdp.overlay.FlexContainerHighlightConfig": [[38, 1, 1, "", "column_gap_space"], [38, 1, 1, "", "container_border"], [38, 1, 1, "", "cross_alignment"], [38, 1, 1, "", "cross_distributed_space"], [38, 1, 1, "", "item_separator"], [38, 1, 1, "", "line_separator"], [38, 1, 1, "", "main_distributed_space"], [38, 1, 1, "", "row_gap_space"]], "nodriver.cdp.overlay.FlexItemHighlightConfig": [[38, 1, 1, "", "base_size_border"], [38, 1, 1, "", "base_size_box"], [38, 1, 1, "", "flexibility_arrow"]], "nodriver.cdp.overlay.FlexNodeHighlightConfig": [[38, 1, 1, "", "flex_container_highlight_config"], [38, 1, 1, "", "node_id"]], "nodriver.cdp.overlay.GridHighlightConfig": [[38, 1, 1, "", "area_border_color"], [38, 1, 1, "", "cell_border_color"], [38, 1, 1, "", "cell_border_dash"], [38, 1, 1, "", "column_gap_color"], [38, 1, 1, "", "column_hatch_color"], [38, 1, 1, "", "column_line_color"], [38, 1, 1, "", "column_line_dash"], [38, 1, 1, "", "grid_background_color"], [38, 1, 1, "", "grid_border_color"], [38, 1, 1, "", "grid_border_dash"], [38, 1, 1, "", "row_gap_color"], [38, 1, 1, "", "row_hatch_color"], [38, 1, 1, "", "row_line_color"], [38, 1, 1, "", "row_line_dash"], [38, 1, 1, "", "show_area_names"], [38, 1, 1, "", "show_grid_extension_lines"], [38, 1, 1, "", "show_line_names"], [38, 1, 1, "", "show_negative_line_numbers"], [38, 1, 1, "", "show_positive_line_numbers"], [38, 1, 1, "", "show_track_sizes"]], "nodriver.cdp.overlay.GridNodeHighlightConfig": [[38, 1, 1, "", "grid_highlight_config"], [38, 1, 1, "", "node_id"]], "nodriver.cdp.overlay.HighlightConfig": [[38, 1, 1, "", "border_color"], [38, 1, 1, "", "color_format"], [38, 1, 1, "", "container_query_container_highlight_config"], [38, 1, 1, "", "content_color"], [38, 1, 1, "", "contrast_algorithm"], [38, 1, 1, "", "css_grid_color"], [38, 1, 1, "", "event_target_color"], [38, 1, 1, "", "flex_container_highlight_config"], [38, 1, 1, "", "flex_item_highlight_config"], [38, 1, 1, "", "grid_highlight_config"], [38, 1, 1, "", "margin_color"], [38, 1, 1, "", "padding_color"], [38, 1, 1, "", "shape_color"], [38, 1, 1, "", "shape_margin_color"], [38, 1, 1, "", "show_accessibility_info"], [38, 1, 1, "", "show_extension_lines"], [38, 1, 1, "", "show_info"], [38, 1, 1, "", "show_rulers"], [38, 1, 1, "", "show_styles"]], "nodriver.cdp.overlay.HingeConfig": [[38, 1, 1, "", "content_color"], [38, 1, 1, "", "outline_color"], [38, 1, 1, "", "rect"]], "nodriver.cdp.overlay.InspectMode": [[38, 1, 1, "", "CAPTURE_AREA_SCREENSHOT"], [38, 1, 1, "", "NONE"], [38, 1, 1, "", "SEARCH_FOR_NODE"], [38, 1, 1, "", "SEARCH_FOR_UA_SHADOW_DOM"], [38, 1, 1, "", "SHOW_DISTANCES"]], "nodriver.cdp.overlay.InspectNodeRequested": [[38, 1, 1, "", "backend_node_id"]], "nodriver.cdp.overlay.IsolatedElementHighlightConfig": [[38, 1, 1, "", "isolation_mode_highlight_config"], [38, 1, 1, "", "node_id"]], "nodriver.cdp.overlay.IsolationModeHighlightConfig": [[38, 1, 1, "", "mask_color"], [38, 1, 1, "", "resizer_color"], [38, 1, 1, "", "resizer_handle_color"]], "nodriver.cdp.overlay.LineStyle": [[38, 1, 1, "", "color"], [38, 1, 1, "", "pattern"]], "nodriver.cdp.overlay.NodeHighlightRequested": [[38, 1, 1, "", "node_id"]], "nodriver.cdp.overlay.ScreenshotRequested": [[38, 1, 1, "", "viewport"]], "nodriver.cdp.overlay.ScrollSnapContainerHighlightConfig": [[38, 1, 1, "", "scroll_margin_color"], [38, 1, 1, "", "scroll_padding_color"], [38, 1, 1, "", "snap_area_border"], [38, 1, 1, "", "snapport_border"]], "nodriver.cdp.overlay.ScrollSnapHighlightConfig": [[38, 1, 1, "", "node_id"], [38, 1, 1, "", "scroll_snap_container_highlight_config"]], "nodriver.cdp.overlay.SourceOrderConfig": [[38, 1, 1, "", "child_outline_color"], [38, 1, 1, "", "parent_outline_color"]], "nodriver.cdp.overlay.WindowControlsOverlayConfig": [[38, 1, 1, "", "selected_platform"], [38, 1, 1, "", "show_css"], [38, 1, 1, "", "theme_color"]], "nodriver.cdp.page": [[39, 0, 1, "", "AdFrameExplanation"], [39, 0, 1, "", "AdFrameStatus"], [39, 0, 1, "", "AdFrameType"], [39, 0, 1, "", "AdScriptId"], [39, 0, 1, "", "AppManifestError"], [39, 0, 1, "", "AppManifestParsedProperties"], [39, 0, 1, "", "AutoResponseMode"], [39, 0, 1, "", "BackForwardCacheBlockingDetails"], [39, 0, 1, "", "BackForwardCacheNotRestoredExplanation"], [39, 0, 1, "", "BackForwardCacheNotRestoredExplanationTree"], [39, 0, 1, "", "BackForwardCacheNotRestoredReason"], [39, 0, 1, "", "BackForwardCacheNotRestoredReasonType"], [39, 0, 1, "", "BackForwardCacheNotUsed"], [39, 0, 1, "", "ClientNavigationDisposition"], [39, 0, 1, "", "ClientNavigationReason"], [39, 0, 1, "", "CompilationCacheParams"], [39, 0, 1, "", "CompilationCacheProduced"], [39, 0, 1, "", "CrossOriginIsolatedContextType"], [39, 0, 1, "", "DialogType"], [39, 0, 1, "", "DocumentOpened"], [39, 0, 1, "", "DomContentEventFired"], [39, 0, 1, "", "DownloadProgress"], [39, 0, 1, "", "DownloadWillBegin"], [39, 0, 1, "", "FileChooserOpened"], [39, 0, 1, "", "FileFilter"], [39, 0, 1, "", "FileHandler"], [39, 0, 1, "", "FontFamilies"], [39, 0, 1, "", "FontSizes"], [39, 0, 1, "", "Frame"], [39, 0, 1, "", "FrameAttached"], [39, 0, 1, "", "FrameClearedScheduledNavigation"], [39, 0, 1, "", "FrameDetached"], [39, 0, 1, "", "FrameId"], [39, 0, 1, "", "FrameNavigated"], [39, 0, 1, "", "FrameRequestedNavigation"], [39, 0, 1, "", "FrameResized"], [39, 0, 1, "", "FrameResource"], [39, 0, 1, "", "FrameResourceTree"], [39, 0, 1, "", "FrameScheduledNavigation"], [39, 0, 1, "", "FrameStartedLoading"], [39, 0, 1, "", "FrameStoppedLoading"], [39, 0, 1, "", "FrameSubtreeWillBeDetached"], [39, 0, 1, "", "FrameTree"], [39, 0, 1, "", "GatedAPIFeatures"], [39, 0, 1, "", "ImageResource"], [39, 0, 1, "", "InstallabilityError"], [39, 0, 1, "", "InstallabilityErrorArgument"], [39, 0, 1, "", "InterstitialHidden"], [39, 0, 1, "", "InterstitialShown"], [39, 0, 1, "", "JavascriptDialogClosed"], [39, 0, 1, "", "JavascriptDialogOpening"], [39, 0, 1, "", "LaunchHandler"], [39, 0, 1, "", "LayoutViewport"], [39, 0, 1, "", "LifecycleEvent"], [39, 0, 1, "", "LoadEventFired"], [39, 0, 1, "", "NavigatedWithinDocument"], [39, 0, 1, "", "NavigationEntry"], [39, 0, 1, "", "NavigationType"], [39, 0, 1, "", "OriginTrial"], [39, 0, 1, "", "OriginTrialStatus"], [39, 0, 1, "", "OriginTrialToken"], [39, 0, 1, "", "OriginTrialTokenStatus"], [39, 0, 1, "", "OriginTrialTokenWithStatus"], [39, 0, 1, "", "OriginTrialUsageRestriction"], [39, 0, 1, "", "PermissionsPolicyBlockLocator"], [39, 0, 1, "", "PermissionsPolicyBlockReason"], [39, 0, 1, "", "PermissionsPolicyFeature"], [39, 0, 1, "", "PermissionsPolicyFeatureState"], [39, 0, 1, "", "ProtocolHandler"], [39, 0, 1, "", "ReferrerPolicy"], [39, 0, 1, "", "RelatedApplication"], [39, 0, 1, "", "ScopeExtension"], [39, 0, 1, "", "ScreencastFrame"], [39, 0, 1, "", "ScreencastFrameMetadata"], [39, 0, 1, "", "ScreencastVisibilityChanged"], [39, 0, 1, "", "Screenshot"], [39, 0, 1, "", "ScriptFontFamilies"], [39, 0, 1, "", "ScriptIdentifier"], [39, 0, 1, "", "SecureContextType"], [39, 0, 1, "", "ShareTarget"], [39, 0, 1, "", "Shortcut"], [39, 0, 1, "", "TransitionType"], [39, 0, 1, "", "Viewport"], [39, 0, 1, "", "VisualViewport"], [39, 0, 1, "", "WebAppManifest"], [39, 0, 1, "", "WindowOpen"], [39, 5, 1, "", "add_compilation_cache"], [39, 5, 1, "", "add_script_to_evaluate_on_load"], [39, 5, 1, "", "add_script_to_evaluate_on_new_document"], [39, 5, 1, "", "bring_to_front"], [39, 5, 1, "", "capture_screenshot"], [39, 5, 1, "", "capture_snapshot"], [39, 5, 1, "", "clear_compilation_cache"], [39, 5, 1, "", "clear_device_metrics_override"], [39, 5, 1, "", "clear_device_orientation_override"], [39, 5, 1, "", "clear_geolocation_override"], [39, 5, 1, "", "close"], [39, 5, 1, "", "crash"], [39, 5, 1, "", "create_isolated_world"], [39, 5, 1, "", "delete_cookie"], [39, 5, 1, "", "disable"], [39, 5, 1, "", "enable"], [39, 5, 1, "", "generate_test_report"], [39, 5, 1, "", "get_ad_script_id"], [39, 5, 1, "", "get_app_id"], [39, 5, 1, "", "get_app_manifest"], [39, 5, 1, "", "get_frame_tree"], [39, 5, 1, "", "get_installability_errors"], [39, 5, 1, "", "get_layout_metrics"], [39, 5, 1, "", "get_manifest_icons"], [39, 5, 1, "", "get_navigation_history"], [39, 5, 1, "", "get_origin_trials"], [39, 5, 1, "", "get_permissions_policy_state"], [39, 5, 1, "", "get_resource_content"], [39, 5, 1, "", "get_resource_tree"], [39, 5, 1, "", "handle_java_script_dialog"], [39, 5, 1, "", "navigate"], [39, 5, 1, "", "navigate_to_history_entry"], [39, 5, 1, "", "print_to_pdf"], [39, 5, 1, "", "produce_compilation_cache"], [39, 5, 1, "", "reload"], [39, 5, 1, "", "remove_script_to_evaluate_on_load"], [39, 5, 1, "", "remove_script_to_evaluate_on_new_document"], [39, 5, 1, "", "reset_navigation_history"], [39, 5, 1, "", "screencast_frame_ack"], [39, 5, 1, "", "search_in_resource"], [39, 5, 1, "", "set_ad_blocking_enabled"], [39, 5, 1, "", "set_bypass_csp"], [39, 5, 1, "", "set_device_metrics_override"], [39, 5, 1, "", "set_device_orientation_override"], [39, 5, 1, "", "set_document_content"], [39, 5, 1, "", "set_download_behavior"], [39, 5, 1, "", "set_font_families"], [39, 5, 1, "", "set_font_sizes"], [39, 5, 1, "", "set_geolocation_override"], [39, 5, 1, "", "set_intercept_file_chooser_dialog"], [39, 5, 1, "", "set_lifecycle_events_enabled"], [39, 5, 1, "", "set_prerendering_allowed"], [39, 5, 1, "", "set_rph_registration_mode"], [39, 5, 1, "", "set_spc_transaction_mode"], [39, 5, 1, "", "set_touch_emulation_enabled"], [39, 5, 1, "", "set_web_lifecycle_state"], [39, 5, 1, "", "start_screencast"], [39, 5, 1, "", "stop_loading"], [39, 5, 1, "", "stop_screencast"], [39, 5, 1, "", "wait_for_debugger"]], "nodriver.cdp.page.AdFrameExplanation": [[39, 1, 1, "", "CREATED_BY_AD_SCRIPT"], [39, 1, 1, "", "MATCHED_BLOCKING_RULE"], [39, 1, 1, "", "PARENT_IS_AD"]], "nodriver.cdp.page.AdFrameStatus": [[39, 1, 1, "", "ad_frame_type"], [39, 1, 1, "", "explanations"]], "nodriver.cdp.page.AdFrameType": [[39, 1, 1, "", "CHILD"], [39, 1, 1, "", "NONE"], [39, 1, 1, "", "ROOT"]], "nodriver.cdp.page.AdScriptId": [[39, 1, 1, "", "debugger_id"], [39, 1, 1, "", "script_id"]], "nodriver.cdp.page.AppManifestError": [[39, 1, 1, "", "column"], [39, 1, 1, "", "critical"], [39, 1, 1, "", "line"], [39, 1, 1, "", "message"]], "nodriver.cdp.page.AppManifestParsedProperties": [[39, 1, 1, "", "scope"]], "nodriver.cdp.page.AutoResponseMode": [[39, 1, 1, "", "AUTO_ACCEPT"], [39, 1, 1, "", "AUTO_OPT_OUT"], [39, 1, 1, "", "AUTO_REJECT"], [39, 1, 1, "", "NONE"]], "nodriver.cdp.page.BackForwardCacheBlockingDetails": [[39, 1, 1, "", "column_number"], [39, 1, 1, "", "function"], [39, 1, 1, "", "line_number"], [39, 1, 1, "", "url"]], "nodriver.cdp.page.BackForwardCacheNotRestoredExplanation": [[39, 1, 1, "", "context"], [39, 1, 1, "", "details"], [39, 1, 1, "", "reason"], [39, 1, 1, "", "type_"]], "nodriver.cdp.page.BackForwardCacheNotRestoredExplanationTree": [[39, 1, 1, "", "children"], [39, 1, 1, "", "explanations"], [39, 1, 1, "", "url"]], "nodriver.cdp.page.BackForwardCacheNotRestoredReason": [[39, 1, 1, "", "ACTIVATION_NAVIGATIONS_DISALLOWED_FOR_BUG1234857"], [39, 1, 1, "", "APP_BANNER"], [39, 1, 1, "", "BACK_FORWARD_CACHE_DISABLED"], [39, 1, 1, "", "BACK_FORWARD_CACHE_DISABLED_BY_COMMAND_LINE"], [39, 1, 1, "", "BACK_FORWARD_CACHE_DISABLED_BY_LOW_MEMORY"], [39, 1, 1, "", "BACK_FORWARD_CACHE_DISABLED_FOR_DELEGATE"], [39, 1, 1, "", "BACK_FORWARD_CACHE_DISABLED_FOR_PRERENDER"], [39, 1, 1, "", "BROADCAST_CHANNEL"], [39, 1, 1, "", "BROADCAST_CHANNEL_ON_MESSAGE"], [39, 1, 1, "", "BROWSING_INSTANCE_NOT_SWAPPED"], [39, 1, 1, "", "CACHE_CONTROL_NO_STORE"], [39, 1, 1, "", "CACHE_CONTROL_NO_STORE_COOKIE_MODIFIED"], [39, 1, 1, "", "CACHE_CONTROL_NO_STORE_HTTP_ONLY_COOKIE_MODIFIED"], [39, 1, 1, "", "CACHE_FLUSHED"], [39, 1, 1, "", "CACHE_LIMIT"], [39, 1, 1, "", "CONFLICTING_BROWSING_INSTANCE"], [39, 1, 1, "", "CONTAINS_PLUGINS"], [39, 1, 1, "", "CONTENT_DISCARDED"], [39, 1, 1, "", "CONTENT_FILE_CHOOSER"], [39, 1, 1, "", "CONTENT_FILE_SYSTEM_ACCESS"], [39, 1, 1, "", "CONTENT_MEDIA_DEVICES_DISPATCHER_HOST"], [39, 1, 1, "", "CONTENT_MEDIA_SESSION_SERVICE"], [39, 1, 1, "", "CONTENT_SCREEN_READER"], [39, 1, 1, "", "CONTENT_SECURITY_HANDLER"], [39, 1, 1, "", "CONTENT_SERIAL"], [39, 1, 1, "", "CONTENT_WEB_AUTHENTICATION_API"], [39, 1, 1, "", "CONTENT_WEB_BLUETOOTH"], [39, 1, 1, "", "CONTENT_WEB_USB"], [39, 1, 1, "", "COOKIE_DISABLED"], [39, 1, 1, "", "COOKIE_FLUSHED"], [39, 1, 1, "", "DISABLE_FOR_RENDER_FRAME_HOST_CALLED"], [39, 1, 1, "", "DOCUMENT_LOADED"], [39, 1, 1, "", "DOMAIN_NOT_ALLOWED"], [39, 1, 1, "", "DUMMY"], [39, 1, 1, "", "EMBEDDER_APP_BANNER_MANAGER"], [39, 1, 1, "", "EMBEDDER_CHROME_PASSWORD_MANAGER_CLIENT_BIND_CREDENTIAL_MANAGER"], [39, 1, 1, "", "EMBEDDER_DOM_DISTILLER_SELF_DELETING_REQUEST_DELEGATE"], [39, 1, 1, "", "EMBEDDER_DOM_DISTILLER_VIEWER_SOURCE"], [39, 1, 1, "", "EMBEDDER_EXTENSIONS"], [39, 1, 1, "", "EMBEDDER_EXTENSION_MESSAGING"], [39, 1, 1, "", "EMBEDDER_EXTENSION_MESSAGING_FOR_OPEN_PORT"], [39, 1, 1, "", "EMBEDDER_EXTENSION_SENT_MESSAGE_TO_CACHED_FRAME"], [39, 1, 1, "", "EMBEDDER_MODAL_DIALOG"], [39, 1, 1, "", "EMBEDDER_OFFLINE_PAGE"], [39, 1, 1, "", "EMBEDDER_OOM_INTERVENTION_TAB_HELPER"], [39, 1, 1, "", "EMBEDDER_PERMISSION_REQUEST_MANAGER"], [39, 1, 1, "", "EMBEDDER_POPUP_BLOCKER_TAB_HELPER"], [39, 1, 1, "", "EMBEDDER_SAFE_BROWSING_THREAT_DETAILS"], [39, 1, 1, "", "EMBEDDER_SAFE_BROWSING_TRIGGERED_POPUP_BLOCKER"], [39, 1, 1, "", "ENTERED_BACK_FORWARD_CACHE_BEFORE_SERVICE_WORKER_HOST_ADDED"], [39, 1, 1, "", "ERROR_DOCUMENT"], [39, 1, 1, "", "FENCED_FRAMES_EMBEDDER"], [39, 1, 1, "", "FOREGROUND_CACHE_LIMIT"], [39, 1, 1, "", "HAVE_INNER_CONTENTS"], [39, 1, 1, "", "HTTP_AUTH_REQUIRED"], [39, 1, 1, "", "HTTP_METHOD_NOT_GET"], [39, 1, 1, "", "HTTP_STATUS_NOT_OK"], [39, 1, 1, "", "IDLE_MANAGER"], [39, 1, 1, "", "IGNORE_EVENT_AND_EVICT"], [39, 1, 1, "", "INDEXED_DB_EVENT"], [39, 1, 1, "", "INJECTED_JAVASCRIPT"], [39, 1, 1, "", "INJECTED_STYLE_SHEET"], [39, 1, 1, "", "JAVA_SCRIPT_EXECUTION"], [39, 1, 1, "", "JS_NETWORK_REQUEST_RECEIVED_CACHE_CONTROL_NO_STORE_RESOURCE"], [39, 1, 1, "", "KEEPALIVE_REQUEST"], [39, 1, 1, "", "KEYBOARD_LOCK"], [39, 1, 1, "", "LIVE_MEDIA_STREAM_TRACK"], [39, 1, 1, "", "LOADING"], [39, 1, 1, "", "MAIN_RESOURCE_HAS_CACHE_CONTROL_NO_CACHE"], [39, 1, 1, "", "MAIN_RESOURCE_HAS_CACHE_CONTROL_NO_STORE"], [39, 1, 1, "", "NAVIGATION_CANCELLED_WHILE_RESTORING"], [39, 1, 1, "", "NETWORK_EXCEEDS_BUFFER_LIMIT"], [39, 1, 1, "", "NETWORK_REQUEST_DATAPIPE_DRAINED_AS_BYTES_CONSUMER"], [39, 1, 1, "", "NETWORK_REQUEST_REDIRECTED"], [39, 1, 1, "", "NETWORK_REQUEST_TIMEOUT"], [39, 1, 1, "", "NOT_MOST_RECENT_NAVIGATION_ENTRY"], [39, 1, 1, "", "NOT_PRIMARY_MAIN_FRAME"], [39, 1, 1, "", "NO_RESPONSE_HEAD"], [39, 1, 1, "", "OUTSTANDING_NETWORK_REQUEST_DIRECT_SOCKET"], [39, 1, 1, "", "OUTSTANDING_NETWORK_REQUEST_FETCH"], [39, 1, 1, "", "OUTSTANDING_NETWORK_REQUEST_OTHERS"], [39, 1, 1, "", "OUTSTANDING_NETWORK_REQUEST_XHR"], [39, 1, 1, "", "PARSER_ABORTED"], [39, 1, 1, "", "PAYMENT_MANAGER"], [39, 1, 1, "", "PICTURE_IN_PICTURE"], [39, 1, 1, "", "POST_MESSAGE_BY_WEB_VIEW_CLIENT"], [39, 1, 1, "", "PRINTING"], [39, 1, 1, "", "RELATED_ACTIVE_CONTENTS_EXIST"], [39, 1, 1, "", "RENDERER_PROCESS_CRASHED"], [39, 1, 1, "", "RENDERER_PROCESS_KILLED"], [39, 1, 1, "", "RENDER_FRAME_HOST_REUSED_CROSS_SITE"], [39, 1, 1, "", "RENDER_FRAME_HOST_REUSED_SAME_SITE"], [39, 1, 1, "", "REQUESTED_AUDIO_CAPTURE_PERMISSION"], [39, 1, 1, "", "REQUESTED_BACKGROUND_WORK_PERMISSION"], [39, 1, 1, "", "REQUESTED_BACK_FORWARD_CACHE_BLOCKED_SENSORS"], [39, 1, 1, "", "REQUESTED_BY_WEB_VIEW_CLIENT"], [39, 1, 1, "", "REQUESTED_MIDI_PERMISSION"], [39, 1, 1, "", "REQUESTED_STORAGE_ACCESS_GRANT"], [39, 1, 1, "", "REQUESTED_VIDEO_CAPTURE_PERMISSION"], [39, 1, 1, "", "SCHEDULER_TRACKED_FEATURE_USED"], [39, 1, 1, "", "SCHEME_NOT_HTTP_OR_HTTPS"], [39, 1, 1, "", "SERVICE_WORKER_CLAIM"], [39, 1, 1, "", "SERVICE_WORKER_POST_MESSAGE"], [39, 1, 1, "", "SERVICE_WORKER_UNREGISTRATION"], [39, 1, 1, "", "SERVICE_WORKER_VERSION_ACTIVATION"], [39, 1, 1, "", "SESSION_RESTORED"], [39, 1, 1, "", "SHARED_WORKER"], [39, 1, 1, "", "SMART_CARD"], [39, 1, 1, "", "SPEECH_RECOGNIZER"], [39, 1, 1, "", "SPEECH_SYNTHESIS"], [39, 1, 1, "", "SUBFRAME_IS_NAVIGATING"], [39, 1, 1, "", "SUBRESOURCE_HAS_CACHE_CONTROL_NO_CACHE"], [39, 1, 1, "", "SUBRESOURCE_HAS_CACHE_CONTROL_NO_STORE"], [39, 1, 1, "", "TIMEOUT"], [39, 1, 1, "", "TIMEOUT_PUTTING_IN_CACHE"], [39, 1, 1, "", "UNKNOWN"], [39, 1, 1, "", "UNLOAD_HANDLER"], [39, 1, 1, "", "UNLOAD_HANDLER_EXISTS_IN_MAIN_FRAME"], [39, 1, 1, "", "UNLOAD_HANDLER_EXISTS_IN_SUB_FRAME"], [39, 1, 1, "", "USER_AGENT_OVERRIDE_DIFFERS"], [39, 1, 1, "", "WAS_GRANTED_MEDIA_ACCESS"], [39, 1, 1, "", "WEB_DATABASE"], [39, 1, 1, "", "WEB_HID"], [39, 1, 1, "", "WEB_LOCKS"], [39, 1, 1, "", "WEB_NFC"], [39, 1, 1, "", "WEB_OTP_SERVICE"], [39, 1, 1, "", "WEB_RTC"], [39, 1, 1, "", "WEB_RTC_STICKY"], [39, 1, 1, "", "WEB_SHARE"], [39, 1, 1, "", "WEB_SOCKET"], [39, 1, 1, "", "WEB_SOCKET_STICKY"], [39, 1, 1, "", "WEB_TRANSPORT"], [39, 1, 1, "", "WEB_TRANSPORT_STICKY"], [39, 1, 1, "", "WEB_VIEW_DOCUMENT_START_JAVASCRIPT_CHANGED"], [39, 1, 1, "", "WEB_VIEW_JAVA_SCRIPT_OBJECT_CHANGED"], [39, 1, 1, "", "WEB_VIEW_MESSAGE_LISTENER_INJECTED"], [39, 1, 1, "", "WEB_VIEW_SAFE_BROWSING_ALLOWLIST_CHANGED"], [39, 1, 1, "", "WEB_VIEW_SETTINGS_CHANGED"], [39, 1, 1, "", "WEB_XR"]], "nodriver.cdp.page.BackForwardCacheNotRestoredReasonType": [[39, 1, 1, "", "CIRCUMSTANTIAL"], [39, 1, 1, "", "PAGE_SUPPORT_NEEDED"], [39, 1, 1, "", "SUPPORT_PENDING"]], "nodriver.cdp.page.BackForwardCacheNotUsed": [[39, 1, 1, "", "frame_id"], [39, 1, 1, "", "loader_id"], [39, 1, 1, "", "not_restored_explanations"], [39, 1, 1, "", "not_restored_explanations_tree"]], "nodriver.cdp.page.ClientNavigationDisposition": [[39, 1, 1, "", "CURRENT_TAB"], [39, 1, 1, "", "DOWNLOAD"], [39, 1, 1, "", "NEW_TAB"], [39, 1, 1, "", "NEW_WINDOW"]], "nodriver.cdp.page.ClientNavigationReason": [[39, 1, 1, "", "ANCHOR_CLICK"], [39, 1, 1, "", "FORM_SUBMISSION_GET"], [39, 1, 1, "", "FORM_SUBMISSION_POST"], [39, 1, 1, "", "HTTP_HEADER_REFRESH"], [39, 1, 1, "", "INITIAL_FRAME_NAVIGATION"], [39, 1, 1, "", "META_TAG_REFRESH"], [39, 1, 1, "", "OTHER"], [39, 1, 1, "", "PAGE_BLOCK_INTERSTITIAL"], [39, 1, 1, "", "RELOAD"], [39, 1, 1, "", "SCRIPT_INITIATED"]], "nodriver.cdp.page.CompilationCacheParams": [[39, 1, 1, "", "eager"], [39, 1, 1, "", "url"]], "nodriver.cdp.page.CompilationCacheProduced": [[39, 1, 1, "", "data"], [39, 1, 1, "", "url"]], "nodriver.cdp.page.CrossOriginIsolatedContextType": [[39, 1, 1, "", "ISOLATED"], [39, 1, 1, "", "NOT_ISOLATED"], [39, 1, 1, "", "NOT_ISOLATED_FEATURE_DISABLED"]], "nodriver.cdp.page.DialogType": [[39, 1, 1, "", "ALERT"], [39, 1, 1, "", "BEFOREUNLOAD"], [39, 1, 1, "", "CONFIRM"], [39, 1, 1, "", "PROMPT"]], "nodriver.cdp.page.DocumentOpened": [[39, 1, 1, "", "frame"]], "nodriver.cdp.page.DomContentEventFired": [[39, 1, 1, "", "timestamp"]], "nodriver.cdp.page.DownloadProgress": [[39, 1, 1, "", "guid"], [39, 1, 1, "", "received_bytes"], [39, 1, 1, "", "state"], [39, 1, 1, "", "total_bytes"]], "nodriver.cdp.page.DownloadWillBegin": [[39, 1, 1, "", "frame_id"], [39, 1, 1, "", "guid"], [39, 1, 1, "", "suggested_filename"], [39, 1, 1, "", "url"]], "nodriver.cdp.page.FileChooserOpened": [[39, 1, 1, "", "backend_node_id"], [39, 1, 1, "", "frame_id"], [39, 1, 1, "", "mode"]], "nodriver.cdp.page.FileFilter": [[39, 1, 1, "", "accepts"], [39, 1, 1, "", "name"]], "nodriver.cdp.page.FileHandler": [[39, 1, 1, "", "accepts"], [39, 1, 1, "", "action"], [39, 1, 1, "", "icons"], [39, 1, 1, "", "launch_type"], [39, 1, 1, "", "name"]], "nodriver.cdp.page.FontFamilies": [[39, 1, 1, "", "cursive"], [39, 1, 1, "", "fantasy"], [39, 1, 1, "", "fixed"], [39, 1, 1, "", "math"], [39, 1, 1, "", "sans_serif"], [39, 1, 1, "", "serif"], [39, 1, 1, "", "standard"]], "nodriver.cdp.page.FontSizes": [[39, 1, 1, "", "fixed"], [39, 1, 1, "", "standard"]], "nodriver.cdp.page.Frame": [[39, 1, 1, "", "ad_frame_status"], [39, 1, 1, "", "cross_origin_isolated_context_type"], [39, 1, 1, "", "domain_and_registry"], [39, 1, 1, "", "gated_api_features"], [39, 1, 1, "", "id_"], [39, 1, 1, "", "loader_id"], [39, 1, 1, "", "mime_type"], [39, 1, 1, "", "name"], [39, 1, 1, "", "parent_id"], [39, 1, 1, "", "secure_context_type"], [39, 1, 1, "", "security_origin"], [39, 1, 1, "", "unreachable_url"], [39, 1, 1, "", "url"], [39, 1, 1, "", "url_fragment"]], "nodriver.cdp.page.FrameAttached": [[39, 1, 1, "", "frame_id"], [39, 1, 1, "", "parent_frame_id"], [39, 1, 1, "", "stack"]], "nodriver.cdp.page.FrameClearedScheduledNavigation": [[39, 1, 1, "", "frame_id"]], "nodriver.cdp.page.FrameDetached": [[39, 1, 1, "", "frame_id"], [39, 1, 1, "", "reason"]], "nodriver.cdp.page.FrameNavigated": [[39, 1, 1, "", "frame"], [39, 1, 1, "", "type_"]], "nodriver.cdp.page.FrameRequestedNavigation": [[39, 1, 1, "", "disposition"], [39, 1, 1, "", "frame_id"], [39, 1, 1, "", "reason"], [39, 1, 1, "", "url"]], "nodriver.cdp.page.FrameResource": [[39, 1, 1, "", "canceled"], [39, 1, 1, "", "content_size"], [39, 1, 1, "", "failed"], [39, 1, 1, "", "last_modified"], [39, 1, 1, "", "mime_type"], [39, 1, 1, "", "type_"], [39, 1, 1, "", "url"]], "nodriver.cdp.page.FrameResourceTree": [[39, 1, 1, "", "child_frames"], [39, 1, 1, "", "frame"], [39, 1, 1, "", "resources"]], "nodriver.cdp.page.FrameScheduledNavigation": [[39, 1, 1, "", "delay"], [39, 1, 1, "", "frame_id"], [39, 1, 1, "", "reason"], [39, 1, 1, "", "url"]], "nodriver.cdp.page.FrameStartedLoading": [[39, 1, 1, "", "frame_id"]], "nodriver.cdp.page.FrameStoppedLoading": [[39, 1, 1, "", "frame_id"]], "nodriver.cdp.page.FrameSubtreeWillBeDetached": [[39, 1, 1, "", "frame_id"]], "nodriver.cdp.page.FrameTree": [[39, 1, 1, "", "child_frames"], [39, 1, 1, "", "frame"]], "nodriver.cdp.page.GatedAPIFeatures": [[39, 1, 1, "", "PERFORMANCE_MEASURE_MEMORY"], [39, 1, 1, "", "PERFORMANCE_PROFILE"], [39, 1, 1, "", "SHARED_ARRAY_BUFFERS"], [39, 1, 1, "", "SHARED_ARRAY_BUFFERS_TRANSFER_ALLOWED"]], "nodriver.cdp.page.ImageResource": [[39, 1, 1, "", "sizes"], [39, 1, 1, "", "type_"], [39, 1, 1, "", "url"]], "nodriver.cdp.page.InstallabilityError": [[39, 1, 1, "", "error_arguments"], [39, 1, 1, "", "error_id"]], "nodriver.cdp.page.InstallabilityErrorArgument": [[39, 1, 1, "", "name"], [39, 1, 1, "", "value"]], "nodriver.cdp.page.JavascriptDialogClosed": [[39, 1, 1, "", "result"], [39, 1, 1, "", "user_input"]], "nodriver.cdp.page.JavascriptDialogOpening": [[39, 1, 1, "", "default_prompt"], [39, 1, 1, "", "has_browser_handler"], [39, 1, 1, "", "message"], [39, 1, 1, "", "type_"], [39, 1, 1, "", "url"]], "nodriver.cdp.page.LaunchHandler": [[39, 1, 1, "", "client_mode"]], "nodriver.cdp.page.LayoutViewport": [[39, 1, 1, "", "client_height"], [39, 1, 1, "", "client_width"], [39, 1, 1, "", "page_x"], [39, 1, 1, "", "page_y"]], "nodriver.cdp.page.LifecycleEvent": [[39, 1, 1, "", "frame_id"], [39, 1, 1, "", "loader_id"], [39, 1, 1, "", "name"], [39, 1, 1, "", "timestamp"]], "nodriver.cdp.page.LoadEventFired": [[39, 1, 1, "", "timestamp"]], "nodriver.cdp.page.NavigatedWithinDocument": [[39, 1, 1, "", "frame_id"], [39, 1, 1, "", "navigation_type"], [39, 1, 1, "", "url"]], "nodriver.cdp.page.NavigationEntry": [[39, 1, 1, "", "id_"], [39, 1, 1, "", "title"], [39, 1, 1, "", "transition_type"], [39, 1, 1, "", "url"], [39, 1, 1, "", "user_typed_url"]], "nodriver.cdp.page.NavigationType": [[39, 1, 1, "", "BACK_FORWARD_CACHE_RESTORE"], [39, 1, 1, "", "NAVIGATION"]], "nodriver.cdp.page.OriginTrial": [[39, 1, 1, "", "status"], [39, 1, 1, "", "tokens_with_status"], [39, 1, 1, "", "trial_name"]], "nodriver.cdp.page.OriginTrialStatus": [[39, 1, 1, "", "ENABLED"], [39, 1, 1, "", "OS_NOT_SUPPORTED"], [39, 1, 1, "", "TRIAL_NOT_ALLOWED"], [39, 1, 1, "", "VALID_TOKEN_NOT_PROVIDED"]], "nodriver.cdp.page.OriginTrialToken": [[39, 1, 1, "", "expiry_time"], [39, 1, 1, "", "is_third_party"], [39, 1, 1, "", "match_sub_domains"], [39, 1, 1, "", "origin"], [39, 1, 1, "", "trial_name"], [39, 1, 1, "", "usage_restriction"]], "nodriver.cdp.page.OriginTrialTokenStatus": [[39, 1, 1, "", "EXPIRED"], [39, 1, 1, "", "FEATURE_DISABLED"], [39, 1, 1, "", "FEATURE_DISABLED_FOR_USER"], [39, 1, 1, "", "INSECURE"], [39, 1, 1, "", "INVALID_SIGNATURE"], [39, 1, 1, "", "MALFORMED"], [39, 1, 1, "", "NOT_SUPPORTED"], [39, 1, 1, "", "SUCCESS"], [39, 1, 1, "", "TOKEN_DISABLED"], [39, 1, 1, "", "UNKNOWN_TRIAL"], [39, 1, 1, "", "WRONG_ORIGIN"], [39, 1, 1, "", "WRONG_VERSION"]], "nodriver.cdp.page.OriginTrialTokenWithStatus": [[39, 1, 1, "", "parsed_token"], [39, 1, 1, "", "raw_token_text"], [39, 1, 1, "", "status"]], "nodriver.cdp.page.OriginTrialUsageRestriction": [[39, 1, 1, "", "NONE"], [39, 1, 1, "", "SUBSET"]], "nodriver.cdp.page.PermissionsPolicyBlockLocator": [[39, 1, 1, "", "block_reason"], [39, 1, 1, "", "frame_id"]], "nodriver.cdp.page.PermissionsPolicyBlockReason": [[39, 1, 1, "", "HEADER"], [39, 1, 1, "", "IFRAME_ATTRIBUTE"], [39, 1, 1, "", "IN_FENCED_FRAME_TREE"], [39, 1, 1, "", "IN_ISOLATED_APP"]], "nodriver.cdp.page.PermissionsPolicyFeature": [[39, 1, 1, "", "ACCELEROMETER"], [39, 1, 1, "", "ALL_SCREENS_CAPTURE"], [39, 1, 1, "", "AMBIENT_LIGHT_SENSOR"], [39, 1, 1, "", "ATTRIBUTION_REPORTING"], [39, 1, 1, "", "AUTOPLAY"], [39, 1, 1, "", "BLUETOOTH"], [39, 1, 1, "", "BROWSING_TOPICS"], [39, 1, 1, "", "CAMERA"], [39, 1, 1, "", "CAPTURED_SURFACE_CONTROL"], [39, 1, 1, "", "CH_DEVICE_MEMORY"], [39, 1, 1, "", "CH_DOWNLINK"], [39, 1, 1, "", "CH_DPR"], [39, 1, 1, "", "CH_ECT"], [39, 1, 1, "", "CH_PREFERS_COLOR_SCHEME"], [39, 1, 1, "", "CH_PREFERS_REDUCED_MOTION"], [39, 1, 1, "", "CH_PREFERS_REDUCED_TRANSPARENCY"], [39, 1, 1, "", "CH_RTT"], [39, 1, 1, "", "CH_SAVE_DATA"], [39, 1, 1, "", "CH_UA"], [39, 1, 1, "", "CH_UA_ARCH"], [39, 1, 1, "", "CH_UA_BITNESS"], [39, 1, 1, "", "CH_UA_FORM_FACTORS"], [39, 1, 1, "", "CH_UA_FULL_VERSION"], [39, 1, 1, "", "CH_UA_FULL_VERSION_LIST"], [39, 1, 1, "", "CH_UA_MOBILE"], [39, 1, 1, "", "CH_UA_MODEL"], [39, 1, 1, "", "CH_UA_PLATFORM"], [39, 1, 1, "", "CH_UA_PLATFORM_VERSION"], [39, 1, 1, "", "CH_UA_WOW64"], [39, 1, 1, "", "CH_VIEWPORT_HEIGHT"], [39, 1, 1, "", "CH_VIEWPORT_WIDTH"], [39, 1, 1, "", "CH_WIDTH"], [39, 1, 1, "", "CLIPBOARD_READ"], [39, 1, 1, "", "CLIPBOARD_WRITE"], [39, 1, 1, "", "COMPUTE_PRESSURE"], [39, 1, 1, "", "CONTROLLED_FRAME"], [39, 1, 1, "", "CROSS_ORIGIN_ISOLATED"], [39, 1, 1, "", "DEFERRED_FETCH"], [39, 1, 1, "", "DEFERRED_FETCH_MINIMAL"], [39, 1, 1, "", "DIGITAL_CREDENTIALS_GET"], [39, 1, 1, "", "DIRECT_SOCKETS"], [39, 1, 1, "", "DIRECT_SOCKETS_PRIVATE"], [39, 1, 1, "", "DISPLAY_CAPTURE"], [39, 1, 1, "", "DOCUMENT_DOMAIN"], [39, 1, 1, "", "ENCRYPTED_MEDIA"], [39, 1, 1, "", "EXECUTION_WHILE_NOT_RENDERED"], [39, 1, 1, "", "EXECUTION_WHILE_OUT_OF_VIEWPORT"], [39, 1, 1, "", "FENCED_UNPARTITIONED_STORAGE_READ"], [39, 1, 1, "", "FOCUS_WITHOUT_USER_ACTIVATION"], [39, 1, 1, "", "FROBULATE"], [39, 1, 1, "", "FULLSCREEN"], [39, 1, 1, "", "GAMEPAD"], [39, 1, 1, "", "GEOLOCATION"], [39, 1, 1, "", "GYROSCOPE"], [39, 1, 1, "", "HID"], [39, 1, 1, "", "IDENTITY_CREDENTIALS_GET"], [39, 1, 1, "", "IDLE_DETECTION"], [39, 1, 1, "", "INTEREST_COHORT"], [39, 1, 1, "", "JOIN_AD_INTEREST_GROUP"], [39, 1, 1, "", "KEYBOARD_MAP"], [39, 1, 1, "", "LOCAL_FONTS"], [39, 1, 1, "", "MAGNETOMETER"], [39, 1, 1, "", "MEDIA_PLAYBACK_WHILE_NOT_VISIBLE"], [39, 1, 1, "", "MICROPHONE"], [39, 1, 1, "", "MIDI"], [39, 1, 1, "", "OTP_CREDENTIALS"], [39, 1, 1, "", "PAYMENT"], [39, 1, 1, "", "PICTURE_IN_PICTURE"], [39, 1, 1, "", "POPINS"], [39, 1, 1, "", "PRIVATE_AGGREGATION"], [39, 1, 1, "", "PRIVATE_STATE_TOKEN_ISSUANCE"], [39, 1, 1, "", "PRIVATE_STATE_TOKEN_REDEMPTION"], [39, 1, 1, "", "PUBLICKEY_CREDENTIALS_CREATE"], [39, 1, 1, "", "PUBLICKEY_CREDENTIALS_GET"], [39, 1, 1, "", "RUN_AD_AUCTION"], [39, 1, 1, "", "SCREEN_WAKE_LOCK"], [39, 1, 1, "", "SERIAL"], [39, 1, 1, "", "SHARED_AUTOFILL"], [39, 1, 1, "", "SHARED_STORAGE"], [39, 1, 1, "", "SHARED_STORAGE_SELECT_URL"], [39, 1, 1, "", "SMART_CARD"], [39, 1, 1, "", "SPEAKER_SELECTION"], [39, 1, 1, "", "STORAGE_ACCESS"], [39, 1, 1, "", "SUB_APPS"], [39, 1, 1, "", "SYNC_XHR"], [39, 1, 1, "", "UNLOAD"], [39, 1, 1, "", "USB"], [39, 1, 1, "", "USB_UNRESTRICTED"], [39, 1, 1, "", "VERTICAL_SCROLL"], [39, 1, 1, "", "WEB_APP_INSTALLATION"], [39, 1, 1, "", "WEB_PRINTING"], [39, 1, 1, "", "WEB_SHARE"], [39, 1, 1, "", "WINDOW_MANAGEMENT"], [39, 1, 1, "", "XR_SPATIAL_TRACKING"]], "nodriver.cdp.page.PermissionsPolicyFeatureState": [[39, 1, 1, "", "allowed"], [39, 1, 1, "", "feature"], [39, 1, 1, "", "locator"]], "nodriver.cdp.page.ProtocolHandler": [[39, 1, 1, "", "protocol"], [39, 1, 1, "", "url"]], "nodriver.cdp.page.ReferrerPolicy": [[39, 1, 1, "", "NO_REFERRER"], [39, 1, 1, "", "NO_REFERRER_WHEN_DOWNGRADE"], [39, 1, 1, "", "ORIGIN"], [39, 1, 1, "", "ORIGIN_WHEN_CROSS_ORIGIN"], [39, 1, 1, "", "SAME_ORIGIN"], [39, 1, 1, "", "STRICT_ORIGIN"], [39, 1, 1, "", "STRICT_ORIGIN_WHEN_CROSS_ORIGIN"], [39, 1, 1, "", "UNSAFE_URL"]], "nodriver.cdp.page.RelatedApplication": [[39, 1, 1, "", "id_"], [39, 1, 1, "", "url"]], "nodriver.cdp.page.ScopeExtension": [[39, 1, 1, "", "has_origin_wildcard"], [39, 1, 1, "", "origin"]], "nodriver.cdp.page.ScreencastFrame": [[39, 1, 1, "", "data"], [39, 1, 1, "", "metadata"], [39, 1, 1, "", "session_id"]], "nodriver.cdp.page.ScreencastFrameMetadata": [[39, 1, 1, "", "device_height"], [39, 1, 1, "", "device_width"], [39, 1, 1, "", "offset_top"], [39, 1, 1, "", "page_scale_factor"], [39, 1, 1, "", "scroll_offset_x"], [39, 1, 1, "", "scroll_offset_y"], [39, 1, 1, "", "timestamp"]], "nodriver.cdp.page.ScreencastVisibilityChanged": [[39, 1, 1, "", "visible"]], "nodriver.cdp.page.Screenshot": [[39, 1, 1, "", "form_factor"], [39, 1, 1, "", "image"], [39, 1, 1, "", "label"]], "nodriver.cdp.page.ScriptFontFamilies": [[39, 1, 1, "", "font_families"], [39, 1, 1, "", "script"]], "nodriver.cdp.page.SecureContextType": [[39, 1, 1, "", "INSECURE_ANCESTOR"], [39, 1, 1, "", "INSECURE_SCHEME"], [39, 1, 1, "", "SECURE"], [39, 1, 1, "", "SECURE_LOCALHOST"]], "nodriver.cdp.page.ShareTarget": [[39, 1, 1, "", "action"], [39, 1, 1, "", "enctype"], [39, 1, 1, "", "files"], [39, 1, 1, "", "method"], [39, 1, 1, "", "text"], [39, 1, 1, "", "title"], [39, 1, 1, "", "url"]], "nodriver.cdp.page.Shortcut": [[39, 1, 1, "", "name"], [39, 1, 1, "", "url"]], "nodriver.cdp.page.TransitionType": [[39, 1, 1, "", "ADDRESS_BAR"], [39, 1, 1, "", "AUTO_BOOKMARK"], [39, 1, 1, "", "AUTO_SUBFRAME"], [39, 1, 1, "", "AUTO_TOPLEVEL"], [39, 1, 1, "", "FORM_SUBMIT"], [39, 1, 1, "", "GENERATED"], [39, 1, 1, "", "KEYWORD"], [39, 1, 1, "", "KEYWORD_GENERATED"], [39, 1, 1, "", "LINK"], [39, 1, 1, "", "MANUAL_SUBFRAME"], [39, 1, 1, "", "OTHER"], [39, 1, 1, "", "RELOAD"], [39, 1, 1, "", "TYPED"]], "nodriver.cdp.page.Viewport": [[39, 1, 1, "", "height"], [39, 1, 1, "", "scale"], [39, 1, 1, "", "width"], [39, 1, 1, "", "x"], [39, 1, 1, "", "y"]], "nodriver.cdp.page.VisualViewport": [[39, 1, 1, "", "client_height"], [39, 1, 1, "", "client_width"], [39, 1, 1, "", "offset_x"], [39, 1, 1, "", "offset_y"], [39, 1, 1, "", "page_x"], [39, 1, 1, "", "page_y"], [39, 1, 1, "", "scale"], [39, 1, 1, "", "zoom"]], "nodriver.cdp.page.WebAppManifest": [[39, 1, 1, "", "background_color"], [39, 1, 1, "", "description"], [39, 1, 1, "", "dir_"], [39, 1, 1, "", "display"], [39, 1, 1, "", "display_overrides"], [39, 1, 1, "", "file_handlers"], [39, 1, 1, "", "icons"], [39, 1, 1, "", "id_"], [39, 1, 1, "", "lang"], [39, 1, 1, "", "launch_handler"], [39, 1, 1, "", "name"], [39, 1, 1, "", "orientation"], [39, 1, 1, "", "prefer_related_applications"], [39, 1, 1, "", "protocol_handlers"], [39, 1, 1, "", "related_applications"], [39, 1, 1, "", "scope"], [39, 1, 1, "", "scope_extensions"], [39, 1, 1, "", "screenshots"], [39, 1, 1, "", "share_target"], [39, 1, 1, "", "short_name"], [39, 1, 1, "", "shortcuts"], [39, 1, 1, "", "start_url"], [39, 1, 1, "", "theme_color"]], "nodriver.cdp.page.WindowOpen": [[39, 1, 1, "", "url"], [39, 1, 1, "", "user_gesture"], [39, 1, 1, "", "window_features"], [39, 1, 1, "", "window_name"]], "nodriver.cdp.performance": [[40, 0, 1, "", "Metric"], [40, 0, 1, "", "Metrics"], [40, 5, 1, "", "disable"], [40, 5, 1, "", "enable"], [40, 5, 1, "", "get_metrics"], [40, 5, 1, "", "set_time_domain"]], "nodriver.cdp.performance.Metric": [[40, 1, 1, "", "name"], [40, 1, 1, "", "value"]], "nodriver.cdp.performance.Metrics": [[40, 1, 1, "", "metrics"], [40, 1, 1, "", "title"]], "nodriver.cdp.performance_timeline": [[41, 0, 1, "", "LargestContentfulPaint"], [41, 0, 1, "", "LayoutShift"], [41, 0, 1, "", "LayoutShiftAttribution"], [41, 0, 1, "", "TimelineEvent"], [41, 0, 1, "", "TimelineEventAdded"], [41, 5, 1, "", "enable"]], "nodriver.cdp.performance_timeline.LargestContentfulPaint": [[41, 1, 1, "", "element_id"], [41, 1, 1, "", "load_time"], [41, 1, 1, "", "node_id"], [41, 1, 1, "", "render_time"], [41, 1, 1, "", "size"], [41, 1, 1, "", "url"]], "nodriver.cdp.performance_timeline.LayoutShift": [[41, 1, 1, "", "had_recent_input"], [41, 1, 1, "", "last_input_time"], [41, 1, 1, "", "sources"], [41, 1, 1, "", "value"]], "nodriver.cdp.performance_timeline.LayoutShiftAttribution": [[41, 1, 1, "", "current_rect"], [41, 1, 1, "", "node_id"], [41, 1, 1, "", "previous_rect"]], "nodriver.cdp.performance_timeline.TimelineEvent": [[41, 1, 1, "", "duration"], [41, 1, 1, "", "frame_id"], [41, 1, 1, "", "layout_shift_details"], [41, 1, 1, "", "lcp_details"], [41, 1, 1, "", "name"], [41, 1, 1, "", "time"], [41, 1, 1, "", "type_"]], "nodriver.cdp.performance_timeline.TimelineEventAdded": [[41, 1, 1, "", "event"]], "nodriver.cdp.preload": [[42, 0, 1, "", "PrefetchStatus"], [42, 0, 1, "", "PrefetchStatusUpdated"], [42, 0, 1, "", "PreloadEnabledStateUpdated"], [42, 0, 1, "", "PreloadingAttemptKey"], [42, 0, 1, "", "PreloadingAttemptSource"], [42, 0, 1, "", "PreloadingAttemptSourcesUpdated"], [42, 0, 1, "", "PreloadingStatus"], [42, 0, 1, "", "PrerenderFinalStatus"], [42, 0, 1, "", "PrerenderMismatchedHeaders"], [42, 0, 1, "", "PrerenderStatusUpdated"], [42, 0, 1, "", "RuleSet"], [42, 0, 1, "", "RuleSetErrorType"], [42, 0, 1, "", "RuleSetId"], [42, 0, 1, "", "RuleSetRemoved"], [42, 0, 1, "", "RuleSetUpdated"], [42, 0, 1, "", "SpeculationAction"], [42, 0, 1, "", "SpeculationTargetHint"], [42, 5, 1, "", "disable"], [42, 5, 1, "", "enable"]], "nodriver.cdp.preload.PrefetchStatus": [[42, 1, 1, "", "PREFETCH_ALLOWED"], [42, 1, 1, "", "PREFETCH_EVICTED_AFTER_CANDIDATE_REMOVED"], [42, 1, 1, "", "PREFETCH_EVICTED_FOR_NEWER_PREFETCH"], [42, 1, 1, "", "PREFETCH_FAILED_INELIGIBLE_REDIRECT"], [42, 1, 1, "", "PREFETCH_FAILED_INVALID_REDIRECT"], [42, 1, 1, "", "PREFETCH_FAILED_MIME_NOT_SUPPORTED"], [42, 1, 1, "", "PREFETCH_FAILED_NET_ERROR"], [42, 1, 1, "", "PREFETCH_FAILED_NON2_XX"], [42, 1, 1, "", "PREFETCH_HELDBACK"], [42, 1, 1, "", "PREFETCH_INELIGIBLE_RETRY_AFTER"], [42, 1, 1, "", "PREFETCH_IS_PRIVACY_DECOY"], [42, 1, 1, "", "PREFETCH_IS_STALE"], [42, 1, 1, "", "PREFETCH_NOT_ELIGIBLE_BATTERY_SAVER_ENABLED"], [42, 1, 1, "", "PREFETCH_NOT_ELIGIBLE_BROWSER_CONTEXT_OFF_THE_RECORD"], [42, 1, 1, "", "PREFETCH_NOT_ELIGIBLE_DATA_SAVER_ENABLED"], [42, 1, 1, "", "PREFETCH_NOT_ELIGIBLE_EXISTING_PROXY"], [42, 1, 1, "", "PREFETCH_NOT_ELIGIBLE_HOST_IS_NON_UNIQUE"], [42, 1, 1, "", "PREFETCH_NOT_ELIGIBLE_NON_DEFAULT_STORAGE_PARTITION"], [42, 1, 1, "", "PREFETCH_NOT_ELIGIBLE_PRELOADING_DISABLED"], [42, 1, 1, "", "PREFETCH_NOT_ELIGIBLE_SAME_SITE_CROSS_ORIGIN_PREFETCH_REQUIRED_PROXY"], [42, 1, 1, "", "PREFETCH_NOT_ELIGIBLE_SCHEME_IS_NOT_HTTPS"], [42, 1, 1, "", "PREFETCH_NOT_ELIGIBLE_USER_HAS_COOKIES"], [42, 1, 1, "", "PREFETCH_NOT_ELIGIBLE_USER_HAS_SERVICE_WORKER"], [42, 1, 1, "", "PREFETCH_NOT_FINISHED_IN_TIME"], [42, 1, 1, "", "PREFETCH_NOT_STARTED"], [42, 1, 1, "", "PREFETCH_NOT_USED_COOKIES_CHANGED"], [42, 1, 1, "", "PREFETCH_NOT_USED_PROBE_FAILED"], [42, 1, 1, "", "PREFETCH_PROXY_NOT_AVAILABLE"], [42, 1, 1, "", "PREFETCH_RESPONSE_USED"], [42, 1, 1, "", "PREFETCH_SUCCESSFUL_BUT_NOT_USED"]], "nodriver.cdp.preload.PrefetchStatusUpdated": [[42, 1, 1, "", "initiating_frame_id"], [42, 1, 1, "", "key"], [42, 1, 1, "", "prefetch_status"], [42, 1, 1, "", "prefetch_url"], [42, 1, 1, "", "request_id"], [42, 1, 1, "", "status"]], "nodriver.cdp.preload.PreloadEnabledStateUpdated": [[42, 1, 1, "", "disabled_by_battery_saver"], [42, 1, 1, "", "disabled_by_data_saver"], [42, 1, 1, "", "disabled_by_holdback_prefetch_speculation_rules"], [42, 1, 1, "", "disabled_by_holdback_prerender_speculation_rules"], [42, 1, 1, "", "disabled_by_preference"]], "nodriver.cdp.preload.PreloadingAttemptKey": [[42, 1, 1, "", "action"], [42, 1, 1, "", "loader_id"], [42, 1, 1, "", "target_hint"], [42, 1, 1, "", "url"]], "nodriver.cdp.preload.PreloadingAttemptSource": [[42, 1, 1, "", "key"], [42, 1, 1, "", "node_ids"], [42, 1, 1, "", "rule_set_ids"]], "nodriver.cdp.preload.PreloadingAttemptSourcesUpdated": [[42, 1, 1, "", "loader_id"], [42, 1, 1, "", "preloading_attempt_sources"]], "nodriver.cdp.preload.PreloadingStatus": [[42, 1, 1, "", "FAILURE"], [42, 1, 1, "", "NOT_SUPPORTED"], [42, 1, 1, "", "PENDING"], [42, 1, 1, "", "READY"], [42, 1, 1, "", "RUNNING"], [42, 1, 1, "", "SUCCESS"]], "nodriver.cdp.preload.PrerenderFinalStatus": [[42, 1, 1, "", "ACTIVATED"], [42, 1, 1, "", "ACTIVATED_BEFORE_STARTED"], [42, 1, 1, "", "ACTIVATED_DURING_MAIN_FRAME_NAVIGATION"], [42, 1, 1, "", "ACTIVATED_IN_BACKGROUND"], [42, 1, 1, "", "ACTIVATED_WITH_AUXILIARY_BROWSING_CONTEXTS"], [42, 1, 1, "", "ACTIVATION_FRAME_POLICY_NOT_COMPATIBLE"], [42, 1, 1, "", "ACTIVATION_NAVIGATION_DESTROYED_BEFORE_SUCCESS"], [42, 1, 1, "", "ACTIVATION_NAVIGATION_PARAMETER_MISMATCH"], [42, 1, 1, "", "ACTIVATION_URL_HAS_EFFECTIVE_URL"], [42, 1, 1, "", "ALL_PRERENDERING_CANCELED"], [42, 1, 1, "", "AUDIO_OUTPUT_DEVICE_REQUESTED"], [42, 1, 1, "", "BATTERY_SAVER_ENABLED"], [42, 1, 1, "", "BLOCKED_BY_CLIENT"], [42, 1, 1, "", "CANCEL_ALL_HOSTS_FOR_TESTING"], [42, 1, 1, "", "CLIENT_CERT_REQUESTED"], [42, 1, 1, "", "CROSS_SITE_NAVIGATION_IN_INITIAL_NAVIGATION"], [42, 1, 1, "", "CROSS_SITE_NAVIGATION_IN_MAIN_FRAME_NAVIGATION"], [42, 1, 1, "", "CROSS_SITE_REDIRECT_IN_INITIAL_NAVIGATION"], [42, 1, 1, "", "CROSS_SITE_REDIRECT_IN_MAIN_FRAME_NAVIGATION"], [42, 1, 1, "", "DATA_SAVER_ENABLED"], [42, 1, 1, "", "DESTROYED"], [42, 1, 1, "", "DID_FAIL_LOAD"], [42, 1, 1, "", "DOWNLOAD"], [42, 1, 1, "", "EMBEDDER_HOST_DISALLOWED"], [42, 1, 1, "", "INACTIVE_PAGE_RESTRICTION"], [42, 1, 1, "", "INVALID_SCHEME_NAVIGATION"], [42, 1, 1, "", "INVALID_SCHEME_REDIRECT"], [42, 1, 1, "", "JAVA_SCRIPT_INTERFACE_ADDED"], [42, 1, 1, "", "JAVA_SCRIPT_INTERFACE_REMOVED"], [42, 1, 1, "", "LOGIN_AUTH_REQUESTED"], [42, 1, 1, "", "LOW_END_DEVICE"], [42, 1, 1, "", "MAIN_FRAME_NAVIGATION"], [42, 1, 1, "", "MAX_NUM_OF_RUNNING_EAGER_PRERENDERS_EXCEEDED"], [42, 1, 1, "", "MAX_NUM_OF_RUNNING_EMBEDDER_PRERENDERS_EXCEEDED"], [42, 1, 1, "", "MAX_NUM_OF_RUNNING_NON_EAGER_PRERENDERS_EXCEEDED"], [42, 1, 1, "", "MEMORY_LIMIT_EXCEEDED"], [42, 1, 1, "", "MEMORY_PRESSURE_AFTER_TRIGGERED"], [42, 1, 1, "", "MEMORY_PRESSURE_ON_TRIGGER"], [42, 1, 1, "", "MIXED_CONTENT"], [42, 1, 1, "", "MOJO_BINDER_POLICY"], [42, 1, 1, "", "NAVIGATION_BAD_HTTP_STATUS"], [42, 1, 1, "", "NAVIGATION_NOT_COMMITTED"], [42, 1, 1, "", "NAVIGATION_REQUEST_BLOCKED_BY_CSP"], [42, 1, 1, "", "NAVIGATION_REQUEST_NETWORK_ERROR"], [42, 1, 1, "", "OTHER_PRERENDERED_PAGE_ACTIVATED"], [42, 1, 1, "", "PRELOADING_DISABLED"], [42, 1, 1, "", "PRELOADING_UNSUPPORTED_BY_WEB_CONTENTS"], [42, 1, 1, "", "PRERENDERING_DISABLED_BY_DEV_TOOLS"], [42, 1, 1, "", "PRERENDERING_URL_HAS_EFFECTIVE_URL"], [42, 1, 1, "", "PRERENDER_FAILED_DURING_PREFETCH"], [42, 1, 1, "", "PRIMARY_MAIN_FRAME_RENDERER_PROCESS_CRASHED"], [42, 1, 1, "", "PRIMARY_MAIN_FRAME_RENDERER_PROCESS_KILLED"], [42, 1, 1, "", "REDIRECTED_PRERENDERING_URL_HAS_EFFECTIVE_URL"], [42, 1, 1, "", "RENDERER_PROCESS_CRASHED"], [42, 1, 1, "", "RENDERER_PROCESS_KILLED"], [42, 1, 1, "", "SAME_SITE_CROSS_ORIGIN_NAVIGATION_NOT_OPT_IN_IN_INITIAL_NAVIGATION"], [42, 1, 1, "", "SAME_SITE_CROSS_ORIGIN_NAVIGATION_NOT_OPT_IN_IN_MAIN_FRAME_NAVIGATION"], [42, 1, 1, "", "SAME_SITE_CROSS_ORIGIN_REDIRECT_NOT_OPT_IN_IN_INITIAL_NAVIGATION"], [42, 1, 1, "", "SAME_SITE_CROSS_ORIGIN_REDIRECT_NOT_OPT_IN_IN_MAIN_FRAME_NAVIGATION"], [42, 1, 1, "", "SLOW_NETWORK"], [42, 1, 1, "", "SPECULATION_RULE_REMOVED"], [42, 1, 1, "", "SSL_CERTIFICATE_ERROR"], [42, 1, 1, "", "START_FAILED"], [42, 1, 1, "", "STOP"], [42, 1, 1, "", "TAB_CLOSED_BY_USER_GESTURE"], [42, 1, 1, "", "TAB_CLOSED_WITHOUT_USER_GESTURE"], [42, 1, 1, "", "TIMEOUT_BACKGROUNDED"], [42, 1, 1, "", "TRIGGER_BACKGROUNDED"], [42, 1, 1, "", "TRIGGER_DESTROYED"], [42, 1, 1, "", "TRIGGER_URL_HAS_EFFECTIVE_URL"], [42, 1, 1, "", "UA_CHANGE_REQUIRES_RELOAD"], [42, 1, 1, "", "V8_OPTIMIZER_DISABLED"], [42, 1, 1, "", "WINDOW_CLOSED"]], "nodriver.cdp.preload.PrerenderMismatchedHeaders": [[42, 1, 1, "", "activation_value"], [42, 1, 1, "", "header_name"], [42, 1, 1, "", "initial_value"]], "nodriver.cdp.preload.PrerenderStatusUpdated": [[42, 1, 1, "", "disallowed_mojo_interface"], [42, 1, 1, "", "key"], [42, 1, 1, "", "mismatched_headers"], [42, 1, 1, "", "prerender_status"], [42, 1, 1, "", "status"]], "nodriver.cdp.preload.RuleSet": [[42, 1, 1, "", "backend_node_id"], [42, 1, 1, "", "error_message"], [42, 1, 1, "", "error_type"], [42, 1, 1, "", "id_"], [42, 1, 1, "", "loader_id"], [42, 1, 1, "", "request_id"], [42, 1, 1, "", "source_text"], [42, 1, 1, "", "url"]], "nodriver.cdp.preload.RuleSetErrorType": [[42, 1, 1, "", "INVALID_RULES_SKIPPED"], [42, 1, 1, "", "SOURCE_IS_NOT_JSON_OBJECT"]], "nodriver.cdp.preload.RuleSetRemoved": [[42, 1, 1, "", "id_"]], "nodriver.cdp.preload.RuleSetUpdated": [[42, 1, 1, "", "rule_set"]], "nodriver.cdp.preload.SpeculationAction": [[42, 1, 1, "", "PREFETCH"], [42, 1, 1, "", "PRERENDER"]], "nodriver.cdp.preload.SpeculationTargetHint": [[42, 1, 1, "", "BLANK"], [42, 1, 1, "", "SELF"]], "nodriver.cdp.profiler": [[43, 0, 1, "", "ConsoleProfileFinished"], [43, 0, 1, "", "ConsoleProfileStarted"], [43, 0, 1, "", "CoverageRange"], [43, 0, 1, "", "FunctionCoverage"], [43, 0, 1, "", "PositionTickInfo"], [43, 0, 1, "", "PreciseCoverageDeltaUpdate"], [43, 0, 1, "", "Profile"], [43, 0, 1, "", "ProfileNode"], [43, 0, 1, "", "ScriptCoverage"], [43, 5, 1, "", "disable"], [43, 5, 1, "", "enable"], [43, 5, 1, "", "get_best_effort_coverage"], [43, 5, 1, "", "set_sampling_interval"], [43, 5, 1, "", "start"], [43, 5, 1, "", "start_precise_coverage"], [43, 5, 1, "", "stop"], [43, 5, 1, "", "stop_precise_coverage"], [43, 5, 1, "", "take_precise_coverage"]], "nodriver.cdp.profiler.ConsoleProfileFinished": [[43, 1, 1, "", "id_"], [43, 1, 1, "", "location"], [43, 1, 1, "", "profile"], [43, 1, 1, "", "title"]], "nodriver.cdp.profiler.ConsoleProfileStarted": [[43, 1, 1, "", "id_"], [43, 1, 1, "", "location"], [43, 1, 1, "", "title"]], "nodriver.cdp.profiler.CoverageRange": [[43, 1, 1, "", "count"], [43, 1, 1, "", "end_offset"], [43, 1, 1, "", "start_offset"]], "nodriver.cdp.profiler.FunctionCoverage": [[43, 1, 1, "", "function_name"], [43, 1, 1, "", "is_block_coverage"], [43, 1, 1, "", "ranges"]], "nodriver.cdp.profiler.PositionTickInfo": [[43, 1, 1, "", "line"], [43, 1, 1, "", "ticks"]], "nodriver.cdp.profiler.PreciseCoverageDeltaUpdate": [[43, 1, 1, "", "occasion"], [43, 1, 1, "", "result"], [43, 1, 1, "", "timestamp"]], "nodriver.cdp.profiler.Profile": [[43, 1, 1, "", "end_time"], [43, 1, 1, "", "nodes"], [43, 1, 1, "", "samples"], [43, 1, 1, "", "start_time"], [43, 1, 1, "", "time_deltas"]], "nodriver.cdp.profiler.ProfileNode": [[43, 1, 1, "", "call_frame"], [43, 1, 1, "", "children"], [43, 1, 1, "", "deopt_reason"], [43, 1, 1, "", "hit_count"], [43, 1, 1, "", "id_"], [43, 1, 1, "", "position_ticks"]], "nodriver.cdp.profiler.ScriptCoverage": [[43, 1, 1, "", "functions"], [43, 1, 1, "", "script_id"], [43, 1, 1, "", "url"]], "nodriver.cdp.pwa": [[44, 0, 1, "", "DisplayMode"], [44, 0, 1, "", "FileHandler"], [44, 0, 1, "", "FileHandlerAccept"], [44, 5, 1, "", "change_app_user_settings"], [44, 5, 1, "", "get_os_app_state"], [44, 5, 1, "", "install"], [44, 5, 1, "", "launch"], [44, 5, 1, "", "launch_files_in_app"], [44, 5, 1, "", "open_current_page_in_app"], [44, 5, 1, "", "uninstall"]], "nodriver.cdp.pwa.DisplayMode": [[44, 1, 1, "", "BROWSER"], [44, 1, 1, "", "STANDALONE"]], "nodriver.cdp.pwa.FileHandler": [[44, 1, 1, "", "accepts"], [44, 1, 1, "", "action"], [44, 1, 1, "", "display_name"]], "nodriver.cdp.pwa.FileHandlerAccept": [[44, 1, 1, "", "file_extensions"], [44, 1, 1, "", "media_type"]], "nodriver.cdp.runtime": [[45, 0, 1, "", "BindingCalled"], [45, 0, 1, "", "CallArgument"], [45, 0, 1, "", "CallFrame"], [45, 0, 1, "", "ConsoleAPICalled"], [45, 0, 1, "", "CustomPreview"], [45, 0, 1, "", "DeepSerializedValue"], [45, 0, 1, "", "EntryPreview"], [45, 0, 1, "", "ExceptionDetails"], [45, 0, 1, "", "ExceptionRevoked"], [45, 0, 1, "", "ExceptionThrown"], [45, 0, 1, "", "ExecutionContextCreated"], [45, 0, 1, "", "ExecutionContextDescription"], [45, 0, 1, "", "ExecutionContextDestroyed"], [45, 0, 1, "", "ExecutionContextId"], [45, 0, 1, "", "ExecutionContextsCleared"], [45, 0, 1, "", "InspectRequested"], [45, 0, 1, "", "InternalPropertyDescriptor"], [45, 0, 1, "", "ObjectPreview"], [45, 0, 1, "", "PrivatePropertyDescriptor"], [45, 0, 1, "", "PropertyDescriptor"], [45, 0, 1, "", "PropertyPreview"], [45, 0, 1, "", "RemoteObject"], [45, 0, 1, "", "RemoteObjectId"], [45, 0, 1, "", "ScriptId"], [45, 0, 1, "", "SerializationOptions"], [45, 0, 1, "", "StackTrace"], [45, 0, 1, "", "StackTraceId"], [45, 0, 1, "", "TimeDelta"], [45, 0, 1, "", "Timestamp"], [45, 0, 1, "", "UniqueDebuggerId"], [45, 0, 1, "", "UnserializableValue"], [45, 5, 1, "", "add_binding"], [45, 5, 1, "", "await_promise"], [45, 5, 1, "", "call_function_on"], [45, 5, 1, "", "compile_script"], [45, 5, 1, "", "disable"], [45, 5, 1, "", "discard_console_entries"], [45, 5, 1, "", "enable"], [45, 5, 1, "", "evaluate"], [45, 5, 1, "", "get_exception_details"], [45, 5, 1, "", "get_heap_usage"], [45, 5, 1, "", "get_isolate_id"], [45, 5, 1, "", "get_properties"], [45, 5, 1, "", "global_lexical_scope_names"], [45, 5, 1, "", "query_objects"], [45, 5, 1, "", "release_object"], [45, 5, 1, "", "release_object_group"], [45, 5, 1, "", "remove_binding"], [45, 5, 1, "", "run_if_waiting_for_debugger"], [45, 5, 1, "", "run_script"], [45, 5, 1, "", "set_async_call_stack_depth"], [45, 5, 1, "", "set_custom_object_formatter_enabled"], [45, 5, 1, "", "set_max_call_stack_size_to_capture"], [45, 5, 1, "", "terminate_execution"]], "nodriver.cdp.runtime.BindingCalled": [[45, 1, 1, "", "execution_context_id"], [45, 1, 1, "", "name"], [45, 1, 1, "", "payload"]], "nodriver.cdp.runtime.CallArgument": [[45, 1, 1, "", "object_id"], [45, 1, 1, "", "unserializable_value"], [45, 1, 1, "", "value"]], "nodriver.cdp.runtime.CallFrame": [[45, 1, 1, "", "column_number"], [45, 1, 1, "", "function_name"], [45, 1, 1, "", "line_number"], [45, 1, 1, "", "script_id"], [45, 1, 1, "", "url"]], "nodriver.cdp.runtime.ConsoleAPICalled": [[45, 1, 1, "", "args"], [45, 1, 1, "", "context"], [45, 1, 1, "", "execution_context_id"], [45, 1, 1, "", "stack_trace"], [45, 1, 1, "", "timestamp"], [45, 1, 1, "", "type_"]], "nodriver.cdp.runtime.CustomPreview": [[45, 1, 1, "", "body_getter_id"], [45, 1, 1, "", "header"]], "nodriver.cdp.runtime.DeepSerializedValue": [[45, 1, 1, "", "object_id"], [45, 1, 1, "", "type_"], [45, 1, 1, "", "value"], [45, 1, 1, "", "weak_local_object_reference"]], "nodriver.cdp.runtime.EntryPreview": [[45, 1, 1, "", "key"], [45, 1, 1, "", "value"]], "nodriver.cdp.runtime.ExceptionDetails": [[45, 1, 1, "", "column_number"], [45, 1, 1, "", "exception"], [45, 1, 1, "", "exception_id"], [45, 1, 1, "", "exception_meta_data"], [45, 1, 1, "", "execution_context_id"], [45, 1, 1, "", "line_number"], [45, 1, 1, "", "script_id"], [45, 1, 1, "", "stack_trace"], [45, 1, 1, "", "text"], [45, 1, 1, "", "url"]], "nodriver.cdp.runtime.ExceptionRevoked": [[45, 1, 1, "", "exception_id"], [45, 1, 1, "", "reason"]], "nodriver.cdp.runtime.ExceptionThrown": [[45, 1, 1, "", "exception_details"], [45, 1, 1, "", "timestamp"]], "nodriver.cdp.runtime.ExecutionContextCreated": [[45, 1, 1, "", "context"]], "nodriver.cdp.runtime.ExecutionContextDescription": [[45, 1, 1, "", "aux_data"], [45, 1, 1, "", "id_"], [45, 1, 1, "", "name"], [45, 1, 1, "", "origin"], [45, 1, 1, "", "unique_id"]], "nodriver.cdp.runtime.ExecutionContextDestroyed": [[45, 1, 1, "", "execution_context_id"], [45, 1, 1, "", "execution_context_unique_id"]], "nodriver.cdp.runtime.InspectRequested": [[45, 1, 1, "", "execution_context_id"], [45, 1, 1, "", "hints"], [45, 1, 1, "", "object_"]], "nodriver.cdp.runtime.InternalPropertyDescriptor": [[45, 1, 1, "", "name"], [45, 1, 1, "", "value"]], "nodriver.cdp.runtime.ObjectPreview": [[45, 1, 1, "", "description"], [45, 1, 1, "", "entries"], [45, 1, 1, "", "overflow"], [45, 1, 1, "", "properties"], [45, 1, 1, "", "subtype"], [45, 1, 1, "", "type_"]], "nodriver.cdp.runtime.PrivatePropertyDescriptor": [[45, 1, 1, "", "get"], [45, 1, 1, "", "name"], [45, 1, 1, "", "set_"], [45, 1, 1, "", "value"]], "nodriver.cdp.runtime.PropertyDescriptor": [[45, 1, 1, "", "configurable"], [45, 1, 1, "", "enumerable"], [45, 1, 1, "", "get"], [45, 1, 1, "", "is_own"], [45, 1, 1, "", "name"], [45, 1, 1, "", "set_"], [45, 1, 1, "", "symbol"], [45, 1, 1, "", "value"], [45, 1, 1, "", "was_thrown"], [45, 1, 1, "", "writable"]], "nodriver.cdp.runtime.PropertyPreview": [[45, 1, 1, "", "name"], [45, 1, 1, "", "subtype"], [45, 1, 1, "", "type_"], [45, 1, 1, "", "value"], [45, 1, 1, "", "value_preview"]], "nodriver.cdp.runtime.RemoteObject": [[45, 1, 1, "", "class_name"], [45, 1, 1, "", "custom_preview"], [45, 1, 1, "", "deep_serialized_value"], [45, 1, 1, "", "description"], [45, 1, 1, "", "object_id"], [45, 1, 1, "", "preview"], [45, 1, 1, "", "subtype"], [45, 1, 1, "", "type_"], [45, 1, 1, "", "unserializable_value"], [45, 1, 1, "", "value"]], "nodriver.cdp.runtime.SerializationOptions": [[45, 1, 1, "", "additional_parameters"], [45, 1, 1, "", "max_depth"], [45, 1, 1, "", "serialization"]], "nodriver.cdp.runtime.StackTrace": [[45, 1, 1, "", "call_frames"], [45, 1, 1, "", "description"], [45, 1, 1, "", "parent"], [45, 1, 1, "", "parent_id"]], "nodriver.cdp.runtime.StackTraceId": [[45, 1, 1, "", "debugger_id"], [45, 1, 1, "", "id_"]], "nodriver.cdp.schema": [[46, 0, 1, "", "Domain"], [46, 5, 1, "", "get_domains"]], "nodriver.cdp.schema.Domain": [[46, 1, 1, "", "name"], [46, 1, 1, "", "version"]], "nodriver.cdp.security": [[47, 0, 1, "", "CertificateError"], [47, 0, 1, "", "CertificateErrorAction"], [47, 0, 1, "", "CertificateId"], [47, 0, 1, "", "CertificateSecurityState"], [47, 0, 1, "", "InsecureContentStatus"], [47, 0, 1, "", "MixedContentType"], [47, 0, 1, "", "SafetyTipInfo"], [47, 0, 1, "", "SafetyTipStatus"], [47, 0, 1, "", "SecurityState"], [47, 0, 1, "", "SecurityStateChanged"], [47, 0, 1, "", "SecurityStateExplanation"], [47, 0, 1, "", "VisibleSecurityState"], [47, 0, 1, "", "VisibleSecurityStateChanged"], [47, 5, 1, "", "disable"], [47, 5, 1, "", "enable"], [47, 5, 1, "", "handle_certificate_error"], [47, 5, 1, "", "set_ignore_certificate_errors"], [47, 5, 1, "", "set_override_certificate_errors"]], "nodriver.cdp.security.CertificateError": [[47, 1, 1, "", "error_type"], [47, 1, 1, "", "event_id"], [47, 1, 1, "", "request_url"]], "nodriver.cdp.security.CertificateErrorAction": [[47, 1, 1, "", "CANCEL"], [47, 1, 1, "", "CONTINUE"]], "nodriver.cdp.security.CertificateSecurityState": [[47, 1, 1, "", "certificate"], [47, 1, 1, "", "certificate_has_sha1_signature"], [47, 1, 1, "", "certificate_has_weak_signature"], [47, 1, 1, "", "certificate_network_error"], [47, 1, 1, "", "cipher"], [47, 1, 1, "", "issuer"], [47, 1, 1, "", "key_exchange"], [47, 1, 1, "", "key_exchange_group"], [47, 1, 1, "", "mac"], [47, 1, 1, "", "modern_ssl"], [47, 1, 1, "", "obsolete_ssl_cipher"], [47, 1, 1, "", "obsolete_ssl_key_exchange"], [47, 1, 1, "", "obsolete_ssl_protocol"], [47, 1, 1, "", "obsolete_ssl_signature"], [47, 1, 1, "", "protocol"], [47, 1, 1, "", "subject_name"], [47, 1, 1, "", "valid_from"], [47, 1, 1, "", "valid_to"]], "nodriver.cdp.security.InsecureContentStatus": [[47, 1, 1, "", "contained_mixed_form"], [47, 1, 1, "", "displayed_content_with_cert_errors"], [47, 1, 1, "", "displayed_insecure_content_style"], [47, 1, 1, "", "displayed_mixed_content"], [47, 1, 1, "", "ran_content_with_cert_errors"], [47, 1, 1, "", "ran_insecure_content_style"], [47, 1, 1, "", "ran_mixed_content"]], "nodriver.cdp.security.MixedContentType": [[47, 1, 1, "", "BLOCKABLE"], [47, 1, 1, "", "NONE"], [47, 1, 1, "", "OPTIONALLY_BLOCKABLE"]], "nodriver.cdp.security.SafetyTipInfo": [[47, 1, 1, "", "safe_url"], [47, 1, 1, "", "safety_tip_status"]], "nodriver.cdp.security.SafetyTipStatus": [[47, 1, 1, "", "BAD_REPUTATION"], [47, 1, 1, "", "LOOKALIKE"]], "nodriver.cdp.security.SecurityState": [[47, 1, 1, "", "INFO"], [47, 1, 1, "", "INSECURE"], [47, 1, 1, "", "INSECURE_BROKEN"], [47, 1, 1, "", "NEUTRAL"], [47, 1, 1, "", "SECURE"], [47, 1, 1, "", "UNKNOWN"]], "nodriver.cdp.security.SecurityStateChanged": [[47, 1, 1, "", "explanations"], [47, 1, 1, "", "insecure_content_status"], [47, 1, 1, "", "scheme_is_cryptographic"], [47, 1, 1, "", "security_state"], [47, 1, 1, "", "summary"]], "nodriver.cdp.security.SecurityStateExplanation": [[47, 1, 1, "", "certificate"], [47, 1, 1, "", "description"], [47, 1, 1, "", "mixed_content_type"], [47, 1, 1, "", "recommendations"], [47, 1, 1, "", "security_state"], [47, 1, 1, "", "summary"], [47, 1, 1, "", "title"]], "nodriver.cdp.security.VisibleSecurityState": [[47, 1, 1, "", "certificate_security_state"], [47, 1, 1, "", "safety_tip_info"], [47, 1, 1, "", "security_state"], [47, 1, 1, "", "security_state_issue_ids"]], "nodriver.cdp.security.VisibleSecurityStateChanged": [[47, 1, 1, "", "visible_security_state"]], "nodriver.cdp.service_worker": [[48, 0, 1, "", "RegistrationID"], [48, 0, 1, "", "ServiceWorkerErrorMessage"], [48, 0, 1, "", "ServiceWorkerRegistration"], [48, 0, 1, "", "ServiceWorkerVersion"], [48, 0, 1, "", "ServiceWorkerVersionRunningStatus"], [48, 0, 1, "", "ServiceWorkerVersionStatus"], [48, 0, 1, "", "WorkerErrorReported"], [48, 0, 1, "", "WorkerRegistrationUpdated"], [48, 0, 1, "", "WorkerVersionUpdated"], [48, 5, 1, "", "deliver_push_message"], [48, 5, 1, "", "disable"], [48, 5, 1, "", "dispatch_periodic_sync_event"], [48, 5, 1, "", "dispatch_sync_event"], [48, 5, 1, "", "enable"], [48, 5, 1, "", "inspect_worker"], [48, 5, 1, "", "set_force_update_on_page_load"], [48, 5, 1, "", "skip_waiting"], [48, 5, 1, "", "start_worker"], [48, 5, 1, "", "stop_all_workers"], [48, 5, 1, "", "stop_worker"], [48, 5, 1, "", "unregister"], [48, 5, 1, "", "update_registration"]], "nodriver.cdp.service_worker.ServiceWorkerErrorMessage": [[48, 1, 1, "", "column_number"], [48, 1, 1, "", "error_message"], [48, 1, 1, "", "line_number"], [48, 1, 1, "", "registration_id"], [48, 1, 1, "", "source_url"], [48, 1, 1, "", "version_id"]], "nodriver.cdp.service_worker.ServiceWorkerRegistration": [[48, 1, 1, "", "is_deleted"], [48, 1, 1, "", "registration_id"], [48, 1, 1, "", "scope_url"]], "nodriver.cdp.service_worker.ServiceWorkerVersion": [[48, 1, 1, "", "controlled_clients"], [48, 1, 1, "", "registration_id"], [48, 1, 1, "", "router_rules"], [48, 1, 1, "", "running_status"], [48, 1, 1, "", "script_last_modified"], [48, 1, 1, "", "script_response_time"], [48, 1, 1, "", "script_url"], [48, 1, 1, "", "status"], [48, 1, 1, "", "target_id"], [48, 1, 1, "", "version_id"]], "nodriver.cdp.service_worker.ServiceWorkerVersionRunningStatus": [[48, 1, 1, "", "RUNNING"], [48, 1, 1, "", "STARTING"], [48, 1, 1, "", "STOPPED"], [48, 1, 1, "", "STOPPING"]], "nodriver.cdp.service_worker.ServiceWorkerVersionStatus": [[48, 1, 1, "", "ACTIVATED"], [48, 1, 1, "", "ACTIVATING"], [48, 1, 1, "", "INSTALLED"], [48, 1, 1, "", "INSTALLING"], [48, 1, 1, "", "NEW"], [48, 1, 1, "", "REDUNDANT"]], "nodriver.cdp.service_worker.WorkerErrorReported": [[48, 1, 1, "", "error_message"]], "nodriver.cdp.service_worker.WorkerRegistrationUpdated": [[48, 1, 1, "", "registrations"]], "nodriver.cdp.service_worker.WorkerVersionUpdated": [[48, 1, 1, "", "versions"]], "nodriver.cdp.storage": [[49, 0, 1, "", "AttributionReportingAggregatableDebugReportingConfig"], [49, 0, 1, "", "AttributionReportingAggregatableDebugReportingData"], [49, 0, 1, "", "AttributionReportingAggregatableDedupKey"], [49, 0, 1, "", "AttributionReportingAggregatableResult"], [49, 0, 1, "", "AttributionReportingAggregatableTriggerData"], [49, 0, 1, "", "AttributionReportingAggregatableValueDictEntry"], [49, 0, 1, "", "AttributionReportingAggregatableValueEntry"], [49, 0, 1, "", "AttributionReportingAggregationKeysEntry"], [49, 0, 1, "", "AttributionReportingEventLevelResult"], [49, 0, 1, "", "AttributionReportingEventReportWindows"], [49, 0, 1, "", "AttributionReportingEventTriggerData"], [49, 0, 1, "", "AttributionReportingFilterConfig"], [49, 0, 1, "", "AttributionReportingFilterDataEntry"], [49, 0, 1, "", "AttributionReportingFilterPair"], [49, 0, 1, "", "AttributionReportingSourceRegistered"], [49, 0, 1, "", "AttributionReportingSourceRegistration"], [49, 0, 1, "", "AttributionReportingSourceRegistrationResult"], [49, 0, 1, "", "AttributionReportingSourceRegistrationTimeConfig"], [49, 0, 1, "", "AttributionReportingSourceType"], [49, 0, 1, "", "AttributionReportingTriggerDataMatching"], [49, 0, 1, "", "AttributionReportingTriggerRegistered"], [49, 0, 1, "", "AttributionReportingTriggerRegistration"], [49, 0, 1, "", "AttributionReportingTriggerSpec"], [49, 0, 1, "", "AttributionScopesData"], [49, 0, 1, "", "CacheStorageContentUpdated"], [49, 0, 1, "", "CacheStorageListUpdated"], [49, 0, 1, "", "IndexedDBContentUpdated"], [49, 0, 1, "", "IndexedDBListUpdated"], [49, 0, 1, "", "InterestGroupAccessType"], [49, 0, 1, "", "InterestGroupAccessed"], [49, 0, 1, "", "InterestGroupAuctionEventOccurred"], [49, 0, 1, "", "InterestGroupAuctionEventType"], [49, 0, 1, "", "InterestGroupAuctionFetchType"], [49, 0, 1, "", "InterestGroupAuctionId"], [49, 0, 1, "", "InterestGroupAuctionNetworkRequestCreated"], [49, 0, 1, "", "RelatedWebsiteSet"], [49, 0, 1, "", "SerializedStorageKey"], [49, 0, 1, "", "SharedStorageAccessParams"], [49, 0, 1, "", "SharedStorageAccessType"], [49, 0, 1, "", "SharedStorageAccessed"], [49, 0, 1, "", "SharedStorageEntry"], [49, 0, 1, "", "SharedStorageMetadata"], [49, 0, 1, "", "SharedStorageReportingMetadata"], [49, 0, 1, "", "SharedStorageUrlWithMetadata"], [49, 0, 1, "", "SignedInt64AsBase10"], [49, 0, 1, "", "StorageBucket"], [49, 0, 1, "", "StorageBucketCreatedOrUpdated"], [49, 0, 1, "", "StorageBucketDeleted"], [49, 0, 1, "", "StorageBucketInfo"], [49, 0, 1, "", "StorageBucketsDurability"], [49, 0, 1, "", "StorageType"], [49, 0, 1, "", "TrustTokens"], [49, 0, 1, "", "UnsignedInt128AsBase16"], [49, 0, 1, "", "UnsignedInt64AsBase10"], [49, 0, 1, "", "UsageForType"], [49, 5, 1, "", "clear_cookies"], [49, 5, 1, "", "clear_data_for_origin"], [49, 5, 1, "", "clear_data_for_storage_key"], [49, 5, 1, "", "clear_shared_storage_entries"], [49, 5, 1, "", "clear_trust_tokens"], [49, 5, 1, "", "delete_shared_storage_entry"], [49, 5, 1, "", "delete_storage_bucket"], [49, 5, 1, "", "get_cookies"], [49, 5, 1, "", "get_interest_group_details"], [49, 5, 1, "", "get_related_website_sets"], [49, 5, 1, "", "get_shared_storage_entries"], [49, 5, 1, "", "get_shared_storage_metadata"], [49, 5, 1, "", "get_storage_key_for_frame"], [49, 5, 1, "", "get_trust_tokens"], [49, 5, 1, "", "get_usage_and_quota"], [49, 5, 1, "", "override_quota_for_origin"], [49, 5, 1, "", "reset_shared_storage_budget"], [49, 5, 1, "", "run_bounce_tracking_mitigations"], [49, 5, 1, "", "send_pending_attribution_reports"], [49, 5, 1, "", "set_attribution_reporting_local_testing_mode"], [49, 5, 1, "", "set_attribution_reporting_tracking"], [49, 5, 1, "", "set_cookies"], [49, 5, 1, "", "set_interest_group_auction_tracking"], [49, 5, 1, "", "set_interest_group_tracking"], [49, 5, 1, "", "set_shared_storage_entry"], [49, 5, 1, "", "set_shared_storage_tracking"], [49, 5, 1, "", "set_storage_bucket_tracking"], [49, 5, 1, "", "track_cache_storage_for_origin"], [49, 5, 1, "", "track_cache_storage_for_storage_key"], [49, 5, 1, "", "track_indexed_db_for_origin"], [49, 5, 1, "", "track_indexed_db_for_storage_key"], [49, 5, 1, "", "untrack_cache_storage_for_origin"], [49, 5, 1, "", "untrack_cache_storage_for_storage_key"], [49, 5, 1, "", "untrack_indexed_db_for_origin"], [49, 5, 1, "", "untrack_indexed_db_for_storage_key"]], "nodriver.cdp.storage.AttributionReportingAggregatableDebugReportingConfig": [[49, 1, 1, "", "aggregation_coordinator_origin"], [49, 1, 1, "", "budget"], [49, 1, 1, "", "debug_data"], [49, 1, 1, "", "key_piece"]], "nodriver.cdp.storage.AttributionReportingAggregatableDebugReportingData": [[49, 1, 1, "", "key_piece"], [49, 1, 1, "", "types"], [49, 1, 1, "", "value"]], "nodriver.cdp.storage.AttributionReportingAggregatableDedupKey": [[49, 1, 1, "", "dedup_key"], [49, 1, 1, "", "filters"]], "nodriver.cdp.storage.AttributionReportingAggregatableResult": [[49, 1, 1, "", "DEDUPLICATED"], [49, 1, 1, "", "EXCESSIVE_ATTRIBUTIONS"], [49, 1, 1, "", "EXCESSIVE_REPORTING_ORIGINS"], [49, 1, 1, "", "EXCESSIVE_REPORTS"], [49, 1, 1, "", "INSUFFICIENT_BUDGET"], [49, 1, 1, "", "INSUFFICIENT_NAMED_BUDGET"], [49, 1, 1, "", "INTERNAL_ERROR"], [49, 1, 1, "", "NOT_REGISTERED"], [49, 1, 1, "", "NO_CAPACITY_FOR_ATTRIBUTION_DESTINATION"], [49, 1, 1, "", "NO_HISTOGRAMS"], [49, 1, 1, "", "NO_MATCHING_SOURCES"], [49, 1, 1, "", "NO_MATCHING_SOURCE_FILTER_DATA"], [49, 1, 1, "", "PROHIBITED_BY_BROWSER_POLICY"], [49, 1, 1, "", "REPORT_WINDOW_PASSED"], [49, 1, 1, "", "SUCCESS"]], "nodriver.cdp.storage.AttributionReportingAggregatableTriggerData": [[49, 1, 1, "", "filters"], [49, 1, 1, "", "key_piece"], [49, 1, 1, "", "source_keys"]], "nodriver.cdp.storage.AttributionReportingAggregatableValueDictEntry": [[49, 1, 1, "", "filtering_id"], [49, 1, 1, "", "key"], [49, 1, 1, "", "value"]], "nodriver.cdp.storage.AttributionReportingAggregatableValueEntry": [[49, 1, 1, "", "filters"], [49, 1, 1, "", "values"]], "nodriver.cdp.storage.AttributionReportingAggregationKeysEntry": [[49, 1, 1, "", "key"], [49, 1, 1, "", "value"]], "nodriver.cdp.storage.AttributionReportingEventLevelResult": [[49, 1, 1, "", "DEDUPLICATED"], [49, 1, 1, "", "EXCESSIVE_ATTRIBUTIONS"], [49, 1, 1, "", "EXCESSIVE_REPORTING_ORIGINS"], [49, 1, 1, "", "EXCESSIVE_REPORTS"], [49, 1, 1, "", "FALSELY_ATTRIBUTED_SOURCE"], [49, 1, 1, "", "INTERNAL_ERROR"], [49, 1, 1, "", "NEVER_ATTRIBUTED_SOURCE"], [49, 1, 1, "", "NOT_REGISTERED"], [49, 1, 1, "", "NO_CAPACITY_FOR_ATTRIBUTION_DESTINATION"], [49, 1, 1, "", "NO_MATCHING_CONFIGURATIONS"], [49, 1, 1, "", "NO_MATCHING_SOURCES"], [49, 1, 1, "", "NO_MATCHING_SOURCE_FILTER_DATA"], [49, 1, 1, "", "NO_MATCHING_TRIGGER_DATA"], [49, 1, 1, "", "PRIORITY_TOO_LOW"], [49, 1, 1, "", "PROHIBITED_BY_BROWSER_POLICY"], [49, 1, 1, "", "REPORT_WINDOW_NOT_STARTED"], [49, 1, 1, "", "REPORT_WINDOW_PASSED"], [49, 1, 1, "", "SUCCESS"], [49, 1, 1, "", "SUCCESS_DROPPED_LOWER_PRIORITY"]], "nodriver.cdp.storage.AttributionReportingEventReportWindows": [[49, 1, 1, "", "ends"], [49, 1, 1, "", "start"]], "nodriver.cdp.storage.AttributionReportingEventTriggerData": [[49, 1, 1, "", "data"], [49, 1, 1, "", "dedup_key"], [49, 1, 1, "", "filters"], [49, 1, 1, "", "priority"]], "nodriver.cdp.storage.AttributionReportingFilterConfig": [[49, 1, 1, "", "filter_values"], [49, 1, 1, "", "lookback_window"]], "nodriver.cdp.storage.AttributionReportingFilterDataEntry": [[49, 1, 1, "", "key"], [49, 1, 1, "", "values"]], "nodriver.cdp.storage.AttributionReportingFilterPair": [[49, 1, 1, "", "filters"], [49, 1, 1, "", "not_filters"]], "nodriver.cdp.storage.AttributionReportingSourceRegistered": [[49, 1, 1, "", "registration"], [49, 1, 1, "", "result"]], "nodriver.cdp.storage.AttributionReportingSourceRegistration": [[49, 1, 1, "", "aggregatable_debug_reporting_config"], [49, 1, 1, "", "aggregatable_report_window"], [49, 1, 1, "", "aggregation_keys"], [49, 1, 1, "", "debug_key"], [49, 1, 1, "", "destination_limit_priority"], [49, 1, 1, "", "destination_sites"], [49, 1, 1, "", "event_id"], [49, 1, 1, "", "expiry"], [49, 1, 1, "", "filter_data"], [49, 1, 1, "", "max_event_level_reports"], [49, 1, 1, "", "priority"], [49, 1, 1, "", "reporting_origin"], [49, 1, 1, "", "scopes_data"], [49, 1, 1, "", "source_origin"], [49, 1, 1, "", "time"], [49, 1, 1, "", "trigger_data_matching"], [49, 1, 1, "", "trigger_specs"], [49, 1, 1, "", "type_"]], "nodriver.cdp.storage.AttributionReportingSourceRegistrationResult": [[49, 1, 1, "", "DESTINATION_BOTH_LIMITS_REACHED"], [49, 1, 1, "", "DESTINATION_GLOBAL_LIMIT_REACHED"], [49, 1, 1, "", "DESTINATION_PER_DAY_REPORTING_LIMIT_REACHED"], [49, 1, 1, "", "DESTINATION_REPORTING_LIMIT_REACHED"], [49, 1, 1, "", "EXCEEDS_MAX_CHANNEL_CAPACITY"], [49, 1, 1, "", "EXCEEDS_MAX_EVENT_STATES_LIMIT"], [49, 1, 1, "", "EXCEEDS_MAX_SCOPES_CHANNEL_CAPACITY"], [49, 1, 1, "", "EXCEEDS_MAX_TRIGGER_STATE_CARDINALITY"], [49, 1, 1, "", "EXCESSIVE_REPORTING_ORIGINS"], [49, 1, 1, "", "INSUFFICIENT_SOURCE_CAPACITY"], [49, 1, 1, "", "INSUFFICIENT_UNIQUE_DESTINATION_CAPACITY"], [49, 1, 1, "", "INTERNAL_ERROR"], [49, 1, 1, "", "PROHIBITED_BY_BROWSER_POLICY"], [49, 1, 1, "", "REPORTING_ORIGINS_PER_SITE_LIMIT_REACHED"], [49, 1, 1, "", "SUCCESS"], [49, 1, 1, "", "SUCCESS_NOISED"]], "nodriver.cdp.storage.AttributionReportingSourceRegistrationTimeConfig": [[49, 1, 1, "", "EXCLUDE"], [49, 1, 1, "", "INCLUDE"]], "nodriver.cdp.storage.AttributionReportingSourceType": [[49, 1, 1, "", "EVENT"], [49, 1, 1, "", "NAVIGATION"]], "nodriver.cdp.storage.AttributionReportingTriggerDataMatching": [[49, 1, 1, "", "EXACT"], [49, 1, 1, "", "MODULUS"]], "nodriver.cdp.storage.AttributionReportingTriggerRegistered": [[49, 1, 1, "", "aggregatable"], [49, 1, 1, "", "event_level"], [49, 1, 1, "", "registration"]], "nodriver.cdp.storage.AttributionReportingTriggerRegistration": [[49, 1, 1, "", "aggregatable_debug_reporting_config"], [49, 1, 1, "", "aggregatable_dedup_keys"], [49, 1, 1, "", "aggregatable_filtering_id_max_bytes"], [49, 1, 1, "", "aggregatable_trigger_data"], [49, 1, 1, "", "aggregatable_values"], [49, 1, 1, "", "aggregation_coordinator_origin"], [49, 1, 1, "", "debug_key"], [49, 1, 1, "", "debug_reporting"], [49, 1, 1, "", "event_trigger_data"], [49, 1, 1, "", "filters"], [49, 1, 1, "", "scopes"], [49, 1, 1, "", "source_registration_time_config"], [49, 1, 1, "", "trigger_context_id"]], "nodriver.cdp.storage.AttributionReportingTriggerSpec": [[49, 1, 1, "", "event_report_windows"], [49, 1, 1, "", "trigger_data"]], "nodriver.cdp.storage.AttributionScopesData": [[49, 1, 1, "", "limit"], [49, 1, 1, "", "max_event_states"], [49, 1, 1, "", "values"]], "nodriver.cdp.storage.CacheStorageContentUpdated": [[49, 1, 1, "", "bucket_id"], [49, 1, 1, "", "cache_name"], [49, 1, 1, "", "origin"], [49, 1, 1, "", "storage_key"]], "nodriver.cdp.storage.CacheStorageListUpdated": [[49, 1, 1, "", "bucket_id"], [49, 1, 1, "", "origin"], [49, 1, 1, "", "storage_key"]], "nodriver.cdp.storage.IndexedDBContentUpdated": [[49, 1, 1, "", "bucket_id"], [49, 1, 1, "", "database_name"], [49, 1, 1, "", "object_store_name"], [49, 1, 1, "", "origin"], [49, 1, 1, "", "storage_key"]], "nodriver.cdp.storage.IndexedDBListUpdated": [[49, 1, 1, "", "bucket_id"], [49, 1, 1, "", "origin"], [49, 1, 1, "", "storage_key"]], "nodriver.cdp.storage.InterestGroupAccessType": [[49, 1, 1, "", "ADDITIONAL_BID"], [49, 1, 1, "", "ADDITIONAL_BID_WIN"], [49, 1, 1, "", "BID"], [49, 1, 1, "", "CLEAR"], [49, 1, 1, "", "JOIN"], [49, 1, 1, "", "LEAVE"], [49, 1, 1, "", "LOADED"], [49, 1, 1, "", "TOP_LEVEL_ADDITIONAL_BID"], [49, 1, 1, "", "TOP_LEVEL_BID"], [49, 1, 1, "", "UPDATE"], [49, 1, 1, "", "WIN"]], "nodriver.cdp.storage.InterestGroupAccessed": [[49, 1, 1, "", "access_time"], [49, 1, 1, "", "bid"], [49, 1, 1, "", "bid_currency"], [49, 1, 1, "", "component_seller_origin"], [49, 1, 1, "", "name"], [49, 1, 1, "", "owner_origin"], [49, 1, 1, "", "type_"], [49, 1, 1, "", "unique_auction_id"]], "nodriver.cdp.storage.InterestGroupAuctionEventOccurred": [[49, 1, 1, "", "auction_config"], [49, 1, 1, "", "event_time"], [49, 1, 1, "", "parent_auction_id"], [49, 1, 1, "", "type_"], [49, 1, 1, "", "unique_auction_id"]], "nodriver.cdp.storage.InterestGroupAuctionEventType": [[49, 1, 1, "", "CONFIG_RESOLVED"], [49, 1, 1, "", "STARTED"]], "nodriver.cdp.storage.InterestGroupAuctionFetchType": [[49, 1, 1, "", "BIDDER_JS"], [49, 1, 1, "", "BIDDER_TRUSTED_SIGNALS"], [49, 1, 1, "", "BIDDER_WASM"], [49, 1, 1, "", "SELLER_JS"], [49, 1, 1, "", "SELLER_TRUSTED_SIGNALS"]], "nodriver.cdp.storage.InterestGroupAuctionNetworkRequestCreated": [[49, 1, 1, "", "auctions"], [49, 1, 1, "", "request_id"], [49, 1, 1, "", "type_"]], "nodriver.cdp.storage.RelatedWebsiteSet": [[49, 1, 1, "", "associated_sites"], [49, 1, 1, "", "primary_sites"], [49, 1, 1, "", "service_sites"]], "nodriver.cdp.storage.SharedStorageAccessParams": [[49, 1, 1, "", "ignore_if_present"], [49, 1, 1, "", "key"], [49, 1, 1, "", "operation_name"], [49, 1, 1, "", "script_source_url"], [49, 1, 1, "", "serialized_data"], [49, 1, 1, "", "urls_with_metadata"], [49, 1, 1, "", "value"]], "nodriver.cdp.storage.SharedStorageAccessType": [[49, 1, 1, "", "DOCUMENT_ADD_MODULE"], [49, 1, 1, "", "DOCUMENT_APPEND"], [49, 1, 1, "", "DOCUMENT_CLEAR"], [49, 1, 1, "", "DOCUMENT_DELETE"], [49, 1, 1, "", "DOCUMENT_GET"], [49, 1, 1, "", "DOCUMENT_RUN"], [49, 1, 1, "", "DOCUMENT_SELECT_URL"], [49, 1, 1, "", "DOCUMENT_SET"], [49, 1, 1, "", "HEADER_APPEND"], [49, 1, 1, "", "HEADER_CLEAR"], [49, 1, 1, "", "HEADER_DELETE"], [49, 1, 1, "", "HEADER_SET"], [49, 1, 1, "", "WORKLET_APPEND"], [49, 1, 1, "", "WORKLET_CLEAR"], [49, 1, 1, "", "WORKLET_DELETE"], [49, 1, 1, "", "WORKLET_ENTRIES"], [49, 1, 1, "", "WORKLET_GET"], [49, 1, 1, "", "WORKLET_KEYS"], [49, 1, 1, "", "WORKLET_LENGTH"], [49, 1, 1, "", "WORKLET_REMAINING_BUDGET"], [49, 1, 1, "", "WORKLET_SET"]], "nodriver.cdp.storage.SharedStorageAccessed": [[49, 1, 1, "", "access_time"], [49, 1, 1, "", "main_frame_id"], [49, 1, 1, "", "owner_origin"], [49, 1, 1, "", "params"], [49, 1, 1, "", "type_"]], "nodriver.cdp.storage.SharedStorageEntry": [[49, 1, 1, "", "key"], [49, 1, 1, "", "value"]], "nodriver.cdp.storage.SharedStorageMetadata": [[49, 1, 1, "", "bytes_used"], [49, 1, 1, "", "creation_time"], [49, 1, 1, "", "length"], [49, 1, 1, "", "remaining_budget"]], "nodriver.cdp.storage.SharedStorageReportingMetadata": [[49, 1, 1, "", "event_type"], [49, 1, 1, "", "reporting_url"]], "nodriver.cdp.storage.SharedStorageUrlWithMetadata": [[49, 1, 1, "", "reporting_metadata"], [49, 1, 1, "", "url"]], "nodriver.cdp.storage.StorageBucket": [[49, 1, 1, "", "name"], [49, 1, 1, "", "storage_key"]], "nodriver.cdp.storage.StorageBucketCreatedOrUpdated": [[49, 1, 1, "", "bucket_info"]], "nodriver.cdp.storage.StorageBucketDeleted": [[49, 1, 1, "", "bucket_id"]], "nodriver.cdp.storage.StorageBucketInfo": [[49, 1, 1, "", "bucket"], [49, 1, 1, "", "durability"], [49, 1, 1, "", "expiration"], [49, 1, 1, "", "id_"], [49, 1, 1, "", "persistent"], [49, 1, 1, "", "quota"]], "nodriver.cdp.storage.StorageBucketsDurability": [[49, 1, 1, "", "RELAXED"], [49, 1, 1, "", "STRICT"]], "nodriver.cdp.storage.StorageType": [[49, 1, 1, "", "ALL_"], [49, 1, 1, "", "APPCACHE"], [49, 1, 1, "", "CACHE_STORAGE"], [49, 1, 1, "", "COOKIES"], [49, 1, 1, "", "FILE_SYSTEMS"], [49, 1, 1, "", "INDEXEDDB"], [49, 1, 1, "", "INTEREST_GROUPS"], [49, 1, 1, "", "LOCAL_STORAGE"], [49, 1, 1, "", "OTHER"], [49, 1, 1, "", "SERVICE_WORKERS"], [49, 1, 1, "", "SHADER_CACHE"], [49, 1, 1, "", "SHARED_STORAGE"], [49, 1, 1, "", "STORAGE_BUCKETS"], [49, 1, 1, "", "WEBSQL"]], "nodriver.cdp.storage.TrustTokens": [[49, 1, 1, "", "count"], [49, 1, 1, "", "issuer_origin"]], "nodriver.cdp.storage.UsageForType": [[49, 1, 1, "", "storage_type"], [49, 1, 1, "", "usage"]], "nodriver.cdp.system_info": [[50, 0, 1, "", "GPUDevice"], [50, 0, 1, "", "GPUInfo"], [50, 0, 1, "", "ImageDecodeAcceleratorCapability"], [50, 0, 1, "", "ImageType"], [50, 0, 1, "", "ProcessInfo"], [50, 0, 1, "", "Size"], [50, 0, 1, "", "SubsamplingFormat"], [50, 0, 1, "", "VideoDecodeAcceleratorCapability"], [50, 0, 1, "", "VideoEncodeAcceleratorCapability"], [50, 5, 1, "", "get_feature_state"], [50, 5, 1, "", "get_info"], [50, 5, 1, "", "get_process_info"]], "nodriver.cdp.system_info.GPUDevice": [[50, 1, 1, "", "device_id"], [50, 1, 1, "", "device_string"], [50, 1, 1, "", "driver_vendor"], [50, 1, 1, "", "driver_version"], [50, 1, 1, "", "revision"], [50, 1, 1, "", "sub_sys_id"], [50, 1, 1, "", "vendor_id"], [50, 1, 1, "", "vendor_string"]], "nodriver.cdp.system_info.GPUInfo": [[50, 1, 1, "", "aux_attributes"], [50, 1, 1, "", "devices"], [50, 1, 1, "", "driver_bug_workarounds"], [50, 1, 1, "", "feature_status"], [50, 1, 1, "", "image_decoding"], [50, 1, 1, "", "video_decoding"], [50, 1, 1, "", "video_encoding"]], "nodriver.cdp.system_info.ImageDecodeAcceleratorCapability": [[50, 1, 1, "", "image_type"], [50, 1, 1, "", "max_dimensions"], [50, 1, 1, "", "min_dimensions"], [50, 1, 1, "", "subsamplings"]], "nodriver.cdp.system_info.ImageType": [[50, 1, 1, "", "JPEG"], [50, 1, 1, "", "UNKNOWN"], [50, 1, 1, "", "WEBP"]], "nodriver.cdp.system_info.ProcessInfo": [[50, 1, 1, "", "cpu_time"], [50, 1, 1, "", "id_"], [50, 1, 1, "", "type_"]], "nodriver.cdp.system_info.Size": [[50, 1, 1, "", "height"], [50, 1, 1, "", "width"]], "nodriver.cdp.system_info.SubsamplingFormat": [[50, 1, 1, "", "YUV420"], [50, 1, 1, "", "YUV422"], [50, 1, 1, "", "YUV444"]], "nodriver.cdp.system_info.VideoDecodeAcceleratorCapability": [[50, 1, 1, "", "max_resolution"], [50, 1, 1, "", "min_resolution"], [50, 1, 1, "", "profile"]], "nodriver.cdp.system_info.VideoEncodeAcceleratorCapability": [[50, 1, 1, "", "max_framerate_denominator"], [50, 1, 1, "", "max_framerate_numerator"], [50, 1, 1, "", "max_resolution"], [50, 1, 1, "", "profile"]], "nodriver.cdp.target": [[51, 0, 1, "", "AttachedToTarget"], [51, 0, 1, "", "DetachedFromTarget"], [51, 0, 1, "", "FilterEntry"], [51, 0, 1, "", "ReceivedMessageFromTarget"], [51, 0, 1, "", "RemoteLocation"], [51, 0, 1, "", "SessionID"], [51, 0, 1, "", "TargetCrashed"], [51, 0, 1, "", "TargetCreated"], [51, 0, 1, "", "TargetDestroyed"], [51, 0, 1, "", "TargetFilter"], [51, 0, 1, "", "TargetID"], [51, 0, 1, "", "TargetInfo"], [51, 0, 1, "", "TargetInfoChanged"], [51, 5, 1, "", "activate_target"], [51, 5, 1, "", "attach_to_browser_target"], [51, 5, 1, "", "attach_to_target"], [51, 5, 1, "", "auto_attach_related"], [51, 5, 1, "", "close_target"], [51, 5, 1, "", "create_browser_context"], [51, 5, 1, "", "create_target"], [51, 5, 1, "", "detach_from_target"], [51, 5, 1, "", "dispose_browser_context"], [51, 5, 1, "", "expose_dev_tools_protocol"], [51, 5, 1, "", "get_browser_contexts"], [51, 5, 1, "", "get_target_info"], [51, 5, 1, "", "get_targets"], [51, 5, 1, "", "send_message_to_target"], [51, 5, 1, "", "set_auto_attach"], [51, 5, 1, "", "set_discover_targets"], [51, 5, 1, "", "set_remote_locations"]], "nodriver.cdp.target.AttachedToTarget": [[51, 1, 1, "", "session_id"], [51, 1, 1, "", "target_info"], [51, 1, 1, "", "waiting_for_debugger"]], "nodriver.cdp.target.DetachedFromTarget": [[51, 1, 1, "", "session_id"], [51, 1, 1, "", "target_id"]], "nodriver.cdp.target.FilterEntry": [[51, 1, 1, "", "exclude"], [51, 1, 1, "", "type_"]], "nodriver.cdp.target.ReceivedMessageFromTarget": [[51, 1, 1, "", "message"], [51, 1, 1, "", "session_id"], [51, 1, 1, "", "target_id"]], "nodriver.cdp.target.RemoteLocation": [[51, 1, 1, "", "host"], [51, 1, 1, "", "port"]], "nodriver.cdp.target.TargetCrashed": [[51, 1, 1, "", "error_code"], [51, 1, 1, "", "status"], [51, 1, 1, "", "target_id"]], "nodriver.cdp.target.TargetCreated": [[51, 1, 1, "", "target_info"]], "nodriver.cdp.target.TargetDestroyed": [[51, 1, 1, "", "target_id"]], "nodriver.cdp.target.TargetInfo": [[51, 1, 1, "", "attached"], [51, 1, 1, "", "browser_context_id"], [51, 1, 1, "", "can_access_opener"], [51, 1, 1, "", "opener_frame_id"], [51, 1, 1, "", "opener_id"], [51, 1, 1, "", "subtype"], [51, 1, 1, "", "target_id"], [51, 1, 1, "", "title"], [51, 1, 1, "", "type_"], [51, 1, 1, "", "url"]], "nodriver.cdp.target.TargetInfoChanged": [[51, 1, 1, "", "target_info"]], "nodriver.cdp.tethering": [[52, 0, 1, "", "Accepted"], [52, 5, 1, "", "bind"], [52, 5, 1, "", "unbind"]], "nodriver.cdp.tethering.Accepted": [[52, 1, 1, "", "connection_id"], [52, 1, 1, "", "port"]], "nodriver.cdp.tracing": [[53, 0, 1, "", "BufferUsage"], [53, 0, 1, "", "DataCollected"], [53, 0, 1, "", "MemoryDumpConfig"], [53, 0, 1, "", "MemoryDumpLevelOfDetail"], [53, 0, 1, "", "StreamCompression"], [53, 0, 1, "", "StreamFormat"], [53, 0, 1, "", "TraceConfig"], [53, 0, 1, "", "TracingBackend"], [53, 0, 1, "", "TracingComplete"], [53, 5, 1, "", "end"], [53, 5, 1, "", "get_categories"], [53, 5, 1, "", "record_clock_sync_marker"], [53, 5, 1, "", "request_memory_dump"], [53, 5, 1, "", "start"]], "nodriver.cdp.tracing.BufferUsage": [[53, 1, 1, "", "event_count"], [53, 1, 1, "", "percent_full"], [53, 1, 1, "", "value"]], "nodriver.cdp.tracing.DataCollected": [[53, 1, 1, "", "value"]], "nodriver.cdp.tracing.MemoryDumpLevelOfDetail": [[53, 1, 1, "", "BACKGROUND"], [53, 1, 1, "", "DETAILED"], [53, 1, 1, "", "LIGHT"]], "nodriver.cdp.tracing.StreamCompression": [[53, 1, 1, "", "GZIP"], [53, 1, 1, "", "NONE"]], "nodriver.cdp.tracing.StreamFormat": [[53, 1, 1, "", "JSON"], [53, 1, 1, "", "PROTO"]], "nodriver.cdp.tracing.TraceConfig": [[53, 1, 1, "", "enable_argument_filter"], [53, 1, 1, "", "enable_sampling"], [53, 1, 1, "", "enable_systrace"], [53, 1, 1, "", "excluded_categories"], [53, 1, 1, "", "included_categories"], [53, 1, 1, "", "memory_dump_config"], [53, 1, 1, "", "record_mode"], [53, 1, 1, "", "synthetic_delays"], [53, 1, 1, "", "trace_buffer_size_in_kb"]], "nodriver.cdp.tracing.TracingBackend": [[53, 1, 1, "", "AUTO"], [53, 1, 1, "", "CHROME"], [53, 1, 1, "", "SYSTEM"]], "nodriver.cdp.tracing.TracingComplete": [[53, 1, 1, "", "data_loss_occurred"], [53, 1, 1, "", "stream"], [53, 1, 1, "", "stream_compression"], [53, 1, 1, "", "trace_format"]], "nodriver.cdp.web_audio": [[54, 0, 1, "", "AudioListener"], [54, 0, 1, "", "AudioListenerCreated"], [54, 0, 1, "", "AudioListenerWillBeDestroyed"], [54, 0, 1, "", "AudioNode"], [54, 0, 1, "", "AudioNodeCreated"], [54, 0, 1, "", "AudioNodeWillBeDestroyed"], [54, 0, 1, "", "AudioParam"], [54, 0, 1, "", "AudioParamCreated"], [54, 0, 1, "", "AudioParamWillBeDestroyed"], [54, 0, 1, "", "AutomationRate"], [54, 0, 1, "", "BaseAudioContext"], [54, 0, 1, "", "ChannelCountMode"], [54, 0, 1, "", "ChannelInterpretation"], [54, 0, 1, "", "ContextChanged"], [54, 0, 1, "", "ContextCreated"], [54, 0, 1, "", "ContextRealtimeData"], [54, 0, 1, "", "ContextState"], [54, 0, 1, "", "ContextType"], [54, 0, 1, "", "ContextWillBeDestroyed"], [54, 0, 1, "", "GraphObjectId"], [54, 0, 1, "", "NodeParamConnected"], [54, 0, 1, "", "NodeParamDisconnected"], [54, 0, 1, "", "NodeType"], [54, 0, 1, "", "NodesConnected"], [54, 0, 1, "", "NodesDisconnected"], [54, 0, 1, "", "ParamType"], [54, 5, 1, "", "disable"], [54, 5, 1, "", "enable"], [54, 5, 1, "", "get_realtime_data"]], "nodriver.cdp.web_audio.AudioListener": [[54, 1, 1, "", "context_id"], [54, 1, 1, "", "listener_id"]], "nodriver.cdp.web_audio.AudioListenerCreated": [[54, 1, 1, "", "listener"]], "nodriver.cdp.web_audio.AudioListenerWillBeDestroyed": [[54, 1, 1, "", "context_id"], [54, 1, 1, "", "listener_id"]], "nodriver.cdp.web_audio.AudioNode": [[54, 1, 1, "", "channel_count"], [54, 1, 1, "", "channel_count_mode"], [54, 1, 1, "", "channel_interpretation"], [54, 1, 1, "", "context_id"], [54, 1, 1, "", "node_id"], [54, 1, 1, "", "node_type"], [54, 1, 1, "", "number_of_inputs"], [54, 1, 1, "", "number_of_outputs"]], "nodriver.cdp.web_audio.AudioNodeCreated": [[54, 1, 1, "", "node"]], "nodriver.cdp.web_audio.AudioNodeWillBeDestroyed": [[54, 1, 1, "", "context_id"], [54, 1, 1, "", "node_id"]], "nodriver.cdp.web_audio.AudioParam": [[54, 1, 1, "", "context_id"], [54, 1, 1, "", "default_value"], [54, 1, 1, "", "max_value"], [54, 1, 1, "", "min_value"], [54, 1, 1, "", "node_id"], [54, 1, 1, "", "param_id"], [54, 1, 1, "", "param_type"], [54, 1, 1, "", "rate"]], "nodriver.cdp.web_audio.AudioParamCreated": [[54, 1, 1, "", "param"]], "nodriver.cdp.web_audio.AudioParamWillBeDestroyed": [[54, 1, 1, "", "context_id"], [54, 1, 1, "", "node_id"], [54, 1, 1, "", "param_id"]], "nodriver.cdp.web_audio.AutomationRate": [[54, 1, 1, "", "A_RATE"], [54, 1, 1, "", "K_RATE"]], "nodriver.cdp.web_audio.BaseAudioContext": [[54, 1, 1, "", "callback_buffer_size"], [54, 1, 1, "", "context_id"], [54, 1, 1, "", "context_state"], [54, 1, 1, "", "context_type"], [54, 1, 1, "", "max_output_channel_count"], [54, 1, 1, "", "realtime_data"], [54, 1, 1, "", "sample_rate"]], "nodriver.cdp.web_audio.ChannelCountMode": [[54, 1, 1, "", "CLAMPED_MAX"], [54, 1, 1, "", "EXPLICIT"], [54, 1, 1, "", "MAX_"]], "nodriver.cdp.web_audio.ChannelInterpretation": [[54, 1, 1, "", "DISCRETE"], [54, 1, 1, "", "SPEAKERS"]], "nodriver.cdp.web_audio.ContextChanged": [[54, 1, 1, "", "context"]], "nodriver.cdp.web_audio.ContextCreated": [[54, 1, 1, "", "context"]], "nodriver.cdp.web_audio.ContextRealtimeData": [[54, 1, 1, "", "callback_interval_mean"], [54, 1, 1, "", "callback_interval_variance"], [54, 1, 1, "", "current_time"], [54, 1, 1, "", "render_capacity"]], "nodriver.cdp.web_audio.ContextState": [[54, 1, 1, "", "CLOSED"], [54, 1, 1, "", "INTERRUPTED"], [54, 1, 1, "", "RUNNING"], [54, 1, 1, "", "SUSPENDED"]], "nodriver.cdp.web_audio.ContextType": [[54, 1, 1, "", "OFFLINE"], [54, 1, 1, "", "REALTIME"]], "nodriver.cdp.web_audio.ContextWillBeDestroyed": [[54, 1, 1, "", "context_id"]], "nodriver.cdp.web_audio.NodeParamConnected": [[54, 1, 1, "", "context_id"], [54, 1, 1, "", "destination_id"], [54, 1, 1, "", "source_id"], [54, 1, 1, "", "source_output_index"]], "nodriver.cdp.web_audio.NodeParamDisconnected": [[54, 1, 1, "", "context_id"], [54, 1, 1, "", "destination_id"], [54, 1, 1, "", "source_id"], [54, 1, 1, "", "source_output_index"]], "nodriver.cdp.web_audio.NodesConnected": [[54, 1, 1, "", "context_id"], [54, 1, 1, "", "destination_id"], [54, 1, 1, "", "destination_input_index"], [54, 1, 1, "", "source_id"], [54, 1, 1, "", "source_output_index"]], "nodriver.cdp.web_audio.NodesDisconnected": [[54, 1, 1, "", "context_id"], [54, 1, 1, "", "destination_id"], [54, 1, 1, "", "destination_input_index"], [54, 1, 1, "", "source_id"], [54, 1, 1, "", "source_output_index"]], "nodriver.cdp.web_authn": [[55, 0, 1, "", "AuthenticatorId"], [55, 0, 1, "", "AuthenticatorProtocol"], [55, 0, 1, "", "AuthenticatorTransport"], [55, 0, 1, "", "Credential"], [55, 0, 1, "", "CredentialAdded"], [55, 0, 1, "", "CredentialAsserted"], [55, 0, 1, "", "CredentialDeleted"], [55, 0, 1, "", "CredentialUpdated"], [55, 0, 1, "", "Ctap2Version"], [55, 0, 1, "", "VirtualAuthenticatorOptions"], [55, 5, 1, "", "add_credential"], [55, 5, 1, "", "add_virtual_authenticator"], [55, 5, 1, "", "clear_credentials"], [55, 5, 1, "", "disable"], [55, 5, 1, "", "enable"], [55, 5, 1, "", "get_credential"], [55, 5, 1, "", "get_credentials"], [55, 5, 1, "", "remove_credential"], [55, 5, 1, "", "remove_virtual_authenticator"], [55, 5, 1, "", "set_automatic_presence_simulation"], [55, 5, 1, "", "set_credential_properties"], [55, 5, 1, "", "set_response_override_bits"], [55, 5, 1, "", "set_user_verified"]], "nodriver.cdp.web_authn.AuthenticatorProtocol": [[55, 1, 1, "", "CTAP2"], [55, 1, 1, "", "U2F"]], "nodriver.cdp.web_authn.AuthenticatorTransport": [[55, 1, 1, "", "BLE"], [55, 1, 1, "", "CABLE"], [55, 1, 1, "", "INTERNAL"], [55, 1, 1, "", "NFC"], [55, 1, 1, "", "USB"]], "nodriver.cdp.web_authn.Credential": [[55, 1, 1, "", "backup_eligibility"], [55, 1, 1, "", "backup_state"], [55, 1, 1, "", "credential_id"], [55, 1, 1, "", "is_resident_credential"], [55, 1, 1, "", "large_blob"], [55, 1, 1, "", "private_key"], [55, 1, 1, "", "rp_id"], [55, 1, 1, "", "sign_count"], [55, 1, 1, "", "user_display_name"], [55, 1, 1, "", "user_handle"], [55, 1, 1, "", "user_name"]], "nodriver.cdp.web_authn.CredentialAdded": [[55, 1, 1, "", "authenticator_id"], [55, 1, 1, "", "credential"]], "nodriver.cdp.web_authn.CredentialAsserted": [[55, 1, 1, "", "authenticator_id"], [55, 1, 1, "", "credential"]], "nodriver.cdp.web_authn.CredentialDeleted": [[55, 1, 1, "", "authenticator_id"], [55, 1, 1, "", "credential_id"]], "nodriver.cdp.web_authn.CredentialUpdated": [[55, 1, 1, "", "authenticator_id"], [55, 1, 1, "", "credential"]], "nodriver.cdp.web_authn.Ctap2Version": [[55, 1, 1, "", "CTAP2_0"], [55, 1, 1, "", "CTAP2_1"]], "nodriver.cdp.web_authn.VirtualAuthenticatorOptions": [[55, 1, 1, "", "automatic_presence_simulation"], [55, 1, 1, "", "ctap2_version"], [55, 1, 1, "", "default_backup_eligibility"], [55, 1, 1, "", "default_backup_state"], [55, 1, 1, "", "has_cred_blob"], [55, 1, 1, "", "has_large_blob"], [55, 1, 1, "", "has_min_pin_length"], [55, 1, 1, "", "has_prf"], [55, 1, 1, "", "has_resident_key"], [55, 1, 1, "", "has_user_verification"], [55, 1, 1, "", "is_user_verified"], [55, 1, 1, "", "protocol"], [55, 1, 1, "", "transport"]], "nodriver.core": [[58, 4, 0, "-", "_contradict"]], "nodriver.core._contradict": [[58, 0, 1, "id0", "ContraDict"], [58, 5, 1, "", "cdict"]], "nodriver.core._contradict.ContraDict": [[58, 3, 1, "id1", "clear"], [58, 3, 1, "id2", "copy"], [58, 3, 1, "id3", "fromkeys"], [58, 3, 1, "id4", "get"], [58, 3, 1, "id5", "items"], [58, 3, 1, "id6", "keys"], [58, 3, 1, "id7", "pop"], [58, 3, 1, "id8", "popitem"], [58, 3, 1, "id9", "setdefault"], [58, 3, 1, "id10", "update"], [58, 3, 1, "id11", "values"]]}, "objtypes": {"0": "py:class", "1": "py:attribute", "2": "py:property", "3": "py:method", "4": "py:module", "5": "py:function"}, "objnames": {"0": ["py", "class", "Python class"], "1": ["py", "attribute", "Python attribute"], "2": ["py", "property", "Python property"], "3": ["py", "method", "Python method"], "4": ["py", "module", "Python module"], "5": ["py", "function", "Python function"]}, "titleterms": {"nodriv": [0, 61], "some": [0, 59, 61], "featur": [0, 61], "quick": 0, "start": [0, 60], "main": 0, "object": [0, 1], "cdp": [0, 1, 59], "access": 2, "type": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55], "command": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 59], "event": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55], "anim": 3, "audit": 4, "autofil": 5, "backgroundservic": 6, "browser": [8, 56], "cachestorag": 9, "cast": 10, "consol": 11, "css": 12, "databas": 13, "debugg": 14, "deviceaccess": 15, "deviceorient": 16, "dom": 17, "domdebugg": 18, "domsnapshot": 19, "domstorag": 20, "emul": 21, "eventbreakpoint": 22, "extens": 23, "fedcm": 24, "fetch": 25, "headlessexperiment": 27, "heapprofil": 28, "indexeddb": 29, "input": 30, "inspector": 31, "io": 32, "layertre": 33, "log": 34, "media": 35, "memori": 36, "network": 37, "overlai": 38, "page": 39, "perform": 40, "performancetimelin": 41, "preload": 42, "profil": 43, "pwa": 44, "runtim": 45, "schema": 46, "secur": 47, "servicework": 48, "storag": 49, "systeminfo": 50, "target": 51, "tether": 52, "trace": 53, "webaudio": 54, "webauthn": 55, "class": [56, 57, 58, 59], "cooki": 56, "element": 57, "other": [58, 59], "helper": 58, "config": 58, "contradict": 58, "function": 58, "tab": 59, "custom": [59, 60], "us": 59, "often": 59, "need": 59, "simpli": 59, "requir": 59, "method": 59, "find": 59, "text": 59, "best_match": 59, "true": 59, "select": 59, "selector": 59, "select_al": 59, "await": 59, "send": 59, "quickstart": 60, "guid": 60, "instal": [60, 61], "usag": [60, 61], "exampl": [60, 61], "more": 60, "complet": 60, "option": 60, "altern": 60, "titl": 62, "section": 62, "subsect": 62, "paragraph": 62, "tabl": 62, "click": [0, 61], "here": [0, 61], "FOR": [0, 61], "doc": [0, 61], "bluetoothemul": 7, "filesystem": 26}, "envversion": {"sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.viewcode": 1, "sphinx.ext.intersphinx": 1, "sphinx": 60}, "alltitles": {"Quickstart guide": [[60, "quickstart-guide"]], "Installation": [[60, "installation"], [61, "installation"]], "usage example": [[60, "usage-example"], [61, "usage-example"]], "More complete example": [[60, "more-complete-example"]], "Custom starting options": [[60, "custom-starting-options"]], "Alternative custom options": [[60, "alternative-custom-options"]], "TITLE": [[62, "title"]], "SECTION": [[62, "section"]], "SUBSECTION": [[62, "subsection"]], "PARAGRAPH": [[62, "paragraph"]], "TABLES": [[62, "tables"]], "NODRIVER": [[0, "nodriver"], [61, "nodriver"]], "CLICK HERE FOR DOCS": [[0, "id1"], [61, "id1"]], "Some features": [[0, "some-features"], [61, "some-features"]], "Quick start": [[0, "quick-start"]], "Main objects": [[0, "main-objects"]], "CDP object": [[0, "cdp-object"], [1, "cdp-object"]], "Accessibility": [[2, "accessibility"]], "Types": [[2, "types"], [3, "types"], [4, "types"], [5, "types"], [6, "types"], [7, "types"], [8, "types"], [9, "types"], [10, "types"], [11, "types"], [12, "types"], [13, "types"], [14, "types"], [15, "types"], [16, "types"], [17, "types"], [18, "types"], [19, "types"], [20, "types"], [21, "types"], [22, "types"], [23, "types"], [24, "types"], [25, "types"], [26, "types"], [27, "types"], [28, "types"], [29, "types"], [30, "types"], [31, "types"], [32, "types"], [33, "types"], [34, "types"], [35, "types"], [36, "types"], [37, "types"], [38, "types"], [39, "types"], [40, "types"], [41, "types"], [42, "types"], [43, "types"], [44, "types"], [45, "types"], [46, "types"], [47, "types"], [48, "types"], [49, "types"], [50, "types"], [51, "types"], [52, "types"], [53, "types"], [54, "types"], [55, "types"]], "Commands": [[2, "commands"], [3, "commands"], [4, "commands"], [5, "commands"], [6, "commands"], [7, "commands"], [8, "commands"], [9, "commands"], [10, "commands"], [11, "commands"], [12, "commands"], [13, "commands"], [14, "commands"], [15, "commands"], [16, "commands"], [17, "commands"], [18, "commands"], [19, "commands"], [20, "commands"], [21, "commands"], [22, "commands"], [23, "commands"], [24, "commands"], [25, "commands"], [26, "commands"], [27, "commands"], [28, "commands"], [29, "commands"], [30, "commands"], [31, "commands"], [32, "commands"], [33, "commands"], [34, "commands"], [35, "commands"], [36, "commands"], [37, "commands"], [38, "commands"], [39, "commands"], [40, "commands"], [41, "commands"], [42, "commands"], [43, "commands"], [44, "commands"], [45, "commands"], [46, "commands"], [47, "commands"], [48, "commands"], [49, "commands"], [50, "commands"], [51, "commands"], [52, "commands"], [53, "commands"], [54, "commands"], [55, "commands"]], "Events": [[2, "events"], [3, "events"], [4, "events"], [5, "events"], [6, "events"], [7, "events"], [8, "events"], [9, "events"], [10, "events"], [11, "events"], [12, "events"], [13, "events"], [14, "events"], [15, "events"], [16, "events"], [17, "events"], [18, "events"], [19, "events"], [20, "events"], [21, "events"], [22, "events"], [23, "events"], [24, "events"], [25, "events"], [26, "events"], [27, "events"], [28, "events"], [29, "events"], [30, "events"], [31, "events"], [32, "events"], [33, "events"], [34, "events"], [35, "events"], [36, "events"], [37, "events"], [38, "events"], [39, "events"], [40, "events"], [41, "events"], [42, "events"], [43, "events"], [44, "events"], [45, "events"], [46, "events"], [47, "events"], [48, "events"], [49, "events"], [50, "events"], [51, "events"], [52, "events"], [53, "events"], [54, "events"], [55, "events"]], "Animation": [[3, "animation"]], "Audits": [[4, "audits"]], "Autofill": [[5, "autofill"]], "BackgroundService": [[6, "backgroundservice"]], "BluetoothEmulation": [[7, "bluetoothemulation"]], "Browser": [[8, "browser"]], "CacheStorage": [[9, "cachestorage"]], "Cast": [[10, "cast"]], "Console": [[11, "console"]], "CSS": [[12, "css"]], "Database": [[13, "database"]], "Debugger": [[14, "debugger"]], "DeviceAccess": [[15, "deviceaccess"]], "DeviceOrientation": [[16, "deviceorientation"]], "DOM": [[17, "dom"]], "DOMDebugger": [[18, "domdebugger"]], "DOMSnapshot": [[19, "domsnapshot"]], "DOMStorage": [[20, "domstorage"]], "Emulation": [[21, "emulation"]], "EventBreakpoints": [[22, "eventbreakpoints"]], "Extensions": [[23, "extensions"]], "FedCm": [[24, "fedcm"]], "Fetch": [[25, "fetch"]], "FileSystem": [[26, "filesystem"]], "HeadlessExperimental": [[27, "headlessexperimental"]], "HeapProfiler": [[28, "heapprofiler"]], "IndexedDB": [[29, "indexeddb"]], "Input": [[30, "module-nodriver.cdp.input_"]], "Inspector": [[31, "inspector"]], "IO": [[32, "io"]], "LayerTree": [[33, "layertree"]], "Log": [[34, "log"]], "Media": [[35, "media"]], "Memory": [[36, "memory"]], "Network": [[37, "network"]], "Overlay": [[38, "overlay"]], "Page": [[39, "page"]], "Performance": [[40, "module-nodriver.cdp.performance"]], "PerformanceTimeline": [[41, "performancetimeline"]], "Preload": [[42, "preload"]], "Profiler": [[43, "module-nodriver.cdp.profiler"]], "PWA": [[44, "pwa"]], "Runtime": [[45, "runtime"]], "Schema": [[46, "schema"]], "Security": [[47, "security"]], "ServiceWorker": [[48, "serviceworker"]], "Storage": [[49, "storage"]], "SystemInfo": [[50, "systeminfo"]], "Target": [[51, "target"]], "Tethering": [[52, "tethering"]], "Tracing": [[53, "module-nodriver.cdp.tracing"]], "WebAudio": [[54, "webaudio"]], "WebAuthn": [[55, "webauthn"]], "Browser class": [[56, "browser-class"], [56, "id1"]], "cookies": [[56, "cookies"]], "Element class": [[57, "element-class"]], "Other classes and Helper classes": [[58, "other-classes-and-helper-classes"]], "Config class": [[58, "config-class"]], "ContraDict class": [[58, "contradict-class"]], "Helper functions": [[58, "module-nodriver.core._contradict"]], "Tab class": [[59, "tab-class"]], "Custom CDP commands": [[59, "custom-cdp-commands"]], "some useful, often needed and simply required methods": [[59, "some-useful-often-needed-and-simply-required-methods"]], "find() | find(text)": [[59, "find-find-text"]], "find() | find(text, best_match=True) or find(text, True)": [[59, "find-find-text-best-match-true-or-find-text-true"]], "select() | select(selector)": [[59, "select-select-selector"]], "select_all() | select_all(selector)": [[59, "select-all-select-all-selector"]], "await Tab": [[59, "await-tab"]], "Using other and custom CDP commands": [[59, "using-other-and-custom-cdp-commands"]], "send()": [[59, "send"]]}, "indexentries": {"actions (axpropertyname attribute)": [[2, "nodriver.cdp.accessibility.AXPropertyName.ACTIONS"]], "activedescendant (axpropertyname attribute)": [[2, "nodriver.cdp.accessibility.AXPropertyName.ACTIVEDESCENDANT"]], "atomic (axpropertyname attribute)": [[2, "nodriver.cdp.accessibility.AXPropertyName.ATOMIC"]], "attribute (axvaluesourcetype attribute)": [[2, "nodriver.cdp.accessibility.AXValueSourceType.ATTRIBUTE"]], "autocomplete (axpropertyname attribute)": [[2, "nodriver.cdp.accessibility.AXPropertyName.AUTOCOMPLETE"]], "axnode (class in nodriver.cdp.accessibility)": [[2, "nodriver.cdp.accessibility.AXNode"]], "axnodeid (class in nodriver.cdp.accessibility)": [[2, "nodriver.cdp.accessibility.AXNodeId"]], "axproperty (class in nodriver.cdp.accessibility)": [[2, "nodriver.cdp.accessibility.AXProperty"]], "axpropertyname (class in nodriver.cdp.accessibility)": [[2, "nodriver.cdp.accessibility.AXPropertyName"]], "axrelatednode (class in nodriver.cdp.accessibility)": [[2, "nodriver.cdp.accessibility.AXRelatedNode"]], "axvalue (class in nodriver.cdp.accessibility)": [[2, "nodriver.cdp.accessibility.AXValue"]], "axvaluenativesourcetype (class in nodriver.cdp.accessibility)": [[2, "nodriver.cdp.accessibility.AXValueNativeSourceType"]], "axvaluesource (class in nodriver.cdp.accessibility)": [[2, "nodriver.cdp.accessibility.AXValueSource"]], "axvaluesourcetype (class in nodriver.cdp.accessibility)": [[2, "nodriver.cdp.accessibility.AXValueSourceType"]], "axvaluetype (class in nodriver.cdp.accessibility)": [[2, "nodriver.cdp.accessibility.AXValueType"]], "boolean (axvaluetype attribute)": [[2, "nodriver.cdp.accessibility.AXValueType.BOOLEAN"]], "boolean_or_undefined (axvaluetype attribute)": [[2, "nodriver.cdp.accessibility.AXValueType.BOOLEAN_OR_UNDEFINED"]], "busy (axpropertyname attribute)": [[2, "nodriver.cdp.accessibility.AXPropertyName.BUSY"]], "checked (axpropertyname attribute)": [[2, "nodriver.cdp.accessibility.AXPropertyName.CHECKED"]], "computed_string (axvaluetype attribute)": [[2, "nodriver.cdp.accessibility.AXValueType.COMPUTED_STRING"]], "contents (axvaluesourcetype attribute)": [[2, "nodriver.cdp.accessibility.AXValueSourceType.CONTENTS"]], "controls (axpropertyname attribute)": [[2, "nodriver.cdp.accessibility.AXPropertyName.CONTROLS"]], "describedby (axpropertyname attribute)": [[2, "nodriver.cdp.accessibility.AXPropertyName.DESCRIBEDBY"]], "description (axvaluenativesourcetype attribute)": [[2, "nodriver.cdp.accessibility.AXValueNativeSourceType.DESCRIPTION"]], "details (axpropertyname attribute)": [[2, "nodriver.cdp.accessibility.AXPropertyName.DETAILS"]], "disabled (axpropertyname attribute)": [[2, "nodriver.cdp.accessibility.AXPropertyName.DISABLED"]], "dom_relation (axvaluetype attribute)": [[2, "nodriver.cdp.accessibility.AXValueType.DOM_RELATION"]], "editable (axpropertyname attribute)": [[2, "nodriver.cdp.accessibility.AXPropertyName.EDITABLE"]], "errormessage (axpropertyname attribute)": [[2, "nodriver.cdp.accessibility.AXPropertyName.ERRORMESSAGE"]], "expanded (axpropertyname attribute)": [[2, "nodriver.cdp.accessibility.AXPropertyName.EXPANDED"]], "figcaption (axvaluenativesourcetype attribute)": [[2, "nodriver.cdp.accessibility.AXValueNativeSourceType.FIGCAPTION"]], "flowto (axpropertyname attribute)": [[2, "nodriver.cdp.accessibility.AXPropertyName.FLOWTO"]], "focusable (axpropertyname attribute)": [[2, "nodriver.cdp.accessibility.AXPropertyName.FOCUSABLE"]], "focused (axpropertyname attribute)": [[2, "nodriver.cdp.accessibility.AXPropertyName.FOCUSED"]], "has_popup (axpropertyname attribute)": [[2, "nodriver.cdp.accessibility.AXPropertyName.HAS_POPUP"]], "hidden (axpropertyname attribute)": [[2, "nodriver.cdp.accessibility.AXPropertyName.HIDDEN"]], "hidden_root (axpropertyname attribute)": [[2, "nodriver.cdp.accessibility.AXPropertyName.HIDDEN_ROOT"]], "idref (axvaluetype attribute)": [[2, "nodriver.cdp.accessibility.AXValueType.IDREF"]], "idref_list (axvaluetype attribute)": [[2, "nodriver.cdp.accessibility.AXValueType.IDREF_LIST"]], "implicit (axvaluesourcetype attribute)": [[2, "nodriver.cdp.accessibility.AXValueSourceType.IMPLICIT"]], "integer (axvaluetype attribute)": [[2, "nodriver.cdp.accessibility.AXValueType.INTEGER"]], "internal_role (axvaluetype attribute)": [[2, "nodriver.cdp.accessibility.AXValueType.INTERNAL_ROLE"]], "invalid (axpropertyname attribute)": [[2, "nodriver.cdp.accessibility.AXPropertyName.INVALID"]], "keyshortcuts (axpropertyname attribute)": [[2, "nodriver.cdp.accessibility.AXPropertyName.KEYSHORTCUTS"]], "label (axvaluenativesourcetype attribute)": [[2, "nodriver.cdp.accessibility.AXValueNativeSourceType.LABEL"]], "labelfor (axvaluenativesourcetype attribute)": [[2, "nodriver.cdp.accessibility.AXValueNativeSourceType.LABELFOR"]], "labelledby (axpropertyname attribute)": [[2, "nodriver.cdp.accessibility.AXPropertyName.LABELLEDBY"]], "labelwrapped (axvaluenativesourcetype attribute)": [[2, "nodriver.cdp.accessibility.AXValueNativeSourceType.LABELWRAPPED"]], "legend (axvaluenativesourcetype attribute)": [[2, "nodriver.cdp.accessibility.AXValueNativeSourceType.LEGEND"]], "level (axpropertyname attribute)": [[2, "nodriver.cdp.accessibility.AXPropertyName.LEVEL"]], "live (axpropertyname attribute)": [[2, "nodriver.cdp.accessibility.AXPropertyName.LIVE"]], "loadcomplete (class in nodriver.cdp.accessibility)": [[2, "nodriver.cdp.accessibility.LoadComplete"]], "modal (axpropertyname attribute)": [[2, "nodriver.cdp.accessibility.AXPropertyName.MODAL"]], "multiline (axpropertyname attribute)": [[2, "nodriver.cdp.accessibility.AXPropertyName.MULTILINE"]], "multiselectable (axpropertyname attribute)": [[2, "nodriver.cdp.accessibility.AXPropertyName.MULTISELECTABLE"]], "node (axvaluetype attribute)": [[2, "nodriver.cdp.accessibility.AXValueType.NODE"]], "node_list (axvaluetype attribute)": [[2, "nodriver.cdp.accessibility.AXValueType.NODE_LIST"]], "number (axvaluetype attribute)": [[2, "nodriver.cdp.accessibility.AXValueType.NUMBER"]], "nodesupdated (class in nodriver.cdp.accessibility)": [[2, "nodriver.cdp.accessibility.NodesUpdated"]], "orientation (axpropertyname attribute)": [[2, "nodriver.cdp.accessibility.AXPropertyName.ORIENTATION"]], "other (axvaluenativesourcetype attribute)": [[2, "nodriver.cdp.accessibility.AXValueNativeSourceType.OTHER"]], "owns (axpropertyname attribute)": [[2, "nodriver.cdp.accessibility.AXPropertyName.OWNS"]], "placeholder (axvaluesourcetype attribute)": [[2, "nodriver.cdp.accessibility.AXValueSourceType.PLACEHOLDER"]], "pressed (axpropertyname attribute)": [[2, "nodriver.cdp.accessibility.AXPropertyName.PRESSED"]], "readonly (axpropertyname attribute)": [[2, "nodriver.cdp.accessibility.AXPropertyName.READONLY"]], "related_element (axvaluesourcetype attribute)": [[2, "nodriver.cdp.accessibility.AXValueSourceType.RELATED_ELEMENT"]], "relevant (axpropertyname attribute)": [[2, "nodriver.cdp.accessibility.AXPropertyName.RELEVANT"]], "required (axpropertyname attribute)": [[2, "nodriver.cdp.accessibility.AXPropertyName.REQUIRED"]], "role (axvaluetype attribute)": [[2, "nodriver.cdp.accessibility.AXValueType.ROLE"]], "roledescription (axpropertyname attribute)": [[2, "nodriver.cdp.accessibility.AXPropertyName.ROLEDESCRIPTION"]], "root (axpropertyname attribute)": [[2, "nodriver.cdp.accessibility.AXPropertyName.ROOT"]], "rubyannotation (axvaluenativesourcetype attribute)": [[2, "nodriver.cdp.accessibility.AXValueNativeSourceType.RUBYANNOTATION"]], "selected (axpropertyname attribute)": [[2, "nodriver.cdp.accessibility.AXPropertyName.SELECTED"]], "settable (axpropertyname attribute)": [[2, "nodriver.cdp.accessibility.AXPropertyName.SETTABLE"]], "string (axvaluetype attribute)": [[2, "nodriver.cdp.accessibility.AXValueType.STRING"]], "style (axvaluesourcetype attribute)": [[2, "nodriver.cdp.accessibility.AXValueSourceType.STYLE"]], "tablecaption (axvaluenativesourcetype attribute)": [[2, "nodriver.cdp.accessibility.AXValueNativeSourceType.TABLECAPTION"]], "title (axvaluenativesourcetype attribute)": [[2, "nodriver.cdp.accessibility.AXValueNativeSourceType.TITLE"]], "token (axvaluetype attribute)": [[2, "nodriver.cdp.accessibility.AXValueType.TOKEN"]], "token_list (axvaluetype attribute)": [[2, "nodriver.cdp.accessibility.AXValueType.TOKEN_LIST"]], "tristate (axvaluetype attribute)": [[2, "nodriver.cdp.accessibility.AXValueType.TRISTATE"]], "url (axpropertyname attribute)": [[2, "nodriver.cdp.accessibility.AXPropertyName.URL"]], "valuemax (axpropertyname attribute)": [[2, "nodriver.cdp.accessibility.AXPropertyName.VALUEMAX"]], "valuemin (axpropertyname attribute)": [[2, "nodriver.cdp.accessibility.AXPropertyName.VALUEMIN"]], "valuetext (axpropertyname attribute)": [[2, "nodriver.cdp.accessibility.AXPropertyName.VALUETEXT"]], "value_undefined (axvaluetype attribute)": [[2, "nodriver.cdp.accessibility.AXValueType.VALUE_UNDEFINED"]], "attribute (axvaluesource attribute)": [[2, "nodriver.cdp.accessibility.AXValueSource.attribute"]], "attribute_value (axvaluesource attribute)": [[2, "nodriver.cdp.accessibility.AXValueSource.attribute_value"]], "backend_dom_node_id (axnode attribute)": [[2, "nodriver.cdp.accessibility.AXNode.backend_dom_node_id"]], "backend_dom_node_id (axrelatednode attribute)": [[2, "nodriver.cdp.accessibility.AXRelatedNode.backend_dom_node_id"]], "child_ids (axnode attribute)": [[2, "nodriver.cdp.accessibility.AXNode.child_ids"]], "chrome_role (axnode attribute)": [[2, "nodriver.cdp.accessibility.AXNode.chrome_role"]], "description (axnode attribute)": [[2, "nodriver.cdp.accessibility.AXNode.description"]], "disable() (in module nodriver.cdp.accessibility)": [[2, "nodriver.cdp.accessibility.disable"]], "enable() (in module nodriver.cdp.accessibility)": [[2, "nodriver.cdp.accessibility.enable"]], "frame_id (axnode attribute)": [[2, "nodriver.cdp.accessibility.AXNode.frame_id"]], "get_ax_node_and_ancestors() (in module nodriver.cdp.accessibility)": [[2, "nodriver.cdp.accessibility.get_ax_node_and_ancestors"]], "get_child_ax_nodes() (in module nodriver.cdp.accessibility)": [[2, "nodriver.cdp.accessibility.get_child_ax_nodes"]], "get_full_ax_tree() (in module nodriver.cdp.accessibility)": [[2, "nodriver.cdp.accessibility.get_full_ax_tree"]], "get_partial_ax_tree() (in module nodriver.cdp.accessibility)": [[2, "nodriver.cdp.accessibility.get_partial_ax_tree"]], "get_root_ax_node() (in module nodriver.cdp.accessibility)": [[2, "nodriver.cdp.accessibility.get_root_ax_node"]], "idref (axrelatednode attribute)": [[2, "nodriver.cdp.accessibility.AXRelatedNode.idref"]], "ignored (axnode attribute)": [[2, "nodriver.cdp.accessibility.AXNode.ignored"]], "ignored_reasons (axnode attribute)": [[2, "nodriver.cdp.accessibility.AXNode.ignored_reasons"]], "invalid (axvaluesource attribute)": [[2, "nodriver.cdp.accessibility.AXValueSource.invalid"]], "invalid_reason (axvaluesource attribute)": [[2, "nodriver.cdp.accessibility.AXValueSource.invalid_reason"]], "module": [[2, "module-nodriver.cdp.accessibility"], [3, "module-nodriver.cdp.animation"], [4, "module-nodriver.cdp.audits"], [5, "module-nodriver.cdp.autofill"], [6, "module-nodriver.cdp.background_service"], [7, "module-nodriver.cdp.bluetooth_emulation"], [8, "module-nodriver.cdp.browser"], [9, "module-nodriver.cdp.cache_storage"], [10, "module-nodriver.cdp.cast"], [11, "module-nodriver.cdp.console"], [12, "module-nodriver.cdp.css"], [13, "module-nodriver.cdp.database"], [14, "module-nodriver.cdp.debugger"], [15, "module-nodriver.cdp.device_access"], [16, "module-nodriver.cdp.device_orientation"], [17, "module-nodriver.cdp.dom"], [18, "module-nodriver.cdp.dom_debugger"], [19, "module-nodriver.cdp.dom_snapshot"], [20, "module-nodriver.cdp.dom_storage"], [21, "module-nodriver.cdp.emulation"], [22, "module-nodriver.cdp.event_breakpoints"], [23, "module-nodriver.cdp.extensions"], [24, "module-nodriver.cdp.fed_cm"], [25, "module-nodriver.cdp.fetch"], [26, "module-nodriver.cdp.file_system"], [27, "module-nodriver.cdp.headless_experimental"], [28, "module-nodriver.cdp.heap_profiler"], [29, "module-nodriver.cdp.indexed_db"], [30, "module-nodriver.cdp.input_"], [31, "module-nodriver.cdp.inspector"], [32, "module-nodriver.cdp.io"], [33, "module-nodriver.cdp.layer_tree"], [34, "module-nodriver.cdp.log"], [35, "module-nodriver.cdp.media"], [36, "module-nodriver.cdp.memory"], [37, "module-nodriver.cdp.network"], [38, "module-nodriver.cdp.overlay"], [39, "module-nodriver.cdp.page"], [40, "module-nodriver.cdp.performance"], [41, "module-nodriver.cdp.performance_timeline"], [42, "module-nodriver.cdp.preload"], [43, "module-nodriver.cdp.profiler"], [44, "module-nodriver.cdp.pwa"], [45, "module-nodriver.cdp.runtime"], [46, "module-nodriver.cdp.schema"], [47, "module-nodriver.cdp.security"], [48, "module-nodriver.cdp.service_worker"], [49, "module-nodriver.cdp.storage"], [50, "module-nodriver.cdp.system_info"], [51, "module-nodriver.cdp.target"], [52, "module-nodriver.cdp.tethering"], [53, "module-nodriver.cdp.tracing"], [54, "module-nodriver.cdp.web_audio"], [55, "module-nodriver.cdp.web_authn"], [58, "module-nodriver.core._contradict"]], "name (axnode attribute)": [[2, "nodriver.cdp.accessibility.AXNode.name"]], "name (axproperty attribute)": [[2, "nodriver.cdp.accessibility.AXProperty.name"]], "native_source (axvaluesource attribute)": [[2, "nodriver.cdp.accessibility.AXValueSource.native_source"]], "native_source_value (axvaluesource attribute)": [[2, "nodriver.cdp.accessibility.AXValueSource.native_source_value"]], "node_id (axnode attribute)": [[2, "nodriver.cdp.accessibility.AXNode.node_id"]], "nodes (nodesupdated attribute)": [[2, "nodriver.cdp.accessibility.NodesUpdated.nodes"]], "nodriver.cdp.accessibility": [[2, "module-nodriver.cdp.accessibility"]], "parent_id (axnode attribute)": [[2, "nodriver.cdp.accessibility.AXNode.parent_id"]], "properties (axnode attribute)": [[2, "nodriver.cdp.accessibility.AXNode.properties"]], "query_ax_tree() (in module nodriver.cdp.accessibility)": [[2, "nodriver.cdp.accessibility.query_ax_tree"]], "related_nodes (axvalue attribute)": [[2, "nodriver.cdp.accessibility.AXValue.related_nodes"]], "role (axnode attribute)": [[2, "nodriver.cdp.accessibility.AXNode.role"]], "root (loadcomplete attribute)": [[2, "nodriver.cdp.accessibility.LoadComplete.root"]], "sources (axvalue attribute)": [[2, "nodriver.cdp.accessibility.AXValue.sources"]], "superseded (axvaluesource attribute)": [[2, "nodriver.cdp.accessibility.AXValueSource.superseded"]], "text (axrelatednode attribute)": [[2, "nodriver.cdp.accessibility.AXRelatedNode.text"]], "type_ (axvalue attribute)": [[2, "nodriver.cdp.accessibility.AXValue.type_"]], "type_ (axvaluesource attribute)": [[2, "nodriver.cdp.accessibility.AXValueSource.type_"]], "value (axnode attribute)": [[2, "nodriver.cdp.accessibility.AXNode.value"]], "value (axproperty attribute)": [[2, "nodriver.cdp.accessibility.AXProperty.value"]], "value (axvalue attribute)": [[2, "nodriver.cdp.accessibility.AXValue.value"]], "value (axvaluesource attribute)": [[2, "nodriver.cdp.accessibility.AXValueSource.value"]], "animation (class in nodriver.cdp.animation)": [[3, "nodriver.cdp.animation.Animation"]], "animationcanceled (class in nodriver.cdp.animation)": [[3, "nodriver.cdp.animation.AnimationCanceled"]], "animationcreated (class in nodriver.cdp.animation)": [[3, "nodriver.cdp.animation.AnimationCreated"]], "animationeffect (class in nodriver.cdp.animation)": [[3, "nodriver.cdp.animation.AnimationEffect"]], "animationstarted (class in nodriver.cdp.animation)": [[3, "nodriver.cdp.animation.AnimationStarted"]], "animationupdated (class in nodriver.cdp.animation)": [[3, "nodriver.cdp.animation.AnimationUpdated"]], "keyframestyle (class in nodriver.cdp.animation)": [[3, "nodriver.cdp.animation.KeyframeStyle"]], "keyframesrule (class in nodriver.cdp.animation)": [[3, "nodriver.cdp.animation.KeyframesRule"]], "vieworscrolltimeline (class in nodriver.cdp.animation)": [[3, "nodriver.cdp.animation.ViewOrScrollTimeline"]], "animation (animationstarted attribute)": [[3, "nodriver.cdp.animation.AnimationStarted.animation"]], "animation (animationupdated attribute)": [[3, "nodriver.cdp.animation.AnimationUpdated.animation"]], "axis (vieworscrolltimeline attribute)": [[3, "nodriver.cdp.animation.ViewOrScrollTimeline.axis"]], "backend_node_id (animationeffect attribute)": [[3, "nodriver.cdp.animation.AnimationEffect.backend_node_id"]], "css_id (animation attribute)": [[3, "nodriver.cdp.animation.Animation.css_id"]], "current_time (animation attribute)": [[3, "nodriver.cdp.animation.Animation.current_time"]], "delay (animationeffect attribute)": [[3, "nodriver.cdp.animation.AnimationEffect.delay"]], "direction (animationeffect attribute)": [[3, "nodriver.cdp.animation.AnimationEffect.direction"]], "disable() (in module nodriver.cdp.animation)": [[3, "nodriver.cdp.animation.disable"]], "duration (animationeffect attribute)": [[3, "nodriver.cdp.animation.AnimationEffect.duration"]], "easing (animationeffect attribute)": [[3, "nodriver.cdp.animation.AnimationEffect.easing"]], "easing (keyframestyle attribute)": [[3, "nodriver.cdp.animation.KeyframeStyle.easing"]], "enable() (in module nodriver.cdp.animation)": [[3, "nodriver.cdp.animation.enable"]], "end_delay (animationeffect attribute)": [[3, "nodriver.cdp.animation.AnimationEffect.end_delay"]], "end_offset (vieworscrolltimeline attribute)": [[3, "nodriver.cdp.animation.ViewOrScrollTimeline.end_offset"]], "fill (animationeffect attribute)": [[3, "nodriver.cdp.animation.AnimationEffect.fill"]], "get_current_time() (in module nodriver.cdp.animation)": [[3, "nodriver.cdp.animation.get_current_time"]], "get_playback_rate() (in module nodriver.cdp.animation)": [[3, "nodriver.cdp.animation.get_playback_rate"]], "id_ (animation attribute)": [[3, "nodriver.cdp.animation.Animation.id_"]], "id_ (animationcanceled attribute)": [[3, "nodriver.cdp.animation.AnimationCanceled.id_"]], "id_ (animationcreated attribute)": [[3, "nodriver.cdp.animation.AnimationCreated.id_"]], "iteration_start (animationeffect attribute)": [[3, "nodriver.cdp.animation.AnimationEffect.iteration_start"]], "iterations (animationeffect attribute)": [[3, "nodriver.cdp.animation.AnimationEffect.iterations"]], "keyframes (keyframesrule attribute)": [[3, "nodriver.cdp.animation.KeyframesRule.keyframes"]], "keyframes_rule (animationeffect attribute)": [[3, "nodriver.cdp.animation.AnimationEffect.keyframes_rule"]], "name (animation attribute)": [[3, "nodriver.cdp.animation.Animation.name"]], "name (keyframesrule attribute)": [[3, "nodriver.cdp.animation.KeyframesRule.name"]], "nodriver.cdp.animation": [[3, "module-nodriver.cdp.animation"]], "offset (keyframestyle attribute)": [[3, "nodriver.cdp.animation.KeyframeStyle.offset"]], "paused_state (animation attribute)": [[3, "nodriver.cdp.animation.Animation.paused_state"]], "play_state (animation attribute)": [[3, "nodriver.cdp.animation.Animation.play_state"]], "playback_rate (animation attribute)": [[3, "nodriver.cdp.animation.Animation.playback_rate"]], "release_animations() (in module nodriver.cdp.animation)": [[3, "nodriver.cdp.animation.release_animations"]], "resolve_animation() (in module nodriver.cdp.animation)": [[3, "nodriver.cdp.animation.resolve_animation"]], "seek_animations() (in module nodriver.cdp.animation)": [[3, "nodriver.cdp.animation.seek_animations"]], "set_paused() (in module nodriver.cdp.animation)": [[3, "nodriver.cdp.animation.set_paused"]], "set_playback_rate() (in module nodriver.cdp.animation)": [[3, "nodriver.cdp.animation.set_playback_rate"]], "set_timing() (in module nodriver.cdp.animation)": [[3, "nodriver.cdp.animation.set_timing"]], "source (animation attribute)": [[3, "nodriver.cdp.animation.Animation.source"]], "source_node_id (vieworscrolltimeline attribute)": [[3, "nodriver.cdp.animation.ViewOrScrollTimeline.source_node_id"]], "start_offset (vieworscrolltimeline attribute)": [[3, "nodriver.cdp.animation.ViewOrScrollTimeline.start_offset"]], "start_time (animation attribute)": [[3, "nodriver.cdp.animation.Animation.start_time"]], "subject_node_id (vieworscrolltimeline attribute)": [[3, "nodriver.cdp.animation.ViewOrScrollTimeline.subject_node_id"]], "type_ (animation attribute)": [[3, "nodriver.cdp.animation.Animation.type_"]], "view_or_scroll_timeline (animation attribute)": [[3, "nodriver.cdp.animation.Animation.view_or_scroll_timeline"]], "accounts_http_not_found (federatedauthrequestissuereason attribute)": [[4, "nodriver.cdp.audits.FederatedAuthRequestIssueReason.ACCOUNTS_HTTP_NOT_FOUND"]], "accounts_invalid_content_type (federatedauthrequestissuereason attribute)": [[4, "nodriver.cdp.audits.FederatedAuthRequestIssueReason.ACCOUNTS_INVALID_CONTENT_TYPE"]], "accounts_invalid_response (federatedauthrequestissuereason attribute)": [[4, "nodriver.cdp.audits.FederatedAuthRequestIssueReason.ACCOUNTS_INVALID_RESPONSE"]], "accounts_list_empty (federatedauthrequestissuereason attribute)": [[4, "nodriver.cdp.audits.FederatedAuthRequestIssueReason.ACCOUNTS_LIST_EMPTY"]], "accounts_no_response (federatedauthrequestissuereason attribute)": [[4, "nodriver.cdp.audits.FederatedAuthRequestIssueReason.ACCOUNTS_NO_RESPONSE"]], "attribution_reporting_issue (inspectorissuecode attribute)": [[4, "nodriver.cdp.audits.InspectorIssueCode.ATTRIBUTION_REPORTING_ISSUE"]], "attribution_src (mixedcontentresourcetype attribute)": [[4, "nodriver.cdp.audits.MixedContentResourceType.ATTRIBUTION_SRC"]], "audio (mixedcontentresourcetype attribute)": [[4, "nodriver.cdp.audits.MixedContentResourceType.AUDIO"]], "affectedcookie (class in nodriver.cdp.audits)": [[4, "nodriver.cdp.audits.AffectedCookie"]], "affectedframe (class in nodriver.cdp.audits)": [[4, "nodriver.cdp.audits.AffectedFrame"]], "affectedrequest (class in nodriver.cdp.audits)": [[4, "nodriver.cdp.audits.AffectedRequest"]], "attributionreportingissuedetails (class in nodriver.cdp.audits)": [[4, "nodriver.cdp.audits.AttributionReportingIssueDetails"]], "attributionreportingissuetype (class in nodriver.cdp.audits)": [[4, "nodriver.cdp.audits.AttributionReportingIssueType"]], "beacon (mixedcontentresourcetype attribute)": [[4, "nodriver.cdp.audits.MixedContentResourceType.BEACON"]], "blocked_by_response_issue (inspectorissuecode attribute)": [[4, "nodriver.cdp.audits.InspectorIssueCode.BLOCKED_BY_RESPONSE_ISSUE"]], "bounce_tracking_issue (inspectorissuecode attribute)": [[4, "nodriver.cdp.audits.InspectorIssueCode.BOUNCE_TRACKING_ISSUE"]], "blockedbyresponseissuedetails (class in nodriver.cdp.audits)": [[4, "nodriver.cdp.audits.BlockedByResponseIssueDetails"]], "blockedbyresponsereason (class in nodriver.cdp.audits)": [[4, "nodriver.cdp.audits.BlockedByResponseReason"]], "bouncetrackingissuedetails (class in nodriver.cdp.audits)": [[4, "nodriver.cdp.audits.BounceTrackingIssueDetails"]], "canceled (federatedauthrequestissuereason attribute)": [[4, "nodriver.cdp.audits.FederatedAuthRequestIssueReason.CANCELED"]], "client_hint_issue (inspectorissuecode attribute)": [[4, "nodriver.cdp.audits.InspectorIssueCode.CLIENT_HINT_ISSUE"]], "client_metadata_http_not_found (federatedauthrequestissuereason attribute)": [[4, "nodriver.cdp.audits.FederatedAuthRequestIssueReason.CLIENT_METADATA_HTTP_NOT_FOUND"]], "client_metadata_invalid_content_type (federatedauthrequestissuereason attribute)": [[4, "nodriver.cdp.audits.FederatedAuthRequestIssueReason.CLIENT_METADATA_INVALID_CONTENT_TYPE"]], "client_metadata_invalid_response (federatedauthrequestissuereason attribute)": [[4, "nodriver.cdp.audits.FederatedAuthRequestIssueReason.CLIENT_METADATA_INVALID_RESPONSE"]], "client_metadata_no_response (federatedauthrequestissuereason attribute)": [[4, "nodriver.cdp.audits.FederatedAuthRequestIssueReason.CLIENT_METADATA_NO_RESPONSE"]], "coep_frame_resource_needs_coep_header (blockedbyresponsereason attribute)": [[4, "nodriver.cdp.audits.BlockedByResponseReason.COEP_FRAME_RESOURCE_NEEDS_COEP_HEADER"]], "config_http_not_found (federatedauthrequestissuereason attribute)": [[4, "nodriver.cdp.audits.FederatedAuthRequestIssueReason.CONFIG_HTTP_NOT_FOUND"]], "config_invalid_content_type (federatedauthrequestissuereason attribute)": [[4, "nodriver.cdp.audits.FederatedAuthRequestIssueReason.CONFIG_INVALID_CONTENT_TYPE"]], "config_invalid_response (federatedauthrequestissuereason attribute)": [[4, "nodriver.cdp.audits.FederatedAuthRequestIssueReason.CONFIG_INVALID_RESPONSE"]], "config_not_in_well_known (federatedauthrequestissuereason attribute)": [[4, "nodriver.cdp.audits.FederatedAuthRequestIssueReason.CONFIG_NOT_IN_WELL_KNOWN"]], "config_no_response (federatedauthrequestissuereason attribute)": [[4, "nodriver.cdp.audits.FederatedAuthRequestIssueReason.CONFIG_NO_RESPONSE"]], "content_security_policy_issue (inspectorissuecode attribute)": [[4, "nodriver.cdp.audits.InspectorIssueCode.CONTENT_SECURITY_POLICY_ISSUE"]], "cookie_deprecation_metadata_issue (inspectorissuecode attribute)": [[4, "nodriver.cdp.audits.InspectorIssueCode.COOKIE_DEPRECATION_METADATA_ISSUE"]], "cookie_issue (inspectorissuecode attribute)": [[4, "nodriver.cdp.audits.InspectorIssueCode.COOKIE_ISSUE"]], "coop_sandboxed_i_frame_cannot_navigate_to_coop_page (blockedbyresponsereason attribute)": [[4, "nodriver.cdp.audits.BlockedByResponseReason.COOP_SANDBOXED_I_FRAME_CANNOT_NAVIGATE_TO_COOP_PAGE"]], "corp_not_same_origin (blockedbyresponsereason attribute)": [[4, "nodriver.cdp.audits.BlockedByResponseReason.CORP_NOT_SAME_ORIGIN"]], "corp_not_same_origin_after_defaulted_to_same_origin_by_coep (blockedbyresponsereason attribute)": [[4, "nodriver.cdp.audits.BlockedByResponseReason.CORP_NOT_SAME_ORIGIN_AFTER_DEFAULTED_TO_SAME_ORIGIN_BY_COEP"]], "corp_not_same_origin_after_defaulted_to_same_origin_by_coep_and_dip (blockedbyresponsereason attribute)": [[4, "nodriver.cdp.audits.BlockedByResponseReason.CORP_NOT_SAME_ORIGIN_AFTER_DEFAULTED_TO_SAME_ORIGIN_BY_COEP_AND_DIP"]], "corp_not_same_origin_after_defaulted_to_same_origin_by_dip (blockedbyresponsereason attribute)": [[4, "nodriver.cdp.audits.BlockedByResponseReason.CORP_NOT_SAME_ORIGIN_AFTER_DEFAULTED_TO_SAME_ORIGIN_BY_DIP"]], "corp_not_same_site (blockedbyresponsereason attribute)": [[4, "nodriver.cdp.audits.BlockedByResponseReason.CORP_NOT_SAME_SITE"]], "cors_issue (inspectorissuecode attribute)": [[4, "nodriver.cdp.audits.InspectorIssueCode.CORS_ISSUE"]], "cpu_peak_limit (heavyadreason attribute)": [[4, "nodriver.cdp.audits.HeavyAdReason.CPU_PEAK_LIMIT"]], "cpu_total_limit (heavyadreason attribute)": [[4, "nodriver.cdp.audits.HeavyAdReason.CPU_TOTAL_LIMIT"]], "creation_issue (sharedarraybufferissuetype attribute)": [[4, "nodriver.cdp.audits.SharedArrayBufferIssueType.CREATION_ISSUE"]], "csp_report (mixedcontentresourcetype attribute)": [[4, "nodriver.cdp.audits.MixedContentResourceType.CSP_REPORT"]], "clienthintissuedetails (class in nodriver.cdp.audits)": [[4, "nodriver.cdp.audits.ClientHintIssueDetails"]], "clienthintissuereason (class in nodriver.cdp.audits)": [[4, "nodriver.cdp.audits.ClientHintIssueReason"]], "contentsecuritypolicyissuedetails (class in nodriver.cdp.audits)": [[4, "nodriver.cdp.audits.ContentSecurityPolicyIssueDetails"]], "contentsecuritypolicyviolationtype (class in nodriver.cdp.audits)": [[4, "nodriver.cdp.audits.ContentSecurityPolicyViolationType"]], "cookiedeprecationmetadataissuedetails (class in nodriver.cdp.audits)": [[4, "nodriver.cdp.audits.CookieDeprecationMetadataIssueDetails"]], "cookieexclusionreason (class in nodriver.cdp.audits)": [[4, "nodriver.cdp.audits.CookieExclusionReason"]], "cookieissuedetails (class in nodriver.cdp.audits)": [[4, "nodriver.cdp.audits.CookieIssueDetails"]], "cookieoperation (class in nodriver.cdp.audits)": [[4, "nodriver.cdp.audits.CookieOperation"]], "cookiewarningreason (class in nodriver.cdp.audits)": [[4, "nodriver.cdp.audits.CookieWarningReason"]], "corsissuedetails (class in nodriver.cdp.audits)": [[4, "nodriver.cdp.audits.CorsIssueDetails"]], "deprecation_issue (inspectorissuecode attribute)": [[4, "nodriver.cdp.audits.InspectorIssueCode.DEPRECATION_ISSUE"]], "disabled_in_flags (federatedauthrequestissuereason attribute)": [[4, "nodriver.cdp.audits.FederatedAuthRequestIssueReason.DISABLED_IN_FLAGS"]], "disabled_in_settings (federatedauthrequestissuereason attribute)": [[4, "nodriver.cdp.audits.FederatedAuthRequestIssueReason.DISABLED_IN_SETTINGS"]], "download (mixedcontentresourcetype attribute)": [[4, "nodriver.cdp.audits.MixedContentResourceType.DOWNLOAD"]], "deprecationissuedetails (class in nodriver.cdp.audits)": [[4, "nodriver.cdp.audits.DeprecationIssueDetails"]], "error_fetching_signin (federatedauthrequestissuereason attribute)": [[4, "nodriver.cdp.audits.FederatedAuthRequestIssueReason.ERROR_FETCHING_SIGNIN"]], "error_id_token (federatedauthrequestissuereason attribute)": [[4, "nodriver.cdp.audits.FederatedAuthRequestIssueReason.ERROR_ID_TOKEN"]], "event_source (mixedcontentresourcetype attribute)": [[4, "nodriver.cdp.audits.MixedContentResourceType.EVENT_SOURCE"]], "exclude_domain_non_ascii (cookieexclusionreason attribute)": [[4, "nodriver.cdp.audits.CookieExclusionReason.EXCLUDE_DOMAIN_NON_ASCII"]], "exclude_invalid_same_party (cookieexclusionreason attribute)": [[4, "nodriver.cdp.audits.CookieExclusionReason.EXCLUDE_INVALID_SAME_PARTY"]], "exclude_port_mismatch (cookieexclusionreason attribute)": [[4, "nodriver.cdp.audits.CookieExclusionReason.EXCLUDE_PORT_MISMATCH"]], "exclude_same_party_cross_party_context (cookieexclusionreason attribute)": [[4, "nodriver.cdp.audits.CookieExclusionReason.EXCLUDE_SAME_PARTY_CROSS_PARTY_CONTEXT"]], "exclude_same_site_lax (cookieexclusionreason attribute)": [[4, "nodriver.cdp.audits.CookieExclusionReason.EXCLUDE_SAME_SITE_LAX"]], "exclude_same_site_none_insecure (cookieexclusionreason attribute)": [[4, "nodriver.cdp.audits.CookieExclusionReason.EXCLUDE_SAME_SITE_NONE_INSECURE"]], "exclude_same_site_strict (cookieexclusionreason attribute)": [[4, "nodriver.cdp.audits.CookieExclusionReason.EXCLUDE_SAME_SITE_STRICT"]], "exclude_same_site_unspecified_treated_as_lax (cookieexclusionreason attribute)": [[4, "nodriver.cdp.audits.CookieExclusionReason.EXCLUDE_SAME_SITE_UNSPECIFIED_TREATED_AS_LAX"]], "exclude_scheme_mismatch (cookieexclusionreason attribute)": [[4, "nodriver.cdp.audits.CookieExclusionReason.EXCLUDE_SCHEME_MISMATCH"]], "exclude_third_party_cookie_blocked_in_first_party_set (cookieexclusionreason attribute)": [[4, "nodriver.cdp.audits.CookieExclusionReason.EXCLUDE_THIRD_PARTY_COOKIE_BLOCKED_IN_FIRST_PARTY_SET"]], "exclude_third_party_phaseout (cookieexclusionreason attribute)": [[4, "nodriver.cdp.audits.CookieExclusionReason.EXCLUDE_THIRD_PARTY_PHASEOUT"]], "favicon (mixedcontentresourcetype attribute)": [[4, "nodriver.cdp.audits.MixedContentResourceType.FAVICON"]], "federated_auth_request_issue (inspectorissuecode attribute)": [[4, "nodriver.cdp.audits.InspectorIssueCode.FEDERATED_AUTH_REQUEST_ISSUE"]], "federated_auth_user_info_request_issue (inspectorissuecode attribute)": [[4, "nodriver.cdp.audits.InspectorIssueCode.FEDERATED_AUTH_USER_INFO_REQUEST_ISSUE"]], "font (mixedcontentresourcetype attribute)": [[4, "nodriver.cdp.audits.MixedContentResourceType.FONT"]], "form (mixedcontentresourcetype attribute)": [[4, "nodriver.cdp.audits.MixedContentResourceType.FORM"]], "form_aria_labelled_by_to_non_existing_id (genericissueerrortype attribute)": [[4, "nodriver.cdp.audits.GenericIssueErrorType.FORM_ARIA_LABELLED_BY_TO_NON_EXISTING_ID"]], "form_autocomplete_attribute_empty_error (genericissueerrortype attribute)": [[4, "nodriver.cdp.audits.GenericIssueErrorType.FORM_AUTOCOMPLETE_ATTRIBUTE_EMPTY_ERROR"]], "form_duplicate_id_for_input_error (genericissueerrortype attribute)": [[4, "nodriver.cdp.audits.GenericIssueErrorType.FORM_DUPLICATE_ID_FOR_INPUT_ERROR"]], "form_empty_id_and_name_attributes_for_input_error (genericissueerrortype attribute)": [[4, "nodriver.cdp.audits.GenericIssueErrorType.FORM_EMPTY_ID_AND_NAME_ATTRIBUTES_FOR_INPUT_ERROR"]], "form_input_assigned_autocomplete_value_to_id_or_name_attribute_error (genericissueerrortype attribute)": [[4, "nodriver.cdp.audits.GenericIssueErrorType.FORM_INPUT_ASSIGNED_AUTOCOMPLETE_VALUE_TO_ID_OR_NAME_ATTRIBUTE_ERROR"]], "form_input_has_wrong_but_well_intended_autocomplete_value_error (genericissueerrortype attribute)": [[4, "nodriver.cdp.audits.GenericIssueErrorType.FORM_INPUT_HAS_WRONG_BUT_WELL_INTENDED_AUTOCOMPLETE_VALUE_ERROR"]], "form_input_with_no_label_error (genericissueerrortype attribute)": [[4, "nodriver.cdp.audits.GenericIssueErrorType.FORM_INPUT_WITH_NO_LABEL_ERROR"]], "form_label_for_matches_non_existing_id_error (genericissueerrortype attribute)": [[4, "nodriver.cdp.audits.GenericIssueErrorType.FORM_LABEL_FOR_MATCHES_NON_EXISTING_ID_ERROR"]], "form_label_for_name_error (genericissueerrortype attribute)": [[4, "nodriver.cdp.audits.GenericIssueErrorType.FORM_LABEL_FOR_NAME_ERROR"]], "form_label_has_neither_for_nor_nested_input (genericissueerrortype attribute)": [[4, "nodriver.cdp.audits.GenericIssueErrorType.FORM_LABEL_HAS_NEITHER_FOR_NOR_NESTED_INPUT"]], "frame (mixedcontentresourcetype attribute)": [[4, "nodriver.cdp.audits.MixedContentResourceType.FRAME"]], "failedrequestinfo (class in nodriver.cdp.audits)": [[4, "nodriver.cdp.audits.FailedRequestInfo"]], "federatedauthrequestissuedetails (class in nodriver.cdp.audits)": [[4, "nodriver.cdp.audits.FederatedAuthRequestIssueDetails"]], "federatedauthrequestissuereason (class in nodriver.cdp.audits)": [[4, "nodriver.cdp.audits.FederatedAuthRequestIssueReason"]], "federatedauthuserinforequestissuedetails (class in nodriver.cdp.audits)": [[4, "nodriver.cdp.audits.FederatedAuthUserInfoRequestIssueDetails"]], "federatedauthuserinforequestissuereason (class in nodriver.cdp.audits)": [[4, "nodriver.cdp.audits.FederatedAuthUserInfoRequestIssueReason"]], "generic_issue (inspectorissuecode attribute)": [[4, "nodriver.cdp.audits.InspectorIssueCode.GENERIC_ISSUE"]], "genericissuedetails (class in nodriver.cdp.audits)": [[4, "nodriver.cdp.audits.GenericIssueDetails"]], "genericissueerrortype (class in nodriver.cdp.audits)": [[4, "nodriver.cdp.audits.GenericIssueErrorType"]], "heavy_ad_blocked (heavyadresolutionstatus attribute)": [[4, "nodriver.cdp.audits.HeavyAdResolutionStatus.HEAVY_AD_BLOCKED"]], "heavy_ad_issue (inspectorissuecode attribute)": [[4, "nodriver.cdp.audits.InspectorIssueCode.HEAVY_AD_ISSUE"]], "heavy_ad_warning (heavyadresolutionstatus attribute)": [[4, "nodriver.cdp.audits.HeavyAdResolutionStatus.HEAVY_AD_WARNING"]], "heavyadissuedetails (class in nodriver.cdp.audits)": [[4, "nodriver.cdp.audits.HeavyAdIssueDetails"]], "heavyadreason (class in nodriver.cdp.audits)": [[4, "nodriver.cdp.audits.HeavyAdReason"]], "heavyadresolutionstatus (class in nodriver.cdp.audits)": [[4, "nodriver.cdp.audits.HeavyAdResolutionStatus"]], "idp_not_potentially_trustworthy (federatedauthrequestissuereason attribute)": [[4, "nodriver.cdp.audits.FederatedAuthRequestIssueReason.IDP_NOT_POTENTIALLY_TRUSTWORTHY"]], "id_token_cross_site_idp_error_response (federatedauthrequestissuereason attribute)": [[4, "nodriver.cdp.audits.FederatedAuthRequestIssueReason.ID_TOKEN_CROSS_SITE_IDP_ERROR_RESPONSE"]], "id_token_http_not_found (federatedauthrequestissuereason attribute)": [[4, "nodriver.cdp.audits.FederatedAuthRequestIssueReason.ID_TOKEN_HTTP_NOT_FOUND"]], "id_token_idp_error_response (federatedauthrequestissuereason attribute)": [[4, "nodriver.cdp.audits.FederatedAuthRequestIssueReason.ID_TOKEN_IDP_ERROR_RESPONSE"]], "id_token_invalid_content_type (federatedauthrequestissuereason attribute)": [[4, "nodriver.cdp.audits.FederatedAuthRequestIssueReason.ID_TOKEN_INVALID_CONTENT_TYPE"]], "id_token_invalid_request (federatedauthrequestissuereason attribute)": [[4, "nodriver.cdp.audits.FederatedAuthRequestIssueReason.ID_TOKEN_INVALID_REQUEST"]], "id_token_invalid_response (federatedauthrequestissuereason attribute)": [[4, "nodriver.cdp.audits.FederatedAuthRequestIssueReason.ID_TOKEN_INVALID_RESPONSE"]], "id_token_no_response (federatedauthrequestissuereason attribute)": [[4, "nodriver.cdp.audits.FederatedAuthRequestIssueReason.ID_TOKEN_NO_RESPONSE"]], "image (mixedcontentresourcetype attribute)": [[4, "nodriver.cdp.audits.MixedContentResourceType.IMAGE"]], "import (mixedcontentresourcetype attribute)": [[4, "nodriver.cdp.audits.MixedContentResourceType.IMPORT"]], "insecure_context (attributionreportingissuetype attribute)": [[4, "nodriver.cdp.audits.AttributionReportingIssueType.INSECURE_CONTEXT"]], "invalid_accounts_response (federatedauthuserinforequestissuereason attribute)": [[4, "nodriver.cdp.audits.FederatedAuthUserInfoRequestIssueReason.INVALID_ACCOUNTS_RESPONSE"]], "invalid_config_or_well_known (federatedauthuserinforequestissuereason attribute)": [[4, "nodriver.cdp.audits.FederatedAuthUserInfoRequestIssueReason.INVALID_CONFIG_OR_WELL_KNOWN"]], "invalid_fields_specified (federatedauthrequestissuereason attribute)": [[4, "nodriver.cdp.audits.FederatedAuthRequestIssueReason.INVALID_FIELDS_SPECIFIED"]], "invalid_header (attributionreportingissuetype attribute)": [[4, "nodriver.cdp.audits.AttributionReportingIssueType.INVALID_HEADER"]], "invalid_info_header (attributionreportingissuetype attribute)": [[4, "nodriver.cdp.audits.AttributionReportingIssueType.INVALID_INFO_HEADER"]], "invalid_inherits (propertyruleissuereason attribute)": [[4, "nodriver.cdp.audits.PropertyRuleIssueReason.INVALID_INHERITS"]], "invalid_initial_value (propertyruleissuereason attribute)": [[4, "nodriver.cdp.audits.PropertyRuleIssueReason.INVALID_INITIAL_VALUE"]], "invalid_name (propertyruleissuereason attribute)": [[4, "nodriver.cdp.audits.PropertyRuleIssueReason.INVALID_NAME"]], "invalid_register_os_source_header (attributionreportingissuetype attribute)": [[4, "nodriver.cdp.audits.AttributionReportingIssueType.INVALID_REGISTER_OS_SOURCE_HEADER"]], "invalid_register_os_trigger_header (attributionreportingissuetype attribute)": [[4, "nodriver.cdp.audits.AttributionReportingIssueType.INVALID_REGISTER_OS_TRIGGER_HEADER"]], "invalid_register_trigger_header (attributionreportingissuetype attribute)": [[4, "nodriver.cdp.audits.AttributionReportingIssueType.INVALID_REGISTER_TRIGGER_HEADER"]], "invalid_signin_response (federatedauthrequestissuereason attribute)": [[4, "nodriver.cdp.audits.FederatedAuthRequestIssueReason.INVALID_SIGNIN_RESPONSE"]], "invalid_syntax (propertyruleissuereason attribute)": [[4, "nodriver.cdp.audits.PropertyRuleIssueReason.INVALID_SYNTAX"]], "inspectorissue (class in nodriver.cdp.audits)": [[4, "nodriver.cdp.audits.InspectorIssue"]], "inspectorissuecode (class in nodriver.cdp.audits)": [[4, "nodriver.cdp.audits.InspectorIssueCode"]], "inspectorissuedetails (class in nodriver.cdp.audits)": [[4, "nodriver.cdp.audits.InspectorIssueDetails"]], "issueadded (class in nodriver.cdp.audits)": [[4, "nodriver.cdp.audits.IssueAdded"]], "issueid (class in nodriver.cdp.audits)": [[4, "nodriver.cdp.audits.IssueId"]], "json (mixedcontentresourcetype attribute)": [[4, "nodriver.cdp.audits.MixedContentResourceType.JSON"]], "k_eval_violation (contentsecuritypolicyviolationtype attribute)": [[4, "nodriver.cdp.audits.ContentSecurityPolicyViolationType.K_EVAL_VIOLATION"]], "k_inline_violation (contentsecuritypolicyviolationtype attribute)": [[4, "nodriver.cdp.audits.ContentSecurityPolicyViolationType.K_INLINE_VIOLATION"]], "k_trusted_types_policy_violation (contentsecuritypolicyviolationtype attribute)": [[4, "nodriver.cdp.audits.ContentSecurityPolicyViolationType.K_TRUSTED_TYPES_POLICY_VIOLATION"]], "k_trusted_types_sink_violation (contentsecuritypolicyviolationtype attribute)": [[4, "nodriver.cdp.audits.ContentSecurityPolicyViolationType.K_TRUSTED_TYPES_SINK_VIOLATION"]], "k_url_violation (contentsecuritypolicyviolationtype attribute)": [[4, "nodriver.cdp.audits.ContentSecurityPolicyViolationType.K_URL_VIOLATION"]], "k_wasm_eval_violation (contentsecuritypolicyviolationtype attribute)": [[4, "nodriver.cdp.audits.ContentSecurityPolicyViolationType.K_WASM_EVAL_VIOLATION"]], "late_import_rule (stylesheetloadingissuereason attribute)": [[4, "nodriver.cdp.audits.StyleSheetLoadingIssueReason.LATE_IMPORT_RULE"]], "low_text_contrast_issue (inspectorissuecode attribute)": [[4, "nodriver.cdp.audits.InspectorIssueCode.LOW_TEXT_CONTRAST_ISSUE"]], "lowtextcontrastissuedetails (class in nodriver.cdp.audits)": [[4, "nodriver.cdp.audits.LowTextContrastIssueDetails"]], "manifest (mixedcontentresourcetype attribute)": [[4, "nodriver.cdp.audits.MixedContentResourceType.MANIFEST"]], "meta_tag_allow_list_invalid_origin (clienthintissuereason attribute)": [[4, "nodriver.cdp.audits.ClientHintIssueReason.META_TAG_ALLOW_LIST_INVALID_ORIGIN"]], "meta_tag_modified_html (clienthintissuereason attribute)": [[4, "nodriver.cdp.audits.ClientHintIssueReason.META_TAG_MODIFIED_HTML"]], "missing_transient_user_activation (federatedauthrequestissuereason attribute)": [[4, "nodriver.cdp.audits.FederatedAuthRequestIssueReason.MISSING_TRANSIENT_USER_ACTIVATION"]], "mixed_content_automatically_upgraded (mixedcontentresolutionstatus attribute)": [[4, "nodriver.cdp.audits.MixedContentResolutionStatus.MIXED_CONTENT_AUTOMATICALLY_UPGRADED"]], "mixed_content_blocked (mixedcontentresolutionstatus attribute)": [[4, "nodriver.cdp.audits.MixedContentResolutionStatus.MIXED_CONTENT_BLOCKED"]], "mixed_content_issue (inspectorissuecode attribute)": [[4, "nodriver.cdp.audits.InspectorIssueCode.MIXED_CONTENT_ISSUE"]], "mixed_content_warning (mixedcontentresolutionstatus attribute)": [[4, "nodriver.cdp.audits.MixedContentResolutionStatus.MIXED_CONTENT_WARNING"]], "mixedcontentissuedetails (class in nodriver.cdp.audits)": [[4, "nodriver.cdp.audits.MixedContentIssueDetails"]], "mixedcontentresolutionstatus (class in nodriver.cdp.audits)": [[4, "nodriver.cdp.audits.MixedContentResolutionStatus"]], "mixedcontentresourcetype (class in nodriver.cdp.audits)": [[4, "nodriver.cdp.audits.MixedContentResourceType"]], "navigation_registration_unique_scope_already_set (attributionreportingissuetype attribute)": [[4, "nodriver.cdp.audits.AttributionReportingIssueType.NAVIGATION_REGISTRATION_UNIQUE_SCOPE_ALREADY_SET"]], "navigation_registration_without_transient_user_activation (attributionreportingissuetype attribute)": [[4, "nodriver.cdp.audits.AttributionReportingIssueType.NAVIGATION_REGISTRATION_WITHOUT_TRANSIENT_USER_ACTIVATION"]], "navigator_user_agent_issue (inspectorissuecode attribute)": [[4, "nodriver.cdp.audits.InspectorIssueCode.NAVIGATOR_USER_AGENT_ISSUE"]], "network_total_limit (heavyadreason attribute)": [[4, "nodriver.cdp.audits.HeavyAdReason.NETWORK_TOTAL_LIMIT"]], "not_iframe (federatedauthuserinforequestissuereason attribute)": [[4, "nodriver.cdp.audits.FederatedAuthUserInfoRequestIssueReason.NOT_IFRAME"]], "not_potentially_trustworthy (federatedauthuserinforequestissuereason attribute)": [[4, "nodriver.cdp.audits.FederatedAuthUserInfoRequestIssueReason.NOT_POTENTIALLY_TRUSTWORTHY"]], "not_same_origin (federatedauthuserinforequestissuereason attribute)": [[4, "nodriver.cdp.audits.FederatedAuthUserInfoRequestIssueReason.NOT_SAME_ORIGIN"]], "not_signed_in_with_idp (federatedauthrequestissuereason attribute)": [[4, "nodriver.cdp.audits.FederatedAuthRequestIssueReason.NOT_SIGNED_IN_WITH_IDP"]], "not_signed_in_with_idp (federatedauthuserinforequestissuereason attribute)": [[4, "nodriver.cdp.audits.FederatedAuthUserInfoRequestIssueReason.NOT_SIGNED_IN_WITH_IDP"]], "no_account_sharing_permission (federatedauthuserinforequestissuereason attribute)": [[4, "nodriver.cdp.audits.FederatedAuthUserInfoRequestIssueReason.NO_ACCOUNT_SHARING_PERMISSION"]], "no_api_permission (federatedauthuserinforequestissuereason attribute)": [[4, "nodriver.cdp.audits.FederatedAuthUserInfoRequestIssueReason.NO_API_PERMISSION"]], "no_register_os_source_header (attributionreportingissuetype attribute)": [[4, "nodriver.cdp.audits.AttributionReportingIssueType.NO_REGISTER_OS_SOURCE_HEADER"]], "no_register_os_trigger_header (attributionreportingissuetype attribute)": [[4, "nodriver.cdp.audits.AttributionReportingIssueType.NO_REGISTER_OS_TRIGGER_HEADER"]], "no_register_source_header (attributionreportingissuetype attribute)": [[4, "nodriver.cdp.audits.AttributionReportingIssueType.NO_REGISTER_SOURCE_HEADER"]], "no_register_trigger_header (attributionreportingissuetype attribute)": [[4, "nodriver.cdp.audits.AttributionReportingIssueType.NO_REGISTER_TRIGGER_HEADER"]], "no_returning_user_from_fetched_accounts (federatedauthuserinforequestissuereason attribute)": [[4, "nodriver.cdp.audits.FederatedAuthUserInfoRequestIssueReason.NO_RETURNING_USER_FROM_FETCHED_ACCOUNTS"]], "no_web_or_os_support (attributionreportingissuetype attribute)": [[4, "nodriver.cdp.audits.AttributionReportingIssueType.NO_WEB_OR_OS_SUPPORT"]], "navigatoruseragentissuedetails (class in nodriver.cdp.audits)": [[4, "nodriver.cdp.audits.NavigatorUserAgentIssueDetails"]], "os_source_ignored (attributionreportingissuetype attribute)": [[4, "nodriver.cdp.audits.AttributionReportingIssueType.OS_SOURCE_IGNORED"]], "os_trigger_ignored (attributionreportingissuetype attribute)": [[4, "nodriver.cdp.audits.AttributionReportingIssueType.OS_TRIGGER_IGNORED"]], "permission_policy_disabled (attributionreportingissuetype attribute)": [[4, "nodriver.cdp.audits.AttributionReportingIssueType.PERMISSION_POLICY_DISABLED"]], "ping (mixedcontentresourcetype attribute)": [[4, "nodriver.cdp.audits.MixedContentResourceType.PING"]], "plugin_data (mixedcontentresourcetype attribute)": [[4, "nodriver.cdp.audits.MixedContentResourceType.PLUGIN_DATA"]], "plugin_resource (mixedcontentresourcetype attribute)": [[4, "nodriver.cdp.audits.MixedContentResourceType.PLUGIN_RESOURCE"]], "prefetch (mixedcontentresourcetype attribute)": [[4, "nodriver.cdp.audits.MixedContentResourceType.PREFETCH"]], "property_rule_issue (inspectorissuecode attribute)": [[4, "nodriver.cdp.audits.InspectorIssueCode.PROPERTY_RULE_ISSUE"]], "propertyruleissuedetails (class in nodriver.cdp.audits)": [[4, "nodriver.cdp.audits.PropertyRuleIssueDetails"]], "propertyruleissuereason (class in nodriver.cdp.audits)": [[4, "nodriver.cdp.audits.PropertyRuleIssueReason"]], "quirks_mode_issue (inspectorissuecode attribute)": [[4, "nodriver.cdp.audits.InspectorIssueCode.QUIRKS_MODE_ISSUE"]], "quirksmodeissuedetails (class in nodriver.cdp.audits)": [[4, "nodriver.cdp.audits.QuirksModeIssueDetails"]], "read_cookie (cookieoperation attribute)": [[4, "nodriver.cdp.audits.CookieOperation.READ_COOKIE"]], "relying_party_origin_is_opaque (federatedauthrequestissuereason attribute)": [[4, "nodriver.cdp.audits.FederatedAuthRequestIssueReason.RELYING_PARTY_ORIGIN_IS_OPAQUE"]], "replaced_by_active_mode (federatedauthrequestissuereason attribute)": [[4, "nodriver.cdp.audits.FederatedAuthRequestIssueReason.REPLACED_BY_ACTIVE_MODE"]], "request_failed (stylesheetloadingissuereason attribute)": [[4, "nodriver.cdp.audits.StyleSheetLoadingIssueReason.REQUEST_FAILED"]], "resource (mixedcontentresourcetype attribute)": [[4, "nodriver.cdp.audits.MixedContentResourceType.RESOURCE"]], "response_was_blocked_by_orb (genericissueerrortype attribute)": [[4, "nodriver.cdp.audits.GenericIssueErrorType.RESPONSE_WAS_BLOCKED_BY_ORB"]], "rp_page_not_visible (federatedauthrequestissuereason attribute)": [[4, "nodriver.cdp.audits.FederatedAuthRequestIssueReason.RP_PAGE_NOT_VISIBLE"]], "script (mixedcontentresourcetype attribute)": [[4, "nodriver.cdp.audits.MixedContentResourceType.SCRIPT"]], "service_worker (mixedcontentresourcetype attribute)": [[4, "nodriver.cdp.audits.MixedContentResourceType.SERVICE_WORKER"]], "set_cookie (cookieoperation attribute)": [[4, "nodriver.cdp.audits.CookieOperation.SET_COOKIE"]], "shared_array_buffer_issue (inspectorissuecode attribute)": [[4, "nodriver.cdp.audits.InspectorIssueCode.SHARED_ARRAY_BUFFER_ISSUE"]], "shared_dictionary_issue (inspectorissuecode attribute)": [[4, "nodriver.cdp.audits.InspectorIssueCode.SHARED_DICTIONARY_ISSUE"]], "shared_worker (mixedcontentresourcetype attribute)": [[4, "nodriver.cdp.audits.MixedContentResourceType.SHARED_WORKER"]], "should_embargo (federatedauthrequestissuereason attribute)": [[4, "nodriver.cdp.audits.FederatedAuthRequestIssueReason.SHOULD_EMBARGO"]], "silent_mediation_failure (federatedauthrequestissuereason attribute)": [[4, "nodriver.cdp.audits.FederatedAuthRequestIssueReason.SILENT_MEDIATION_FAILURE"]], "source_and_trigger_headers (attributionreportingissuetype attribute)": [[4, "nodriver.cdp.audits.AttributionReportingIssueType.SOURCE_AND_TRIGGER_HEADERS"]], "source_ignored (attributionreportingissuetype attribute)": [[4, "nodriver.cdp.audits.AttributionReportingIssueType.SOURCE_IGNORED"]], "speculation_rules (mixedcontentresourcetype attribute)": [[4, "nodriver.cdp.audits.MixedContentResourceType.SPECULATION_RULES"]], "stylesheet (mixedcontentresourcetype attribute)": [[4, "nodriver.cdp.audits.MixedContentResourceType.STYLESHEET"]], "stylesheet_loading_issue (inspectorissuecode attribute)": [[4, "nodriver.cdp.audits.InspectorIssueCode.STYLESHEET_LOADING_ISSUE"]], "sharedarraybufferissuedetails (class in nodriver.cdp.audits)": [[4, "nodriver.cdp.audits.SharedArrayBufferIssueDetails"]], "sharedarraybufferissuetype (class in nodriver.cdp.audits)": [[4, "nodriver.cdp.audits.SharedArrayBufferIssueType"]], "shareddictionaryerror (class in nodriver.cdp.audits)": [[4, "nodriver.cdp.audits.SharedDictionaryError"]], "shareddictionaryissuedetails (class in nodriver.cdp.audits)": [[4, "nodriver.cdp.audits.SharedDictionaryIssueDetails"]], "sourcecodelocation (class in nodriver.cdp.audits)": [[4, "nodriver.cdp.audits.SourceCodeLocation"]], "stylesheetloadingissuereason (class in nodriver.cdp.audits)": [[4, "nodriver.cdp.audits.StyleSheetLoadingIssueReason"]], "stylesheetloadingissuedetails (class in nodriver.cdp.audits)": [[4, "nodriver.cdp.audits.StylesheetLoadingIssueDetails"]], "third_party_cookies_blocked (federatedauthrequestissuereason attribute)": [[4, "nodriver.cdp.audits.FederatedAuthRequestIssueReason.THIRD_PARTY_COOKIES_BLOCKED"]], "too_many_requests (federatedauthrequestissuereason attribute)": [[4, "nodriver.cdp.audits.FederatedAuthRequestIssueReason.TOO_MANY_REQUESTS"]], "track (mixedcontentresourcetype attribute)": [[4, "nodriver.cdp.audits.MixedContentResourceType.TRACK"]], "transfer_issue (sharedarraybufferissuetype attribute)": [[4, "nodriver.cdp.audits.SharedArrayBufferIssueType.TRANSFER_ISSUE"]], "trigger_ignored (attributionreportingissuetype attribute)": [[4, "nodriver.cdp.audits.AttributionReportingIssueType.TRIGGER_IGNORED"]], "type_not_matching (federatedauthrequestissuereason attribute)": [[4, "nodriver.cdp.audits.FederatedAuthRequestIssueReason.TYPE_NOT_MATCHING"]], "untrustworthy_reporting_origin (attributionreportingissuetype attribute)": [[4, "nodriver.cdp.audits.AttributionReportingIssueType.UNTRUSTWORTHY_REPORTING_ORIGIN"]], "use_error_cross_origin_no_cors_request (shareddictionaryerror attribute)": [[4, "nodriver.cdp.audits.SharedDictionaryError.USE_ERROR_CROSS_ORIGIN_NO_CORS_REQUEST"]], "use_error_dictionary_load_failure (shareddictionaryerror attribute)": [[4, "nodriver.cdp.audits.SharedDictionaryError.USE_ERROR_DICTIONARY_LOAD_FAILURE"]], "use_error_matching_dictionary_not_used (shareddictionaryerror attribute)": [[4, "nodriver.cdp.audits.SharedDictionaryError.USE_ERROR_MATCHING_DICTIONARY_NOT_USED"]], "use_error_unexpected_content_dictionary_header (shareddictionaryerror attribute)": [[4, "nodriver.cdp.audits.SharedDictionaryError.USE_ERROR_UNEXPECTED_CONTENT_DICTIONARY_HEADER"]], "video (mixedcontentresourcetype attribute)": [[4, "nodriver.cdp.audits.MixedContentResourceType.VIDEO"]], "warn_attribute_value_exceeds_max_size (cookiewarningreason attribute)": [[4, "nodriver.cdp.audits.CookieWarningReason.WARN_ATTRIBUTE_VALUE_EXCEEDS_MAX_SIZE"]], "warn_cross_site_redirect_downgrade_changes_inclusion (cookiewarningreason attribute)": [[4, "nodriver.cdp.audits.CookieWarningReason.WARN_CROSS_SITE_REDIRECT_DOWNGRADE_CHANGES_INCLUSION"]], "warn_deprecation_trial_metadata (cookiewarningreason attribute)": [[4, "nodriver.cdp.audits.CookieWarningReason.WARN_DEPRECATION_TRIAL_METADATA"]], "warn_domain_non_ascii (cookiewarningreason attribute)": [[4, "nodriver.cdp.audits.CookieWarningReason.WARN_DOMAIN_NON_ASCII"]], "warn_same_site_lax_cross_downgrade_lax (cookiewarningreason attribute)": [[4, "nodriver.cdp.audits.CookieWarningReason.WARN_SAME_SITE_LAX_CROSS_DOWNGRADE_LAX"]], "warn_same_site_lax_cross_downgrade_strict (cookiewarningreason attribute)": [[4, "nodriver.cdp.audits.CookieWarningReason.WARN_SAME_SITE_LAX_CROSS_DOWNGRADE_STRICT"]], "warn_same_site_none_insecure (cookiewarningreason attribute)": [[4, "nodriver.cdp.audits.CookieWarningReason.WARN_SAME_SITE_NONE_INSECURE"]], "warn_same_site_strict_cross_downgrade_lax (cookiewarningreason attribute)": [[4, "nodriver.cdp.audits.CookieWarningReason.WARN_SAME_SITE_STRICT_CROSS_DOWNGRADE_LAX"]], "warn_same_site_strict_cross_downgrade_strict (cookiewarningreason attribute)": [[4, "nodriver.cdp.audits.CookieWarningReason.WARN_SAME_SITE_STRICT_CROSS_DOWNGRADE_STRICT"]], "warn_same_site_strict_lax_downgrade_strict (cookiewarningreason attribute)": [[4, "nodriver.cdp.audits.CookieWarningReason.WARN_SAME_SITE_STRICT_LAX_DOWNGRADE_STRICT"]], "warn_same_site_unspecified_cross_site_context (cookiewarningreason attribute)": [[4, "nodriver.cdp.audits.CookieWarningReason.WARN_SAME_SITE_UNSPECIFIED_CROSS_SITE_CONTEXT"]], "warn_same_site_unspecified_lax_allow_unsafe (cookiewarningreason attribute)": [[4, "nodriver.cdp.audits.CookieWarningReason.WARN_SAME_SITE_UNSPECIFIED_LAX_ALLOW_UNSAFE"]], "warn_third_party_cookie_heuristic (cookiewarningreason attribute)": [[4, "nodriver.cdp.audits.CookieWarningReason.WARN_THIRD_PARTY_COOKIE_HEURISTIC"]], "warn_third_party_phaseout (cookiewarningreason attribute)": [[4, "nodriver.cdp.audits.CookieWarningReason.WARN_THIRD_PARTY_PHASEOUT"]], "web_and_os_headers (attributionreportingissuetype attribute)": [[4, "nodriver.cdp.audits.AttributionReportingIssueType.WEB_AND_OS_HEADERS"]], "well_known_http_not_found (federatedauthrequestissuereason attribute)": [[4, "nodriver.cdp.audits.FederatedAuthRequestIssueReason.WELL_KNOWN_HTTP_NOT_FOUND"]], "well_known_invalid_content_type (federatedauthrequestissuereason attribute)": [[4, "nodriver.cdp.audits.FederatedAuthRequestIssueReason.WELL_KNOWN_INVALID_CONTENT_TYPE"]], "well_known_invalid_response (federatedauthrequestissuereason attribute)": [[4, "nodriver.cdp.audits.FederatedAuthRequestIssueReason.WELL_KNOWN_INVALID_RESPONSE"]], "well_known_list_empty (federatedauthrequestissuereason attribute)": [[4, "nodriver.cdp.audits.FederatedAuthRequestIssueReason.WELL_KNOWN_LIST_EMPTY"]], "well_known_no_response (federatedauthrequestissuereason attribute)": [[4, "nodriver.cdp.audits.FederatedAuthRequestIssueReason.WELL_KNOWN_NO_RESPONSE"]], "well_known_too_big (federatedauthrequestissuereason attribute)": [[4, "nodriver.cdp.audits.FederatedAuthRequestIssueReason.WELL_KNOWN_TOO_BIG"]], "worker (mixedcontentresourcetype attribute)": [[4, "nodriver.cdp.audits.MixedContentResourceType.WORKER"]], "write_error_coss_origin_no_cors_request (shareddictionaryerror attribute)": [[4, "nodriver.cdp.audits.SharedDictionaryError.WRITE_ERROR_COSS_ORIGIN_NO_CORS_REQUEST"]], "write_error_disallowed_by_settings (shareddictionaryerror attribute)": [[4, "nodriver.cdp.audits.SharedDictionaryError.WRITE_ERROR_DISALLOWED_BY_SETTINGS"]], "write_error_expired_response (shareddictionaryerror attribute)": [[4, "nodriver.cdp.audits.SharedDictionaryError.WRITE_ERROR_EXPIRED_RESPONSE"]], "write_error_feature_disabled (shareddictionaryerror attribute)": [[4, "nodriver.cdp.audits.SharedDictionaryError.WRITE_ERROR_FEATURE_DISABLED"]], "write_error_insufficient_resources (shareddictionaryerror attribute)": [[4, "nodriver.cdp.audits.SharedDictionaryError.WRITE_ERROR_INSUFFICIENT_RESOURCES"]], "write_error_invalid_match_field (shareddictionaryerror attribute)": [[4, "nodriver.cdp.audits.SharedDictionaryError.WRITE_ERROR_INVALID_MATCH_FIELD"]], "write_error_invalid_structured_header (shareddictionaryerror attribute)": [[4, "nodriver.cdp.audits.SharedDictionaryError.WRITE_ERROR_INVALID_STRUCTURED_HEADER"]], "write_error_navigation_request (shareddictionaryerror attribute)": [[4, "nodriver.cdp.audits.SharedDictionaryError.WRITE_ERROR_NAVIGATION_REQUEST"]], "write_error_non_list_match_dest_field (shareddictionaryerror attribute)": [[4, "nodriver.cdp.audits.SharedDictionaryError.WRITE_ERROR_NON_LIST_MATCH_DEST_FIELD"]], "write_error_non_secure_context (shareddictionaryerror attribute)": [[4, "nodriver.cdp.audits.SharedDictionaryError.WRITE_ERROR_NON_SECURE_CONTEXT"]], "write_error_non_string_id_field (shareddictionaryerror attribute)": [[4, "nodriver.cdp.audits.SharedDictionaryError.WRITE_ERROR_NON_STRING_ID_FIELD"]], "write_error_non_string_in_match_dest_list (shareddictionaryerror attribute)": [[4, "nodriver.cdp.audits.SharedDictionaryError.WRITE_ERROR_NON_STRING_IN_MATCH_DEST_LIST"]], "write_error_non_string_match_field (shareddictionaryerror attribute)": [[4, "nodriver.cdp.audits.SharedDictionaryError.WRITE_ERROR_NON_STRING_MATCH_FIELD"]], "write_error_non_token_type_field (shareddictionaryerror attribute)": [[4, "nodriver.cdp.audits.SharedDictionaryError.WRITE_ERROR_NON_TOKEN_TYPE_FIELD"]], "write_error_no_match_field (shareddictionaryerror attribute)": [[4, "nodriver.cdp.audits.SharedDictionaryError.WRITE_ERROR_NO_MATCH_FIELD"]], "write_error_request_aborted (shareddictionaryerror attribute)": [[4, "nodriver.cdp.audits.SharedDictionaryError.WRITE_ERROR_REQUEST_ABORTED"]], "write_error_shutting_down (shareddictionaryerror attribute)": [[4, "nodriver.cdp.audits.SharedDictionaryError.WRITE_ERROR_SHUTTING_DOWN"]], "write_error_too_long_id_field (shareddictionaryerror attribute)": [[4, "nodriver.cdp.audits.SharedDictionaryError.WRITE_ERROR_TOO_LONG_ID_FIELD"]], "write_error_unsupported_type (shareddictionaryerror attribute)": [[4, "nodriver.cdp.audits.SharedDictionaryError.WRITE_ERROR_UNSUPPORTED_TYPE"]], "xml_http_request (mixedcontentresourcetype attribute)": [[4, "nodriver.cdp.audits.MixedContentResourceType.XML_HTTP_REQUEST"]], "xslt (mixedcontentresourcetype attribute)": [[4, "nodriver.cdp.audits.MixedContentResourceType.XSLT"]], "affected_frame (deprecationissuedetails attribute)": [[4, "nodriver.cdp.audits.DeprecationIssueDetails.affected_frame"]], "allowed_sites (cookiedeprecationmetadataissuedetails attribute)": [[4, "nodriver.cdp.audits.CookieDeprecationMetadataIssueDetails.allowed_sites"]], "attribution_reporting_issue_details (inspectorissuedetails attribute)": [[4, "nodriver.cdp.audits.InspectorIssueDetails.attribution_reporting_issue_details"]], "blocked_by_response_issue_details (inspectorissuedetails attribute)": [[4, "nodriver.cdp.audits.InspectorIssueDetails.blocked_by_response_issue_details"]], "blocked_frame (blockedbyresponseissuedetails attribute)": [[4, "nodriver.cdp.audits.BlockedByResponseIssueDetails.blocked_frame"]], "blocked_url (contentsecuritypolicyissuedetails attribute)": [[4, "nodriver.cdp.audits.ContentSecurityPolicyIssueDetails.blocked_url"]], "bounce_tracking_issue_details (inspectorissuedetails attribute)": [[4, "nodriver.cdp.audits.InspectorIssueDetails.bounce_tracking_issue_details"]], "check_contrast() (in module nodriver.cdp.audits)": [[4, "nodriver.cdp.audits.check_contrast"]], "check_forms_issues() (in module nodriver.cdp.audits)": [[4, "nodriver.cdp.audits.check_forms_issues"]], "client_hint_issue_details (inspectorissuedetails attribute)": [[4, "nodriver.cdp.audits.InspectorIssueDetails.client_hint_issue_details"]], "client_hint_issue_reason (clienthintissuedetails attribute)": [[4, "nodriver.cdp.audits.ClientHintIssueDetails.client_hint_issue_reason"]], "client_security_state (corsissuedetails attribute)": [[4, "nodriver.cdp.audits.CorsIssueDetails.client_security_state"]], "code (inspectorissue attribute)": [[4, "nodriver.cdp.audits.InspectorIssue.code"]], "column_number (sourcecodelocation attribute)": [[4, "nodriver.cdp.audits.SourceCodeLocation.column_number"]], "content_security_policy_issue_details (inspectorissuedetails attribute)": [[4, "nodriver.cdp.audits.InspectorIssueDetails.content_security_policy_issue_details"]], "content_security_policy_violation_type (contentsecuritypolicyissuedetails attribute)": [[4, "nodriver.cdp.audits.ContentSecurityPolicyIssueDetails.content_security_policy_violation_type"]], "contrast_ratio (lowtextcontrastissuedetails attribute)": [[4, "nodriver.cdp.audits.LowTextContrastIssueDetails.contrast_ratio"]], "cookie (cookieissuedetails attribute)": [[4, "nodriver.cdp.audits.CookieIssueDetails.cookie"]], "cookie_deprecation_metadata_issue_details (inspectorissuedetails attribute)": [[4, "nodriver.cdp.audits.InspectorIssueDetails.cookie_deprecation_metadata_issue_details"]], "cookie_exclusion_reasons (cookieissuedetails attribute)": [[4, "nodriver.cdp.audits.CookieIssueDetails.cookie_exclusion_reasons"]], "cookie_issue_details (inspectorissuedetails attribute)": [[4, "nodriver.cdp.audits.InspectorIssueDetails.cookie_issue_details"]], "cookie_url (cookieissuedetails attribute)": [[4, "nodriver.cdp.audits.CookieIssueDetails.cookie_url"]], "cookie_warning_reasons (cookieissuedetails attribute)": [[4, "nodriver.cdp.audits.CookieIssueDetails.cookie_warning_reasons"]], "cors_error_status (corsissuedetails attribute)": [[4, "nodriver.cdp.audits.CorsIssueDetails.cors_error_status"]], "cors_issue_details (inspectorissuedetails attribute)": [[4, "nodriver.cdp.audits.InspectorIssueDetails.cors_issue_details"]], "deprecation_issue_details (inspectorissuedetails attribute)": [[4, "nodriver.cdp.audits.InspectorIssueDetails.deprecation_issue_details"]], "details (inspectorissue attribute)": [[4, "nodriver.cdp.audits.InspectorIssue.details"]], "disable() (in module nodriver.cdp.audits)": [[4, "nodriver.cdp.audits.disable"]], "document_node_id (quirksmodeissuedetails attribute)": [[4, "nodriver.cdp.audits.QuirksModeIssueDetails.document_node_id"]], "domain (affectedcookie attribute)": [[4, "nodriver.cdp.audits.AffectedCookie.domain"]], "enable() (in module nodriver.cdp.audits)": [[4, "nodriver.cdp.audits.enable"]], "error_type (genericissuedetails attribute)": [[4, "nodriver.cdp.audits.GenericIssueDetails.error_type"]], "failed_request_info (stylesheetloadingissuedetails attribute)": [[4, "nodriver.cdp.audits.StylesheetLoadingIssueDetails.failed_request_info"]], "failure_message (failedrequestinfo attribute)": [[4, "nodriver.cdp.audits.FailedRequestInfo.failure_message"]], "federated_auth_request_issue_details (inspectorissuedetails attribute)": [[4, "nodriver.cdp.audits.InspectorIssueDetails.federated_auth_request_issue_details"]], "federated_auth_request_issue_reason (federatedauthrequestissuedetails attribute)": [[4, "nodriver.cdp.audits.FederatedAuthRequestIssueDetails.federated_auth_request_issue_reason"]], "federated_auth_user_info_request_issue_details (inspectorissuedetails attribute)": [[4, "nodriver.cdp.audits.InspectorIssueDetails.federated_auth_user_info_request_issue_details"]], "federated_auth_user_info_request_issue_reason (federatedauthuserinforequestissuedetails attribute)": [[4, "nodriver.cdp.audits.FederatedAuthUserInfoRequestIssueDetails.federated_auth_user_info_request_issue_reason"]], "font_size (lowtextcontrastissuedetails attribute)": [[4, "nodriver.cdp.audits.LowTextContrastIssueDetails.font_size"]], "font_weight (lowtextcontrastissuedetails attribute)": [[4, "nodriver.cdp.audits.LowTextContrastIssueDetails.font_weight"]], "frame (heavyadissuedetails attribute)": [[4, "nodriver.cdp.audits.HeavyAdIssueDetails.frame"]], "frame (mixedcontentissuedetails attribute)": [[4, "nodriver.cdp.audits.MixedContentIssueDetails.frame"]], "frame_ancestor (contentsecuritypolicyissuedetails attribute)": [[4, "nodriver.cdp.audits.ContentSecurityPolicyIssueDetails.frame_ancestor"]], "frame_id (affectedframe attribute)": [[4, "nodriver.cdp.audits.AffectedFrame.frame_id"]], "frame_id (genericissuedetails attribute)": [[4, "nodriver.cdp.audits.GenericIssueDetails.frame_id"]], "frame_id (quirksmodeissuedetails attribute)": [[4, "nodriver.cdp.audits.QuirksModeIssueDetails.frame_id"]], "generic_issue_details (inspectorissuedetails attribute)": [[4, "nodriver.cdp.audits.InspectorIssueDetails.generic_issue_details"]], "get_encoded_response() (in module nodriver.cdp.audits)": [[4, "nodriver.cdp.audits.get_encoded_response"]], "heavy_ad_issue_details (inspectorissuedetails attribute)": [[4, "nodriver.cdp.audits.InspectorIssueDetails.heavy_ad_issue_details"]], "initiator_origin (corsissuedetails attribute)": [[4, "nodriver.cdp.audits.CorsIssueDetails.initiator_origin"]], "insecure_url (mixedcontentissuedetails attribute)": [[4, "nodriver.cdp.audits.MixedContentIssueDetails.insecure_url"]], "invalid_parameter (attributionreportingissuedetails attribute)": [[4, "nodriver.cdp.audits.AttributionReportingIssueDetails.invalid_parameter"]], "is_limited_quirks_mode (quirksmodeissuedetails attribute)": [[4, "nodriver.cdp.audits.QuirksModeIssueDetails.is_limited_quirks_mode"]], "is_opt_out_top_level (cookiedeprecationmetadataissuedetails attribute)": [[4, "nodriver.cdp.audits.CookieDeprecationMetadataIssueDetails.is_opt_out_top_level"]], "is_report_only (contentsecuritypolicyissuedetails attribute)": [[4, "nodriver.cdp.audits.ContentSecurityPolicyIssueDetails.is_report_only"]], "is_warning (corsissuedetails attribute)": [[4, "nodriver.cdp.audits.CorsIssueDetails.is_warning"]], "is_warning (sharedarraybufferissuedetails attribute)": [[4, "nodriver.cdp.audits.SharedArrayBufferIssueDetails.is_warning"]], "issue (issueadded attribute)": [[4, "nodriver.cdp.audits.IssueAdded.issue"]], "issue_id (inspectorissue attribute)": [[4, "nodriver.cdp.audits.InspectorIssue.issue_id"]], "line_number (sourcecodelocation attribute)": [[4, "nodriver.cdp.audits.SourceCodeLocation.line_number"]], "loader_id (quirksmodeissuedetails attribute)": [[4, "nodriver.cdp.audits.QuirksModeIssueDetails.loader_id"]], "location (corsissuedetails attribute)": [[4, "nodriver.cdp.audits.CorsIssueDetails.location"]], "location (navigatoruseragentissuedetails attribute)": [[4, "nodriver.cdp.audits.NavigatorUserAgentIssueDetails.location"]], "low_text_contrast_issue_details (inspectorissuedetails attribute)": [[4, "nodriver.cdp.audits.InspectorIssueDetails.low_text_contrast_issue_details"]], "main_resource_url (mixedcontentissuedetails attribute)": [[4, "nodriver.cdp.audits.MixedContentIssueDetails.main_resource_url"]], "mixed_content_issue_details (inspectorissuedetails attribute)": [[4, "nodriver.cdp.audits.InspectorIssueDetails.mixed_content_issue_details"]], "name (affectedcookie attribute)": [[4, "nodriver.cdp.audits.AffectedCookie.name"]], "navigator_user_agent_issue_details (inspectorissuedetails attribute)": [[4, "nodriver.cdp.audits.InspectorIssueDetails.navigator_user_agent_issue_details"]], "nodriver.cdp.audits": [[4, "module-nodriver.cdp.audits"]], "operation (cookiedeprecationmetadataissuedetails attribute)": [[4, "nodriver.cdp.audits.CookieDeprecationMetadataIssueDetails.operation"]], "operation (cookieissuedetails attribute)": [[4, "nodriver.cdp.audits.CookieIssueDetails.operation"]], "opt_out_percentage (cookiedeprecationmetadataissuedetails attribute)": [[4, "nodriver.cdp.audits.CookieDeprecationMetadataIssueDetails.opt_out_percentage"]], "parent_frame (blockedbyresponseissuedetails attribute)": [[4, "nodriver.cdp.audits.BlockedByResponseIssueDetails.parent_frame"]], "path (affectedcookie attribute)": [[4, "nodriver.cdp.audits.AffectedCookie.path"]], "property_rule_issue_details (inspectorissuedetails attribute)": [[4, "nodriver.cdp.audits.InspectorIssueDetails.property_rule_issue_details"]], "property_rule_issue_reason (propertyruleissuedetails attribute)": [[4, "nodriver.cdp.audits.PropertyRuleIssueDetails.property_rule_issue_reason"]], "property_value (propertyruleissuedetails attribute)": [[4, "nodriver.cdp.audits.PropertyRuleIssueDetails.property_value"]], "quirks_mode_issue_details (inspectorissuedetails attribute)": [[4, "nodriver.cdp.audits.InspectorIssueDetails.quirks_mode_issue_details"]], "raw_cookie_line (cookieissuedetails attribute)": [[4, "nodriver.cdp.audits.CookieIssueDetails.raw_cookie_line"]], "reason (blockedbyresponseissuedetails attribute)": [[4, "nodriver.cdp.audits.BlockedByResponseIssueDetails.reason"]], "reason (heavyadissuedetails attribute)": [[4, "nodriver.cdp.audits.HeavyAdIssueDetails.reason"]], "request (attributionreportingissuedetails attribute)": [[4, "nodriver.cdp.audits.AttributionReportingIssueDetails.request"]], "request (blockedbyresponseissuedetails attribute)": [[4, "nodriver.cdp.audits.BlockedByResponseIssueDetails.request"]], "request (cookieissuedetails attribute)": [[4, "nodriver.cdp.audits.CookieIssueDetails.request"]], "request (corsissuedetails attribute)": [[4, "nodriver.cdp.audits.CorsIssueDetails.request"]], "request (genericissuedetails attribute)": [[4, "nodriver.cdp.audits.GenericIssueDetails.request"]], "request (mixedcontentissuedetails attribute)": [[4, "nodriver.cdp.audits.MixedContentIssueDetails.request"]], "request (shareddictionaryissuedetails attribute)": [[4, "nodriver.cdp.audits.SharedDictionaryIssueDetails.request"]], "request_id (affectedrequest attribute)": [[4, "nodriver.cdp.audits.AffectedRequest.request_id"]], "request_id (failedrequestinfo attribute)": [[4, "nodriver.cdp.audits.FailedRequestInfo.request_id"]], "resolution (heavyadissuedetails attribute)": [[4, "nodriver.cdp.audits.HeavyAdIssueDetails.resolution"]], "resolution_status (mixedcontentissuedetails attribute)": [[4, "nodriver.cdp.audits.MixedContentIssueDetails.resolution_status"]], "resource_ip_address_space (corsissuedetails attribute)": [[4, "nodriver.cdp.audits.CorsIssueDetails.resource_ip_address_space"]], "resource_type (mixedcontentissuedetails attribute)": [[4, "nodriver.cdp.audits.MixedContentIssueDetails.resource_type"]], "script_id (sourcecodelocation attribute)": [[4, "nodriver.cdp.audits.SourceCodeLocation.script_id"]], "shared_array_buffer_issue_details (inspectorissuedetails attribute)": [[4, "nodriver.cdp.audits.InspectorIssueDetails.shared_array_buffer_issue_details"]], "shared_dictionary_error (shareddictionaryissuedetails attribute)": [[4, "nodriver.cdp.audits.SharedDictionaryIssueDetails.shared_dictionary_error"]], "shared_dictionary_issue_details (inspectorissuedetails attribute)": [[4, "nodriver.cdp.audits.InspectorIssueDetails.shared_dictionary_issue_details"]], "site_for_cookies (cookieissuedetails attribute)": [[4, "nodriver.cdp.audits.CookieIssueDetails.site_for_cookies"]], "source_code_location (clienthintissuedetails attribute)": [[4, "nodriver.cdp.audits.ClientHintIssueDetails.source_code_location"]], "source_code_location (contentsecuritypolicyissuedetails attribute)": [[4, "nodriver.cdp.audits.ContentSecurityPolicyIssueDetails.source_code_location"]], "source_code_location (deprecationissuedetails attribute)": [[4, "nodriver.cdp.audits.DeprecationIssueDetails.source_code_location"]], "source_code_location (propertyruleissuedetails attribute)": [[4, "nodriver.cdp.audits.PropertyRuleIssueDetails.source_code_location"]], "source_code_location (sharedarraybufferissuedetails attribute)": [[4, "nodriver.cdp.audits.SharedArrayBufferIssueDetails.source_code_location"]], "source_code_location (stylesheetloadingissuedetails attribute)": [[4, "nodriver.cdp.audits.StylesheetLoadingIssueDetails.source_code_location"]], "style_sheet_loading_issue_reason (stylesheetloadingissuedetails attribute)": [[4, "nodriver.cdp.audits.StylesheetLoadingIssueDetails.style_sheet_loading_issue_reason"]], "stylesheet_loading_issue_details (inspectorissuedetails attribute)": [[4, "nodriver.cdp.audits.InspectorIssueDetails.stylesheet_loading_issue_details"]], "threshold_aa (lowtextcontrastissuedetails attribute)": [[4, "nodriver.cdp.audits.LowTextContrastIssueDetails.threshold_aa"]], "threshold_aaa (lowtextcontrastissuedetails attribute)": [[4, "nodriver.cdp.audits.LowTextContrastIssueDetails.threshold_aaa"]], "tracking_sites (bouncetrackingissuedetails attribute)": [[4, "nodriver.cdp.audits.BounceTrackingIssueDetails.tracking_sites"]], "type_ (deprecationissuedetails attribute)": [[4, "nodriver.cdp.audits.DeprecationIssueDetails.type_"]], "type_ (sharedarraybufferissuedetails attribute)": [[4, "nodriver.cdp.audits.SharedArrayBufferIssueDetails.type_"]], "url (affectedrequest attribute)": [[4, "nodriver.cdp.audits.AffectedRequest.url"]], "url (failedrequestinfo attribute)": [[4, "nodriver.cdp.audits.FailedRequestInfo.url"]], "url (navigatoruseragentissuedetails attribute)": [[4, "nodriver.cdp.audits.NavigatorUserAgentIssueDetails.url"]], "url (quirksmodeissuedetails attribute)": [[4, "nodriver.cdp.audits.QuirksModeIssueDetails.url"]], "url (sourcecodelocation attribute)": [[4, "nodriver.cdp.audits.SourceCodeLocation.url"]], "violated_directive (contentsecuritypolicyissuedetails attribute)": [[4, "nodriver.cdp.audits.ContentSecurityPolicyIssueDetails.violated_directive"]], "violating_node_attribute (genericissuedetails attribute)": [[4, "nodriver.cdp.audits.GenericIssueDetails.violating_node_attribute"]], "violating_node_id (attributionreportingissuedetails attribute)": [[4, "nodriver.cdp.audits.AttributionReportingIssueDetails.violating_node_id"]], "violating_node_id (contentsecuritypolicyissuedetails attribute)": [[4, "nodriver.cdp.audits.ContentSecurityPolicyIssueDetails.violating_node_id"]], "violating_node_id (genericissuedetails attribute)": [[4, "nodriver.cdp.audits.GenericIssueDetails.violating_node_id"]], "violating_node_id (lowtextcontrastissuedetails attribute)": [[4, "nodriver.cdp.audits.LowTextContrastIssueDetails.violating_node_id"]], "violating_node_selector (lowtextcontrastissuedetails attribute)": [[4, "nodriver.cdp.audits.LowTextContrastIssueDetails.violating_node_selector"]], "violation_type (attributionreportingissuedetails attribute)": [[4, "nodriver.cdp.audits.AttributionReportingIssueDetails.violation_type"]], "autocomplete_attribute (fillingstrategy attribute)": [[5, "nodriver.cdp.autofill.FillingStrategy.AUTOCOMPLETE_ATTRIBUTE"]], "autofill_inferred (fillingstrategy attribute)": [[5, "nodriver.cdp.autofill.FillingStrategy.AUTOFILL_INFERRED"]], "address (class in nodriver.cdp.autofill)": [[5, "nodriver.cdp.autofill.Address"]], "addressfield (class in nodriver.cdp.autofill)": [[5, "nodriver.cdp.autofill.AddressField"]], "addressfields (class in nodriver.cdp.autofill)": [[5, "nodriver.cdp.autofill.AddressFields"]], "addressformfilled (class in nodriver.cdp.autofill)": [[5, "nodriver.cdp.autofill.AddressFormFilled"]], "addressui (class in nodriver.cdp.autofill)": [[5, "nodriver.cdp.autofill.AddressUI"]], "creditcard (class in nodriver.cdp.autofill)": [[5, "nodriver.cdp.autofill.CreditCard"]], "filledfield (class in nodriver.cdp.autofill)": [[5, "nodriver.cdp.autofill.FilledField"]], "fillingstrategy (class in nodriver.cdp.autofill)": [[5, "nodriver.cdp.autofill.FillingStrategy"]], "address_fields (addressui attribute)": [[5, "nodriver.cdp.autofill.AddressUI.address_fields"]], "address_ui (addressformfilled attribute)": [[5, "nodriver.cdp.autofill.AddressFormFilled.address_ui"]], "autofill_type (filledfield attribute)": [[5, "nodriver.cdp.autofill.FilledField.autofill_type"]], "cvc (creditcard attribute)": [[5, "nodriver.cdp.autofill.CreditCard.cvc"]], "disable() (in module nodriver.cdp.autofill)": [[5, "nodriver.cdp.autofill.disable"]], "enable() (in module nodriver.cdp.autofill)": [[5, "nodriver.cdp.autofill.enable"]], "expiry_month (creditcard attribute)": [[5, "nodriver.cdp.autofill.CreditCard.expiry_month"]], "expiry_year (creditcard attribute)": [[5, "nodriver.cdp.autofill.CreditCard.expiry_year"]], "field_id (filledfield attribute)": [[5, "nodriver.cdp.autofill.FilledField.field_id"]], "fields (address attribute)": [[5, "nodriver.cdp.autofill.Address.fields"]], "fields (addressfields attribute)": [[5, "nodriver.cdp.autofill.AddressFields.fields"]], "filled_fields (addressformfilled attribute)": [[5, "nodriver.cdp.autofill.AddressFormFilled.filled_fields"]], "filling_strategy (filledfield attribute)": [[5, "nodriver.cdp.autofill.FilledField.filling_strategy"]], "frame_id (filledfield attribute)": [[5, "nodriver.cdp.autofill.FilledField.frame_id"]], "html_type (filledfield attribute)": [[5, "nodriver.cdp.autofill.FilledField.html_type"]], "id_ (filledfield attribute)": [[5, "nodriver.cdp.autofill.FilledField.id_"]], "name (addressfield attribute)": [[5, "nodriver.cdp.autofill.AddressField.name"]], "name (creditcard attribute)": [[5, "nodriver.cdp.autofill.CreditCard.name"]], "name (filledfield attribute)": [[5, "nodriver.cdp.autofill.FilledField.name"]], "nodriver.cdp.autofill": [[5, "module-nodriver.cdp.autofill"]], "number (creditcard attribute)": [[5, "nodriver.cdp.autofill.CreditCard.number"]], "set_addresses() (in module nodriver.cdp.autofill)": [[5, "nodriver.cdp.autofill.set_addresses"]], "trigger() (in module nodriver.cdp.autofill)": [[5, "nodriver.cdp.autofill.trigger"]], "value (addressfield attribute)": [[5, "nodriver.cdp.autofill.AddressField.value"]], "value (filledfield attribute)": [[5, "nodriver.cdp.autofill.FilledField.value"]], "background_fetch (servicename attribute)": [[6, "nodriver.cdp.background_service.ServiceName.BACKGROUND_FETCH"]], "background_sync (servicename attribute)": [[6, "nodriver.cdp.background_service.ServiceName.BACKGROUND_SYNC"]], "backgroundserviceevent (class in nodriver.cdp.background_service)": [[6, "nodriver.cdp.background_service.BackgroundServiceEvent"]], "backgroundserviceeventreceived (class in nodriver.cdp.background_service)": [[6, "nodriver.cdp.background_service.BackgroundServiceEventReceived"]], "eventmetadata (class in nodriver.cdp.background_service)": [[6, "nodriver.cdp.background_service.EventMetadata"]], "notifications (servicename attribute)": [[6, "nodriver.cdp.background_service.ServiceName.NOTIFICATIONS"]], "payment_handler (servicename attribute)": [[6, "nodriver.cdp.background_service.ServiceName.PAYMENT_HANDLER"]], "periodic_background_sync (servicename attribute)": [[6, "nodriver.cdp.background_service.ServiceName.PERIODIC_BACKGROUND_SYNC"]], "push_messaging (servicename attribute)": [[6, "nodriver.cdp.background_service.ServiceName.PUSH_MESSAGING"]], "recordingstatechanged (class in nodriver.cdp.background_service)": [[6, "nodriver.cdp.background_service.RecordingStateChanged"]], "servicename (class in nodriver.cdp.background_service)": [[6, "nodriver.cdp.background_service.ServiceName"]], "background_service_event (backgroundserviceeventreceived attribute)": [[6, "nodriver.cdp.background_service.BackgroundServiceEventReceived.background_service_event"]], "clear_events() (in module nodriver.cdp.background_service)": [[6, "nodriver.cdp.background_service.clear_events"]], "event_metadata (backgroundserviceevent attribute)": [[6, "nodriver.cdp.background_service.BackgroundServiceEvent.event_metadata"]], "event_name (backgroundserviceevent attribute)": [[6, "nodriver.cdp.background_service.BackgroundServiceEvent.event_name"]], "instance_id (backgroundserviceevent attribute)": [[6, "nodriver.cdp.background_service.BackgroundServiceEvent.instance_id"]], "is_recording (recordingstatechanged attribute)": [[6, "nodriver.cdp.background_service.RecordingStateChanged.is_recording"]], "key (eventmetadata attribute)": [[6, "nodriver.cdp.background_service.EventMetadata.key"]], "nodriver.cdp.background_service": [[6, "module-nodriver.cdp.background_service"]], "origin (backgroundserviceevent attribute)": [[6, "nodriver.cdp.background_service.BackgroundServiceEvent.origin"]], "service (backgroundserviceevent attribute)": [[6, "nodriver.cdp.background_service.BackgroundServiceEvent.service"]], "service (recordingstatechanged attribute)": [[6, "nodriver.cdp.background_service.RecordingStateChanged.service"]], "service_worker_registration_id (backgroundserviceevent attribute)": [[6, "nodriver.cdp.background_service.BackgroundServiceEvent.service_worker_registration_id"]], "set_recording() (in module nodriver.cdp.background_service)": [[6, "nodriver.cdp.background_service.set_recording"]], "start_observing() (in module nodriver.cdp.background_service)": [[6, "nodriver.cdp.background_service.start_observing"]], "stop_observing() (in module nodriver.cdp.background_service)": [[6, "nodriver.cdp.background_service.stop_observing"]], "storage_key (backgroundserviceevent attribute)": [[6, "nodriver.cdp.background_service.BackgroundServiceEvent.storage_key"]], "timestamp (backgroundserviceevent attribute)": [[6, "nodriver.cdp.background_service.BackgroundServiceEvent.timestamp"]], "value (eventmetadata attribute)": [[6, "nodriver.cdp.background_service.EventMetadata.value"]], "absent (centralstate attribute)": [[7, "nodriver.cdp.bluetooth_emulation.CentralState.ABSENT"]], "centralstate (class in nodriver.cdp.bluetooth_emulation)": [[7, "nodriver.cdp.bluetooth_emulation.CentralState"]], "manufacturerdata (class in nodriver.cdp.bluetooth_emulation)": [[7, "nodriver.cdp.bluetooth_emulation.ManufacturerData"]], "powered_off (centralstate attribute)": [[7, "nodriver.cdp.bluetooth_emulation.CentralState.POWERED_OFF"]], "powered_on (centralstate attribute)": [[7, "nodriver.cdp.bluetooth_emulation.CentralState.POWERED_ON"]], "scanentry (class in nodriver.cdp.bluetooth_emulation)": [[7, "nodriver.cdp.bluetooth_emulation.ScanEntry"]], "scanrecord (class in nodriver.cdp.bluetooth_emulation)": [[7, "nodriver.cdp.bluetooth_emulation.ScanRecord"]], "appearance (scanrecord attribute)": [[7, "nodriver.cdp.bluetooth_emulation.ScanRecord.appearance"]], "data (manufacturerdata attribute)": [[7, "nodriver.cdp.bluetooth_emulation.ManufacturerData.data"]], "device_address (scanentry attribute)": [[7, "nodriver.cdp.bluetooth_emulation.ScanEntry.device_address"]], "disable() (in module nodriver.cdp.bluetooth_emulation)": [[7, "nodriver.cdp.bluetooth_emulation.disable"]], "enable() (in module nodriver.cdp.bluetooth_emulation)": [[7, "nodriver.cdp.bluetooth_emulation.enable"]], "key (manufacturerdata attribute)": [[7, "nodriver.cdp.bluetooth_emulation.ManufacturerData.key"]], "manufacturer_data (scanrecord attribute)": [[7, "nodriver.cdp.bluetooth_emulation.ScanRecord.manufacturer_data"]], "name (scanrecord attribute)": [[7, "nodriver.cdp.bluetooth_emulation.ScanRecord.name"]], "nodriver.cdp.bluetooth_emulation": [[7, "module-nodriver.cdp.bluetooth_emulation"]], "rssi (scanentry attribute)": [[7, "nodriver.cdp.bluetooth_emulation.ScanEntry.rssi"]], "scan_record (scanentry attribute)": [[7, "nodriver.cdp.bluetooth_emulation.ScanEntry.scan_record"]], "simulate_advertisement() (in module nodriver.cdp.bluetooth_emulation)": [[7, "nodriver.cdp.bluetooth_emulation.simulate_advertisement"]], "simulate_preconnected_peripheral() (in module nodriver.cdp.bluetooth_emulation)": [[7, "nodriver.cdp.bluetooth_emulation.simulate_preconnected_peripheral"]], "tx_power (scanrecord attribute)": [[7, "nodriver.cdp.bluetooth_emulation.ScanRecord.tx_power"]], "uuids (scanrecord attribute)": [[7, "nodriver.cdp.bluetooth_emulation.ScanRecord.uuids"]], "accessibility_events (permissiontype attribute)": [[8, "nodriver.cdp.browser.PermissionType.ACCESSIBILITY_EVENTS"]], "audio_capture (permissiontype attribute)": [[8, "nodriver.cdp.browser.PermissionType.AUDIO_CAPTURE"]], "background_fetch (permissiontype attribute)": [[8, "nodriver.cdp.browser.PermissionType.BACKGROUND_FETCH"]], "background_sync (permissiontype attribute)": [[8, "nodriver.cdp.browser.PermissionType.BACKGROUND_SYNC"]], "bounds (class in nodriver.cdp.browser)": [[8, "nodriver.cdp.browser.Bounds"]], "browsercommandid (class in nodriver.cdp.browser)": [[8, "nodriver.cdp.browser.BrowserCommandId"]], "browsercontextid (class in nodriver.cdp.browser)": [[8, "nodriver.cdp.browser.BrowserContextID"]], "bucket (class in nodriver.cdp.browser)": [[8, "nodriver.cdp.browser.Bucket"]], "captured_surface_control (permissiontype attribute)": [[8, "nodriver.cdp.browser.PermissionType.CAPTURED_SURFACE_CONTROL"]], "clipboard_read_write (permissiontype attribute)": [[8, "nodriver.cdp.browser.PermissionType.CLIPBOARD_READ_WRITE"]], "clipboard_sanitized_write (permissiontype attribute)": [[8, "nodriver.cdp.browser.PermissionType.CLIPBOARD_SANITIZED_WRITE"]], "close_tab_search (browsercommandid attribute)": [[8, "nodriver.cdp.browser.BrowserCommandId.CLOSE_TAB_SEARCH"]], "denied (permissionsetting attribute)": [[8, "nodriver.cdp.browser.PermissionSetting.DENIED"]], "display_capture (permissiontype attribute)": [[8, "nodriver.cdp.browser.PermissionType.DISPLAY_CAPTURE"]], "durable_storage (permissiontype attribute)": [[8, "nodriver.cdp.browser.PermissionType.DURABLE_STORAGE"]], "downloadprogress (class in nodriver.cdp.browser)": [[8, "nodriver.cdp.browser.DownloadProgress"]], "downloadwillbegin (class in nodriver.cdp.browser)": [[8, "nodriver.cdp.browser.DownloadWillBegin"]], "flash (permissiontype attribute)": [[8, "nodriver.cdp.browser.PermissionType.FLASH"]], "fullscreen (windowstate attribute)": [[8, "nodriver.cdp.browser.WindowState.FULLSCREEN"]], "geolocation (permissiontype attribute)": [[8, "nodriver.cdp.browser.PermissionType.GEOLOCATION"]], "granted (permissionsetting attribute)": [[8, "nodriver.cdp.browser.PermissionSetting.GRANTED"]], "histogram (class in nodriver.cdp.browser)": [[8, "nodriver.cdp.browser.Histogram"]], "idle_detection (permissiontype attribute)": [[8, "nodriver.cdp.browser.PermissionType.IDLE_DETECTION"]], "local_fonts (permissiontype attribute)": [[8, "nodriver.cdp.browser.PermissionType.LOCAL_FONTS"]], "maximized (windowstate attribute)": [[8, "nodriver.cdp.browser.WindowState.MAXIMIZED"]], "midi (permissiontype attribute)": [[8, "nodriver.cdp.browser.PermissionType.MIDI"]], "midi_sysex (permissiontype attribute)": [[8, "nodriver.cdp.browser.PermissionType.MIDI_SYSEX"]], "minimized (windowstate attribute)": [[8, "nodriver.cdp.browser.WindowState.MINIMIZED"]], "nfc (permissiontype attribute)": [[8, "nodriver.cdp.browser.PermissionType.NFC"]], "normal (windowstate attribute)": [[8, "nodriver.cdp.browser.WindowState.NORMAL"]], "notifications (permissiontype attribute)": [[8, "nodriver.cdp.browser.PermissionType.NOTIFICATIONS"]], "open_tab_search (browsercommandid attribute)": [[8, "nodriver.cdp.browser.BrowserCommandId.OPEN_TAB_SEARCH"]], "payment_handler (permissiontype attribute)": [[8, "nodriver.cdp.browser.PermissionType.PAYMENT_HANDLER"]], "periodic_background_sync (permissiontype attribute)": [[8, "nodriver.cdp.browser.PermissionType.PERIODIC_BACKGROUND_SYNC"]], "prompt (permissionsetting attribute)": [[8, "nodriver.cdp.browser.PermissionSetting.PROMPT"]], "protected_media_identifier (permissiontype attribute)": [[8, "nodriver.cdp.browser.PermissionType.PROTECTED_MEDIA_IDENTIFIER"]], "permissiondescriptor (class in nodriver.cdp.browser)": [[8, "nodriver.cdp.browser.PermissionDescriptor"]], "permissionsetting (class in nodriver.cdp.browser)": [[8, "nodriver.cdp.browser.PermissionSetting"]], "permissiontype (class in nodriver.cdp.browser)": [[8, "nodriver.cdp.browser.PermissionType"]], "sensors (permissiontype attribute)": [[8, "nodriver.cdp.browser.PermissionType.SENSORS"]], "speaker_selection (permissiontype attribute)": [[8, "nodriver.cdp.browser.PermissionType.SPEAKER_SELECTION"]], "storage_access (permissiontype attribute)": [[8, "nodriver.cdp.browser.PermissionType.STORAGE_ACCESS"]], "top_level_storage_access (permissiontype attribute)": [[8, "nodriver.cdp.browser.PermissionType.TOP_LEVEL_STORAGE_ACCESS"]], "video_capture (permissiontype attribute)": [[8, "nodriver.cdp.browser.PermissionType.VIDEO_CAPTURE"]], "video_capture_pan_tilt_zoom (permissiontype attribute)": [[8, "nodriver.cdp.browser.PermissionType.VIDEO_CAPTURE_PAN_TILT_ZOOM"]], "wake_lock_screen (permissiontype attribute)": [[8, "nodriver.cdp.browser.PermissionType.WAKE_LOCK_SCREEN"]], "wake_lock_system (permissiontype attribute)": [[8, "nodriver.cdp.browser.PermissionType.WAKE_LOCK_SYSTEM"]], "web_app_installation (permissiontype attribute)": [[8, "nodriver.cdp.browser.PermissionType.WEB_APP_INSTALLATION"]], "window_management (permissiontype attribute)": [[8, "nodriver.cdp.browser.PermissionType.WINDOW_MANAGEMENT"]], "windowid (class in nodriver.cdp.browser)": [[8, "nodriver.cdp.browser.WindowID"]], "windowstate (class in nodriver.cdp.browser)": [[8, "nodriver.cdp.browser.WindowState"]], "add_privacy_sandbox_enrollment_override() (in module nodriver.cdp.browser)": [[8, "nodriver.cdp.browser.add_privacy_sandbox_enrollment_override"]], "allow_without_gesture (permissiondescriptor attribute)": [[8, "nodriver.cdp.browser.PermissionDescriptor.allow_without_gesture"]], "allow_without_sanitization (permissiondescriptor attribute)": [[8, "nodriver.cdp.browser.PermissionDescriptor.allow_without_sanitization"]], "buckets (histogram attribute)": [[8, "nodriver.cdp.browser.Histogram.buckets"]], "cancel_download() (in module nodriver.cdp.browser)": [[8, "nodriver.cdp.browser.cancel_download"]], "close() (in module nodriver.cdp.browser)": [[8, "nodriver.cdp.browser.close"]], "count (bucket attribute)": [[8, "nodriver.cdp.browser.Bucket.count"]], "count (histogram attribute)": [[8, "nodriver.cdp.browser.Histogram.count"]], "crash() (in module nodriver.cdp.browser)": [[8, "nodriver.cdp.browser.crash"]], "crash_gpu_process() (in module nodriver.cdp.browser)": [[8, "nodriver.cdp.browser.crash_gpu_process"]], "execute_browser_command() (in module nodriver.cdp.browser)": [[8, "nodriver.cdp.browser.execute_browser_command"]], "frame_id (downloadwillbegin attribute)": [[8, "nodriver.cdp.browser.DownloadWillBegin.frame_id"], [39, "nodriver.cdp.page.DownloadWillBegin.frame_id"]], "get_browser_command_line() (in module nodriver.cdp.browser)": [[8, "nodriver.cdp.browser.get_browser_command_line"]], "get_histogram() (in module nodriver.cdp.browser)": [[8, "nodriver.cdp.browser.get_histogram"]], "get_histograms() (in module nodriver.cdp.browser)": [[8, "nodriver.cdp.browser.get_histograms"]], "get_version() (in module nodriver.cdp.browser)": [[8, "nodriver.cdp.browser.get_version"]], "get_window_bounds() (in module nodriver.cdp.browser)": [[8, "nodriver.cdp.browser.get_window_bounds"]], "get_window_for_target() (in module nodriver.cdp.browser)": [[8, "nodriver.cdp.browser.get_window_for_target"]], "grant_permissions() (in module nodriver.cdp.browser)": [[8, "nodriver.cdp.browser.grant_permissions"]], "guid (downloadprogress attribute)": [[8, "nodriver.cdp.browser.DownloadProgress.guid"], [39, "nodriver.cdp.page.DownloadProgress.guid"]], "guid (downloadwillbegin attribute)": [[8, "nodriver.cdp.browser.DownloadWillBegin.guid"], [39, "nodriver.cdp.page.DownloadWillBegin.guid"]], "height (bounds attribute)": [[8, "nodriver.cdp.browser.Bounds.height"]], "high (bucket attribute)": [[8, "nodriver.cdp.browser.Bucket.high"]], "left (bounds attribute)": [[8, "nodriver.cdp.browser.Bounds.left"]], "low (bucket attribute)": [[8, "nodriver.cdp.browser.Bucket.low"]], "name (histogram attribute)": [[8, "nodriver.cdp.browser.Histogram.name"]], "name (permissiondescriptor attribute)": [[8, "nodriver.cdp.browser.PermissionDescriptor.name"]], "nodriver.cdp.browser": [[8, "module-nodriver.cdp.browser"]], "pan_tilt_zoom (permissiondescriptor attribute)": [[8, "nodriver.cdp.browser.PermissionDescriptor.pan_tilt_zoom"]], "received_bytes (downloadprogress attribute)": [[8, "nodriver.cdp.browser.DownloadProgress.received_bytes"], [39, "nodriver.cdp.page.DownloadProgress.received_bytes"]], "reset_permissions() (in module nodriver.cdp.browser)": [[8, "nodriver.cdp.browser.reset_permissions"]], "set_dock_tile() (in module nodriver.cdp.browser)": [[8, "nodriver.cdp.browser.set_dock_tile"]], "set_download_behavior() (in module nodriver.cdp.browser)": [[8, "nodriver.cdp.browser.set_download_behavior"]], "set_permission() (in module nodriver.cdp.browser)": [[8, "nodriver.cdp.browser.set_permission"]], "set_window_bounds() (in module nodriver.cdp.browser)": [[8, "nodriver.cdp.browser.set_window_bounds"]], "state (downloadprogress attribute)": [[8, "nodriver.cdp.browser.DownloadProgress.state"], [39, "nodriver.cdp.page.DownloadProgress.state"]], "suggested_filename (downloadwillbegin attribute)": [[8, "nodriver.cdp.browser.DownloadWillBegin.suggested_filename"], [39, "nodriver.cdp.page.DownloadWillBegin.suggested_filename"]], "sum_ (histogram attribute)": [[8, "nodriver.cdp.browser.Histogram.sum_"]], "sysex (permissiondescriptor attribute)": [[8, "nodriver.cdp.browser.PermissionDescriptor.sysex"]], "top (bounds attribute)": [[8, "nodriver.cdp.browser.Bounds.top"]], "total_bytes (downloadprogress attribute)": [[8, "nodriver.cdp.browser.DownloadProgress.total_bytes"], [39, "nodriver.cdp.page.DownloadProgress.total_bytes"]], "url (downloadwillbegin attribute)": [[8, "nodriver.cdp.browser.DownloadWillBegin.url"], [39, "nodriver.cdp.page.DownloadWillBegin.url"]], "user_visible_only (permissiondescriptor attribute)": [[8, "nodriver.cdp.browser.PermissionDescriptor.user_visible_only"]], "width (bounds attribute)": [[8, "nodriver.cdp.browser.Bounds.width"]], "window_state (bounds attribute)": [[8, "nodriver.cdp.browser.Bounds.window_state"]], "basic (cachedresponsetype attribute)": [[9, "nodriver.cdp.cache_storage.CachedResponseType.BASIC"]], "cors (cachedresponsetype attribute)": [[9, "nodriver.cdp.cache_storage.CachedResponseType.CORS"]], "cache (class in nodriver.cdp.cache_storage)": [[9, "nodriver.cdp.cache_storage.Cache"]], "cacheid (class in nodriver.cdp.cache_storage)": [[9, "nodriver.cdp.cache_storage.CacheId"]], "cachedresponse (class in nodriver.cdp.cache_storage)": [[9, "nodriver.cdp.cache_storage.CachedResponse"]], "cachedresponsetype (class in nodriver.cdp.cache_storage)": [[9, "nodriver.cdp.cache_storage.CachedResponseType"]], "default (cachedresponsetype attribute)": [[9, "nodriver.cdp.cache_storage.CachedResponseType.DEFAULT"]], "dataentry (class in nodriver.cdp.cache_storage)": [[9, "nodriver.cdp.cache_storage.DataEntry"]], "error (cachedresponsetype attribute)": [[9, "nodriver.cdp.cache_storage.CachedResponseType.ERROR"]], "header (class in nodriver.cdp.cache_storage)": [[9, "nodriver.cdp.cache_storage.Header"]], "opaque_redirect (cachedresponsetype attribute)": [[9, "nodriver.cdp.cache_storage.CachedResponseType.OPAQUE_REDIRECT"]], "opaque_response (cachedresponsetype attribute)": [[9, "nodriver.cdp.cache_storage.CachedResponseType.OPAQUE_RESPONSE"]], "body (cachedresponse attribute)": [[9, "nodriver.cdp.cache_storage.CachedResponse.body"]], "cache_id (cache attribute)": [[9, "nodriver.cdp.cache_storage.Cache.cache_id"]], "cache_name (cache attribute)": [[9, "nodriver.cdp.cache_storage.Cache.cache_name"]], "delete_cache() (in module nodriver.cdp.cache_storage)": [[9, "nodriver.cdp.cache_storage.delete_cache"]], "delete_entry() (in module nodriver.cdp.cache_storage)": [[9, "nodriver.cdp.cache_storage.delete_entry"]], "name (header attribute)": [[9, "nodriver.cdp.cache_storage.Header.name"]], "nodriver.cdp.cache_storage": [[9, "module-nodriver.cdp.cache_storage"]], "request_cache_names() (in module nodriver.cdp.cache_storage)": [[9, "nodriver.cdp.cache_storage.request_cache_names"]], "request_cached_response() (in module nodriver.cdp.cache_storage)": [[9, "nodriver.cdp.cache_storage.request_cached_response"]], "request_entries() (in module nodriver.cdp.cache_storage)": [[9, "nodriver.cdp.cache_storage.request_entries"]], "request_headers (dataentry attribute)": [[9, "nodriver.cdp.cache_storage.DataEntry.request_headers"]], "request_method (dataentry attribute)": [[9, "nodriver.cdp.cache_storage.DataEntry.request_method"]], "request_url (dataentry attribute)": [[9, "nodriver.cdp.cache_storage.DataEntry.request_url"]], "response_headers (dataentry attribute)": [[9, "nodriver.cdp.cache_storage.DataEntry.response_headers"]], "response_status (dataentry attribute)": [[9, "nodriver.cdp.cache_storage.DataEntry.response_status"]], "response_status_text (dataentry attribute)": [[9, "nodriver.cdp.cache_storage.DataEntry.response_status_text"]], "response_time (dataentry attribute)": [[9, "nodriver.cdp.cache_storage.DataEntry.response_time"]], "response_type (dataentry attribute)": [[9, "nodriver.cdp.cache_storage.DataEntry.response_type"]], "security_origin (cache attribute)": [[9, "nodriver.cdp.cache_storage.Cache.security_origin"]], "storage_bucket (cache attribute)": [[9, "nodriver.cdp.cache_storage.Cache.storage_bucket"]], "storage_key (cache attribute)": [[9, "nodriver.cdp.cache_storage.Cache.storage_key"]], "value (header attribute)": [[9, "nodriver.cdp.cache_storage.Header.value"]], "issueupdated (class in nodriver.cdp.cast)": [[10, "nodriver.cdp.cast.IssueUpdated"]], "sink (class in nodriver.cdp.cast)": [[10, "nodriver.cdp.cast.Sink"]], "sinksupdated (class in nodriver.cdp.cast)": [[10, "nodriver.cdp.cast.SinksUpdated"]], "disable() (in module nodriver.cdp.cast)": [[10, "nodriver.cdp.cast.disable"]], "enable() (in module nodriver.cdp.cast)": [[10, "nodriver.cdp.cast.enable"]], "id_ (sink attribute)": [[10, "nodriver.cdp.cast.Sink.id_"]], "issue_message (issueupdated attribute)": [[10, "nodriver.cdp.cast.IssueUpdated.issue_message"]], "name (sink attribute)": [[10, "nodriver.cdp.cast.Sink.name"]], "nodriver.cdp.cast": [[10, "module-nodriver.cdp.cast"]], "session (sink attribute)": [[10, "nodriver.cdp.cast.Sink.session"]], "set_sink_to_use() (in module nodriver.cdp.cast)": [[10, "nodriver.cdp.cast.set_sink_to_use"]], "sinks (sinksupdated attribute)": [[10, "nodriver.cdp.cast.SinksUpdated.sinks"]], "start_desktop_mirroring() (in module nodriver.cdp.cast)": [[10, "nodriver.cdp.cast.start_desktop_mirroring"]], "start_tab_mirroring() (in module nodriver.cdp.cast)": [[10, "nodriver.cdp.cast.start_tab_mirroring"]], "stop_casting() (in module nodriver.cdp.cast)": [[10, "nodriver.cdp.cast.stop_casting"]], "consolemessage (class in nodriver.cdp.console)": [[11, "nodriver.cdp.console.ConsoleMessage"]], "messageadded (class in nodriver.cdp.console)": [[11, "nodriver.cdp.console.MessageAdded"]], "clear_messages() (in module nodriver.cdp.console)": [[11, "nodriver.cdp.console.clear_messages"]], "column (consolemessage attribute)": [[11, "nodriver.cdp.console.ConsoleMessage.column"]], "disable() (in module nodriver.cdp.console)": [[11, "nodriver.cdp.console.disable"]], "enable() (in module nodriver.cdp.console)": [[11, "nodriver.cdp.console.enable"]], "level (consolemessage attribute)": [[11, "nodriver.cdp.console.ConsoleMessage.level"]], "line (consolemessage attribute)": [[11, "nodriver.cdp.console.ConsoleMessage.line"]], "message (messageadded attribute)": [[11, "nodriver.cdp.console.MessageAdded.message"]], "nodriver.cdp.console": [[11, "module-nodriver.cdp.console"]], "source (consolemessage attribute)": [[11, "nodriver.cdp.console.ConsoleMessage.source"]], "text (consolemessage attribute)": [[11, "nodriver.cdp.console.ConsoleMessage.text"]], "url (consolemessage attribute)": [[11, "nodriver.cdp.console.ConsoleMessage.url"]], "container_rule (cssruletype attribute)": [[12, "nodriver.cdp.css.CSSRuleType.CONTAINER_RULE"]], "csscomputedstyleproperty (class in nodriver.cdp.css)": [[12, "nodriver.cdp.css.CSSComputedStyleProperty"]], "csscontainerquery (class in nodriver.cdp.css)": [[12, "nodriver.cdp.css.CSSContainerQuery"]], "cssfontpalettevaluesrule (class in nodriver.cdp.css)": [[12, "nodriver.cdp.css.CSSFontPaletteValuesRule"]], "csskeyframerule (class in nodriver.cdp.css)": [[12, "nodriver.cdp.css.CSSKeyframeRule"]], "csskeyframesrule (class in nodriver.cdp.css)": [[12, "nodriver.cdp.css.CSSKeyframesRule"]], "csslayer (class in nodriver.cdp.css)": [[12, "nodriver.cdp.css.CSSLayer"]], "csslayerdata (class in nodriver.cdp.css)": [[12, "nodriver.cdp.css.CSSLayerData"]], "cssmedia (class in nodriver.cdp.css)": [[12, "nodriver.cdp.css.CSSMedia"]], "csspositiontryrule (class in nodriver.cdp.css)": [[12, "nodriver.cdp.css.CSSPositionTryRule"]], "cssproperty (class in nodriver.cdp.css)": [[12, "nodriver.cdp.css.CSSProperty"]], "csspropertyregistration (class in nodriver.cdp.css)": [[12, "nodriver.cdp.css.CSSPropertyRegistration"]], "csspropertyrule (class in nodriver.cdp.css)": [[12, "nodriver.cdp.css.CSSPropertyRule"]], "cssrule (class in nodriver.cdp.css)": [[12, "nodriver.cdp.css.CSSRule"]], "cssruletype (class in nodriver.cdp.css)": [[12, "nodriver.cdp.css.CSSRuleType"]], "cssscope (class in nodriver.cdp.css)": [[12, "nodriver.cdp.css.CSSScope"]], "cssstartingstyle (class in nodriver.cdp.css)": [[12, "nodriver.cdp.css.CSSStartingStyle"]], "cssstyle (class in nodriver.cdp.css)": [[12, "nodriver.cdp.css.CSSStyle"]], "cssstylesheetheader (class in nodriver.cdp.css)": [[12, "nodriver.cdp.css.CSSStyleSheetHeader"]], "csssupports (class in nodriver.cdp.css)": [[12, "nodriver.cdp.css.CSSSupports"]], "csstryrule (class in nodriver.cdp.css)": [[12, "nodriver.cdp.css.CSSTryRule"]], "computedstyleupdated (class in nodriver.cdp.css)": [[12, "nodriver.cdp.css.ComputedStyleUpdated"]], "fontface (class in nodriver.cdp.css)": [[12, "nodriver.cdp.css.FontFace"]], "fontvariationaxis (class in nodriver.cdp.css)": [[12, "nodriver.cdp.css.FontVariationAxis"]], "fontsupdated (class in nodriver.cdp.css)": [[12, "nodriver.cdp.css.FontsUpdated"]], "injected (stylesheetorigin attribute)": [[12, "nodriver.cdp.css.StyleSheetOrigin.INJECTED"]], "inspector (stylesheetorigin attribute)": [[12, "nodriver.cdp.css.StyleSheetOrigin.INSPECTOR"]], "inheritedpseudoelementmatches (class in nodriver.cdp.css)": [[12, "nodriver.cdp.css.InheritedPseudoElementMatches"]], "inheritedstyleentry (class in nodriver.cdp.css)": [[12, "nodriver.cdp.css.InheritedStyleEntry"]], "layer_rule (cssruletype attribute)": [[12, "nodriver.cdp.css.CSSRuleType.LAYER_RULE"]], "media_rule (cssruletype attribute)": [[12, "nodriver.cdp.css.CSSRuleType.MEDIA_RULE"]], "mediaquery (class in nodriver.cdp.css)": [[12, "nodriver.cdp.css.MediaQuery"]], "mediaqueryexpression (class in nodriver.cdp.css)": [[12, "nodriver.cdp.css.MediaQueryExpression"]], "mediaqueryresultchanged (class in nodriver.cdp.css)": [[12, "nodriver.cdp.css.MediaQueryResultChanged"]], "platformfontusage (class in nodriver.cdp.css)": [[12, "nodriver.cdp.css.PlatformFontUsage"]], "pseudoelementmatches (class in nodriver.cdp.css)": [[12, "nodriver.cdp.css.PseudoElementMatches"]], "regular (stylesheetorigin attribute)": [[12, "nodriver.cdp.css.StyleSheetOrigin.REGULAR"]], "rulematch (class in nodriver.cdp.css)": [[12, "nodriver.cdp.css.RuleMatch"]], "ruleusage (class in nodriver.cdp.css)": [[12, "nodriver.cdp.css.RuleUsage"]], "scope_rule (cssruletype attribute)": [[12, "nodriver.cdp.css.CSSRuleType.SCOPE_RULE"]], "starting_style_rule (cssruletype attribute)": [[12, "nodriver.cdp.css.CSSRuleType.STARTING_STYLE_RULE"]], "style_rule (cssruletype attribute)": [[12, "nodriver.cdp.css.CSSRuleType.STYLE_RULE"]], "supports_rule (cssruletype attribute)": [[12, "nodriver.cdp.css.CSSRuleType.SUPPORTS_RULE"]], "selectorlist (class in nodriver.cdp.css)": [[12, "nodriver.cdp.css.SelectorList"]], "shorthandentry (class in nodriver.cdp.css)": [[12, "nodriver.cdp.css.ShorthandEntry"]], "sourcerange (class in nodriver.cdp.css)": [[12, "nodriver.cdp.css.SourceRange"]], "specificity (class in nodriver.cdp.css)": [[12, "nodriver.cdp.css.Specificity"]], "styledeclarationedit (class in nodriver.cdp.css)": [[12, "nodriver.cdp.css.StyleDeclarationEdit"]], "stylesheetadded (class in nodriver.cdp.css)": [[12, "nodriver.cdp.css.StyleSheetAdded"]], "stylesheetchanged (class in nodriver.cdp.css)": [[12, "nodriver.cdp.css.StyleSheetChanged"]], "stylesheetid (class in nodriver.cdp.css)": [[12, "nodriver.cdp.css.StyleSheetId"]], "stylesheetorigin (class in nodriver.cdp.css)": [[12, "nodriver.cdp.css.StyleSheetOrigin"]], "stylesheetremoved (class in nodriver.cdp.css)": [[12, "nodriver.cdp.css.StyleSheetRemoved"]], "user_agent (stylesheetorigin attribute)": [[12, "nodriver.cdp.css.StyleSheetOrigin.USER_AGENT"]], "value (class in nodriver.cdp.css)": [[12, "nodriver.cdp.css.Value"]], "a (specificity attribute)": [[12, "nodriver.cdp.css.Specificity.a"]], "active (csspositiontryrule attribute)": [[12, "nodriver.cdp.css.CSSPositionTryRule.active"]], "active (csssupports attribute)": [[12, "nodriver.cdp.css.CSSSupports.active"]], "active (mediaquery attribute)": [[12, "nodriver.cdp.css.MediaQuery.active"]], "add_rule() (in module nodriver.cdp.css)": [[12, "nodriver.cdp.css.add_rule"]], "animation_name (csskeyframesrule attribute)": [[12, "nodriver.cdp.css.CSSKeyframesRule.animation_name"]], "b (specificity attribute)": [[12, "nodriver.cdp.css.Specificity.b"]], "c (specificity attribute)": [[12, "nodriver.cdp.css.Specificity.c"]], "collect_class_names() (in module nodriver.cdp.css)": [[12, "nodriver.cdp.css.collect_class_names"]], "computed_length (mediaqueryexpression attribute)": [[12, "nodriver.cdp.css.MediaQueryExpression.computed_length"]], "container_queries (cssrule attribute)": [[12, "nodriver.cdp.css.CSSRule.container_queries"]], "create_style_sheet() (in module nodriver.cdp.css)": [[12, "nodriver.cdp.css.create_style_sheet"]], "css_properties (cssstyle attribute)": [[12, "nodriver.cdp.css.CSSStyle.css_properties"]], "css_text (cssstyle attribute)": [[12, "nodriver.cdp.css.CSSStyle.css_text"]], "default_value (fontvariationaxis attribute)": [[12, "nodriver.cdp.css.FontVariationAxis.default_value"]], "disable() (in module nodriver.cdp.css)": [[12, "nodriver.cdp.css.disable"]], "disabled (cssproperty attribute)": [[12, "nodriver.cdp.css.CSSProperty.disabled"]], "disabled (cssstylesheetheader attribute)": [[12, "nodriver.cdp.css.CSSStyleSheetHeader.disabled"]], "enable() (in module nodriver.cdp.css)": [[12, "nodriver.cdp.css.enable"]], "end_column (cssstylesheetheader attribute)": [[12, "nodriver.cdp.css.CSSStyleSheetHeader.end_column"]], "end_column (sourcerange attribute)": [[12, "nodriver.cdp.css.SourceRange.end_column"]], "end_line (cssstylesheetheader attribute)": [[12, "nodriver.cdp.css.CSSStyleSheetHeader.end_line"]], "end_line (sourcerange attribute)": [[12, "nodriver.cdp.css.SourceRange.end_line"]], "end_offset (ruleusage attribute)": [[12, "nodriver.cdp.css.RuleUsage.end_offset"]], "expressions (mediaquery attribute)": [[12, "nodriver.cdp.css.MediaQuery.expressions"]], "family_name (platformfontusage attribute)": [[12, "nodriver.cdp.css.PlatformFontUsage.family_name"]], "feature (mediaqueryexpression attribute)": [[12, "nodriver.cdp.css.MediaQueryExpression.feature"]], "font (fontsupdated attribute)": [[12, "nodriver.cdp.css.FontsUpdated.font"]], "font_display (fontface attribute)": [[12, "nodriver.cdp.css.FontFace.font_display"]], "font_family (fontface attribute)": [[12, "nodriver.cdp.css.FontFace.font_family"]], "font_palette_name (cssfontpalettevaluesrule attribute)": [[12, "nodriver.cdp.css.CSSFontPaletteValuesRule.font_palette_name"]], "font_stretch (fontface attribute)": [[12, "nodriver.cdp.css.FontFace.font_stretch"]], "font_style (fontface attribute)": [[12, "nodriver.cdp.css.FontFace.font_style"]], "font_variant (fontface attribute)": [[12, "nodriver.cdp.css.FontFace.font_variant"]], "font_variation_axes (fontface attribute)": [[12, "nodriver.cdp.css.FontFace.font_variation_axes"]], "font_weight (fontface attribute)": [[12, "nodriver.cdp.css.FontFace.font_weight"]], "force_pseudo_state() (in module nodriver.cdp.css)": [[12, "nodriver.cdp.css.force_pseudo_state"]], "frame_id (cssstylesheetheader attribute)": [[12, "nodriver.cdp.css.CSSStyleSheetHeader.frame_id"]], "get_background_colors() (in module nodriver.cdp.css)": [[12, "nodriver.cdp.css.get_background_colors"]], "get_computed_style_for_node() (in module nodriver.cdp.css)": [[12, "nodriver.cdp.css.get_computed_style_for_node"]], "get_inline_styles_for_node() (in module nodriver.cdp.css)": [[12, "nodriver.cdp.css.get_inline_styles_for_node"]], "get_layers_for_node() (in module nodriver.cdp.css)": [[12, "nodriver.cdp.css.get_layers_for_node"]], "get_location_for_selector() (in module nodriver.cdp.css)": [[12, "nodriver.cdp.css.get_location_for_selector"]], "get_matched_styles_for_node() (in module nodriver.cdp.css)": [[12, "nodriver.cdp.css.get_matched_styles_for_node"]], "get_media_queries() (in module nodriver.cdp.css)": [[12, "nodriver.cdp.css.get_media_queries"]], "get_platform_fonts_for_node() (in module nodriver.cdp.css)": [[12, "nodriver.cdp.css.get_platform_fonts_for_node"]], "get_style_sheet_text() (in module nodriver.cdp.css)": [[12, "nodriver.cdp.css.get_style_sheet_text"]], "glyph_count (platformfontusage attribute)": [[12, "nodriver.cdp.css.PlatformFontUsage.glyph_count"]], "has_source_url (cssstylesheetheader attribute)": [[12, "nodriver.cdp.css.CSSStyleSheetHeader.has_source_url"]], "header (stylesheetadded attribute)": [[12, "nodriver.cdp.css.StyleSheetAdded.header"]], "implicit (cssproperty attribute)": [[12, "nodriver.cdp.css.CSSProperty.implicit"]], "important (cssproperty attribute)": [[12, "nodriver.cdp.css.CSSProperty.important"]], "important (shorthandentry attribute)": [[12, "nodriver.cdp.css.ShorthandEntry.important"]], "inherits (csspropertyregistration attribute)": [[12, "nodriver.cdp.css.CSSPropertyRegistration.inherits"]], "initial_value (csspropertyregistration attribute)": [[12, "nodriver.cdp.css.CSSPropertyRegistration.initial_value"]], "inline_style (inheritedstyleentry attribute)": [[12, "nodriver.cdp.css.InheritedStyleEntry.inline_style"]], "is_constructed (cssstylesheetheader attribute)": [[12, "nodriver.cdp.css.CSSStyleSheetHeader.is_constructed"]], "is_custom_font (platformfontusage attribute)": [[12, "nodriver.cdp.css.PlatformFontUsage.is_custom_font"]], "is_inline (cssstylesheetheader attribute)": [[12, "nodriver.cdp.css.CSSStyleSheetHeader.is_inline"]], "is_mutable (cssstylesheetheader attribute)": [[12, "nodriver.cdp.css.CSSStyleSheetHeader.is_mutable"]], "key_text (csskeyframerule attribute)": [[12, "nodriver.cdp.css.CSSKeyframeRule.key_text"]], "keyframes (csskeyframesrule attribute)": [[12, "nodriver.cdp.css.CSSKeyframesRule.keyframes"]], "layers (cssrule attribute)": [[12, "nodriver.cdp.css.CSSRule.layers"]], "length (cssstylesheetheader attribute)": [[12, "nodriver.cdp.css.CSSStyleSheetHeader.length"]], "loading_failed (cssstylesheetheader attribute)": [[12, "nodriver.cdp.css.CSSStyleSheetHeader.loading_failed"]], "logical_axes (csscontainerquery attribute)": [[12, "nodriver.cdp.css.CSSContainerQuery.logical_axes"]], "longhand_properties (cssproperty attribute)": [[12, "nodriver.cdp.css.CSSProperty.longhand_properties"]], "matched_css_rules (inheritedstyleentry attribute)": [[12, "nodriver.cdp.css.InheritedStyleEntry.matched_css_rules"]], "matches (pseudoelementmatches attribute)": [[12, "nodriver.cdp.css.PseudoElementMatches.matches"]], "matching_selectors (rulematch attribute)": [[12, "nodriver.cdp.css.RuleMatch.matching_selectors"]], "max_value (fontvariationaxis attribute)": [[12, "nodriver.cdp.css.FontVariationAxis.max_value"]], "media (cssrule attribute)": [[12, "nodriver.cdp.css.CSSRule.media"]], "media_list (cssmedia attribute)": [[12, "nodriver.cdp.css.CSSMedia.media_list"]], "min_value (fontvariationaxis attribute)": [[12, "nodriver.cdp.css.FontVariationAxis.min_value"]], "name (csscomputedstyleproperty attribute)": [[12, "nodriver.cdp.css.CSSComputedStyleProperty.name"], [17, "nodriver.cdp.dom.CSSComputedStyleProperty.name"]], "name (csscontainerquery attribute)": [[12, "nodriver.cdp.css.CSSContainerQuery.name"]], "name (csslayerdata attribute)": [[12, "nodriver.cdp.css.CSSLayerData.name"]], "name (csspositiontryrule attribute)": [[12, "nodriver.cdp.css.CSSPositionTryRule.name"]], "name (cssproperty attribute)": [[12, "nodriver.cdp.css.CSSProperty.name"]], "name (fontvariationaxis attribute)": [[12, "nodriver.cdp.css.FontVariationAxis.name"]], "name (shorthandentry attribute)": [[12, "nodriver.cdp.css.ShorthandEntry.name"]], "nesting_selectors (cssrule attribute)": [[12, "nodriver.cdp.css.CSSRule.nesting_selectors"]], "node_id (computedstyleupdated attribute)": [[12, "nodriver.cdp.css.ComputedStyleUpdated.node_id"]], "nodriver.cdp.css": [[12, "module-nodriver.cdp.css"]], "order (csslayerdata attribute)": [[12, "nodriver.cdp.css.CSSLayerData.order"]], "origin (cssfontpalettevaluesrule attribute)": [[12, "nodriver.cdp.css.CSSFontPaletteValuesRule.origin"]], "origin (csskeyframerule attribute)": [[12, "nodriver.cdp.css.CSSKeyframeRule.origin"]], "origin (csspositiontryrule attribute)": [[12, "nodriver.cdp.css.CSSPositionTryRule.origin"]], "origin (csspropertyrule attribute)": [[12, "nodriver.cdp.css.CSSPropertyRule.origin"]], "origin (cssrule attribute)": [[12, "nodriver.cdp.css.CSSRule.origin"]], "origin (cssstylesheetheader attribute)": [[12, "nodriver.cdp.css.CSSStyleSheetHeader.origin"]], "origin (csstryrule attribute)": [[12, "nodriver.cdp.css.CSSTryRule.origin"]], "owner_node (cssstylesheetheader attribute)": [[12, "nodriver.cdp.css.CSSStyleSheetHeader.owner_node"]], "parsed_ok (cssproperty attribute)": [[12, "nodriver.cdp.css.CSSProperty.parsed_ok"]], "physical_axes (csscontainerquery attribute)": [[12, "nodriver.cdp.css.CSSContainerQuery.physical_axes"]], "platform_font_family (fontface attribute)": [[12, "nodriver.cdp.css.FontFace.platform_font_family"]], "post_script_name (platformfontusage attribute)": [[12, "nodriver.cdp.css.PlatformFontUsage.post_script_name"]], "property_name (csspropertyregistration attribute)": [[12, "nodriver.cdp.css.CSSPropertyRegistration.property_name"]], "property_name (csspropertyrule attribute)": [[12, "nodriver.cdp.css.CSSPropertyRule.property_name"]], "pseudo_elements (inheritedpseudoelementmatches attribute)": [[12, "nodriver.cdp.css.InheritedPseudoElementMatches.pseudo_elements"]], "pseudo_identifier (pseudoelementmatches attribute)": [[12, "nodriver.cdp.css.PseudoElementMatches.pseudo_identifier"]], "pseudo_type (pseudoelementmatches attribute)": [[12, "nodriver.cdp.css.PseudoElementMatches.pseudo_type"]], "queries_scroll_state (csscontainerquery attribute)": [[12, "nodriver.cdp.css.CSSContainerQuery.queries_scroll_state"]], "range_ (csscontainerquery attribute)": [[12, "nodriver.cdp.css.CSSContainerQuery.range_"]], "range_ (csslayer attribute)": [[12, "nodriver.cdp.css.CSSLayer.range_"]], "range_ (cssmedia attribute)": [[12, "nodriver.cdp.css.CSSMedia.range_"]], "range_ (cssproperty attribute)": [[12, "nodriver.cdp.css.CSSProperty.range_"]], "range_ (cssscope attribute)": [[12, "nodriver.cdp.css.CSSScope.range_"]], "range_ (cssstartingstyle attribute)": [[12, "nodriver.cdp.css.CSSStartingStyle.range_"]], "range_ (cssstyle attribute)": [[12, "nodriver.cdp.css.CSSStyle.range_"]], "range_ (csssupports attribute)": [[12, "nodriver.cdp.css.CSSSupports.range_"]], "range_ (styledeclarationedit attribute)": [[12, "nodriver.cdp.css.StyleDeclarationEdit.range_"]], "range_ (value attribute)": [[12, "nodriver.cdp.css.Value.range_"]], "rule (rulematch attribute)": [[12, "nodriver.cdp.css.RuleMatch.rule"]], "rule_types (cssrule attribute)": [[12, "nodriver.cdp.css.CSSRule.rule_types"]], "scopes (cssrule attribute)": [[12, "nodriver.cdp.css.CSSRule.scopes"]], "selector_list (cssrule attribute)": [[12, "nodriver.cdp.css.CSSRule.selector_list"]], "selectors (selectorlist attribute)": [[12, "nodriver.cdp.css.SelectorList.selectors"]], "set_container_query_text() (in module nodriver.cdp.css)": [[12, "nodriver.cdp.css.set_container_query_text"]], "set_effective_property_value_for_node() (in module nodriver.cdp.css)": [[12, "nodriver.cdp.css.set_effective_property_value_for_node"]], "set_keyframe_key() (in module nodriver.cdp.css)": [[12, "nodriver.cdp.css.set_keyframe_key"]], "set_local_fonts_enabled() (in module nodriver.cdp.css)": [[12, "nodriver.cdp.css.set_local_fonts_enabled"]], "set_media_text() (in module nodriver.cdp.css)": [[12, "nodriver.cdp.css.set_media_text"]], "set_property_rule_property_name() (in module nodriver.cdp.css)": [[12, "nodriver.cdp.css.set_property_rule_property_name"]], "set_rule_selector() (in module nodriver.cdp.css)": [[12, "nodriver.cdp.css.set_rule_selector"]], "set_scope_text() (in module nodriver.cdp.css)": [[12, "nodriver.cdp.css.set_scope_text"]], "set_style_sheet_text() (in module nodriver.cdp.css)": [[12, "nodriver.cdp.css.set_style_sheet_text"]], "set_style_texts() (in module nodriver.cdp.css)": [[12, "nodriver.cdp.css.set_style_texts"]], "set_supports_text() (in module nodriver.cdp.css)": [[12, "nodriver.cdp.css.set_supports_text"]], "shorthand_entries (cssstyle attribute)": [[12, "nodriver.cdp.css.CSSStyle.shorthand_entries"]], "source (cssmedia attribute)": [[12, "nodriver.cdp.css.CSSMedia.source"]], "source_map_url (cssstylesheetheader attribute)": [[12, "nodriver.cdp.css.CSSStyleSheetHeader.source_map_url"]], "source_url (cssmedia attribute)": [[12, "nodriver.cdp.css.CSSMedia.source_url"]], "source_url (cssstylesheetheader attribute)": [[12, "nodriver.cdp.css.CSSStyleSheetHeader.source_url"]], "specificity (value attribute)": [[12, "nodriver.cdp.css.Value.specificity"]], "src (fontface attribute)": [[12, "nodriver.cdp.css.FontFace.src"]], "start_column (cssstylesheetheader attribute)": [[12, "nodriver.cdp.css.CSSStyleSheetHeader.start_column"]], "start_column (sourcerange attribute)": [[12, "nodriver.cdp.css.SourceRange.start_column"]], "start_line (cssstylesheetheader attribute)": [[12, "nodriver.cdp.css.CSSStyleSheetHeader.start_line"]], "start_line (sourcerange attribute)": [[12, "nodriver.cdp.css.SourceRange.start_line"]], "start_offset (ruleusage attribute)": [[12, "nodriver.cdp.css.RuleUsage.start_offset"]], "start_rule_usage_tracking() (in module nodriver.cdp.css)": [[12, "nodriver.cdp.css.start_rule_usage_tracking"]], "starting_styles (cssrule attribute)": [[12, "nodriver.cdp.css.CSSRule.starting_styles"]], "stop_rule_usage_tracking() (in module nodriver.cdp.css)": [[12, "nodriver.cdp.css.stop_rule_usage_tracking"]], "style (cssfontpalettevaluesrule attribute)": [[12, "nodriver.cdp.css.CSSFontPaletteValuesRule.style"]], "style (csskeyframerule attribute)": [[12, "nodriver.cdp.css.CSSKeyframeRule.style"]], "style (csspositiontryrule attribute)": [[12, "nodriver.cdp.css.CSSPositionTryRule.style"]], "style (csspropertyrule attribute)": [[12, "nodriver.cdp.css.CSSPropertyRule.style"]], "style (cssrule attribute)": [[12, "nodriver.cdp.css.CSSRule.style"]], "style (csstryrule attribute)": [[12, "nodriver.cdp.css.CSSTryRule.style"]], "style_sheet_id (csscontainerquery attribute)": [[12, "nodriver.cdp.css.CSSContainerQuery.style_sheet_id"]], "style_sheet_id (cssfontpalettevaluesrule attribute)": [[12, "nodriver.cdp.css.CSSFontPaletteValuesRule.style_sheet_id"]], "style_sheet_id (csskeyframerule attribute)": [[12, "nodriver.cdp.css.CSSKeyframeRule.style_sheet_id"]], "style_sheet_id (csslayer attribute)": [[12, "nodriver.cdp.css.CSSLayer.style_sheet_id"]], "style_sheet_id (cssmedia attribute)": [[12, "nodriver.cdp.css.CSSMedia.style_sheet_id"]], "style_sheet_id (csspositiontryrule attribute)": [[12, "nodriver.cdp.css.CSSPositionTryRule.style_sheet_id"]], "style_sheet_id (csspropertyrule attribute)": [[12, "nodriver.cdp.css.CSSPropertyRule.style_sheet_id"]], "style_sheet_id (cssrule attribute)": [[12, "nodriver.cdp.css.CSSRule.style_sheet_id"]], "style_sheet_id (cssscope attribute)": [[12, "nodriver.cdp.css.CSSScope.style_sheet_id"]], "style_sheet_id (cssstartingstyle attribute)": [[12, "nodriver.cdp.css.CSSStartingStyle.style_sheet_id"]], "style_sheet_id (cssstyle attribute)": [[12, "nodriver.cdp.css.CSSStyle.style_sheet_id"]], "style_sheet_id (cssstylesheetheader attribute)": [[12, "nodriver.cdp.css.CSSStyleSheetHeader.style_sheet_id"]], "style_sheet_id (csssupports attribute)": [[12, "nodriver.cdp.css.CSSSupports.style_sheet_id"]], "style_sheet_id (csstryrule attribute)": [[12, "nodriver.cdp.css.CSSTryRule.style_sheet_id"]], "style_sheet_id (ruleusage attribute)": [[12, "nodriver.cdp.css.RuleUsage.style_sheet_id"]], "style_sheet_id (styledeclarationedit attribute)": [[12, "nodriver.cdp.css.StyleDeclarationEdit.style_sheet_id"]], "style_sheet_id (stylesheetchanged attribute)": [[12, "nodriver.cdp.css.StyleSheetChanged.style_sheet_id"]], "style_sheet_id (stylesheetremoved attribute)": [[12, "nodriver.cdp.css.StyleSheetRemoved.style_sheet_id"]], "sub_layers (csslayerdata attribute)": [[12, "nodriver.cdp.css.CSSLayerData.sub_layers"]], "supports (cssrule attribute)": [[12, "nodriver.cdp.css.CSSRule.supports"]], "syntax (csspropertyregistration attribute)": [[12, "nodriver.cdp.css.CSSPropertyRegistration.syntax"]], "tag (fontvariationaxis attribute)": [[12, "nodriver.cdp.css.FontVariationAxis.tag"]], "take_computed_style_updates() (in module nodriver.cdp.css)": [[12, "nodriver.cdp.css.take_computed_style_updates"]], "take_coverage_delta() (in module nodriver.cdp.css)": [[12, "nodriver.cdp.css.take_coverage_delta"]], "text (csscontainerquery attribute)": [[12, "nodriver.cdp.css.CSSContainerQuery.text"]], "text (csslayer attribute)": [[12, "nodriver.cdp.css.CSSLayer.text"]], "text (cssmedia attribute)": [[12, "nodriver.cdp.css.CSSMedia.text"]], "text (cssproperty attribute)": [[12, "nodriver.cdp.css.CSSProperty.text"]], "text (cssscope attribute)": [[12, "nodriver.cdp.css.CSSScope.text"]], "text (csssupports attribute)": [[12, "nodriver.cdp.css.CSSSupports.text"]], "text (selectorlist attribute)": [[12, "nodriver.cdp.css.SelectorList.text"]], "text (styledeclarationedit attribute)": [[12, "nodriver.cdp.css.StyleDeclarationEdit.text"]], "text (value attribute)": [[12, "nodriver.cdp.css.Value.text"]], "title (cssstylesheetheader attribute)": [[12, "nodriver.cdp.css.CSSStyleSheetHeader.title"]], "track_computed_style_updates() (in module nodriver.cdp.css)": [[12, "nodriver.cdp.css.track_computed_style_updates"]], "track_computed_style_updates_for_node() (in module nodriver.cdp.css)": [[12, "nodriver.cdp.css.track_computed_style_updates_for_node"]], "unicode_range (fontface attribute)": [[12, "nodriver.cdp.css.FontFace.unicode_range"]], "unit (mediaqueryexpression attribute)": [[12, "nodriver.cdp.css.MediaQueryExpression.unit"]], "used (ruleusage attribute)": [[12, "nodriver.cdp.css.RuleUsage.used"]], "value (csscomputedstyleproperty attribute)": [[12, "nodriver.cdp.css.CSSComputedStyleProperty.value"], [17, "nodriver.cdp.dom.CSSComputedStyleProperty.value"]], "value (cssproperty attribute)": [[12, "nodriver.cdp.css.CSSProperty.value"]], "value (mediaqueryexpression attribute)": [[12, "nodriver.cdp.css.MediaQueryExpression.value"]], "value (shorthandentry attribute)": [[12, "nodriver.cdp.css.ShorthandEntry.value"]], "value_range (mediaqueryexpression attribute)": [[12, "nodriver.cdp.css.MediaQueryExpression.value_range"]], "adddatabase (class in nodriver.cdp.database)": [[13, "nodriver.cdp.database.AddDatabase"]], "database (class in nodriver.cdp.database)": [[13, "nodriver.cdp.database.Database"]], "databaseid (class in nodriver.cdp.database)": [[13, "nodriver.cdp.database.DatabaseId"]], "error (class in nodriver.cdp.database)": [[13, "nodriver.cdp.database.Error"]], "code (error attribute)": [[13, "nodriver.cdp.database.Error.code"]], "database (adddatabase attribute)": [[13, "nodriver.cdp.database.AddDatabase.database"]], "disable() (in module nodriver.cdp.database)": [[13, "nodriver.cdp.database.disable"]], "domain (database attribute)": [[13, "nodriver.cdp.database.Database.domain"]], "enable() (in module nodriver.cdp.database)": [[13, "nodriver.cdp.database.enable"]], "execute_sql() (in module nodriver.cdp.database)": [[13, "nodriver.cdp.database.execute_sql"]], "get_database_table_names() (in module nodriver.cdp.database)": [[13, "nodriver.cdp.database.get_database_table_names"]], "id_ (database attribute)": [[13, "nodriver.cdp.database.Database.id_"]], "message (error attribute)": [[13, "nodriver.cdp.database.Error.message"]], "name (database attribute)": [[13, "nodriver.cdp.database.Database.name"]], "nodriver.cdp.database": [[13, "module-nodriver.cdp.database"]], "version (database attribute)": [[13, "nodriver.cdp.database.Database.version"]], "breaklocation (class in nodriver.cdp.debugger)": [[14, "nodriver.cdp.debugger.BreakLocation"]], "breakpointid (class in nodriver.cdp.debugger)": [[14, "nodriver.cdp.debugger.BreakpointId"]], "breakpointresolved (class in nodriver.cdp.debugger)": [[14, "nodriver.cdp.debugger.BreakpointResolved"]], "callframe (class in nodriver.cdp.debugger)": [[14, "nodriver.cdp.debugger.CallFrame"]], "callframeid (class in nodriver.cdp.debugger)": [[14, "nodriver.cdp.debugger.CallFrameId"]], "debugsymbols (class in nodriver.cdp.debugger)": [[14, "nodriver.cdp.debugger.DebugSymbols"]], "java_script (scriptlanguage attribute)": [[14, "nodriver.cdp.debugger.ScriptLanguage.JAVA_SCRIPT"]], "location (class in nodriver.cdp.debugger)": [[14, "nodriver.cdp.debugger.Location"]], "locationrange (class in nodriver.cdp.debugger)": [[14, "nodriver.cdp.debugger.LocationRange"]], "paused (class in nodriver.cdp.debugger)": [[14, "nodriver.cdp.debugger.Paused"]], "resumed (class in nodriver.cdp.debugger)": [[14, "nodriver.cdp.debugger.Resumed"]], "scope (class in nodriver.cdp.debugger)": [[14, "nodriver.cdp.debugger.Scope"]], "scriptfailedtoparse (class in nodriver.cdp.debugger)": [[14, "nodriver.cdp.debugger.ScriptFailedToParse"]], "scriptlanguage (class in nodriver.cdp.debugger)": [[14, "nodriver.cdp.debugger.ScriptLanguage"]], "scriptparsed (class in nodriver.cdp.debugger)": [[14, "nodriver.cdp.debugger.ScriptParsed"]], "scriptposition (class in nodriver.cdp.debugger)": [[14, "nodriver.cdp.debugger.ScriptPosition"]], "searchmatch (class in nodriver.cdp.debugger)": [[14, "nodriver.cdp.debugger.SearchMatch"]], "web_assembly (scriptlanguage attribute)": [[14, "nodriver.cdp.debugger.ScriptLanguage.WEB_ASSEMBLY"]], "wasmdisassemblychunk (class in nodriver.cdp.debugger)": [[14, "nodriver.cdp.debugger.WasmDisassemblyChunk"]], "async_call_stack_trace_id (paused attribute)": [[14, "nodriver.cdp.debugger.Paused.async_call_stack_trace_id"]], "async_stack_trace (paused attribute)": [[14, "nodriver.cdp.debugger.Paused.async_stack_trace"]], "async_stack_trace_id (paused attribute)": [[14, "nodriver.cdp.debugger.Paused.async_stack_trace_id"]], "breakpoint_id (breakpointresolved attribute)": [[14, "nodriver.cdp.debugger.BreakpointResolved.breakpoint_id"]], "bytecode_offsets (wasmdisassemblychunk attribute)": [[14, "nodriver.cdp.debugger.WasmDisassemblyChunk.bytecode_offsets"]], "call_frame_id (callframe attribute)": [[14, "nodriver.cdp.debugger.CallFrame.call_frame_id"]], "call_frames (paused attribute)": [[14, "nodriver.cdp.debugger.Paused.call_frames"]], "can_be_restarted (callframe attribute)": [[14, "nodriver.cdp.debugger.CallFrame.can_be_restarted"]], "code_offset (scriptfailedtoparse attribute)": [[14, "nodriver.cdp.debugger.ScriptFailedToParse.code_offset"]], "code_offset (scriptparsed attribute)": [[14, "nodriver.cdp.debugger.ScriptParsed.code_offset"]], "column_number (breaklocation attribute)": [[14, "nodriver.cdp.debugger.BreakLocation.column_number"]], "column_number (location attribute)": [[14, "nodriver.cdp.debugger.Location.column_number"]], "column_number (scriptposition attribute)": [[14, "nodriver.cdp.debugger.ScriptPosition.column_number"]], "continue_to_location() (in module nodriver.cdp.debugger)": [[14, "nodriver.cdp.debugger.continue_to_location"]], "data (paused attribute)": [[14, "nodriver.cdp.debugger.Paused.data"]], "debug_symbols (scriptparsed attribute)": [[14, "nodriver.cdp.debugger.ScriptParsed.debug_symbols"]], "disable() (in module nodriver.cdp.debugger)": [[14, "nodriver.cdp.debugger.disable"]], "disassemble_wasm_module() (in module nodriver.cdp.debugger)": [[14, "nodriver.cdp.debugger.disassemble_wasm_module"]], "embedder_name (scriptfailedtoparse attribute)": [[14, "nodriver.cdp.debugger.ScriptFailedToParse.embedder_name"]], "embedder_name (scriptparsed attribute)": [[14, "nodriver.cdp.debugger.ScriptParsed.embedder_name"]], "enable() (in module nodriver.cdp.debugger)": [[14, "nodriver.cdp.debugger.enable"]], "end (locationrange attribute)": [[14, "nodriver.cdp.debugger.LocationRange.end"]], "end_column (scriptfailedtoparse attribute)": [[14, "nodriver.cdp.debugger.ScriptFailedToParse.end_column"]], "end_column (scriptparsed attribute)": [[14, "nodriver.cdp.debugger.ScriptParsed.end_column"]], "end_line (scriptfailedtoparse attribute)": [[14, "nodriver.cdp.debugger.ScriptFailedToParse.end_line"]], "end_line (scriptparsed attribute)": [[14, "nodriver.cdp.debugger.ScriptParsed.end_line"]], "end_location (scope attribute)": [[14, "nodriver.cdp.debugger.Scope.end_location"]], "evaluate_on_call_frame() (in module nodriver.cdp.debugger)": [[14, "nodriver.cdp.debugger.evaluate_on_call_frame"]], "execution_context_aux_data (scriptfailedtoparse attribute)": [[14, "nodriver.cdp.debugger.ScriptFailedToParse.execution_context_aux_data"]], "execution_context_aux_data (scriptparsed attribute)": [[14, "nodriver.cdp.debugger.ScriptParsed.execution_context_aux_data"]], "execution_context_id (scriptfailedtoparse attribute)": [[14, "nodriver.cdp.debugger.ScriptFailedToParse.execution_context_id"]], "execution_context_id (scriptparsed attribute)": [[14, "nodriver.cdp.debugger.ScriptParsed.execution_context_id"]], "external_url (debugsymbols attribute)": [[14, "nodriver.cdp.debugger.DebugSymbols.external_url"]], "function_location (callframe attribute)": [[14, "nodriver.cdp.debugger.CallFrame.function_location"]], "function_name (callframe attribute)": [[14, "nodriver.cdp.debugger.CallFrame.function_name"], [45, "nodriver.cdp.runtime.CallFrame.function_name"]], "get_possible_breakpoints() (in module nodriver.cdp.debugger)": [[14, "nodriver.cdp.debugger.get_possible_breakpoints"]], "get_script_source() (in module nodriver.cdp.debugger)": [[14, "nodriver.cdp.debugger.get_script_source"]], "get_stack_trace() (in module nodriver.cdp.debugger)": [[14, "nodriver.cdp.debugger.get_stack_trace"]], "get_wasm_bytecode() (in module nodriver.cdp.debugger)": [[14, "nodriver.cdp.debugger.get_wasm_bytecode"]], "has_source_url (scriptfailedtoparse attribute)": [[14, "nodriver.cdp.debugger.ScriptFailedToParse.has_source_url"]], "has_source_url (scriptparsed attribute)": [[14, "nodriver.cdp.debugger.ScriptParsed.has_source_url"]], "hash_ (scriptfailedtoparse attribute)": [[14, "nodriver.cdp.debugger.ScriptFailedToParse.hash_"]], "hash_ (scriptparsed attribute)": [[14, "nodriver.cdp.debugger.ScriptParsed.hash_"]], "hit_breakpoints (paused attribute)": [[14, "nodriver.cdp.debugger.Paused.hit_breakpoints"]], "is_live_edit (scriptparsed attribute)": [[14, "nodriver.cdp.debugger.ScriptParsed.is_live_edit"]], "is_module (scriptfailedtoparse attribute)": [[14, "nodriver.cdp.debugger.ScriptFailedToParse.is_module"]], "is_module (scriptparsed attribute)": [[14, "nodriver.cdp.debugger.ScriptParsed.is_module"]], "length (scriptfailedtoparse attribute)": [[14, "nodriver.cdp.debugger.ScriptFailedToParse.length"]], "length (scriptparsed attribute)": [[14, "nodriver.cdp.debugger.ScriptParsed.length"]], "line_content (searchmatch attribute)": [[14, "nodriver.cdp.debugger.SearchMatch.line_content"]], "line_number (breaklocation attribute)": [[14, "nodriver.cdp.debugger.BreakLocation.line_number"]], "line_number (location attribute)": [[14, "nodriver.cdp.debugger.Location.line_number"]], "line_number (scriptposition attribute)": [[14, "nodriver.cdp.debugger.ScriptPosition.line_number"]], "line_number (searchmatch attribute)": [[14, "nodriver.cdp.debugger.SearchMatch.line_number"]], "lines (wasmdisassemblychunk attribute)": [[14, "nodriver.cdp.debugger.WasmDisassemblyChunk.lines"]], "location (breakpointresolved attribute)": [[14, "nodriver.cdp.debugger.BreakpointResolved.location"]], "location (callframe attribute)": [[14, "nodriver.cdp.debugger.CallFrame.location"]], "name (scope attribute)": [[14, "nodriver.cdp.debugger.Scope.name"]], "next_wasm_disassembly_chunk() (in module nodriver.cdp.debugger)": [[14, "nodriver.cdp.debugger.next_wasm_disassembly_chunk"]], "nodriver.cdp.debugger": [[14, "module-nodriver.cdp.debugger"]], "object_ (scope attribute)": [[14, "nodriver.cdp.debugger.Scope.object_"]], "pause() (in module nodriver.cdp.debugger)": [[14, "nodriver.cdp.debugger.pause"]], "pause_on_async_call() (in module nodriver.cdp.debugger)": [[14, "nodriver.cdp.debugger.pause_on_async_call"]], "reason (paused attribute)": [[14, "nodriver.cdp.debugger.Paused.reason"]], "remove_breakpoint() (in module nodriver.cdp.debugger)": [[14, "nodriver.cdp.debugger.remove_breakpoint"]], "restart_frame() (in module nodriver.cdp.debugger)": [[14, "nodriver.cdp.debugger.restart_frame"]], "resume() (in module nodriver.cdp.debugger)": [[14, "nodriver.cdp.debugger.resume"]], "return_value (callframe attribute)": [[14, "nodriver.cdp.debugger.CallFrame.return_value"]], "scope_chain (callframe attribute)": [[14, "nodriver.cdp.debugger.CallFrame.scope_chain"]], "script_id (breaklocation attribute)": [[14, "nodriver.cdp.debugger.BreakLocation.script_id"]], "script_id (location attribute)": [[14, "nodriver.cdp.debugger.Location.script_id"]], "script_id (locationrange attribute)": [[14, "nodriver.cdp.debugger.LocationRange.script_id"]], "script_id (scriptfailedtoparse attribute)": [[14, "nodriver.cdp.debugger.ScriptFailedToParse.script_id"]], "script_id (scriptparsed attribute)": [[14, "nodriver.cdp.debugger.ScriptParsed.script_id"]], "script_language (scriptfailedtoparse attribute)": [[14, "nodriver.cdp.debugger.ScriptFailedToParse.script_language"]], "script_language (scriptparsed attribute)": [[14, "nodriver.cdp.debugger.ScriptParsed.script_language"]], "search_in_content() (in module nodriver.cdp.debugger)": [[14, "nodriver.cdp.debugger.search_in_content"]], "set_async_call_stack_depth() (in module nodriver.cdp.debugger)": [[14, "nodriver.cdp.debugger.set_async_call_stack_depth"]], "set_blackbox_execution_contexts() (in module nodriver.cdp.debugger)": [[14, "nodriver.cdp.debugger.set_blackbox_execution_contexts"]], "set_blackbox_patterns() (in module nodriver.cdp.debugger)": [[14, "nodriver.cdp.debugger.set_blackbox_patterns"]], "set_blackboxed_ranges() (in module nodriver.cdp.debugger)": [[14, "nodriver.cdp.debugger.set_blackboxed_ranges"]], "set_breakpoint() (in module nodriver.cdp.debugger)": [[14, "nodriver.cdp.debugger.set_breakpoint"]], "set_breakpoint_by_url() (in module nodriver.cdp.debugger)": [[14, "nodriver.cdp.debugger.set_breakpoint_by_url"]], "set_breakpoint_on_function_call() (in module nodriver.cdp.debugger)": [[14, "nodriver.cdp.debugger.set_breakpoint_on_function_call"]], "set_breakpoints_active() (in module nodriver.cdp.debugger)": [[14, "nodriver.cdp.debugger.set_breakpoints_active"]], "set_instrumentation_breakpoint() (in module nodriver.cdp.debugger)": [[14, "nodriver.cdp.debugger.set_instrumentation_breakpoint"]], "set_pause_on_exceptions() (in module nodriver.cdp.debugger)": [[14, "nodriver.cdp.debugger.set_pause_on_exceptions"]], "set_return_value() (in module nodriver.cdp.debugger)": [[14, "nodriver.cdp.debugger.set_return_value"]], "set_script_source() (in module nodriver.cdp.debugger)": [[14, "nodriver.cdp.debugger.set_script_source"]], "set_skip_all_pauses() (in module nodriver.cdp.debugger)": [[14, "nodriver.cdp.debugger.set_skip_all_pauses"]], "set_variable_value() (in module nodriver.cdp.debugger)": [[14, "nodriver.cdp.debugger.set_variable_value"]], "source_map_url (scriptfailedtoparse attribute)": [[14, "nodriver.cdp.debugger.ScriptFailedToParse.source_map_url"]], "source_map_url (scriptparsed attribute)": [[14, "nodriver.cdp.debugger.ScriptParsed.source_map_url"]], "stack_trace (scriptfailedtoparse attribute)": [[14, "nodriver.cdp.debugger.ScriptFailedToParse.stack_trace"]], "stack_trace (scriptparsed attribute)": [[14, "nodriver.cdp.debugger.ScriptParsed.stack_trace"]], "start (locationrange attribute)": [[14, "nodriver.cdp.debugger.LocationRange.start"]], "start_column (scriptfailedtoparse attribute)": [[14, "nodriver.cdp.debugger.ScriptFailedToParse.start_column"]], "start_column (scriptparsed attribute)": [[14, "nodriver.cdp.debugger.ScriptParsed.start_column"]], "start_line (scriptfailedtoparse attribute)": [[14, "nodriver.cdp.debugger.ScriptFailedToParse.start_line"]], "start_line (scriptparsed attribute)": [[14, "nodriver.cdp.debugger.ScriptParsed.start_line"]], "start_location (scope attribute)": [[14, "nodriver.cdp.debugger.Scope.start_location"]], "step_into() (in module nodriver.cdp.debugger)": [[14, "nodriver.cdp.debugger.step_into"]], "step_out() (in module nodriver.cdp.debugger)": [[14, "nodriver.cdp.debugger.step_out"]], "step_over() (in module nodriver.cdp.debugger)": [[14, "nodriver.cdp.debugger.step_over"]], "this (callframe attribute)": [[14, "nodriver.cdp.debugger.CallFrame.this"]], "type_ (breaklocation attribute)": [[14, "nodriver.cdp.debugger.BreakLocation.type_"]], "type_ (debugsymbols attribute)": [[14, "nodriver.cdp.debugger.DebugSymbols.type_"]], "type_ (scope attribute)": [[14, "nodriver.cdp.debugger.Scope.type_"]], "url (callframe attribute)": [[14, "nodriver.cdp.debugger.CallFrame.url"], [45, "nodriver.cdp.runtime.CallFrame.url"]], "url (scriptfailedtoparse attribute)": [[14, "nodriver.cdp.debugger.ScriptFailedToParse.url"]], "url (scriptparsed attribute)": [[14, "nodriver.cdp.debugger.ScriptParsed.url"]], "deviceid (class in nodriver.cdp.device_access)": [[15, "nodriver.cdp.device_access.DeviceId"]], "devicerequestprompted (class in nodriver.cdp.device_access)": [[15, "nodriver.cdp.device_access.DeviceRequestPrompted"]], "promptdevice (class in nodriver.cdp.device_access)": [[15, "nodriver.cdp.device_access.PromptDevice"]], "requestid (class in nodriver.cdp.device_access)": [[15, "nodriver.cdp.device_access.RequestId"]], "cancel_prompt() (in module nodriver.cdp.device_access)": [[15, "nodriver.cdp.device_access.cancel_prompt"]], "devices (devicerequestprompted attribute)": [[15, "nodriver.cdp.device_access.DeviceRequestPrompted.devices"]], "disable() (in module nodriver.cdp.device_access)": [[15, "nodriver.cdp.device_access.disable"]], "enable() (in module nodriver.cdp.device_access)": [[15, "nodriver.cdp.device_access.enable"]], "id_ (devicerequestprompted attribute)": [[15, "nodriver.cdp.device_access.DeviceRequestPrompted.id_"]], "id_ (promptdevice attribute)": [[15, "nodriver.cdp.device_access.PromptDevice.id_"]], "name (promptdevice attribute)": [[15, "nodriver.cdp.device_access.PromptDevice.name"]], "nodriver.cdp.device_access": [[15, "module-nodriver.cdp.device_access"]], "select_prompt() (in module nodriver.cdp.device_access)": [[15, "nodriver.cdp.device_access.select_prompt"]], "clear_device_orientation_override() (in module nodriver.cdp.device_orientation)": [[16, "nodriver.cdp.device_orientation.clear_device_orientation_override"]], "nodriver.cdp.device_orientation": [[16, "module-nodriver.cdp.device_orientation"]], "set_device_orientation_override() (in module nodriver.cdp.device_orientation)": [[16, "nodriver.cdp.device_orientation.set_device_orientation_override"]], "after (pseudotype attribute)": [[17, "nodriver.cdp.dom.PseudoType.AFTER"]], "attributemodified (class in nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.AttributeModified"]], "attributeremoved (class in nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.AttributeRemoved"]], "backdrop (pseudotype attribute)": [[17, "nodriver.cdp.dom.PseudoType.BACKDROP"]], "before (pseudotype attribute)": [[17, "nodriver.cdp.dom.PseudoType.BEFORE"]], "block (logicalaxes attribute)": [[17, "nodriver.cdp.dom.LogicalAxes.BLOCK"]], "both (logicalaxes attribute)": [[17, "nodriver.cdp.dom.LogicalAxes.BOTH"]], "both (physicalaxes attribute)": [[17, "nodriver.cdp.dom.PhysicalAxes.BOTH"]], "backendnode (class in nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.BackendNode"]], "backendnodeid (class in nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.BackendNodeId"]], "boxmodel (class in nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.BoxModel"]], "check (pseudotype attribute)": [[17, "nodriver.cdp.dom.PseudoType.CHECK"]], "closed (shadowroottype attribute)": [[17, "nodriver.cdp.dom.ShadowRootType.CLOSED"]], "column (pseudotype attribute)": [[17, "nodriver.cdp.dom.PseudoType.COLUMN"]], "csscomputedstyleproperty (class in nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.CSSComputedStyleProperty"]], "characterdatamodified (class in nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.CharacterDataModified"]], "childnodecountupdated (class in nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.ChildNodeCountUpdated"]], "childnodeinserted (class in nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.ChildNodeInserted"]], "childnoderemoved (class in nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.ChildNodeRemoved"]], "compatibilitymode (class in nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.CompatibilityMode"]], "details_content (pseudotype attribute)": [[17, "nodriver.cdp.dom.PseudoType.DETAILS_CONTENT"]], "detachedelementinfo (class in nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.DetachedElementInfo"]], "distributednodesupdated (class in nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.DistributedNodesUpdated"]], "documentupdated (class in nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.DocumentUpdated"]], "file_selector_button (pseudotype attribute)": [[17, "nodriver.cdp.dom.PseudoType.FILE_SELECTOR_BUTTON"]], "first_letter (pseudotype attribute)": [[17, "nodriver.cdp.dom.PseudoType.FIRST_LETTER"]], "first_line (pseudotype attribute)": [[17, "nodriver.cdp.dom.PseudoType.FIRST_LINE"]], "first_line_inherited (pseudotype attribute)": [[17, "nodriver.cdp.dom.PseudoType.FIRST_LINE_INHERITED"]], "grammar_error (pseudotype attribute)": [[17, "nodriver.cdp.dom.PseudoType.GRAMMAR_ERROR"]], "highlight (pseudotype attribute)": [[17, "nodriver.cdp.dom.PseudoType.HIGHLIGHT"]], "horizontal (physicalaxes attribute)": [[17, "nodriver.cdp.dom.PhysicalAxes.HORIZONTAL"]], "horizontal (scrollorientation attribute)": [[17, "nodriver.cdp.dom.ScrollOrientation.HORIZONTAL"]], "inline (logicalaxes attribute)": [[17, "nodriver.cdp.dom.LogicalAxes.INLINE"]], "input_list_button (pseudotype attribute)": [[17, "nodriver.cdp.dom.PseudoType.INPUT_LIST_BUTTON"]], "inlinestyleinvalidated (class in nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.InlineStyleInvalidated"]], "limited_quirks_mode (compatibilitymode attribute)": [[17, "nodriver.cdp.dom.CompatibilityMode.LIMITED_QUIRKS_MODE"]], "logicalaxes (class in nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.LogicalAxes"]], "marker (pseudotype attribute)": [[17, "nodriver.cdp.dom.PseudoType.MARKER"]], "no_quirks_mode (compatibilitymode attribute)": [[17, "nodriver.cdp.dom.CompatibilityMode.NO_QUIRKS_MODE"]], "node (class in nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.Node"]], "nodeid (class in nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.NodeId"]], "open_ (shadowroottype attribute)": [[17, "nodriver.cdp.dom.ShadowRootType.OPEN_"]], "picker (pseudotype attribute)": [[17, "nodriver.cdp.dom.PseudoType.PICKER"]], "placeholder (pseudotype attribute)": [[17, "nodriver.cdp.dom.PseudoType.PLACEHOLDER"]], "physicalaxes (class in nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.PhysicalAxes"]], "pseudoelementadded (class in nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.PseudoElementAdded"]], "pseudoelementremoved (class in nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.PseudoElementRemoved"]], "pseudotype (class in nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.PseudoType"]], "quirks_mode (compatibilitymode attribute)": [[17, "nodriver.cdp.dom.CompatibilityMode.QUIRKS_MODE"]], "quad (class in nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.Quad"]], "resizer (pseudotype attribute)": [[17, "nodriver.cdp.dom.PseudoType.RESIZER"]], "rgba (class in nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.RGBA"]], "rect (class in nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.Rect"]], "scrollbar (pseudotype attribute)": [[17, "nodriver.cdp.dom.PseudoType.SCROLLBAR"]], "scrollbar_button (pseudotype attribute)": [[17, "nodriver.cdp.dom.PseudoType.SCROLLBAR_BUTTON"]], "scrollbar_corner (pseudotype attribute)": [[17, "nodriver.cdp.dom.PseudoType.SCROLLBAR_CORNER"]], "scrollbar_thumb (pseudotype attribute)": [[17, "nodriver.cdp.dom.PseudoType.SCROLLBAR_THUMB"]], "scrollbar_track (pseudotype attribute)": [[17, "nodriver.cdp.dom.PseudoType.SCROLLBAR_TRACK"]], "scrollbar_track_piece (pseudotype attribute)": [[17, "nodriver.cdp.dom.PseudoType.SCROLLBAR_TRACK_PIECE"]], "scroll_marker (pseudotype attribute)": [[17, "nodriver.cdp.dom.PseudoType.SCROLL_MARKER"]], "scroll_marker_group (pseudotype attribute)": [[17, "nodriver.cdp.dom.PseudoType.SCROLL_MARKER_GROUP"]], "scroll_next_button (pseudotype attribute)": [[17, "nodriver.cdp.dom.PseudoType.SCROLL_NEXT_BUTTON"]], "scroll_prev_button (pseudotype attribute)": [[17, "nodriver.cdp.dom.PseudoType.SCROLL_PREV_BUTTON"]], "search_text (pseudotype attribute)": [[17, "nodriver.cdp.dom.PseudoType.SEARCH_TEXT"]], "selection (pseudotype attribute)": [[17, "nodriver.cdp.dom.PseudoType.SELECTION"]], "select_arrow (pseudotype attribute)": [[17, "nodriver.cdp.dom.PseudoType.SELECT_ARROW"]], "spelling_error (pseudotype attribute)": [[17, "nodriver.cdp.dom.PseudoType.SPELLING_ERROR"]], "scrollorientation (class in nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.ScrollOrientation"]], "scrollableflagupdated (class in nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.ScrollableFlagUpdated"]], "setchildnodes (class in nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.SetChildNodes"]], "shadowrootpopped (class in nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.ShadowRootPopped"]], "shadowrootpushed (class in nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.ShadowRootPushed"]], "shadowroottype (class in nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.ShadowRootType"]], "shapeoutsideinfo (class in nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.ShapeOutsideInfo"]], "target_text (pseudotype attribute)": [[17, "nodriver.cdp.dom.PseudoType.TARGET_TEXT"]], "toplayerelementsupdated (class in nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.TopLayerElementsUpdated"]], "user_agent (shadowroottype attribute)": [[17, "nodriver.cdp.dom.ShadowRootType.USER_AGENT"]], "vertical (physicalaxes attribute)": [[17, "nodriver.cdp.dom.PhysicalAxes.VERTICAL"]], "vertical (scrollorientation attribute)": [[17, "nodriver.cdp.dom.ScrollOrientation.VERTICAL"]], "view_transition (pseudotype attribute)": [[17, "nodriver.cdp.dom.PseudoType.VIEW_TRANSITION"]], "view_transition_group (pseudotype attribute)": [[17, "nodriver.cdp.dom.PseudoType.VIEW_TRANSITION_GROUP"]], "view_transition_image_pair (pseudotype attribute)": [[17, "nodriver.cdp.dom.PseudoType.VIEW_TRANSITION_IMAGE_PAIR"]], "view_transition_new (pseudotype attribute)": [[17, "nodriver.cdp.dom.PseudoType.VIEW_TRANSITION_NEW"]], "view_transition_old (pseudotype attribute)": [[17, "nodriver.cdp.dom.PseudoType.VIEW_TRANSITION_OLD"]], "a (rgba attribute)": [[17, "nodriver.cdp.dom.RGBA.a"]], "assigned_slot (node attribute)": [[17, "nodriver.cdp.dom.Node.assigned_slot"]], "attributes (node attribute)": [[17, "nodriver.cdp.dom.Node.attributes"]], "b (rgba attribute)": [[17, "nodriver.cdp.dom.RGBA.b"]], "backend_node_id (backendnode attribute)": [[17, "nodriver.cdp.dom.BackendNode.backend_node_id"]], "backend_node_id (node attribute)": [[17, "nodriver.cdp.dom.Node.backend_node_id"]], "base_url (node attribute)": [[17, "nodriver.cdp.dom.Node.base_url"]], "border (boxmodel attribute)": [[17, "nodriver.cdp.dom.BoxModel.border"]], "bounds (shapeoutsideinfo attribute)": [[17, "nodriver.cdp.dom.ShapeOutsideInfo.bounds"]], "character_data (characterdatamodified attribute)": [[17, "nodriver.cdp.dom.CharacterDataModified.character_data"]], "child_node_count (childnodecountupdated attribute)": [[17, "nodriver.cdp.dom.ChildNodeCountUpdated.child_node_count"]], "child_node_count (node attribute)": [[17, "nodriver.cdp.dom.Node.child_node_count"]], "children (node attribute)": [[17, "nodriver.cdp.dom.Node.children"]], "collect_class_names_from_subtree() (in module nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.collect_class_names_from_subtree"]], "compatibility_mode (node attribute)": [[17, "nodriver.cdp.dom.Node.compatibility_mode"]], "content (boxmodel attribute)": [[17, "nodriver.cdp.dom.BoxModel.content"]], "content_document (node attribute)": [[17, "nodriver.cdp.dom.Node.content_document"]], "copy_to() (in module nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.copy_to"]], "describe_node() (in module nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.describe_node"]], "disable() (in module nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.disable"]], "discard_search_results() (in module nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.discard_search_results"]], "distributed_nodes (distributednodesupdated attribute)": [[17, "nodriver.cdp.dom.DistributedNodesUpdated.distributed_nodes"]], "distributed_nodes (node attribute)": [[17, "nodriver.cdp.dom.Node.distributed_nodes"]], "document_url (node attribute)": [[17, "nodriver.cdp.dom.Node.document_url"]], "enable() (in module nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.enable"]], "focus() (in module nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.focus"]], "frame_id (node attribute)": [[17, "nodriver.cdp.dom.Node.frame_id"]], "g (rgba attribute)": [[17, "nodriver.cdp.dom.RGBA.g"]], "get_anchor_element() (in module nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.get_anchor_element"]], "get_attributes() (in module nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.get_attributes"]], "get_box_model() (in module nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.get_box_model"]], "get_container_for_node() (in module nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.get_container_for_node"]], "get_content_quads() (in module nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.get_content_quads"]], "get_detached_dom_nodes() (in module nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.get_detached_dom_nodes"]], "get_document() (in module nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.get_document"]], "get_element_by_relation() (in module nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.get_element_by_relation"]], "get_file_info() (in module nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.get_file_info"]], "get_flattened_document() (in module nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.get_flattened_document"]], "get_frame_owner() (in module nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.get_frame_owner"]], "get_node_for_location() (in module nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.get_node_for_location"]], "get_node_stack_traces() (in module nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.get_node_stack_traces"]], "get_nodes_for_subtree_by_style() (in module nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.get_nodes_for_subtree_by_style"]], "get_outer_html() (in module nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.get_outer_html"]], "get_querying_descendants_for_container() (in module nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.get_querying_descendants_for_container"]], "get_relayout_boundary() (in module nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.get_relayout_boundary"]], "get_search_results() (in module nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.get_search_results"]], "get_top_layer_elements() (in module nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.get_top_layer_elements"]], "height (boxmodel attribute)": [[17, "nodriver.cdp.dom.BoxModel.height"]], "height (rect attribute)": [[17, "nodriver.cdp.dom.Rect.height"]], "hide_highlight() (in module nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.hide_highlight"]], "highlight_node() (in module nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.highlight_node"]], "highlight_rect() (in module nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.highlight_rect"]], "host_id (shadowrootpopped attribute)": [[17, "nodriver.cdp.dom.ShadowRootPopped.host_id"]], "host_id (shadowrootpushed attribute)": [[17, "nodriver.cdp.dom.ShadowRootPushed.host_id"]], "imported_document (node attribute)": [[17, "nodriver.cdp.dom.Node.imported_document"]], "insertion_point_id (distributednodesupdated attribute)": [[17, "nodriver.cdp.dom.DistributedNodesUpdated.insertion_point_id"]], "internal_subset (node attribute)": [[17, "nodriver.cdp.dom.Node.internal_subset"]], "is_scrollable (node attribute)": [[17, "nodriver.cdp.dom.Node.is_scrollable"]], "is_scrollable (scrollableflagupdated attribute)": [[17, "nodriver.cdp.dom.ScrollableFlagUpdated.is_scrollable"]], "is_svg (node attribute)": [[17, "nodriver.cdp.dom.Node.is_svg"]], "local_name (node attribute)": [[17, "nodriver.cdp.dom.Node.local_name"]], "margin (boxmodel attribute)": [[17, "nodriver.cdp.dom.BoxModel.margin"]], "margin_shape (shapeoutsideinfo attribute)": [[17, "nodriver.cdp.dom.ShapeOutsideInfo.margin_shape"]], "mark_undoable_state() (in module nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.mark_undoable_state"]], "move_to() (in module nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.move_to"]], "name (attributemodified attribute)": [[17, "nodriver.cdp.dom.AttributeModified.name"]], "name (attributeremoved attribute)": [[17, "nodriver.cdp.dom.AttributeRemoved.name"]], "name (node attribute)": [[17, "nodriver.cdp.dom.Node.name"]], "node (childnodeinserted attribute)": [[17, "nodriver.cdp.dom.ChildNodeInserted.node"]], "node_id (attributemodified attribute)": [[17, "nodriver.cdp.dom.AttributeModified.node_id"]], "node_id (attributeremoved attribute)": [[17, "nodriver.cdp.dom.AttributeRemoved.node_id"]], "node_id (characterdatamodified attribute)": [[17, "nodriver.cdp.dom.CharacterDataModified.node_id"]], "node_id (childnodecountupdated attribute)": [[17, "nodriver.cdp.dom.ChildNodeCountUpdated.node_id"]], "node_id (childnoderemoved attribute)": [[17, "nodriver.cdp.dom.ChildNodeRemoved.node_id"]], "node_id (node attribute)": [[17, "nodriver.cdp.dom.Node.node_id"]], "node_id (scrollableflagupdated attribute)": [[17, "nodriver.cdp.dom.ScrollableFlagUpdated.node_id"]], "node_ids (inlinestyleinvalidated attribute)": [[17, "nodriver.cdp.dom.InlineStyleInvalidated.node_ids"]], "node_name (backendnode attribute)": [[17, "nodriver.cdp.dom.BackendNode.node_name"]], "node_name (node attribute)": [[17, "nodriver.cdp.dom.Node.node_name"]], "node_type (backendnode attribute)": [[17, "nodriver.cdp.dom.BackendNode.node_type"]], "node_type (node attribute)": [[17, "nodriver.cdp.dom.Node.node_type"]], "node_value (node attribute)": [[17, "nodriver.cdp.dom.Node.node_value"]], "nodes (setchildnodes attribute)": [[17, "nodriver.cdp.dom.SetChildNodes.nodes"]], "nodriver.cdp.dom": [[17, "module-nodriver.cdp.dom"]], "padding (boxmodel attribute)": [[17, "nodriver.cdp.dom.BoxModel.padding"]], "parent_id (node attribute)": [[17, "nodriver.cdp.dom.Node.parent_id"]], "parent_id (pseudoelementadded attribute)": [[17, "nodriver.cdp.dom.PseudoElementAdded.parent_id"]], "parent_id (pseudoelementremoved attribute)": [[17, "nodriver.cdp.dom.PseudoElementRemoved.parent_id"]], "parent_id (setchildnodes attribute)": [[17, "nodriver.cdp.dom.SetChildNodes.parent_id"]], "parent_node_id (childnodeinserted attribute)": [[17, "nodriver.cdp.dom.ChildNodeInserted.parent_node_id"]], "parent_node_id (childnoderemoved attribute)": [[17, "nodriver.cdp.dom.ChildNodeRemoved.parent_node_id"]], "perform_search() (in module nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.perform_search"]], "previous_node_id (childnodeinserted attribute)": [[17, "nodriver.cdp.dom.ChildNodeInserted.previous_node_id"]], "pseudo_element (pseudoelementadded attribute)": [[17, "nodriver.cdp.dom.PseudoElementAdded.pseudo_element"]], "pseudo_element_id (pseudoelementremoved attribute)": [[17, "nodriver.cdp.dom.PseudoElementRemoved.pseudo_element_id"]], "pseudo_elements (node attribute)": [[17, "nodriver.cdp.dom.Node.pseudo_elements"]], "pseudo_identifier (node attribute)": [[17, "nodriver.cdp.dom.Node.pseudo_identifier"]], "pseudo_type (node attribute)": [[17, "nodriver.cdp.dom.Node.pseudo_type"]], "public_id (node attribute)": [[17, "nodriver.cdp.dom.Node.public_id"]], "push_node_by_path_to_frontend() (in module nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.push_node_by_path_to_frontend"]], "push_nodes_by_backend_ids_to_frontend() (in module nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.push_nodes_by_backend_ids_to_frontend"]], "query_selector() (in module nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.query_selector"]], "query_selector_all() (in module nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.query_selector_all"]], "r (rgba attribute)": [[17, "nodriver.cdp.dom.RGBA.r"]], "redo() (in module nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.redo"]], "remove_attribute() (in module nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.remove_attribute"]], "remove_node() (in module nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.remove_node"]], "request_child_nodes() (in module nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.request_child_nodes"]], "request_node() (in module nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.request_node"]], "resolve_node() (in module nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.resolve_node"]], "retained_node_ids (detachedelementinfo attribute)": [[17, "nodriver.cdp.dom.DetachedElementInfo.retained_node_ids"]], "root (shadowrootpushed attribute)": [[17, "nodriver.cdp.dom.ShadowRootPushed.root"]], "root_id (shadowrootpopped attribute)": [[17, "nodriver.cdp.dom.ShadowRootPopped.root_id"]], "scroll_into_view_if_needed() (in module nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.scroll_into_view_if_needed"]], "set_attribute_value() (in module nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.set_attribute_value"]], "set_attributes_as_text() (in module nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.set_attributes_as_text"]], "set_file_input_files() (in module nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.set_file_input_files"]], "set_inspected_node() (in module nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.set_inspected_node"]], "set_node_name() (in module nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.set_node_name"]], "set_node_stack_traces_enabled() (in module nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.set_node_stack_traces_enabled"]], "set_node_value() (in module nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.set_node_value"]], "set_outer_html() (in module nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.set_outer_html"]], "shadow_root_type (node attribute)": [[17, "nodriver.cdp.dom.Node.shadow_root_type"]], "shadow_roots (node attribute)": [[17, "nodriver.cdp.dom.Node.shadow_roots"]], "shape (shapeoutsideinfo attribute)": [[17, "nodriver.cdp.dom.ShapeOutsideInfo.shape"]], "shape_outside (boxmodel attribute)": [[17, "nodriver.cdp.dom.BoxModel.shape_outside"]], "system_id (node attribute)": [[17, "nodriver.cdp.dom.Node.system_id"]], "template_content (node attribute)": [[17, "nodriver.cdp.dom.Node.template_content"]], "tree_node (detachedelementinfo attribute)": [[17, "nodriver.cdp.dom.DetachedElementInfo.tree_node"]], "undo() (in module nodriver.cdp.dom)": [[17, "nodriver.cdp.dom.undo"]], "value (attributemodified attribute)": [[17, "nodriver.cdp.dom.AttributeModified.value"]], "value (node attribute)": [[17, "nodriver.cdp.dom.Node.value"]], "width (boxmodel attribute)": [[17, "nodriver.cdp.dom.BoxModel.width"]], "width (rect attribute)": [[17, "nodriver.cdp.dom.Rect.width"]], "x (rect attribute)": [[17, "nodriver.cdp.dom.Rect.x"]], "xml_version (node attribute)": [[17, "nodriver.cdp.dom.Node.xml_version"]], "y (rect attribute)": [[17, "nodriver.cdp.dom.Rect.y"]], "attribute_modified (dombreakpointtype attribute)": [[18, "nodriver.cdp.dom_debugger.DOMBreakpointType.ATTRIBUTE_MODIFIED"]], "cspviolationtype (class in nodriver.cdp.dom_debugger)": [[18, "nodriver.cdp.dom_debugger.CSPViolationType"]], "dombreakpointtype (class in nodriver.cdp.dom_debugger)": [[18, "nodriver.cdp.dom_debugger.DOMBreakpointType"]], "eventlistener (class in nodriver.cdp.dom_debugger)": [[18, "nodriver.cdp.dom_debugger.EventListener"]], "node_removed (dombreakpointtype attribute)": [[18, "nodriver.cdp.dom_debugger.DOMBreakpointType.NODE_REMOVED"]], "subtree_modified (dombreakpointtype attribute)": [[18, "nodriver.cdp.dom_debugger.DOMBreakpointType.SUBTREE_MODIFIED"]], "trustedtype_policy_violation (cspviolationtype attribute)": [[18, "nodriver.cdp.dom_debugger.CSPViolationType.TRUSTEDTYPE_POLICY_VIOLATION"]], "trustedtype_sink_violation (cspviolationtype attribute)": [[18, "nodriver.cdp.dom_debugger.CSPViolationType.TRUSTEDTYPE_SINK_VIOLATION"]], "backend_node_id (eventlistener attribute)": [[18, "nodriver.cdp.dom_debugger.EventListener.backend_node_id"]], "column_number (eventlistener attribute)": [[18, "nodriver.cdp.dom_debugger.EventListener.column_number"]], "get_event_listeners() (in module nodriver.cdp.dom_debugger)": [[18, "nodriver.cdp.dom_debugger.get_event_listeners"]], "handler (eventlistener attribute)": [[18, "nodriver.cdp.dom_debugger.EventListener.handler"]], "line_number (eventlistener attribute)": [[18, "nodriver.cdp.dom_debugger.EventListener.line_number"]], "nodriver.cdp.dom_debugger": [[18, "module-nodriver.cdp.dom_debugger"]], "once (eventlistener attribute)": [[18, "nodriver.cdp.dom_debugger.EventListener.once"]], "original_handler (eventlistener attribute)": [[18, "nodriver.cdp.dom_debugger.EventListener.original_handler"]], "passive (eventlistener attribute)": [[18, "nodriver.cdp.dom_debugger.EventListener.passive"]], "remove_dom_breakpoint() (in module nodriver.cdp.dom_debugger)": [[18, "nodriver.cdp.dom_debugger.remove_dom_breakpoint"]], "remove_event_listener_breakpoint() (in module nodriver.cdp.dom_debugger)": [[18, "nodriver.cdp.dom_debugger.remove_event_listener_breakpoint"]], "remove_instrumentation_breakpoint() (in module nodriver.cdp.dom_debugger)": [[18, "nodriver.cdp.dom_debugger.remove_instrumentation_breakpoint"]], "remove_xhr_breakpoint() (in module nodriver.cdp.dom_debugger)": [[18, "nodriver.cdp.dom_debugger.remove_xhr_breakpoint"]], "script_id (eventlistener attribute)": [[18, "nodriver.cdp.dom_debugger.EventListener.script_id"]], "set_break_on_csp_violation() (in module nodriver.cdp.dom_debugger)": [[18, "nodriver.cdp.dom_debugger.set_break_on_csp_violation"]], "set_dom_breakpoint() (in module nodriver.cdp.dom_debugger)": [[18, "nodriver.cdp.dom_debugger.set_dom_breakpoint"]], "set_event_listener_breakpoint() (in module nodriver.cdp.dom_debugger)": [[18, "nodriver.cdp.dom_debugger.set_event_listener_breakpoint"]], "set_instrumentation_breakpoint() (in module nodriver.cdp.dom_debugger)": [[18, "nodriver.cdp.dom_debugger.set_instrumentation_breakpoint"]], "set_xhr_breakpoint() (in module nodriver.cdp.dom_debugger)": [[18, "nodriver.cdp.dom_debugger.set_xhr_breakpoint"]], "type_ (eventlistener attribute)": [[18, "nodriver.cdp.dom_debugger.EventListener.type_"]], "use_capture (eventlistener attribute)": [[18, "nodriver.cdp.dom_debugger.EventListener.use_capture"]], "arrayofstrings (class in nodriver.cdp.dom_snapshot)": [[19, "nodriver.cdp.dom_snapshot.ArrayOfStrings"]], "computedstyle (class in nodriver.cdp.dom_snapshot)": [[19, "nodriver.cdp.dom_snapshot.ComputedStyle"]], "domnode (class in nodriver.cdp.dom_snapshot)": [[19, "nodriver.cdp.dom_snapshot.DOMNode"]], "documentsnapshot (class in nodriver.cdp.dom_snapshot)": [[19, "nodriver.cdp.dom_snapshot.DocumentSnapshot"]], "inlinetextbox (class in nodriver.cdp.dom_snapshot)": [[19, "nodriver.cdp.dom_snapshot.InlineTextBox"]], "layouttreenode (class in nodriver.cdp.dom_snapshot)": [[19, "nodriver.cdp.dom_snapshot.LayoutTreeNode"]], "layouttreesnapshot (class in nodriver.cdp.dom_snapshot)": [[19, "nodriver.cdp.dom_snapshot.LayoutTreeSnapshot"]], "namevalue (class in nodriver.cdp.dom_snapshot)": [[19, "nodriver.cdp.dom_snapshot.NameValue"]], "nodetreesnapshot (class in nodriver.cdp.dom_snapshot)": [[19, "nodriver.cdp.dom_snapshot.NodeTreeSnapshot"]], "rarebooleandata (class in nodriver.cdp.dom_snapshot)": [[19, "nodriver.cdp.dom_snapshot.RareBooleanData"]], "rareintegerdata (class in nodriver.cdp.dom_snapshot)": [[19, "nodriver.cdp.dom_snapshot.RareIntegerData"]], "rarestringdata (class in nodriver.cdp.dom_snapshot)": [[19, "nodriver.cdp.dom_snapshot.RareStringData"]], "rectangle (class in nodriver.cdp.dom_snapshot)": [[19, "nodriver.cdp.dom_snapshot.Rectangle"]], "stringindex (class in nodriver.cdp.dom_snapshot)": [[19, "nodriver.cdp.dom_snapshot.StringIndex"]], "textboxsnapshot (class in nodriver.cdp.dom_snapshot)": [[19, "nodriver.cdp.dom_snapshot.TextBoxSnapshot"]], "attributes (domnode attribute)": [[19, "nodriver.cdp.dom_snapshot.DOMNode.attributes"]], "attributes (nodetreesnapshot attribute)": [[19, "nodriver.cdp.dom_snapshot.NodeTreeSnapshot.attributes"]], "backend_node_id (domnode attribute)": [[19, "nodriver.cdp.dom_snapshot.DOMNode.backend_node_id"]], "backend_node_id (nodetreesnapshot attribute)": [[19, "nodriver.cdp.dom_snapshot.NodeTreeSnapshot.backend_node_id"]], "base_url (domnode attribute)": [[19, "nodriver.cdp.dom_snapshot.DOMNode.base_url"]], "base_url (documentsnapshot attribute)": [[19, "nodriver.cdp.dom_snapshot.DocumentSnapshot.base_url"]], "blended_background_colors (layouttreesnapshot attribute)": [[19, "nodriver.cdp.dom_snapshot.LayoutTreeSnapshot.blended_background_colors"]], "bounding_box (inlinetextbox attribute)": [[19, "nodriver.cdp.dom_snapshot.InlineTextBox.bounding_box"]], "bounding_box (layouttreenode attribute)": [[19, "nodriver.cdp.dom_snapshot.LayoutTreeNode.bounding_box"]], "bounds (layouttreesnapshot attribute)": [[19, "nodriver.cdp.dom_snapshot.LayoutTreeSnapshot.bounds"]], "bounds (textboxsnapshot attribute)": [[19, "nodriver.cdp.dom_snapshot.TextBoxSnapshot.bounds"]], "capture_snapshot() (in module nodriver.cdp.dom_snapshot)": [[19, "nodriver.cdp.dom_snapshot.capture_snapshot"]], "child_node_indexes (domnode attribute)": [[19, "nodriver.cdp.dom_snapshot.DOMNode.child_node_indexes"]], "client_rects (layouttreesnapshot attribute)": [[19, "nodriver.cdp.dom_snapshot.LayoutTreeSnapshot.client_rects"]], "content_document_index (domnode attribute)": [[19, "nodriver.cdp.dom_snapshot.DOMNode.content_document_index"]], "content_document_index (nodetreesnapshot attribute)": [[19, "nodriver.cdp.dom_snapshot.NodeTreeSnapshot.content_document_index"]], "content_height (documentsnapshot attribute)": [[19, "nodriver.cdp.dom_snapshot.DocumentSnapshot.content_height"]], "content_language (domnode attribute)": [[19, "nodriver.cdp.dom_snapshot.DOMNode.content_language"]], "content_language (documentsnapshot attribute)": [[19, "nodriver.cdp.dom_snapshot.DocumentSnapshot.content_language"]], "content_width (documentsnapshot attribute)": [[19, "nodriver.cdp.dom_snapshot.DocumentSnapshot.content_width"]], "current_source_url (domnode attribute)": [[19, "nodriver.cdp.dom_snapshot.DOMNode.current_source_url"]], "current_source_url (nodetreesnapshot attribute)": [[19, "nodriver.cdp.dom_snapshot.NodeTreeSnapshot.current_source_url"]], "disable() (in module nodriver.cdp.dom_snapshot)": [[19, "nodriver.cdp.dom_snapshot.disable"]], "document_encoding (domnode attribute)": [[19, "nodriver.cdp.dom_snapshot.DOMNode.document_encoding"]], "document_url (domnode attribute)": [[19, "nodriver.cdp.dom_snapshot.DOMNode.document_url"]], "document_url (documentsnapshot attribute)": [[19, "nodriver.cdp.dom_snapshot.DocumentSnapshot.document_url"]], "dom_node_index (layouttreenode attribute)": [[19, "nodriver.cdp.dom_snapshot.LayoutTreeNode.dom_node_index"]], "enable() (in module nodriver.cdp.dom_snapshot)": [[19, "nodriver.cdp.dom_snapshot.enable"]], "encoding_name (documentsnapshot attribute)": [[19, "nodriver.cdp.dom_snapshot.DocumentSnapshot.encoding_name"]], "event_listeners (domnode attribute)": [[19, "nodriver.cdp.dom_snapshot.DOMNode.event_listeners"]], "frame_id (domnode attribute)": [[19, "nodriver.cdp.dom_snapshot.DOMNode.frame_id"]], "frame_id (documentsnapshot attribute)": [[19, "nodriver.cdp.dom_snapshot.DocumentSnapshot.frame_id"]], "get_snapshot() (in module nodriver.cdp.dom_snapshot)": [[19, "nodriver.cdp.dom_snapshot.get_snapshot"]], "index (rarebooleandata attribute)": [[19, "nodriver.cdp.dom_snapshot.RareBooleanData.index"]], "index (rareintegerdata attribute)": [[19, "nodriver.cdp.dom_snapshot.RareIntegerData.index"]], "index (rarestringdata attribute)": [[19, "nodriver.cdp.dom_snapshot.RareStringData.index"]], "inline_text_nodes (layouttreenode attribute)": [[19, "nodriver.cdp.dom_snapshot.LayoutTreeNode.inline_text_nodes"]], "input_checked (domnode attribute)": [[19, "nodriver.cdp.dom_snapshot.DOMNode.input_checked"]], "input_checked (nodetreesnapshot attribute)": [[19, "nodriver.cdp.dom_snapshot.NodeTreeSnapshot.input_checked"]], "input_value (domnode attribute)": [[19, "nodriver.cdp.dom_snapshot.DOMNode.input_value"]], "input_value (nodetreesnapshot attribute)": [[19, "nodriver.cdp.dom_snapshot.NodeTreeSnapshot.input_value"]], "is_clickable (domnode attribute)": [[19, "nodriver.cdp.dom_snapshot.DOMNode.is_clickable"]], "is_clickable (nodetreesnapshot attribute)": [[19, "nodriver.cdp.dom_snapshot.NodeTreeSnapshot.is_clickable"]], "is_stacking_context (layouttreenode attribute)": [[19, "nodriver.cdp.dom_snapshot.LayoutTreeNode.is_stacking_context"]], "layout (documentsnapshot attribute)": [[19, "nodriver.cdp.dom_snapshot.DocumentSnapshot.layout"]], "layout_index (textboxsnapshot attribute)": [[19, "nodriver.cdp.dom_snapshot.TextBoxSnapshot.layout_index"]], "layout_node_index (domnode attribute)": [[19, "nodriver.cdp.dom_snapshot.DOMNode.layout_node_index"]], "layout_text (layouttreenode attribute)": [[19, "nodriver.cdp.dom_snapshot.LayoutTreeNode.layout_text"]], "length (textboxsnapshot attribute)": [[19, "nodriver.cdp.dom_snapshot.TextBoxSnapshot.length"]], "name (namevalue attribute)": [[19, "nodriver.cdp.dom_snapshot.NameValue.name"]], "node_index (layouttreesnapshot attribute)": [[19, "nodriver.cdp.dom_snapshot.LayoutTreeSnapshot.node_index"]], "node_name (domnode attribute)": [[19, "nodriver.cdp.dom_snapshot.DOMNode.node_name"]], "node_name (nodetreesnapshot attribute)": [[19, "nodriver.cdp.dom_snapshot.NodeTreeSnapshot.node_name"]], "node_type (domnode attribute)": [[19, "nodriver.cdp.dom_snapshot.DOMNode.node_type"]], "node_type (nodetreesnapshot attribute)": [[19, "nodriver.cdp.dom_snapshot.NodeTreeSnapshot.node_type"]], "node_value (domnode attribute)": [[19, "nodriver.cdp.dom_snapshot.DOMNode.node_value"]], "node_value (nodetreesnapshot attribute)": [[19, "nodriver.cdp.dom_snapshot.NodeTreeSnapshot.node_value"]], "nodes (documentsnapshot attribute)": [[19, "nodriver.cdp.dom_snapshot.DocumentSnapshot.nodes"]], "nodriver.cdp.dom_snapshot": [[19, "module-nodriver.cdp.dom_snapshot"]], "num_characters (inlinetextbox attribute)": [[19, "nodriver.cdp.dom_snapshot.InlineTextBox.num_characters"]], "offset_rects (layouttreesnapshot attribute)": [[19, "nodriver.cdp.dom_snapshot.LayoutTreeSnapshot.offset_rects"]], "option_selected (domnode attribute)": [[19, "nodriver.cdp.dom_snapshot.DOMNode.option_selected"]], "option_selected (nodetreesnapshot attribute)": [[19, "nodriver.cdp.dom_snapshot.NodeTreeSnapshot.option_selected"]], "origin_url (domnode attribute)": [[19, "nodriver.cdp.dom_snapshot.DOMNode.origin_url"]], "origin_url (nodetreesnapshot attribute)": [[19, "nodriver.cdp.dom_snapshot.NodeTreeSnapshot.origin_url"]], "paint_order (layouttreenode attribute)": [[19, "nodriver.cdp.dom_snapshot.LayoutTreeNode.paint_order"]], "paint_orders (layouttreesnapshot attribute)": [[19, "nodriver.cdp.dom_snapshot.LayoutTreeSnapshot.paint_orders"]], "parent_index (nodetreesnapshot attribute)": [[19, "nodriver.cdp.dom_snapshot.NodeTreeSnapshot.parent_index"]], "properties (computedstyle attribute)": [[19, "nodriver.cdp.dom_snapshot.ComputedStyle.properties"]], "pseudo_element_indexes (domnode attribute)": [[19, "nodriver.cdp.dom_snapshot.DOMNode.pseudo_element_indexes"]], "pseudo_identifier (nodetreesnapshot attribute)": [[19, "nodriver.cdp.dom_snapshot.NodeTreeSnapshot.pseudo_identifier"]], "pseudo_type (domnode attribute)": [[19, "nodriver.cdp.dom_snapshot.DOMNode.pseudo_type"]], "pseudo_type (nodetreesnapshot attribute)": [[19, "nodriver.cdp.dom_snapshot.NodeTreeSnapshot.pseudo_type"]], "public_id (domnode attribute)": [[19, "nodriver.cdp.dom_snapshot.DOMNode.public_id"]], "public_id (documentsnapshot attribute)": [[19, "nodriver.cdp.dom_snapshot.DocumentSnapshot.public_id"]], "scroll_offset_x (domnode attribute)": [[19, "nodriver.cdp.dom_snapshot.DOMNode.scroll_offset_x"]], "scroll_offset_x (documentsnapshot attribute)": [[19, "nodriver.cdp.dom_snapshot.DocumentSnapshot.scroll_offset_x"]], "scroll_offset_y (domnode attribute)": [[19, "nodriver.cdp.dom_snapshot.DOMNode.scroll_offset_y"]], "scroll_offset_y (documentsnapshot attribute)": [[19, "nodriver.cdp.dom_snapshot.DocumentSnapshot.scroll_offset_y"]], "scroll_rects (layouttreesnapshot attribute)": [[19, "nodriver.cdp.dom_snapshot.LayoutTreeSnapshot.scroll_rects"]], "shadow_root_type (domnode attribute)": [[19, "nodriver.cdp.dom_snapshot.DOMNode.shadow_root_type"]], "shadow_root_type (nodetreesnapshot attribute)": [[19, "nodriver.cdp.dom_snapshot.NodeTreeSnapshot.shadow_root_type"]], "stacking_contexts (layouttreesnapshot attribute)": [[19, "nodriver.cdp.dom_snapshot.LayoutTreeSnapshot.stacking_contexts"]], "start (textboxsnapshot attribute)": [[19, "nodriver.cdp.dom_snapshot.TextBoxSnapshot.start"]], "start_character_index (inlinetextbox attribute)": [[19, "nodriver.cdp.dom_snapshot.InlineTextBox.start_character_index"]], "style_index (layouttreenode attribute)": [[19, "nodriver.cdp.dom_snapshot.LayoutTreeNode.style_index"]], "styles (layouttreesnapshot attribute)": [[19, "nodriver.cdp.dom_snapshot.LayoutTreeSnapshot.styles"]], "system_id (domnode attribute)": [[19, "nodriver.cdp.dom_snapshot.DOMNode.system_id"]], "system_id (documentsnapshot attribute)": [[19, "nodriver.cdp.dom_snapshot.DocumentSnapshot.system_id"]], "text (layouttreesnapshot attribute)": [[19, "nodriver.cdp.dom_snapshot.LayoutTreeSnapshot.text"]], "text_boxes (documentsnapshot attribute)": [[19, "nodriver.cdp.dom_snapshot.DocumentSnapshot.text_boxes"]], "text_color_opacities (layouttreesnapshot attribute)": [[19, "nodriver.cdp.dom_snapshot.LayoutTreeSnapshot.text_color_opacities"]], "text_value (domnode attribute)": [[19, "nodriver.cdp.dom_snapshot.DOMNode.text_value"]], "text_value (nodetreesnapshot attribute)": [[19, "nodriver.cdp.dom_snapshot.NodeTreeSnapshot.text_value"]], "title (documentsnapshot attribute)": [[19, "nodriver.cdp.dom_snapshot.DocumentSnapshot.title"]], "value (namevalue attribute)": [[19, "nodriver.cdp.dom_snapshot.NameValue.value"]], "value (rareintegerdata attribute)": [[19, "nodriver.cdp.dom_snapshot.RareIntegerData.value"]], "value (rarestringdata attribute)": [[19, "nodriver.cdp.dom_snapshot.RareStringData.value"]], "domstorageitemadded (class in nodriver.cdp.dom_storage)": [[20, "nodriver.cdp.dom_storage.DomStorageItemAdded"]], "domstorageitemremoved (class in nodriver.cdp.dom_storage)": [[20, "nodriver.cdp.dom_storage.DomStorageItemRemoved"]], "domstorageitemupdated (class in nodriver.cdp.dom_storage)": [[20, "nodriver.cdp.dom_storage.DomStorageItemUpdated"]], "domstorageitemscleared (class in nodriver.cdp.dom_storage)": [[20, "nodriver.cdp.dom_storage.DomStorageItemsCleared"]], "item (class in nodriver.cdp.dom_storage)": [[20, "nodriver.cdp.dom_storage.Item"]], "serializedstoragekey (class in nodriver.cdp.dom_storage)": [[20, "nodriver.cdp.dom_storage.SerializedStorageKey"]], "storageid (class in nodriver.cdp.dom_storage)": [[20, "nodriver.cdp.dom_storage.StorageId"]], "clear() (in module nodriver.cdp.dom_storage)": [[20, "nodriver.cdp.dom_storage.clear"]], "disable() (in module nodriver.cdp.dom_storage)": [[20, "nodriver.cdp.dom_storage.disable"]], "enable() (in module nodriver.cdp.dom_storage)": [[20, "nodriver.cdp.dom_storage.enable"]], "get_dom_storage_items() (in module nodriver.cdp.dom_storage)": [[20, "nodriver.cdp.dom_storage.get_dom_storage_items"]], "is_local_storage (storageid attribute)": [[20, "nodriver.cdp.dom_storage.StorageId.is_local_storage"]], "key (domstorageitemadded attribute)": [[20, "nodriver.cdp.dom_storage.DomStorageItemAdded.key"]], "key (domstorageitemremoved attribute)": [[20, "nodriver.cdp.dom_storage.DomStorageItemRemoved.key"]], "key (domstorageitemupdated attribute)": [[20, "nodriver.cdp.dom_storage.DomStorageItemUpdated.key"]], "new_value (domstorageitemadded attribute)": [[20, "nodriver.cdp.dom_storage.DomStorageItemAdded.new_value"]], "new_value (domstorageitemupdated attribute)": [[20, "nodriver.cdp.dom_storage.DomStorageItemUpdated.new_value"]], "nodriver.cdp.dom_storage": [[20, "module-nodriver.cdp.dom_storage"]], "old_value (domstorageitemupdated attribute)": [[20, "nodriver.cdp.dom_storage.DomStorageItemUpdated.old_value"]], "remove_dom_storage_item() (in module nodriver.cdp.dom_storage)": [[20, "nodriver.cdp.dom_storage.remove_dom_storage_item"]], "security_origin (storageid attribute)": [[20, "nodriver.cdp.dom_storage.StorageId.security_origin"]], "set_dom_storage_item() (in module nodriver.cdp.dom_storage)": [[20, "nodriver.cdp.dom_storage.set_dom_storage_item"]], "storage_id (domstorageitemadded attribute)": [[20, "nodriver.cdp.dom_storage.DomStorageItemAdded.storage_id"]], "storage_id (domstorageitemremoved attribute)": [[20, "nodriver.cdp.dom_storage.DomStorageItemRemoved.storage_id"]], "storage_id (domstorageitemupdated attribute)": [[20, "nodriver.cdp.dom_storage.DomStorageItemUpdated.storage_id"]], "storage_id (domstorageitemscleared attribute)": [[20, "nodriver.cdp.dom_storage.DomStorageItemsCleared.storage_id"]], "storage_key (storageid attribute)": [[20, "nodriver.cdp.dom_storage.StorageId.storage_key"]], "absolute_orientation (sensortype attribute)": [[21, "nodriver.cdp.emulation.SensorType.ABSOLUTE_ORIENTATION"]], "accelerometer (sensortype attribute)": [[21, "nodriver.cdp.emulation.SensorType.ACCELEROMETER"]], "advance (virtualtimepolicy attribute)": [[21, "nodriver.cdp.emulation.VirtualTimePolicy.ADVANCE"]], "ambient_light (sensortype attribute)": [[21, "nodriver.cdp.emulation.SensorType.AMBIENT_LIGHT"]], "avif (disabledimagetype attribute)": [[21, "nodriver.cdp.emulation.DisabledImageType.AVIF"]], "cpu (pressuresource attribute)": [[21, "nodriver.cdp.emulation.PressureSource.CPU"]], "critical (pressurestate attribute)": [[21, "nodriver.cdp.emulation.PressureState.CRITICAL"]], "deviceposture (class in nodriver.cdp.emulation)": [[21, "nodriver.cdp.emulation.DevicePosture"]], "disabledimagetype (class in nodriver.cdp.emulation)": [[21, "nodriver.cdp.emulation.DisabledImageType"]], "displayfeature (class in nodriver.cdp.emulation)": [[21, "nodriver.cdp.emulation.DisplayFeature"]], "fair (pressurestate attribute)": [[21, "nodriver.cdp.emulation.PressureState.FAIR"]], "gravity (sensortype attribute)": [[21, "nodriver.cdp.emulation.SensorType.GRAVITY"]], "gyroscope (sensortype attribute)": [[21, "nodriver.cdp.emulation.SensorType.GYROSCOPE"]], "linear_acceleration (sensortype attribute)": [[21, "nodriver.cdp.emulation.SensorType.LINEAR_ACCELERATION"]], "magnetometer (sensortype attribute)": [[21, "nodriver.cdp.emulation.SensorType.MAGNETOMETER"]], "mediafeature (class in nodriver.cdp.emulation)": [[21, "nodriver.cdp.emulation.MediaFeature"]], "nominal (pressurestate attribute)": [[21, "nodriver.cdp.emulation.PressureState.NOMINAL"]], "pause (virtualtimepolicy attribute)": [[21, "nodriver.cdp.emulation.VirtualTimePolicy.PAUSE"]], "pause_if_network_fetches_pending (virtualtimepolicy attribute)": [[21, "nodriver.cdp.emulation.VirtualTimePolicy.PAUSE_IF_NETWORK_FETCHES_PENDING"]], "pressuremetadata (class in nodriver.cdp.emulation)": [[21, "nodriver.cdp.emulation.PressureMetadata"]], "pressuresource (class in nodriver.cdp.emulation)": [[21, "nodriver.cdp.emulation.PressureSource"]], "pressurestate (class in nodriver.cdp.emulation)": [[21, "nodriver.cdp.emulation.PressureState"]], "relative_orientation (sensortype attribute)": [[21, "nodriver.cdp.emulation.SensorType.RELATIVE_ORIENTATION"]], "serious (pressurestate attribute)": [[21, "nodriver.cdp.emulation.PressureState.SERIOUS"]], "screenorientation (class in nodriver.cdp.emulation)": [[21, "nodriver.cdp.emulation.ScreenOrientation"]], "sensormetadata (class in nodriver.cdp.emulation)": [[21, "nodriver.cdp.emulation.SensorMetadata"]], "sensorreading (class in nodriver.cdp.emulation)": [[21, "nodriver.cdp.emulation.SensorReading"]], "sensorreadingquaternion (class in nodriver.cdp.emulation)": [[21, "nodriver.cdp.emulation.SensorReadingQuaternion"]], "sensorreadingsingle (class in nodriver.cdp.emulation)": [[21, "nodriver.cdp.emulation.SensorReadingSingle"]], "sensorreadingxyz (class in nodriver.cdp.emulation)": [[21, "nodriver.cdp.emulation.SensorReadingXYZ"]], "sensortype (class in nodriver.cdp.emulation)": [[21, "nodriver.cdp.emulation.SensorType"]], "useragentbrandversion (class in nodriver.cdp.emulation)": [[21, "nodriver.cdp.emulation.UserAgentBrandVersion"]], "useragentmetadata (class in nodriver.cdp.emulation)": [[21, "nodriver.cdp.emulation.UserAgentMetadata"]], "virtualtimebudgetexpired (class in nodriver.cdp.emulation)": [[21, "nodriver.cdp.emulation.VirtualTimeBudgetExpired"]], "virtualtimepolicy (class in nodriver.cdp.emulation)": [[21, "nodriver.cdp.emulation.VirtualTimePolicy"]], "webp (disabledimagetype attribute)": [[21, "nodriver.cdp.emulation.DisabledImageType.WEBP"]], "angle (screenorientation attribute)": [[21, "nodriver.cdp.emulation.ScreenOrientation.angle"]], "architecture (useragentmetadata attribute)": [[21, "nodriver.cdp.emulation.UserAgentMetadata.architecture"]], "available (pressuremetadata attribute)": [[21, "nodriver.cdp.emulation.PressureMetadata.available"]], "available (sensormetadata attribute)": [[21, "nodriver.cdp.emulation.SensorMetadata.available"]], "bitness (useragentmetadata attribute)": [[21, "nodriver.cdp.emulation.UserAgentMetadata.bitness"]], "brand (useragentbrandversion attribute)": [[21, "nodriver.cdp.emulation.UserAgentBrandVersion.brand"]], "brands (useragentmetadata attribute)": [[21, "nodriver.cdp.emulation.UserAgentMetadata.brands"]], "can_emulate() (in module nodriver.cdp.emulation)": [[21, "nodriver.cdp.emulation.can_emulate"]], "clear_device_metrics_override() (in module nodriver.cdp.emulation)": [[21, "nodriver.cdp.emulation.clear_device_metrics_override"]], "clear_device_posture_override() (in module nodriver.cdp.emulation)": [[21, "nodriver.cdp.emulation.clear_device_posture_override"]], "clear_geolocation_override() (in module nodriver.cdp.emulation)": [[21, "nodriver.cdp.emulation.clear_geolocation_override"]], "clear_idle_override() (in module nodriver.cdp.emulation)": [[21, "nodriver.cdp.emulation.clear_idle_override"]], "full_version (useragentmetadata attribute)": [[21, "nodriver.cdp.emulation.UserAgentMetadata.full_version"]], "full_version_list (useragentmetadata attribute)": [[21, "nodriver.cdp.emulation.UserAgentMetadata.full_version_list"]], "get_overridden_sensor_information() (in module nodriver.cdp.emulation)": [[21, "nodriver.cdp.emulation.get_overridden_sensor_information"]], "mask_length (displayfeature attribute)": [[21, "nodriver.cdp.emulation.DisplayFeature.mask_length"]], "maximum_frequency (sensormetadata attribute)": [[21, "nodriver.cdp.emulation.SensorMetadata.maximum_frequency"]], "minimum_frequency (sensormetadata attribute)": [[21, "nodriver.cdp.emulation.SensorMetadata.minimum_frequency"]], "mobile (useragentmetadata attribute)": [[21, "nodriver.cdp.emulation.UserAgentMetadata.mobile"]], "model (useragentmetadata attribute)": [[21, "nodriver.cdp.emulation.UserAgentMetadata.model"]], "name (mediafeature attribute)": [[21, "nodriver.cdp.emulation.MediaFeature.name"]], "nodriver.cdp.emulation": [[21, "module-nodriver.cdp.emulation"]], "offset (displayfeature attribute)": [[21, "nodriver.cdp.emulation.DisplayFeature.offset"]], "orientation (displayfeature attribute)": [[21, "nodriver.cdp.emulation.DisplayFeature.orientation"]], "platform (useragentmetadata attribute)": [[21, "nodriver.cdp.emulation.UserAgentMetadata.platform"]], "platform_version (useragentmetadata attribute)": [[21, "nodriver.cdp.emulation.UserAgentMetadata.platform_version"]], "quaternion (sensorreading attribute)": [[21, "nodriver.cdp.emulation.SensorReading.quaternion"]], "reset_page_scale_factor() (in module nodriver.cdp.emulation)": [[21, "nodriver.cdp.emulation.reset_page_scale_factor"]], "set_auto_dark_mode_override() (in module nodriver.cdp.emulation)": [[21, "nodriver.cdp.emulation.set_auto_dark_mode_override"]], "set_automation_override() (in module nodriver.cdp.emulation)": [[21, "nodriver.cdp.emulation.set_automation_override"]], "set_cpu_throttling_rate() (in module nodriver.cdp.emulation)": [[21, "nodriver.cdp.emulation.set_cpu_throttling_rate"]], "set_default_background_color_override() (in module nodriver.cdp.emulation)": [[21, "nodriver.cdp.emulation.set_default_background_color_override"]], "set_device_metrics_override() (in module nodriver.cdp.emulation)": [[21, "nodriver.cdp.emulation.set_device_metrics_override"]], "set_device_posture_override() (in module nodriver.cdp.emulation)": [[21, "nodriver.cdp.emulation.set_device_posture_override"]], "set_disabled_image_types() (in module nodriver.cdp.emulation)": [[21, "nodriver.cdp.emulation.set_disabled_image_types"]], "set_document_cookie_disabled() (in module nodriver.cdp.emulation)": [[21, "nodriver.cdp.emulation.set_document_cookie_disabled"]], "set_emit_touch_events_for_mouse() (in module nodriver.cdp.emulation)": [[21, "nodriver.cdp.emulation.set_emit_touch_events_for_mouse"]], "set_emulated_media() (in module nodriver.cdp.emulation)": [[21, "nodriver.cdp.emulation.set_emulated_media"]], "set_emulated_vision_deficiency() (in module nodriver.cdp.emulation)": [[21, "nodriver.cdp.emulation.set_emulated_vision_deficiency"]], "set_focus_emulation_enabled() (in module nodriver.cdp.emulation)": [[21, "nodriver.cdp.emulation.set_focus_emulation_enabled"]], "set_geolocation_override() (in module nodriver.cdp.emulation)": [[21, "nodriver.cdp.emulation.set_geolocation_override"]], "set_hardware_concurrency_override() (in module nodriver.cdp.emulation)": [[21, "nodriver.cdp.emulation.set_hardware_concurrency_override"]], "set_idle_override() (in module nodriver.cdp.emulation)": [[21, "nodriver.cdp.emulation.set_idle_override"]], "set_locale_override() (in module nodriver.cdp.emulation)": [[21, "nodriver.cdp.emulation.set_locale_override"]], "set_navigator_overrides() (in module nodriver.cdp.emulation)": [[21, "nodriver.cdp.emulation.set_navigator_overrides"]], "set_page_scale_factor() (in module nodriver.cdp.emulation)": [[21, "nodriver.cdp.emulation.set_page_scale_factor"]], "set_pressure_source_override_enabled() (in module nodriver.cdp.emulation)": [[21, "nodriver.cdp.emulation.set_pressure_source_override_enabled"]], "set_pressure_state_override() (in module nodriver.cdp.emulation)": [[21, "nodriver.cdp.emulation.set_pressure_state_override"]], "set_script_execution_disabled() (in module nodriver.cdp.emulation)": [[21, "nodriver.cdp.emulation.set_script_execution_disabled"]], "set_scrollbars_hidden() (in module nodriver.cdp.emulation)": [[21, "nodriver.cdp.emulation.set_scrollbars_hidden"]], "set_sensor_override_enabled() (in module nodriver.cdp.emulation)": [[21, "nodriver.cdp.emulation.set_sensor_override_enabled"]], "set_sensor_override_readings() (in module nodriver.cdp.emulation)": [[21, "nodriver.cdp.emulation.set_sensor_override_readings"]], "set_timezone_override() (in module nodriver.cdp.emulation)": [[21, "nodriver.cdp.emulation.set_timezone_override"]], "set_touch_emulation_enabled() (in module nodriver.cdp.emulation)": [[21, "nodriver.cdp.emulation.set_touch_emulation_enabled"]], "set_user_agent_override() (in module nodriver.cdp.emulation)": [[21, "nodriver.cdp.emulation.set_user_agent_override"]], "set_virtual_time_policy() (in module nodriver.cdp.emulation)": [[21, "nodriver.cdp.emulation.set_virtual_time_policy"]], "set_visible_size() (in module nodriver.cdp.emulation)": [[21, "nodriver.cdp.emulation.set_visible_size"]], "single (sensorreading attribute)": [[21, "nodriver.cdp.emulation.SensorReading.single"]], "type_ (deviceposture attribute)": [[21, "nodriver.cdp.emulation.DevicePosture.type_"]], "type_ (screenorientation attribute)": [[21, "nodriver.cdp.emulation.ScreenOrientation.type_"]], "value (mediafeature attribute)": [[21, "nodriver.cdp.emulation.MediaFeature.value"]], "value (sensorreadingsingle attribute)": [[21, "nodriver.cdp.emulation.SensorReadingSingle.value"]], "version (useragentbrandversion attribute)": [[21, "nodriver.cdp.emulation.UserAgentBrandVersion.version"]], "w (sensorreadingquaternion attribute)": [[21, "nodriver.cdp.emulation.SensorReadingQuaternion.w"]], "wow64 (useragentmetadata attribute)": [[21, "nodriver.cdp.emulation.UserAgentMetadata.wow64"]], "x (sensorreadingquaternion attribute)": [[21, "nodriver.cdp.emulation.SensorReadingQuaternion.x"]], "x (sensorreadingxyz attribute)": [[21, "nodriver.cdp.emulation.SensorReadingXYZ.x"]], "xyz (sensorreading attribute)": [[21, "nodriver.cdp.emulation.SensorReading.xyz"]], "y (sensorreadingquaternion attribute)": [[21, "nodriver.cdp.emulation.SensorReadingQuaternion.y"]], "y (sensorreadingxyz attribute)": [[21, "nodriver.cdp.emulation.SensorReadingXYZ.y"]], "z (sensorreadingquaternion attribute)": [[21, "nodriver.cdp.emulation.SensorReadingQuaternion.z"]], "z (sensorreadingxyz attribute)": [[21, "nodriver.cdp.emulation.SensorReadingXYZ.z"]], "disable() (in module nodriver.cdp.event_breakpoints)": [[22, "nodriver.cdp.event_breakpoints.disable"]], "nodriver.cdp.event_breakpoints": [[22, "module-nodriver.cdp.event_breakpoints"]], "remove_instrumentation_breakpoint() (in module nodriver.cdp.event_breakpoints)": [[22, "nodriver.cdp.event_breakpoints.remove_instrumentation_breakpoint"]], "set_instrumentation_breakpoint() (in module nodriver.cdp.event_breakpoints)": [[22, "nodriver.cdp.event_breakpoints.set_instrumentation_breakpoint"]], "local (storagearea attribute)": [[23, "nodriver.cdp.extensions.StorageArea.LOCAL"]], "managed (storagearea attribute)": [[23, "nodriver.cdp.extensions.StorageArea.MANAGED"]], "session (storagearea attribute)": [[23, "nodriver.cdp.extensions.StorageArea.SESSION"]], "sync (storagearea attribute)": [[23, "nodriver.cdp.extensions.StorageArea.SYNC"]], "storagearea (class in nodriver.cdp.extensions)": [[23, "nodriver.cdp.extensions.StorageArea"]], "clear_storage_items() (in module nodriver.cdp.extensions)": [[23, "nodriver.cdp.extensions.clear_storage_items"]], "get_storage_items() (in module nodriver.cdp.extensions)": [[23, "nodriver.cdp.extensions.get_storage_items"]], "load_unpacked() (in module nodriver.cdp.extensions)": [[23, "nodriver.cdp.extensions.load_unpacked"]], "nodriver.cdp.extensions": [[23, "module-nodriver.cdp.extensions"]], "remove_storage_items() (in module nodriver.cdp.extensions)": [[23, "nodriver.cdp.extensions.remove_storage_items"]], "set_storage_items() (in module nodriver.cdp.extensions)": [[23, "nodriver.cdp.extensions.set_storage_items"]], "account_chooser (dialogtype attribute)": [[24, "nodriver.cdp.fed_cm.DialogType.ACCOUNT_CHOOSER"]], "auto_reauthn (dialogtype attribute)": [[24, "nodriver.cdp.fed_cm.DialogType.AUTO_REAUTHN"]], "account (class in nodriver.cdp.fed_cm)": [[24, "nodriver.cdp.fed_cm.Account"]], "accounturltype (class in nodriver.cdp.fed_cm)": [[24, "nodriver.cdp.fed_cm.AccountUrlType"]], "confirm_idp_login (dialogtype attribute)": [[24, "nodriver.cdp.fed_cm.DialogType.CONFIRM_IDP_LOGIN"]], "confirm_idp_login_continue (dialogbutton attribute)": [[24, "nodriver.cdp.fed_cm.DialogButton.CONFIRM_IDP_LOGIN_CONTINUE"]], "dialogbutton (class in nodriver.cdp.fed_cm)": [[24, "nodriver.cdp.fed_cm.DialogButton"]], "dialogclosed (class in nodriver.cdp.fed_cm)": [[24, "nodriver.cdp.fed_cm.DialogClosed"]], "dialogshown (class in nodriver.cdp.fed_cm)": [[24, "nodriver.cdp.fed_cm.DialogShown"]], "dialogtype (class in nodriver.cdp.fed_cm)": [[24, "nodriver.cdp.fed_cm.DialogType"]], "error (dialogtype attribute)": [[24, "nodriver.cdp.fed_cm.DialogType.ERROR"]], "error_got_it (dialogbutton attribute)": [[24, "nodriver.cdp.fed_cm.DialogButton.ERROR_GOT_IT"]], "error_more_details (dialogbutton attribute)": [[24, "nodriver.cdp.fed_cm.DialogButton.ERROR_MORE_DETAILS"]], "loginstate (class in nodriver.cdp.fed_cm)": [[24, "nodriver.cdp.fed_cm.LoginState"]], "privacy_policy (accounturltype attribute)": [[24, "nodriver.cdp.fed_cm.AccountUrlType.PRIVACY_POLICY"]], "sign_in (loginstate attribute)": [[24, "nodriver.cdp.fed_cm.LoginState.SIGN_IN"]], "sign_up (loginstate attribute)": [[24, "nodriver.cdp.fed_cm.LoginState.SIGN_UP"]], "terms_of_service (accounturltype attribute)": [[24, "nodriver.cdp.fed_cm.AccountUrlType.TERMS_OF_SERVICE"]], "account_id (account attribute)": [[24, "nodriver.cdp.fed_cm.Account.account_id"]], "accounts (dialogshown attribute)": [[24, "nodriver.cdp.fed_cm.DialogShown.accounts"]], "click_dialog_button() (in module nodriver.cdp.fed_cm)": [[24, "nodriver.cdp.fed_cm.click_dialog_button"]], "dialog_id (dialogclosed attribute)": [[24, "nodriver.cdp.fed_cm.DialogClosed.dialog_id"]], "dialog_id (dialogshown attribute)": [[24, "nodriver.cdp.fed_cm.DialogShown.dialog_id"]], "dialog_type (dialogshown attribute)": [[24, "nodriver.cdp.fed_cm.DialogShown.dialog_type"]], "disable() (in module nodriver.cdp.fed_cm)": [[24, "nodriver.cdp.fed_cm.disable"]], "dismiss_dialog() (in module nodriver.cdp.fed_cm)": [[24, "nodriver.cdp.fed_cm.dismiss_dialog"]], "email (account attribute)": [[24, "nodriver.cdp.fed_cm.Account.email"]], "enable() (in module nodriver.cdp.fed_cm)": [[24, "nodriver.cdp.fed_cm.enable"]], "given_name (account attribute)": [[24, "nodriver.cdp.fed_cm.Account.given_name"]], "idp_config_url (account attribute)": [[24, "nodriver.cdp.fed_cm.Account.idp_config_url"]], "idp_login_url (account attribute)": [[24, "nodriver.cdp.fed_cm.Account.idp_login_url"]], "login_state (account attribute)": [[24, "nodriver.cdp.fed_cm.Account.login_state"]], "name (account attribute)": [[24, "nodriver.cdp.fed_cm.Account.name"]], "nodriver.cdp.fed_cm": [[24, "module-nodriver.cdp.fed_cm"]], "open_url() (in module nodriver.cdp.fed_cm)": [[24, "nodriver.cdp.fed_cm.open_url"]], "picture_url (account attribute)": [[24, "nodriver.cdp.fed_cm.Account.picture_url"]], "privacy_policy_url (account attribute)": [[24, "nodriver.cdp.fed_cm.Account.privacy_policy_url"]], "reset_cooldown() (in module nodriver.cdp.fed_cm)": [[24, "nodriver.cdp.fed_cm.reset_cooldown"]], "select_account() (in module nodriver.cdp.fed_cm)": [[24, "nodriver.cdp.fed_cm.select_account"]], "subtitle (dialogshown attribute)": [[24, "nodriver.cdp.fed_cm.DialogShown.subtitle"]], "terms_of_service_url (account attribute)": [[24, "nodriver.cdp.fed_cm.Account.terms_of_service_url"]], "title (dialogshown attribute)": [[24, "nodriver.cdp.fed_cm.DialogShown.title"]], "authchallenge (class in nodriver.cdp.fetch)": [[25, "nodriver.cdp.fetch.AuthChallenge"]], "authchallengeresponse (class in nodriver.cdp.fetch)": [[25, "nodriver.cdp.fetch.AuthChallengeResponse"]], "authrequired (class in nodriver.cdp.fetch)": [[25, "nodriver.cdp.fetch.AuthRequired"]], "headerentry (class in nodriver.cdp.fetch)": [[25, "nodriver.cdp.fetch.HeaderEntry"]], "request (requeststage attribute)": [[25, "nodriver.cdp.fetch.RequestStage.REQUEST"]], "response (requeststage attribute)": [[25, "nodriver.cdp.fetch.RequestStage.RESPONSE"]], "requestid (class in nodriver.cdp.fetch)": [[25, "nodriver.cdp.fetch.RequestId"]], "requestpattern (class in nodriver.cdp.fetch)": [[25, "nodriver.cdp.fetch.RequestPattern"]], "requestpaused (class in nodriver.cdp.fetch)": [[25, "nodriver.cdp.fetch.RequestPaused"]], "requeststage (class in nodriver.cdp.fetch)": [[25, "nodriver.cdp.fetch.RequestStage"]], "auth_challenge (authrequired attribute)": [[25, "nodriver.cdp.fetch.AuthRequired.auth_challenge"]], "continue_request() (in module nodriver.cdp.fetch)": [[25, "nodriver.cdp.fetch.continue_request"]], "continue_response() (in module nodriver.cdp.fetch)": [[25, "nodriver.cdp.fetch.continue_response"]], "continue_with_auth() (in module nodriver.cdp.fetch)": [[25, "nodriver.cdp.fetch.continue_with_auth"]], "disable() (in module nodriver.cdp.fetch)": [[25, "nodriver.cdp.fetch.disable"]], "enable() (in module nodriver.cdp.fetch)": [[25, "nodriver.cdp.fetch.enable"]], "fail_request() (in module nodriver.cdp.fetch)": [[25, "nodriver.cdp.fetch.fail_request"]], "frame_id (authrequired attribute)": [[25, "nodriver.cdp.fetch.AuthRequired.frame_id"]], "frame_id (requestpaused attribute)": [[25, "nodriver.cdp.fetch.RequestPaused.frame_id"]], "fulfill_request() (in module nodriver.cdp.fetch)": [[25, "nodriver.cdp.fetch.fulfill_request"]], "get_response_body() (in module nodriver.cdp.fetch)": [[25, "nodriver.cdp.fetch.get_response_body"]], "name (headerentry attribute)": [[25, "nodriver.cdp.fetch.HeaderEntry.name"]], "network_id (requestpaused attribute)": [[25, "nodriver.cdp.fetch.RequestPaused.network_id"]], "nodriver.cdp.fetch": [[25, "module-nodriver.cdp.fetch"]], "origin (authchallenge attribute)": [[25, "nodriver.cdp.fetch.AuthChallenge.origin"], [37, "nodriver.cdp.network.AuthChallenge.origin"]], "password (authchallengeresponse attribute)": [[25, "nodriver.cdp.fetch.AuthChallengeResponse.password"], [37, "nodriver.cdp.network.AuthChallengeResponse.password"]], "realm (authchallenge attribute)": [[25, "nodriver.cdp.fetch.AuthChallenge.realm"], [37, "nodriver.cdp.network.AuthChallenge.realm"]], "redirected_request_id (requestpaused attribute)": [[25, "nodriver.cdp.fetch.RequestPaused.redirected_request_id"]], "request (authrequired attribute)": [[25, "nodriver.cdp.fetch.AuthRequired.request"]], "request (requestpaused attribute)": [[25, "nodriver.cdp.fetch.RequestPaused.request"]], "request_id (authrequired attribute)": [[25, "nodriver.cdp.fetch.AuthRequired.request_id"]], "request_id (requestpaused attribute)": [[25, "nodriver.cdp.fetch.RequestPaused.request_id"]], "request_stage (requestpattern attribute)": [[25, "nodriver.cdp.fetch.RequestPattern.request_stage"]], "resource_type (authrequired attribute)": [[25, "nodriver.cdp.fetch.AuthRequired.resource_type"]], "resource_type (requestpattern attribute)": [[25, "nodriver.cdp.fetch.RequestPattern.resource_type"], [37, "nodriver.cdp.network.RequestPattern.resource_type"]], "resource_type (requestpaused attribute)": [[25, "nodriver.cdp.fetch.RequestPaused.resource_type"]], "response (authchallengeresponse attribute)": [[25, "nodriver.cdp.fetch.AuthChallengeResponse.response"], [37, "nodriver.cdp.network.AuthChallengeResponse.response"]], "response_error_reason (requestpaused attribute)": [[25, "nodriver.cdp.fetch.RequestPaused.response_error_reason"]], "response_headers (requestpaused attribute)": [[25, "nodriver.cdp.fetch.RequestPaused.response_headers"]], "response_status_code (requestpaused attribute)": [[25, "nodriver.cdp.fetch.RequestPaused.response_status_code"]], "response_status_text (requestpaused attribute)": [[25, "nodriver.cdp.fetch.RequestPaused.response_status_text"]], "scheme (authchallenge attribute)": [[25, "nodriver.cdp.fetch.AuthChallenge.scheme"], [37, "nodriver.cdp.network.AuthChallenge.scheme"]], "source (authchallenge attribute)": [[25, "nodriver.cdp.fetch.AuthChallenge.source"], [37, "nodriver.cdp.network.AuthChallenge.source"]], "take_response_body_as_stream() (in module nodriver.cdp.fetch)": [[25, "nodriver.cdp.fetch.take_response_body_as_stream"]], "url_pattern (requestpattern attribute)": [[25, "nodriver.cdp.fetch.RequestPattern.url_pattern"], [37, "nodriver.cdp.network.RequestPattern.url_pattern"]], "username (authchallengeresponse attribute)": [[25, "nodriver.cdp.fetch.AuthChallengeResponse.username"], [37, "nodriver.cdp.network.AuthChallengeResponse.username"]], "value (headerentry attribute)": [[25, "nodriver.cdp.fetch.HeaderEntry.value"]], "bucketfilesystemlocator (class in nodriver.cdp.file_system)": [[26, "nodriver.cdp.file_system.BucketFileSystemLocator"]], "directory (class in nodriver.cdp.file_system)": [[26, "nodriver.cdp.file_system.Directory"]], "file (class in nodriver.cdp.file_system)": [[26, "nodriver.cdp.file_system.File"]], "bucket_name (bucketfilesystemlocator attribute)": [[26, "nodriver.cdp.file_system.BucketFileSystemLocator.bucket_name"]], "get_directory() (in module nodriver.cdp.file_system)": [[26, "nodriver.cdp.file_system.get_directory"]], "last_modified (file attribute)": [[26, "nodriver.cdp.file_system.File.last_modified"]], "name (directory attribute)": [[26, "nodriver.cdp.file_system.Directory.name"]], "name (file attribute)": [[26, "nodriver.cdp.file_system.File.name"]], "nested_directories (directory attribute)": [[26, "nodriver.cdp.file_system.Directory.nested_directories"]], "nested_files (directory attribute)": [[26, "nodriver.cdp.file_system.Directory.nested_files"]], "nodriver.cdp.file_system": [[26, "module-nodriver.cdp.file_system"]], "path_components (bucketfilesystemlocator attribute)": [[26, "nodriver.cdp.file_system.BucketFileSystemLocator.path_components"]], "size (file attribute)": [[26, "nodriver.cdp.file_system.File.size"]], "storage_key (bucketfilesystemlocator attribute)": [[26, "nodriver.cdp.file_system.BucketFileSystemLocator.storage_key"]], "type_ (file attribute)": [[26, "nodriver.cdp.file_system.File.type_"]], "screenshotparams (class in nodriver.cdp.headless_experimental)": [[27, "nodriver.cdp.headless_experimental.ScreenshotParams"]], "begin_frame() (in module nodriver.cdp.headless_experimental)": [[27, "nodriver.cdp.headless_experimental.begin_frame"]], "disable() (in module nodriver.cdp.headless_experimental)": [[27, "nodriver.cdp.headless_experimental.disable"]], "enable() (in module nodriver.cdp.headless_experimental)": [[27, "nodriver.cdp.headless_experimental.enable"]], "format_ (screenshotparams attribute)": [[27, "nodriver.cdp.headless_experimental.ScreenshotParams.format_"]], "nodriver.cdp.headless_experimental": [[27, "module-nodriver.cdp.headless_experimental"]], "optimize_for_speed (screenshotparams attribute)": [[27, "nodriver.cdp.headless_experimental.ScreenshotParams.optimize_for_speed"]], "quality (screenshotparams attribute)": [[27, "nodriver.cdp.headless_experimental.ScreenshotParams.quality"]], "addheapsnapshotchunk (class in nodriver.cdp.heap_profiler)": [[28, "nodriver.cdp.heap_profiler.AddHeapSnapshotChunk"]], "heapsnapshotobjectid (class in nodriver.cdp.heap_profiler)": [[28, "nodriver.cdp.heap_profiler.HeapSnapshotObjectId"]], "heapstatsupdate (class in nodriver.cdp.heap_profiler)": [[28, "nodriver.cdp.heap_profiler.HeapStatsUpdate"]], "lastseenobjectid (class in nodriver.cdp.heap_profiler)": [[28, "nodriver.cdp.heap_profiler.LastSeenObjectId"]], "reportheapsnapshotprogress (class in nodriver.cdp.heap_profiler)": [[28, "nodriver.cdp.heap_profiler.ReportHeapSnapshotProgress"]], "resetprofiles (class in nodriver.cdp.heap_profiler)": [[28, "nodriver.cdp.heap_profiler.ResetProfiles"]], "samplingheapprofile (class in nodriver.cdp.heap_profiler)": [[28, "nodriver.cdp.heap_profiler.SamplingHeapProfile"]], "samplingheapprofilenode (class in nodriver.cdp.heap_profiler)": [[28, "nodriver.cdp.heap_profiler.SamplingHeapProfileNode"]], "samplingheapprofilesample (class in nodriver.cdp.heap_profiler)": [[28, "nodriver.cdp.heap_profiler.SamplingHeapProfileSample"]], "add_inspected_heap_object() (in module nodriver.cdp.heap_profiler)": [[28, "nodriver.cdp.heap_profiler.add_inspected_heap_object"]], "call_frame (samplingheapprofilenode attribute)": [[28, "nodriver.cdp.heap_profiler.SamplingHeapProfileNode.call_frame"]], "children (samplingheapprofilenode attribute)": [[28, "nodriver.cdp.heap_profiler.SamplingHeapProfileNode.children"]], "chunk (addheapsnapshotchunk attribute)": [[28, "nodriver.cdp.heap_profiler.AddHeapSnapshotChunk.chunk"]], "collect_garbage() (in module nodriver.cdp.heap_profiler)": [[28, "nodriver.cdp.heap_profiler.collect_garbage"]], "disable() (in module nodriver.cdp.heap_profiler)": [[28, "nodriver.cdp.heap_profiler.disable"]], "done (reportheapsnapshotprogress attribute)": [[28, "nodriver.cdp.heap_profiler.ReportHeapSnapshotProgress.done"]], "enable() (in module nodriver.cdp.heap_profiler)": [[28, "nodriver.cdp.heap_profiler.enable"]], "finished (reportheapsnapshotprogress attribute)": [[28, "nodriver.cdp.heap_profiler.ReportHeapSnapshotProgress.finished"]], "get_heap_object_id() (in module nodriver.cdp.heap_profiler)": [[28, "nodriver.cdp.heap_profiler.get_heap_object_id"]], "get_object_by_heap_object_id() (in module nodriver.cdp.heap_profiler)": [[28, "nodriver.cdp.heap_profiler.get_object_by_heap_object_id"]], "get_sampling_profile() (in module nodriver.cdp.heap_profiler)": [[28, "nodriver.cdp.heap_profiler.get_sampling_profile"]], "head (samplingheapprofile attribute)": [[28, "nodriver.cdp.heap_profiler.SamplingHeapProfile.head"]], "id_ (samplingheapprofilenode attribute)": [[28, "nodriver.cdp.heap_profiler.SamplingHeapProfileNode.id_"]], "last_seen_object_id (lastseenobjectid attribute)": [[28, "nodriver.cdp.heap_profiler.LastSeenObjectId.last_seen_object_id"]], "node_id (samplingheapprofilesample attribute)": [[28, "nodriver.cdp.heap_profiler.SamplingHeapProfileSample.node_id"]], "nodriver.cdp.heap_profiler": [[28, "module-nodriver.cdp.heap_profiler"]], "ordinal (samplingheapprofilesample attribute)": [[28, "nodriver.cdp.heap_profiler.SamplingHeapProfileSample.ordinal"]], "samples (samplingheapprofile attribute)": [[28, "nodriver.cdp.heap_profiler.SamplingHeapProfile.samples"]], "self_size (samplingheapprofilenode attribute)": [[28, "nodriver.cdp.heap_profiler.SamplingHeapProfileNode.self_size"]], "size (samplingheapprofilesample attribute)": [[28, "nodriver.cdp.heap_profiler.SamplingHeapProfileSample.size"]], "start_sampling() (in module nodriver.cdp.heap_profiler)": [[28, "nodriver.cdp.heap_profiler.start_sampling"]], "start_tracking_heap_objects() (in module nodriver.cdp.heap_profiler)": [[28, "nodriver.cdp.heap_profiler.start_tracking_heap_objects"]], "stats_update (heapstatsupdate attribute)": [[28, "nodriver.cdp.heap_profiler.HeapStatsUpdate.stats_update"]], "stop_sampling() (in module nodriver.cdp.heap_profiler)": [[28, "nodriver.cdp.heap_profiler.stop_sampling"]], "stop_tracking_heap_objects() (in module nodriver.cdp.heap_profiler)": [[28, "nodriver.cdp.heap_profiler.stop_tracking_heap_objects"]], "take_heap_snapshot() (in module nodriver.cdp.heap_profiler)": [[28, "nodriver.cdp.heap_profiler.take_heap_snapshot"]], "timestamp (lastseenobjectid attribute)": [[28, "nodriver.cdp.heap_profiler.LastSeenObjectId.timestamp"]], "total (reportheapsnapshotprogress attribute)": [[28, "nodriver.cdp.heap_profiler.ReportHeapSnapshotProgress.total"]], "dataentry (class in nodriver.cdp.indexed_db)": [[29, "nodriver.cdp.indexed_db.DataEntry"]], "databasewithobjectstores (class in nodriver.cdp.indexed_db)": [[29, "nodriver.cdp.indexed_db.DatabaseWithObjectStores"]], "key (class in nodriver.cdp.indexed_db)": [[29, "nodriver.cdp.indexed_db.Key"]], "keypath (class in nodriver.cdp.indexed_db)": [[29, "nodriver.cdp.indexed_db.KeyPath"]], "keyrange (class in nodriver.cdp.indexed_db)": [[29, "nodriver.cdp.indexed_db.KeyRange"]], "objectstore (class in nodriver.cdp.indexed_db)": [[29, "nodriver.cdp.indexed_db.ObjectStore"]], "objectstoreindex (class in nodriver.cdp.indexed_db)": [[29, "nodriver.cdp.indexed_db.ObjectStoreIndex"]], "array (key attribute)": [[29, "nodriver.cdp.indexed_db.Key.array"]], "array (keypath attribute)": [[29, "nodriver.cdp.indexed_db.KeyPath.array"]], "auto_increment (objectstore attribute)": [[29, "nodriver.cdp.indexed_db.ObjectStore.auto_increment"]], "clear_object_store() (in module nodriver.cdp.indexed_db)": [[29, "nodriver.cdp.indexed_db.clear_object_store"]], "date (key attribute)": [[29, "nodriver.cdp.indexed_db.Key.date"]], "delete_database() (in module nodriver.cdp.indexed_db)": [[29, "nodriver.cdp.indexed_db.delete_database"]], "delete_object_store_entries() (in module nodriver.cdp.indexed_db)": [[29, "nodriver.cdp.indexed_db.delete_object_store_entries"]], "disable() (in module nodriver.cdp.indexed_db)": [[29, "nodriver.cdp.indexed_db.disable"]], "enable() (in module nodriver.cdp.indexed_db)": [[29, "nodriver.cdp.indexed_db.enable"]], "get_metadata() (in module nodriver.cdp.indexed_db)": [[29, "nodriver.cdp.indexed_db.get_metadata"]], "indexes (objectstore attribute)": [[29, "nodriver.cdp.indexed_db.ObjectStore.indexes"]], "key (dataentry attribute)": [[29, "nodriver.cdp.indexed_db.DataEntry.key"]], "key_path (objectstore attribute)": [[29, "nodriver.cdp.indexed_db.ObjectStore.key_path"]], "key_path (objectstoreindex attribute)": [[29, "nodriver.cdp.indexed_db.ObjectStoreIndex.key_path"]], "lower (keyrange attribute)": [[29, "nodriver.cdp.indexed_db.KeyRange.lower"]], "lower_open (keyrange attribute)": [[29, "nodriver.cdp.indexed_db.KeyRange.lower_open"]], "multi_entry (objectstoreindex attribute)": [[29, "nodriver.cdp.indexed_db.ObjectStoreIndex.multi_entry"]], "name (databasewithobjectstores attribute)": [[29, "nodriver.cdp.indexed_db.DatabaseWithObjectStores.name"]], "name (objectstore attribute)": [[29, "nodriver.cdp.indexed_db.ObjectStore.name"]], "name (objectstoreindex attribute)": [[29, "nodriver.cdp.indexed_db.ObjectStoreIndex.name"]], "nodriver.cdp.indexed_db": [[29, "module-nodriver.cdp.indexed_db"]], "number (key attribute)": [[29, "nodriver.cdp.indexed_db.Key.number"]], "object_stores (databasewithobjectstores attribute)": [[29, "nodriver.cdp.indexed_db.DatabaseWithObjectStores.object_stores"]], "primary_key (dataentry attribute)": [[29, "nodriver.cdp.indexed_db.DataEntry.primary_key"]], "request_data() (in module nodriver.cdp.indexed_db)": [[29, "nodriver.cdp.indexed_db.request_data"]], "request_database() (in module nodriver.cdp.indexed_db)": [[29, "nodriver.cdp.indexed_db.request_database"]], "request_database_names() (in module nodriver.cdp.indexed_db)": [[29, "nodriver.cdp.indexed_db.request_database_names"]], "string (key attribute)": [[29, "nodriver.cdp.indexed_db.Key.string"]], "string (keypath attribute)": [[29, "nodriver.cdp.indexed_db.KeyPath.string"]], "type_ (key attribute)": [[29, "nodriver.cdp.indexed_db.Key.type_"]], "type_ (keypath attribute)": [[29, "nodriver.cdp.indexed_db.KeyPath.type_"]], "unique (objectstoreindex attribute)": [[29, "nodriver.cdp.indexed_db.ObjectStoreIndex.unique"]], "upper (keyrange attribute)": [[29, "nodriver.cdp.indexed_db.KeyRange.upper"]], "upper_open (keyrange attribute)": [[29, "nodriver.cdp.indexed_db.KeyRange.upper_open"]], "value (dataentry attribute)": [[29, "nodriver.cdp.indexed_db.DataEntry.value"]], "version (databasewithobjectstores attribute)": [[29, "nodriver.cdp.indexed_db.DatabaseWithObjectStores.version"]], "back (mousebutton attribute)": [[30, "nodriver.cdp.input_.MouseButton.BACK"]], "default (gesturesourcetype attribute)": [[30, "nodriver.cdp.input_.GestureSourceType.DEFAULT"]], "dragdata (class in nodriver.cdp.input_)": [[30, "nodriver.cdp.input_.DragData"]], "dragdataitem (class in nodriver.cdp.input_)": [[30, "nodriver.cdp.input_.DragDataItem"]], "dragintercepted (class in nodriver.cdp.input_)": [[30, "nodriver.cdp.input_.DragIntercepted"]], "forward (mousebutton attribute)": [[30, "nodriver.cdp.input_.MouseButton.FORWARD"]], "gesturesourcetype (class in nodriver.cdp.input_)": [[30, "nodriver.cdp.input_.GestureSourceType"]], "left (mousebutton attribute)": [[30, "nodriver.cdp.input_.MouseButton.LEFT"]], "middle (mousebutton attribute)": [[30, "nodriver.cdp.input_.MouseButton.MIDDLE"]], "mouse (gesturesourcetype attribute)": [[30, "nodriver.cdp.input_.GestureSourceType.MOUSE"]], "mousebutton (class in nodriver.cdp.input_)": [[30, "nodriver.cdp.input_.MouseButton"]], "none (mousebutton attribute)": [[30, "nodriver.cdp.input_.MouseButton.NONE"]], "right (mousebutton attribute)": [[30, "nodriver.cdp.input_.MouseButton.RIGHT"]], "touch (gesturesourcetype attribute)": [[30, "nodriver.cdp.input_.GestureSourceType.TOUCH"]], "timesinceepoch (class in nodriver.cdp.input_)": [[30, "nodriver.cdp.input_.TimeSinceEpoch"]], "touchpoint (class in nodriver.cdp.input_)": [[30, "nodriver.cdp.input_.TouchPoint"]], "base_url (dragdataitem attribute)": [[30, "nodriver.cdp.input_.DragDataItem.base_url"]], "cancel_dragging() (in module nodriver.cdp.input_)": [[30, "nodriver.cdp.input_.cancel_dragging"]], "data (dragdataitem attribute)": [[30, "nodriver.cdp.input_.DragDataItem.data"]], "data (dragintercepted attribute)": [[30, "nodriver.cdp.input_.DragIntercepted.data"]], "dispatch_drag_event() (in module nodriver.cdp.input_)": [[30, "nodriver.cdp.input_.dispatch_drag_event"]], "dispatch_key_event() (in module nodriver.cdp.input_)": [[30, "nodriver.cdp.input_.dispatch_key_event"]], "dispatch_mouse_event() (in module nodriver.cdp.input_)": [[30, "nodriver.cdp.input_.dispatch_mouse_event"]], "dispatch_touch_event() (in module nodriver.cdp.input_)": [[30, "nodriver.cdp.input_.dispatch_touch_event"]], "drag_operations_mask (dragdata attribute)": [[30, "nodriver.cdp.input_.DragData.drag_operations_mask"]], "emulate_touch_from_mouse_event() (in module nodriver.cdp.input_)": [[30, "nodriver.cdp.input_.emulate_touch_from_mouse_event"]], "files (dragdata attribute)": [[30, "nodriver.cdp.input_.DragData.files"]], "force (touchpoint attribute)": [[30, "nodriver.cdp.input_.TouchPoint.force"]], "id_ (touchpoint attribute)": [[30, "nodriver.cdp.input_.TouchPoint.id_"]], "ime_set_composition() (in module nodriver.cdp.input_)": [[30, "nodriver.cdp.input_.ime_set_composition"]], "insert_text() (in module nodriver.cdp.input_)": [[30, "nodriver.cdp.input_.insert_text"]], "items (dragdata attribute)": [[30, "nodriver.cdp.input_.DragData.items"]], "mime_type (dragdataitem attribute)": [[30, "nodriver.cdp.input_.DragDataItem.mime_type"]], "nodriver.cdp.input_": [[30, "module-nodriver.cdp.input_"]], "radius_x (touchpoint attribute)": [[30, "nodriver.cdp.input_.TouchPoint.radius_x"]], "radius_y (touchpoint attribute)": [[30, "nodriver.cdp.input_.TouchPoint.radius_y"]], "rotation_angle (touchpoint attribute)": [[30, "nodriver.cdp.input_.TouchPoint.rotation_angle"]], "set_ignore_input_events() (in module nodriver.cdp.input_)": [[30, "nodriver.cdp.input_.set_ignore_input_events"]], "set_intercept_drags() (in module nodriver.cdp.input_)": [[30, "nodriver.cdp.input_.set_intercept_drags"]], "synthesize_pinch_gesture() (in module nodriver.cdp.input_)": [[30, "nodriver.cdp.input_.synthesize_pinch_gesture"]], "synthesize_scroll_gesture() (in module nodriver.cdp.input_)": [[30, "nodriver.cdp.input_.synthesize_scroll_gesture"]], "synthesize_tap_gesture() (in module nodriver.cdp.input_)": [[30, "nodriver.cdp.input_.synthesize_tap_gesture"]], "tangential_pressure (touchpoint attribute)": [[30, "nodriver.cdp.input_.TouchPoint.tangential_pressure"]], "tilt_x (touchpoint attribute)": [[30, "nodriver.cdp.input_.TouchPoint.tilt_x"]], "tilt_y (touchpoint attribute)": [[30, "nodriver.cdp.input_.TouchPoint.tilt_y"]], "title (dragdataitem attribute)": [[30, "nodriver.cdp.input_.DragDataItem.title"]], "twist (touchpoint attribute)": [[30, "nodriver.cdp.input_.TouchPoint.twist"]], "x (touchpoint attribute)": [[30, "nodriver.cdp.input_.TouchPoint.x"]], "y (touchpoint attribute)": [[30, "nodriver.cdp.input_.TouchPoint.y"]], "detached (class in nodriver.cdp.inspector)": [[31, "nodriver.cdp.inspector.Detached"]], "targetcrashed (class in nodriver.cdp.inspector)": [[31, "nodriver.cdp.inspector.TargetCrashed"]], "targetreloadedaftercrash (class in nodriver.cdp.inspector)": [[31, "nodriver.cdp.inspector.TargetReloadedAfterCrash"]], "disable() (in module nodriver.cdp.inspector)": [[31, "nodriver.cdp.inspector.disable"]], "enable() (in module nodriver.cdp.inspector)": [[31, "nodriver.cdp.inspector.enable"]], "nodriver.cdp.inspector": [[31, "module-nodriver.cdp.inspector"]], "reason (detached attribute)": [[31, "nodriver.cdp.inspector.Detached.reason"]], "streamhandle (class in nodriver.cdp.io)": [[32, "nodriver.cdp.io.StreamHandle"]], "close() (in module nodriver.cdp.io)": [[32, "nodriver.cdp.io.close"]], "nodriver.cdp.io": [[32, "module-nodriver.cdp.io"]], "read() (in module nodriver.cdp.io)": [[32, "nodriver.cdp.io.read"]], "resolve_blob() (in module nodriver.cdp.io)": [[32, "nodriver.cdp.io.resolve_blob"]], "layer (class in nodriver.cdp.layer_tree)": [[33, "nodriver.cdp.layer_tree.Layer"]], "layerid (class in nodriver.cdp.layer_tree)": [[33, "nodriver.cdp.layer_tree.LayerId"]], "layerpainted (class in nodriver.cdp.layer_tree)": [[33, "nodriver.cdp.layer_tree.LayerPainted"]], "layertreedidchange (class in nodriver.cdp.layer_tree)": [[33, "nodriver.cdp.layer_tree.LayerTreeDidChange"]], "paintprofile (class in nodriver.cdp.layer_tree)": [[33, "nodriver.cdp.layer_tree.PaintProfile"]], "picturetile (class in nodriver.cdp.layer_tree)": [[33, "nodriver.cdp.layer_tree.PictureTile"]], "scrollrect (class in nodriver.cdp.layer_tree)": [[33, "nodriver.cdp.layer_tree.ScrollRect"]], "snapshotid (class in nodriver.cdp.layer_tree)": [[33, "nodriver.cdp.layer_tree.SnapshotId"]], "stickypositionconstraint (class in nodriver.cdp.layer_tree)": [[33, "nodriver.cdp.layer_tree.StickyPositionConstraint"]], "anchor_x (layer attribute)": [[33, "nodriver.cdp.layer_tree.Layer.anchor_x"]], "anchor_y (layer attribute)": [[33, "nodriver.cdp.layer_tree.Layer.anchor_y"]], "anchor_z (layer attribute)": [[33, "nodriver.cdp.layer_tree.Layer.anchor_z"]], "backend_node_id (layer attribute)": [[33, "nodriver.cdp.layer_tree.Layer.backend_node_id"]], "clip (layerpainted attribute)": [[33, "nodriver.cdp.layer_tree.LayerPainted.clip"]], "compositing_reasons() (in module nodriver.cdp.layer_tree)": [[33, "nodriver.cdp.layer_tree.compositing_reasons"]], "containing_block_rect (stickypositionconstraint attribute)": [[33, "nodriver.cdp.layer_tree.StickyPositionConstraint.containing_block_rect"]], "disable() (in module nodriver.cdp.layer_tree)": [[33, "nodriver.cdp.layer_tree.disable"]], "draws_content (layer attribute)": [[33, "nodriver.cdp.layer_tree.Layer.draws_content"]], "enable() (in module nodriver.cdp.layer_tree)": [[33, "nodriver.cdp.layer_tree.enable"]], "height (layer attribute)": [[33, "nodriver.cdp.layer_tree.Layer.height"]], "invisible (layer attribute)": [[33, "nodriver.cdp.layer_tree.Layer.invisible"]], "layer_id (layer attribute)": [[33, "nodriver.cdp.layer_tree.Layer.layer_id"]], "layer_id (layerpainted attribute)": [[33, "nodriver.cdp.layer_tree.LayerPainted.layer_id"]], "layers (layertreedidchange attribute)": [[33, "nodriver.cdp.layer_tree.LayerTreeDidChange.layers"]], "load_snapshot() (in module nodriver.cdp.layer_tree)": [[33, "nodriver.cdp.layer_tree.load_snapshot"]], "make_snapshot() (in module nodriver.cdp.layer_tree)": [[33, "nodriver.cdp.layer_tree.make_snapshot"]], "nearest_layer_shifting_containing_block (stickypositionconstraint attribute)": [[33, "nodriver.cdp.layer_tree.StickyPositionConstraint.nearest_layer_shifting_containing_block"]], "nearest_layer_shifting_sticky_box (stickypositionconstraint attribute)": [[33, "nodriver.cdp.layer_tree.StickyPositionConstraint.nearest_layer_shifting_sticky_box"]], "nodriver.cdp.layer_tree": [[33, "module-nodriver.cdp.layer_tree"]], "offset_x (layer attribute)": [[33, "nodriver.cdp.layer_tree.Layer.offset_x"]], "offset_y (layer attribute)": [[33, "nodriver.cdp.layer_tree.Layer.offset_y"]], "paint_count (layer attribute)": [[33, "nodriver.cdp.layer_tree.Layer.paint_count"]], "parent_layer_id (layer attribute)": [[33, "nodriver.cdp.layer_tree.Layer.parent_layer_id"]], "picture (picturetile attribute)": [[33, "nodriver.cdp.layer_tree.PictureTile.picture"]], "profile_snapshot() (in module nodriver.cdp.layer_tree)": [[33, "nodriver.cdp.layer_tree.profile_snapshot"]], "rect (scrollrect attribute)": [[33, "nodriver.cdp.layer_tree.ScrollRect.rect"]], "release_snapshot() (in module nodriver.cdp.layer_tree)": [[33, "nodriver.cdp.layer_tree.release_snapshot"]], "replay_snapshot() (in module nodriver.cdp.layer_tree)": [[33, "nodriver.cdp.layer_tree.replay_snapshot"]], "scroll_rects (layer attribute)": [[33, "nodriver.cdp.layer_tree.Layer.scroll_rects"]], "snapshot_command_log() (in module nodriver.cdp.layer_tree)": [[33, "nodriver.cdp.layer_tree.snapshot_command_log"]], "sticky_box_rect (stickypositionconstraint attribute)": [[33, "nodriver.cdp.layer_tree.StickyPositionConstraint.sticky_box_rect"]], "sticky_position_constraint (layer attribute)": [[33, "nodriver.cdp.layer_tree.Layer.sticky_position_constraint"]], "transform (layer attribute)": [[33, "nodriver.cdp.layer_tree.Layer.transform"]], "type_ (scrollrect attribute)": [[33, "nodriver.cdp.layer_tree.ScrollRect.type_"]], "width (layer attribute)": [[33, "nodriver.cdp.layer_tree.Layer.width"]], "x (picturetile attribute)": [[33, "nodriver.cdp.layer_tree.PictureTile.x"]], "y (picturetile attribute)": [[33, "nodriver.cdp.layer_tree.PictureTile.y"]], "entryadded (class in nodriver.cdp.log)": [[34, "nodriver.cdp.log.EntryAdded"]], "logentry (class in nodriver.cdp.log)": [[34, "nodriver.cdp.log.LogEntry"]], "violationsetting (class in nodriver.cdp.log)": [[34, "nodriver.cdp.log.ViolationSetting"]], "args (logentry attribute)": [[34, "nodriver.cdp.log.LogEntry.args"]], "category (logentry attribute)": [[34, "nodriver.cdp.log.LogEntry.category"]], "clear() (in module nodriver.cdp.log)": [[34, "nodriver.cdp.log.clear"]], "disable() (in module nodriver.cdp.log)": [[34, "nodriver.cdp.log.disable"]], "enable() (in module nodriver.cdp.log)": [[34, "nodriver.cdp.log.enable"]], "entry (entryadded attribute)": [[34, "nodriver.cdp.log.EntryAdded.entry"]], "level (logentry attribute)": [[34, "nodriver.cdp.log.LogEntry.level"]], "line_number (logentry attribute)": [[34, "nodriver.cdp.log.LogEntry.line_number"]], "name (violationsetting attribute)": [[34, "nodriver.cdp.log.ViolationSetting.name"]], "network_request_id (logentry attribute)": [[34, "nodriver.cdp.log.LogEntry.network_request_id"]], "nodriver.cdp.log": [[34, "module-nodriver.cdp.log"]], "source (logentry attribute)": [[34, "nodriver.cdp.log.LogEntry.source"]], "stack_trace (logentry attribute)": [[34, "nodriver.cdp.log.LogEntry.stack_trace"]], "start_violations_report() (in module nodriver.cdp.log)": [[34, "nodriver.cdp.log.start_violations_report"]], "stop_violations_report() (in module nodriver.cdp.log)": [[34, "nodriver.cdp.log.stop_violations_report"]], "text (logentry attribute)": [[34, "nodriver.cdp.log.LogEntry.text"]], "threshold (violationsetting attribute)": [[34, "nodriver.cdp.log.ViolationSetting.threshold"]], "timestamp (logentry attribute)": [[34, "nodriver.cdp.log.LogEntry.timestamp"]], "url (logentry attribute)": [[34, "nodriver.cdp.log.LogEntry.url"]], "worker_id (logentry attribute)": [[34, "nodriver.cdp.log.LogEntry.worker_id"]], "playererror (class in nodriver.cdp.media)": [[35, "nodriver.cdp.media.PlayerError"]], "playererrorsourcelocation (class in nodriver.cdp.media)": [[35, "nodriver.cdp.media.PlayerErrorSourceLocation"]], "playererrorsraised (class in nodriver.cdp.media)": [[35, "nodriver.cdp.media.PlayerErrorsRaised"]], "playerevent (class in nodriver.cdp.media)": [[35, "nodriver.cdp.media.PlayerEvent"]], "playereventsadded (class in nodriver.cdp.media)": [[35, "nodriver.cdp.media.PlayerEventsAdded"]], "playerid (class in nodriver.cdp.media)": [[35, "nodriver.cdp.media.PlayerId"]], "playermessage (class in nodriver.cdp.media)": [[35, "nodriver.cdp.media.PlayerMessage"]], "playermessageslogged (class in nodriver.cdp.media)": [[35, "nodriver.cdp.media.PlayerMessagesLogged"]], "playerpropertieschanged (class in nodriver.cdp.media)": [[35, "nodriver.cdp.media.PlayerPropertiesChanged"]], "playerproperty (class in nodriver.cdp.media)": [[35, "nodriver.cdp.media.PlayerProperty"]], "playerscreated (class in nodriver.cdp.media)": [[35, "nodriver.cdp.media.PlayersCreated"]], "timestamp (class in nodriver.cdp.media)": [[35, "nodriver.cdp.media.Timestamp"]], "cause (playererror attribute)": [[35, "nodriver.cdp.media.PlayerError.cause"]], "code (playererror attribute)": [[35, "nodriver.cdp.media.PlayerError.code"]], "data (playererror attribute)": [[35, "nodriver.cdp.media.PlayerError.data"]], "disable() (in module nodriver.cdp.media)": [[35, "nodriver.cdp.media.disable"]], "enable() (in module nodriver.cdp.media)": [[35, "nodriver.cdp.media.enable"]], "error_type (playererror attribute)": [[35, "nodriver.cdp.media.PlayerError.error_type"]], "errors (playererrorsraised attribute)": [[35, "nodriver.cdp.media.PlayerErrorsRaised.errors"]], "events (playereventsadded attribute)": [[35, "nodriver.cdp.media.PlayerEventsAdded.events"]], "file (playererrorsourcelocation attribute)": [[35, "nodriver.cdp.media.PlayerErrorSourceLocation.file"]], "level (playermessage attribute)": [[35, "nodriver.cdp.media.PlayerMessage.level"]], "line (playererrorsourcelocation attribute)": [[35, "nodriver.cdp.media.PlayerErrorSourceLocation.line"]], "message (playermessage attribute)": [[35, "nodriver.cdp.media.PlayerMessage.message"]], "messages (playermessageslogged attribute)": [[35, "nodriver.cdp.media.PlayerMessagesLogged.messages"]], "name (playerproperty attribute)": [[35, "nodriver.cdp.media.PlayerProperty.name"]], "nodriver.cdp.media": [[35, "module-nodriver.cdp.media"]], "player_id (playererrorsraised attribute)": [[35, "nodriver.cdp.media.PlayerErrorsRaised.player_id"]], "player_id (playereventsadded attribute)": [[35, "nodriver.cdp.media.PlayerEventsAdded.player_id"]], "player_id (playermessageslogged attribute)": [[35, "nodriver.cdp.media.PlayerMessagesLogged.player_id"]], "player_id (playerpropertieschanged attribute)": [[35, "nodriver.cdp.media.PlayerPropertiesChanged.player_id"]], "players (playerscreated attribute)": [[35, "nodriver.cdp.media.PlayersCreated.players"]], "properties (playerpropertieschanged attribute)": [[35, "nodriver.cdp.media.PlayerPropertiesChanged.properties"]], "stack (playererror attribute)": [[35, "nodriver.cdp.media.PlayerError.stack"]], "timestamp (playerevent attribute)": [[35, "nodriver.cdp.media.PlayerEvent.timestamp"]], "value (playerevent attribute)": [[35, "nodriver.cdp.media.PlayerEvent.value"]], "value (playerproperty attribute)": [[35, "nodriver.cdp.media.PlayerProperty.value"]], "critical (pressurelevel attribute)": [[36, "nodriver.cdp.memory.PressureLevel.CRITICAL"]], "domcounter (class in nodriver.cdp.memory)": [[36, "nodriver.cdp.memory.DOMCounter"]], "moderate (pressurelevel attribute)": [[36, "nodriver.cdp.memory.PressureLevel.MODERATE"]], "module (class in nodriver.cdp.memory)": [[36, "nodriver.cdp.memory.Module"]], "pressurelevel (class in nodriver.cdp.memory)": [[36, "nodriver.cdp.memory.PressureLevel"]], "samplingprofile (class in nodriver.cdp.memory)": [[36, "nodriver.cdp.memory.SamplingProfile"]], "samplingprofilenode (class in nodriver.cdp.memory)": [[36, "nodriver.cdp.memory.SamplingProfileNode"]], "base_address (module attribute)": [[36, "nodriver.cdp.memory.Module.base_address"]], "count (domcounter attribute)": [[36, "nodriver.cdp.memory.DOMCounter.count"]], "forcibly_purge_java_script_memory() (in module nodriver.cdp.memory)": [[36, "nodriver.cdp.memory.forcibly_purge_java_script_memory"]], "get_all_time_sampling_profile() (in module nodriver.cdp.memory)": [[36, "nodriver.cdp.memory.get_all_time_sampling_profile"]], "get_browser_sampling_profile() (in module nodriver.cdp.memory)": [[36, "nodriver.cdp.memory.get_browser_sampling_profile"]], "get_dom_counters() (in module nodriver.cdp.memory)": [[36, "nodriver.cdp.memory.get_dom_counters"]], "get_dom_counters_for_leak_detection() (in module nodriver.cdp.memory)": [[36, "nodriver.cdp.memory.get_dom_counters_for_leak_detection"]], "get_sampling_profile() (in module nodriver.cdp.memory)": [[36, "nodriver.cdp.memory.get_sampling_profile"]], "modules (samplingprofile attribute)": [[36, "nodriver.cdp.memory.SamplingProfile.modules"]], "name (domcounter attribute)": [[36, "nodriver.cdp.memory.DOMCounter.name"]], "name (module attribute)": [[36, "nodriver.cdp.memory.Module.name"]], "nodriver.cdp.memory": [[36, "module-nodriver.cdp.memory"]], "prepare_for_leak_detection() (in module nodriver.cdp.memory)": [[36, "nodriver.cdp.memory.prepare_for_leak_detection"]], "samples (samplingprofile attribute)": [[36, "nodriver.cdp.memory.SamplingProfile.samples"]], "set_pressure_notifications_suppressed() (in module nodriver.cdp.memory)": [[36, "nodriver.cdp.memory.set_pressure_notifications_suppressed"]], "simulate_pressure_notification() (in module nodriver.cdp.memory)": [[36, "nodriver.cdp.memory.simulate_pressure_notification"]], "size (module attribute)": [[36, "nodriver.cdp.memory.Module.size"]], "size (samplingprofilenode attribute)": [[36, "nodriver.cdp.memory.SamplingProfileNode.size"]], "stack (samplingprofilenode attribute)": [[36, "nodriver.cdp.memory.SamplingProfileNode.stack"]], "start_sampling() (in module nodriver.cdp.memory)": [[36, "nodriver.cdp.memory.start_sampling"]], "stop_sampling() (in module nodriver.cdp.memory)": [[36, "nodriver.cdp.memory.stop_sampling"]], "total (samplingprofilenode attribute)": [[36, "nodriver.cdp.memory.SamplingProfileNode.total"]], "uuid (module attribute)": [[36, "nodriver.cdp.memory.Module.uuid"]], "aborted (errorreason attribute)": [[37, "nodriver.cdp.network.ErrorReason.ABORTED"]], "access_denied (errorreason attribute)": [[37, "nodriver.cdp.network.ErrorReason.ACCESS_DENIED"]], "address_unreachable (errorreason attribute)": [[37, "nodriver.cdp.network.ErrorReason.ADDRESS_UNREACHABLE"]], "allow (privatenetworkrequestpolicy attribute)": [[37, "nodriver.cdp.network.PrivateNetworkRequestPolicy.ALLOW"]], "allow_origin_mismatch (corserror attribute)": [[37, "nodriver.cdp.network.CorsError.ALLOW_ORIGIN_MISMATCH"]], "alternative_job_won_race (alternateprotocolusage attribute)": [[37, "nodriver.cdp.network.AlternateProtocolUsage.ALTERNATIVE_JOB_WON_RACE"]], "alternative_job_won_without_race (alternateprotocolusage attribute)": [[37, "nodriver.cdp.network.AlternateProtocolUsage.ALTERNATIVE_JOB_WON_WITHOUT_RACE"]], "alternateprotocolusage (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.AlternateProtocolUsage"]], "associatedcookie (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.AssociatedCookie"]], "authchallenge (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.AuthChallenge"]], "authchallengeresponse (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.AuthChallengeResponse"]], "blocked_by_client (errorreason attribute)": [[37, "nodriver.cdp.network.ErrorReason.BLOCKED_BY_CLIENT"]], "blocked_by_response (errorreason attribute)": [[37, "nodriver.cdp.network.ErrorReason.BLOCKED_BY_RESPONSE"]], "block_from_insecure_to_more_private (privatenetworkrequestpolicy attribute)": [[37, "nodriver.cdp.network.PrivateNetworkRequestPolicy.BLOCK_FROM_INSECURE_TO_MORE_PRIVATE"]], "bluetooth (connectiontype attribute)": [[37, "nodriver.cdp.network.ConnectionType.BLUETOOTH"]], "br (contentencoding attribute)": [[37, "nodriver.cdp.network.ContentEncoding.BR"]], "broken (alternateprotocolusage attribute)": [[37, "nodriver.cdp.network.AlternateProtocolUsage.BROKEN"]], "blockedreason (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.BlockedReason"]], "blockedsetcookiewithreason (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.BlockedSetCookieWithReason"]], "cache (serviceworkerroutersource attribute)": [[37, "nodriver.cdp.network.ServiceWorkerRouterSource.CACHE"]], "cache_storage (serviceworkerresponsesource attribute)": [[37, "nodriver.cdp.network.ServiceWorkerResponseSource.CACHE_STORAGE"]], "cellular2g (connectiontype attribute)": [[37, "nodriver.cdp.network.ConnectionType.CELLULAR2G"]], "cellular3g (connectiontype attribute)": [[37, "nodriver.cdp.network.ConnectionType.CELLULAR3G"]], "cellular4g (connectiontype attribute)": [[37, "nodriver.cdp.network.ConnectionType.CELLULAR4G"]], "coep_frame_resource_needs_coep_header (blockedreason attribute)": [[37, "nodriver.cdp.network.BlockedReason.COEP_FRAME_RESOURCE_NEEDS_COEP_HEADER"]], "compliant (certificatetransparencycompliance attribute)": [[37, "nodriver.cdp.network.CertificateTransparencyCompliance.COMPLIANT"]], "connection_aborted (errorreason attribute)": [[37, "nodriver.cdp.network.ErrorReason.CONNECTION_ABORTED"]], "connection_closed (errorreason attribute)": [[37, "nodriver.cdp.network.ErrorReason.CONNECTION_CLOSED"]], "connection_failed (errorreason attribute)": [[37, "nodriver.cdp.network.ErrorReason.CONNECTION_FAILED"]], "connection_refused (errorreason attribute)": [[37, "nodriver.cdp.network.ErrorReason.CONNECTION_REFUSED"]], "connection_reset (errorreason attribute)": [[37, "nodriver.cdp.network.ErrorReason.CONNECTION_RESET"]], "content_type (blockedreason attribute)": [[37, "nodriver.cdp.network.BlockedReason.CONTENT_TYPE"]], "coop_sandboxed_iframe_cannot_navigate_to_coop_page (blockedreason attribute)": [[37, "nodriver.cdp.network.BlockedReason.COOP_SANDBOXED_IFRAME_CANNOT_NAVIGATE_TO_COOP_PAGE"]], "corp_not_same_origin (blockedreason attribute)": [[37, "nodriver.cdp.network.BlockedReason.CORP_NOT_SAME_ORIGIN"]], "corp_not_same_origin_after_defaulted_to_same_origin_by_coep (blockedreason attribute)": [[37, "nodriver.cdp.network.BlockedReason.CORP_NOT_SAME_ORIGIN_AFTER_DEFAULTED_TO_SAME_ORIGIN_BY_COEP"]], "corp_not_same_origin_after_defaulted_to_same_origin_by_coep_and_dip (blockedreason attribute)": [[37, "nodriver.cdp.network.BlockedReason.CORP_NOT_SAME_ORIGIN_AFTER_DEFAULTED_TO_SAME_ORIGIN_BY_COEP_AND_DIP"]], "corp_not_same_origin_after_defaulted_to_same_origin_by_dip (blockedreason attribute)": [[37, "nodriver.cdp.network.BlockedReason.CORP_NOT_SAME_ORIGIN_AFTER_DEFAULTED_TO_SAME_ORIGIN_BY_DIP"]], "corp_not_same_site (blockedreason attribute)": [[37, "nodriver.cdp.network.BlockedReason.CORP_NOT_SAME_SITE"]], "cors_disabled_scheme (corserror attribute)": [[37, "nodriver.cdp.network.CorsError.CORS_DISABLED_SCHEME"]], "credentialless (crossoriginembedderpolicyvalue attribute)": [[37, "nodriver.cdp.network.CrossOriginEmbedderPolicyValue.CREDENTIALLESS"]], "csp (blockedreason attribute)": [[37, "nodriver.cdp.network.BlockedReason.CSP"]], "csp_violation_report (resourcetype attribute)": [[37, "nodriver.cdp.network.ResourceType.CSP_VIOLATION_REPORT"]], "cachedresource (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.CachedResource"]], "certificatetransparencycompliance (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.CertificateTransparencyCompliance"]], "clientsecuritystate (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.ClientSecurityState"]], "connecttiming (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.ConnectTiming"]], "connectiontype (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.ConnectionType"]], "contentencoding (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.ContentEncoding"]], "contentsecuritypolicysource (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.ContentSecurityPolicySource"]], "contentsecuritypolicystatus (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.ContentSecurityPolicyStatus"]], "cookie (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.Cookie"]], "cookieblockedreason (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.CookieBlockedReason"]], "cookieexemptionreason (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.CookieExemptionReason"]], "cookieparam (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.CookieParam"]], "cookiepartitionkey (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.CookiePartitionKey"]], "cookiepriority (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.CookiePriority"]], "cookiesamesite (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.CookieSameSite"]], "cookiesourcescheme (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.CookieSourceScheme"]], "corserror (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.CorsError"]], "corserrorstatus (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.CorsErrorStatus"]], "crossoriginembedderpolicystatus (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.CrossOriginEmbedderPolicyStatus"]], "crossoriginembedderpolicyvalue (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.CrossOriginEmbedderPolicyValue"]], "crossoriginopenerpolicystatus (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.CrossOriginOpenerPolicyStatus"]], "crossoriginopenerpolicyvalue (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.CrossOriginOpenerPolicyValue"]], "deflate (contentencoding attribute)": [[37, "nodriver.cdp.network.ContentEncoding.DEFLATE"]], "disallowed_by_mode (corserror attribute)": [[37, "nodriver.cdp.network.CorsError.DISALLOWED_BY_MODE"]], "disallowed_character (setcookieblockedreason attribute)": [[37, "nodriver.cdp.network.SetCookieBlockedReason.DISALLOWED_CHARACTER"]], "dns_alpn_h3_job_won_race (alternateprotocolusage attribute)": [[37, "nodriver.cdp.network.AlternateProtocolUsage.DNS_ALPN_H3_JOB_WON_RACE"]], "dns_alpn_h3_job_won_without_race (alternateprotocolusage attribute)": [[37, "nodriver.cdp.network.AlternateProtocolUsage.DNS_ALPN_H3_JOB_WON_WITHOUT_RACE"]], "document (resourcetype attribute)": [[37, "nodriver.cdp.network.ResourceType.DOCUMENT"]], "domain_mismatch (cookieblockedreason attribute)": [[37, "nodriver.cdp.network.CookieBlockedReason.DOMAIN_MISMATCH"]], "datareceived (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.DataReceived"]], "enterprise_policy (cookieexemptionreason attribute)": [[37, "nodriver.cdp.network.CookieExemptionReason.ENTERPRISE_POLICY"]], "ethernet (connectiontype attribute)": [[37, "nodriver.cdp.network.ConnectionType.ETHERNET"]], "event_source (resourcetype attribute)": [[37, "nodriver.cdp.network.ResourceType.EVENT_SOURCE"]], "errorreason (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.ErrorReason"]], "eventsourcemessagereceived (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.EventSourceMessageReceived"]], "exemptedsetcookiewithreason (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.ExemptedSetCookieWithReason"]], "failed (errorreason attribute)": [[37, "nodriver.cdp.network.ErrorReason.FAILED"]], "fallback_code (serviceworkerresponsesource attribute)": [[37, "nodriver.cdp.network.ServiceWorkerResponseSource.FALLBACK_CODE"]], "fetch (resourcetype attribute)": [[37, "nodriver.cdp.network.ResourceType.FETCH"]], "fetch_event (serviceworkerroutersource attribute)": [[37, "nodriver.cdp.network.ServiceWorkerRouterSource.FETCH_EVENT"]], "font (resourcetype attribute)": [[37, "nodriver.cdp.network.ResourceType.FONT"]], "gzip (contentencoding attribute)": [[37, "nodriver.cdp.network.ContentEncoding.GZIP"]], "headers_received (interceptionstage attribute)": [[37, "nodriver.cdp.network.InterceptionStage.HEADERS_RECEIVED"]], "header_disallowed_by_preflight_response (corserror attribute)": [[37, "nodriver.cdp.network.CorsError.HEADER_DISALLOWED_BY_PREFLIGHT_RESPONSE"]], "high (cookiepriority attribute)": [[37, "nodriver.cdp.network.CookiePriority.HIGH"]], "high (resourcepriority attribute)": [[37, "nodriver.cdp.network.ResourcePriority.HIGH"]], "http (contentsecuritypolicysource attribute)": [[37, "nodriver.cdp.network.ContentSecurityPolicySource.HTTP"]], "http_cache (serviceworkerresponsesource attribute)": [[37, "nodriver.cdp.network.ServiceWorkerResponseSource.HTTP_CACHE"]], "headers (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.Headers"]], "image (resourcetype attribute)": [[37, "nodriver.cdp.network.ResourceType.IMAGE"]], "insecure_private_network (corserror attribute)": [[37, "nodriver.cdp.network.CorsError.INSECURE_PRIVATE_NETWORK"]], "inspector (blockedreason attribute)": [[37, "nodriver.cdp.network.BlockedReason.INSPECTOR"]], "internet_disconnected (errorreason attribute)": [[37, "nodriver.cdp.network.ErrorReason.INTERNET_DISCONNECTED"]], "invalid_allow_credentials (corserror attribute)": [[37, "nodriver.cdp.network.CorsError.INVALID_ALLOW_CREDENTIALS"]], "invalid_allow_headers_preflight_response (corserror attribute)": [[37, "nodriver.cdp.network.CorsError.INVALID_ALLOW_HEADERS_PREFLIGHT_RESPONSE"]], "invalid_allow_methods_preflight_response (corserror attribute)": [[37, "nodriver.cdp.network.CorsError.INVALID_ALLOW_METHODS_PREFLIGHT_RESPONSE"]], "invalid_allow_origin_value (corserror attribute)": [[37, "nodriver.cdp.network.CorsError.INVALID_ALLOW_ORIGIN_VALUE"]], "invalid_domain (setcookieblockedreason attribute)": [[37, "nodriver.cdp.network.SetCookieBlockedReason.INVALID_DOMAIN"]], "invalid_prefix (setcookieblockedreason attribute)": [[37, "nodriver.cdp.network.SetCookieBlockedReason.INVALID_PREFIX"]], "invalid_private_network_access (corserror attribute)": [[37, "nodriver.cdp.network.CorsError.INVALID_PRIVATE_NETWORK_ACCESS"]], "invalid_response (corserror attribute)": [[37, "nodriver.cdp.network.CorsError.INVALID_RESPONSE"]], "ipaddressspace (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.IPAddressSpace"]], "issuance (trusttokenoperationtype attribute)": [[37, "nodriver.cdp.network.TrustTokenOperationType.ISSUANCE"]], "initiator (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.Initiator"]], "interceptionid (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.InterceptionId"]], "interceptionstage (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.InterceptionStage"]], "lax (cookiesamesite attribute)": [[37, "nodriver.cdp.network.CookieSameSite.LAX"]], "local (ipaddressspace attribute)": [[37, "nodriver.cdp.network.IPAddressSpace.LOCAL"]], "low (cookiepriority attribute)": [[37, "nodriver.cdp.network.CookiePriority.LOW"]], "low (resourcepriority attribute)": [[37, "nodriver.cdp.network.ResourcePriority.LOW"]], "loadnetworkresourceoptions (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.LoadNetworkResourceOptions"]], "loadnetworkresourcepageresult (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.LoadNetworkResourcePageResult"]], "loaderid (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.LoaderId"]], "loadingfailed (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.LoadingFailed"]], "loadingfinished (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.LoadingFinished"]], "main_job_won_race (alternateprotocolusage attribute)": [[37, "nodriver.cdp.network.AlternateProtocolUsage.MAIN_JOB_WON_RACE"]], "manifest (resourcetype attribute)": [[37, "nodriver.cdp.network.ResourceType.MANIFEST"]], "mapping_missing (alternateprotocolusage attribute)": [[37, "nodriver.cdp.network.AlternateProtocolUsage.MAPPING_MISSING"]], "marked_for_removal (reportstatus attribute)": [[37, "nodriver.cdp.network.ReportStatus.MARKED_FOR_REMOVAL"]], "media (resourcetype attribute)": [[37, "nodriver.cdp.network.ResourceType.MEDIA"]], "medium (cookiepriority attribute)": [[37, "nodriver.cdp.network.CookiePriority.MEDIUM"]], "medium (resourcepriority attribute)": [[37, "nodriver.cdp.network.ResourcePriority.MEDIUM"]], "meta (contentsecuritypolicysource attribute)": [[37, "nodriver.cdp.network.ContentSecurityPolicySource.META"]], "method_disallowed_by_preflight_response (corserror attribute)": [[37, "nodriver.cdp.network.CorsError.METHOD_DISALLOWED_BY_PREFLIGHT_RESPONSE"]], "missing_allow_origin_header (corserror attribute)": [[37, "nodriver.cdp.network.CorsError.MISSING_ALLOW_ORIGIN_HEADER"]], "mixed_content (blockedreason attribute)": [[37, "nodriver.cdp.network.BlockedReason.MIXED_CONTENT"]], "multiple_allow_origin_values (corserror attribute)": [[37, "nodriver.cdp.network.CorsError.MULTIPLE_ALLOW_ORIGIN_VALUES"]], "monotonictime (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.MonotonicTime"]], "name_not_resolved (errorreason attribute)": [[37, "nodriver.cdp.network.ErrorReason.NAME_NOT_RESOLVED"]], "name_value_pair_exceeds_max_size (cookieblockedreason attribute)": [[37, "nodriver.cdp.network.CookieBlockedReason.NAME_VALUE_PAIR_EXCEEDS_MAX_SIZE"]], "name_value_pair_exceeds_max_size (setcookieblockedreason attribute)": [[37, "nodriver.cdp.network.SetCookieBlockedReason.NAME_VALUE_PAIR_EXCEEDS_MAX_SIZE"]], "network (serviceworkerresponsesource attribute)": [[37, "nodriver.cdp.network.ServiceWorkerResponseSource.NETWORK"]], "network (serviceworkerroutersource attribute)": [[37, "nodriver.cdp.network.ServiceWorkerRouterSource.NETWORK"]], "none (connectiontype attribute)": [[37, "nodriver.cdp.network.ConnectionType.NONE"]], "none (cookieexemptionreason attribute)": [[37, "nodriver.cdp.network.CookieExemptionReason.NONE"]], "none (cookiesamesite attribute)": [[37, "nodriver.cdp.network.CookieSameSite.NONE"]], "none (crossoriginembedderpolicyvalue attribute)": [[37, "nodriver.cdp.network.CrossOriginEmbedderPolicyValue.NONE"]], "non_secure (cookiesourcescheme attribute)": [[37, "nodriver.cdp.network.CookieSourceScheme.NON_SECURE"]], "noopener_allow_popups (crossoriginopenerpolicyvalue attribute)": [[37, "nodriver.cdp.network.CrossOriginOpenerPolicyValue.NOOPENER_ALLOW_POPUPS"]], "not_compliant (certificatetransparencycompliance attribute)": [[37, "nodriver.cdp.network.CertificateTransparencyCompliance.NOT_COMPLIANT"]], "not_on_path (cookieblockedreason attribute)": [[37, "nodriver.cdp.network.CookieBlockedReason.NOT_ON_PATH"]], "no_cookie_content (setcookieblockedreason attribute)": [[37, "nodriver.cdp.network.SetCookieBlockedReason.NO_COOKIE_CONTENT"]], "no_cors_redirect_mode_not_follow (corserror attribute)": [[37, "nodriver.cdp.network.CorsError.NO_CORS_REDIRECT_MODE_NOT_FOLLOW"]], "origin (blockedreason attribute)": [[37, "nodriver.cdp.network.BlockedReason.ORIGIN"]], "other (blockedreason attribute)": [[37, "nodriver.cdp.network.BlockedReason.OTHER"]], "other (connectiontype attribute)": [[37, "nodriver.cdp.network.ConnectionType.OTHER"]], "other (resourcetype attribute)": [[37, "nodriver.cdp.network.ResourceType.OTHER"]], "overwrite_secure (setcookieblockedreason attribute)": [[37, "nodriver.cdp.network.SetCookieBlockedReason.OVERWRITE_SECURE"]], "pending (reportstatus attribute)": [[37, "nodriver.cdp.network.ReportStatus.PENDING"]], "ping (resourcetype attribute)": [[37, "nodriver.cdp.network.ResourceType.PING"]], "port_mismatch (cookieblockedreason attribute)": [[37, "nodriver.cdp.network.CookieBlockedReason.PORT_MISMATCH"]], "prefetch (resourcetype attribute)": [[37, "nodriver.cdp.network.ResourceType.PREFETCH"]], "preflight (resourcetype attribute)": [[37, "nodriver.cdp.network.ResourceType.PREFLIGHT"]], "preflight_allow_origin_mismatch (corserror attribute)": [[37, "nodriver.cdp.network.CorsError.PREFLIGHT_ALLOW_ORIGIN_MISMATCH"]], "preflight_block (privatenetworkrequestpolicy attribute)": [[37, "nodriver.cdp.network.PrivateNetworkRequestPolicy.PREFLIGHT_BLOCK"]], "preflight_disallowed_redirect (corserror attribute)": [[37, "nodriver.cdp.network.CorsError.PREFLIGHT_DISALLOWED_REDIRECT"]], "preflight_invalid_allow_credentials (corserror attribute)": [[37, "nodriver.cdp.network.CorsError.PREFLIGHT_INVALID_ALLOW_CREDENTIALS"]], "preflight_invalid_allow_external (corserror attribute)": [[37, "nodriver.cdp.network.CorsError.PREFLIGHT_INVALID_ALLOW_EXTERNAL"]], "preflight_invalid_allow_origin_value (corserror attribute)": [[37, "nodriver.cdp.network.CorsError.PREFLIGHT_INVALID_ALLOW_ORIGIN_VALUE"]], "preflight_invalid_allow_private_network (corserror attribute)": [[37, "nodriver.cdp.network.CorsError.PREFLIGHT_INVALID_ALLOW_PRIVATE_NETWORK"]], "preflight_invalid_status (corserror attribute)": [[37, "nodriver.cdp.network.CorsError.PREFLIGHT_INVALID_STATUS"]], "preflight_missing_allow_external (corserror attribute)": [[37, "nodriver.cdp.network.CorsError.PREFLIGHT_MISSING_ALLOW_EXTERNAL"]], "preflight_missing_allow_origin_header (corserror attribute)": [[37, "nodriver.cdp.network.CorsError.PREFLIGHT_MISSING_ALLOW_ORIGIN_HEADER"]], "preflight_missing_allow_private_network (corserror attribute)": [[37, "nodriver.cdp.network.CorsError.PREFLIGHT_MISSING_ALLOW_PRIVATE_NETWORK"]], "preflight_missing_private_network_access_id (corserror attribute)": [[37, "nodriver.cdp.network.CorsError.PREFLIGHT_MISSING_PRIVATE_NETWORK_ACCESS_ID"]], "preflight_missing_private_network_access_name (corserror attribute)": [[37, "nodriver.cdp.network.CorsError.PREFLIGHT_MISSING_PRIVATE_NETWORK_ACCESS_NAME"]], "preflight_multiple_allow_origin_values (corserror attribute)": [[37, "nodriver.cdp.network.CorsError.PREFLIGHT_MULTIPLE_ALLOW_ORIGIN_VALUES"]], "preflight_warn (privatenetworkrequestpolicy attribute)": [[37, "nodriver.cdp.network.PrivateNetworkRequestPolicy.PREFLIGHT_WARN"]], "preflight_wildcard_origin_not_allowed (corserror attribute)": [[37, "nodriver.cdp.network.CorsError.PREFLIGHT_WILDCARD_ORIGIN_NOT_ALLOWED"]], "private (ipaddressspace attribute)": [[37, "nodriver.cdp.network.IPAddressSpace.PRIVATE"]], "private_network_access_permission_denied (corserror attribute)": [[37, "nodriver.cdp.network.CorsError.PRIVATE_NETWORK_ACCESS_PERMISSION_DENIED"]], "private_network_access_permission_unavailable (corserror attribute)": [[37, "nodriver.cdp.network.CorsError.PRIVATE_NETWORK_ACCESS_PERMISSION_UNAVAILABLE"]], "public (ipaddressspace attribute)": [[37, "nodriver.cdp.network.IPAddressSpace.PUBLIC"]], "policyupdated (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.PolicyUpdated"]], "postdataentry (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.PostDataEntry"]], "privatenetworkrequestpolicy (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.PrivateNetworkRequestPolicy"]], "queued (reportstatus attribute)": [[37, "nodriver.cdp.network.ReportStatus.QUEUED"]], "race_network_and_fetch_handler (serviceworkerroutersource attribute)": [[37, "nodriver.cdp.network.ServiceWorkerRouterSource.RACE_NETWORK_AND_FETCH_HANDLER"]], "redemption (trusttokenoperationtype attribute)": [[37, "nodriver.cdp.network.TrustTokenOperationType.REDEMPTION"]], "redirect_contains_credentials (corserror attribute)": [[37, "nodriver.cdp.network.CorsError.REDIRECT_CONTAINS_CREDENTIALS"]], "request (interceptionstage attribute)": [[37, "nodriver.cdp.network.InterceptionStage.REQUEST"]], "require_corp (crossoriginembedderpolicyvalue attribute)": [[37, "nodriver.cdp.network.CrossOriginEmbedderPolicyValue.REQUIRE_CORP"]], "restrict_properties (crossoriginopenerpolicyvalue attribute)": [[37, "nodriver.cdp.network.CrossOriginOpenerPolicyValue.RESTRICT_PROPERTIES"]], "restrict_properties_plus_coep (crossoriginopenerpolicyvalue attribute)": [[37, "nodriver.cdp.network.CrossOriginOpenerPolicyValue.RESTRICT_PROPERTIES_PLUS_COEP"]], "reportid (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.ReportId"]], "reportstatus (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.ReportStatus"]], "reportingapiendpoint (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.ReportingApiEndpoint"]], "reportingapiendpointschangedfororigin (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.ReportingApiEndpointsChangedForOrigin"]], "reportingapireport (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.ReportingApiReport"]], "reportingapireportadded (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.ReportingApiReportAdded"]], "reportingapireportupdated (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.ReportingApiReportUpdated"]], "request (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.Request"]], "requestid (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.RequestId"]], "requestintercepted (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.RequestIntercepted"]], "requestpattern (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.RequestPattern"]], "requestservedfromcache (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.RequestServedFromCache"]], "requestwillbesent (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.RequestWillBeSent"]], "requestwillbesentextrainfo (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.RequestWillBeSentExtraInfo"]], "resourcechangedpriority (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.ResourceChangedPriority"]], "resourcepriority (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.ResourcePriority"]], "resourcetiming (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.ResourceTiming"]], "resourcetype (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.ResourceType"]], "response (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.Response"]], "responsereceived (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.ResponseReceived"]], "responsereceivedearlyhints (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.ResponseReceivedEarlyHints"]], "responsereceivedextrainfo (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.ResponseReceivedExtraInfo"]], "same_origin (crossoriginopenerpolicyvalue attribute)": [[37, "nodriver.cdp.network.CrossOriginOpenerPolicyValue.SAME_ORIGIN"]], "same_origin_allow_popups (crossoriginopenerpolicyvalue attribute)": [[37, "nodriver.cdp.network.CrossOriginOpenerPolicyValue.SAME_ORIGIN_ALLOW_POPUPS"]], "same_origin_plus_coep (crossoriginopenerpolicyvalue attribute)": [[37, "nodriver.cdp.network.CrossOriginOpenerPolicyValue.SAME_ORIGIN_PLUS_COEP"]], "same_party_conflicts_with_other_attributes (setcookieblockedreason attribute)": [[37, "nodriver.cdp.network.SetCookieBlockedReason.SAME_PARTY_CONFLICTS_WITH_OTHER_ATTRIBUTES"]], "same_party_from_cross_party_context (cookieblockedreason attribute)": [[37, "nodriver.cdp.network.CookieBlockedReason.SAME_PARTY_FROM_CROSS_PARTY_CONTEXT"]], "same_party_from_cross_party_context (setcookieblockedreason attribute)": [[37, "nodriver.cdp.network.SetCookieBlockedReason.SAME_PARTY_FROM_CROSS_PARTY_CONTEXT"]], "same_site_lax (cookieblockedreason attribute)": [[37, "nodriver.cdp.network.CookieBlockedReason.SAME_SITE_LAX"]], "same_site_lax (setcookieblockedreason attribute)": [[37, "nodriver.cdp.network.SetCookieBlockedReason.SAME_SITE_LAX"]], "same_site_none_insecure (cookieblockedreason attribute)": [[37, "nodriver.cdp.network.CookieBlockedReason.SAME_SITE_NONE_INSECURE"]], "same_site_none_insecure (setcookieblockedreason attribute)": [[37, "nodriver.cdp.network.SetCookieBlockedReason.SAME_SITE_NONE_INSECURE"]], "same_site_strict (cookieblockedreason attribute)": [[37, "nodriver.cdp.network.CookieBlockedReason.SAME_SITE_STRICT"]], "same_site_strict (setcookieblockedreason attribute)": [[37, "nodriver.cdp.network.SetCookieBlockedReason.SAME_SITE_STRICT"]], "same_site_unspecified_treated_as_lax (cookieblockedreason attribute)": [[37, "nodriver.cdp.network.CookieBlockedReason.SAME_SITE_UNSPECIFIED_TREATED_AS_LAX"]], "same_site_unspecified_treated_as_lax (setcookieblockedreason attribute)": [[37, "nodriver.cdp.network.SetCookieBlockedReason.SAME_SITE_UNSPECIFIED_TREATED_AS_LAX"]], "scheme (cookieexemptionreason attribute)": [[37, "nodriver.cdp.network.CookieExemptionReason.SCHEME"]], "schemeful_same_site_lax (cookieblockedreason attribute)": [[37, "nodriver.cdp.network.CookieBlockedReason.SCHEMEFUL_SAME_SITE_LAX"]], "schemeful_same_site_lax (setcookieblockedreason attribute)": [[37, "nodriver.cdp.network.SetCookieBlockedReason.SCHEMEFUL_SAME_SITE_LAX"]], "schemeful_same_site_strict (cookieblockedreason attribute)": [[37, "nodriver.cdp.network.CookieBlockedReason.SCHEMEFUL_SAME_SITE_STRICT"]], "schemeful_same_site_strict (setcookieblockedreason attribute)": [[37, "nodriver.cdp.network.SetCookieBlockedReason.SCHEMEFUL_SAME_SITE_STRICT"]], "schemeful_same_site_unspecified_treated_as_lax (cookieblockedreason attribute)": [[37, "nodriver.cdp.network.CookieBlockedReason.SCHEMEFUL_SAME_SITE_UNSPECIFIED_TREATED_AS_LAX"]], "schemeful_same_site_unspecified_treated_as_lax (setcookieblockedreason attribute)": [[37, "nodriver.cdp.network.SetCookieBlockedReason.SCHEMEFUL_SAME_SITE_UNSPECIFIED_TREATED_AS_LAX"]], "scheme_mismatch (cookieblockedreason attribute)": [[37, "nodriver.cdp.network.CookieBlockedReason.SCHEME_MISMATCH"]], "scheme_not_supported (setcookieblockedreason attribute)": [[37, "nodriver.cdp.network.SetCookieBlockedReason.SCHEME_NOT_SUPPORTED"]], "script (resourcetype attribute)": [[37, "nodriver.cdp.network.ResourceType.SCRIPT"]], "secure (cookiesourcescheme attribute)": [[37, "nodriver.cdp.network.CookieSourceScheme.SECURE"]], "secure_only (cookieblockedreason attribute)": [[37, "nodriver.cdp.network.CookieBlockedReason.SECURE_ONLY"]], "secure_only (setcookieblockedreason attribute)": [[37, "nodriver.cdp.network.SetCookieBlockedReason.SECURE_ONLY"]], "signature_cert_sha256 (signedexchangeerrorfield attribute)": [[37, "nodriver.cdp.network.SignedExchangeErrorField.SIGNATURE_CERT_SHA256"]], "signature_cert_url (signedexchangeerrorfield attribute)": [[37, "nodriver.cdp.network.SignedExchangeErrorField.SIGNATURE_CERT_URL"]], "signature_integrity (signedexchangeerrorfield attribute)": [[37, "nodriver.cdp.network.SignedExchangeErrorField.SIGNATURE_INTEGRITY"]], "signature_sig (signedexchangeerrorfield attribute)": [[37, "nodriver.cdp.network.SignedExchangeErrorField.SIGNATURE_SIG"]], "signature_timestamps (signedexchangeerrorfield attribute)": [[37, "nodriver.cdp.network.SignedExchangeErrorField.SIGNATURE_TIMESTAMPS"]], "signature_validity_url (signedexchangeerrorfield attribute)": [[37, "nodriver.cdp.network.SignedExchangeErrorField.SIGNATURE_VALIDITY_URL"]], "signed_exchange (resourcetype attribute)": [[37, "nodriver.cdp.network.ResourceType.SIGNED_EXCHANGE"]], "signing (trusttokenoperationtype attribute)": [[37, "nodriver.cdp.network.TrustTokenOperationType.SIGNING"]], "storage_access (cookieexemptionreason attribute)": [[37, "nodriver.cdp.network.CookieExemptionReason.STORAGE_ACCESS"]], "strict (cookiesamesite attribute)": [[37, "nodriver.cdp.network.CookieSameSite.STRICT"]], "stylesheet (resourcetype attribute)": [[37, "nodriver.cdp.network.ResourceType.STYLESHEET"]], "subresource_filter (blockedreason attribute)": [[37, "nodriver.cdp.network.BlockedReason.SUBRESOURCE_FILTER"]], "success (reportstatus attribute)": [[37, "nodriver.cdp.network.ReportStatus.SUCCESS"]], "syntax_error (setcookieblockedreason attribute)": [[37, "nodriver.cdp.network.SetCookieBlockedReason.SYNTAX_ERROR"]], "securitydetails (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.SecurityDetails"]], "securityisolationstatus (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.SecurityIsolationStatus"]], "serviceworkerresponsesource (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.ServiceWorkerResponseSource"]], "serviceworkerrouterinfo (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.ServiceWorkerRouterInfo"]], "serviceworkerroutersource (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.ServiceWorkerRouterSource"]], "setcookieblockedreason (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.SetCookieBlockedReason"]], "signedcertificatetimestamp (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.SignedCertificateTimestamp"]], "signedexchangeerror (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.SignedExchangeError"]], "signedexchangeerrorfield (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.SignedExchangeErrorField"]], "signedexchangeheader (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.SignedExchangeHeader"]], "signedexchangeinfo (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.SignedExchangeInfo"]], "signedexchangereceived (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.SignedExchangeReceived"]], "signedexchangesignature (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.SignedExchangeSignature"]], "subresourcewebbundleinnerresponseerror (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.SubresourceWebBundleInnerResponseError"]], "subresourcewebbundleinnerresponseparsed (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.SubresourceWebBundleInnerResponseParsed"]], "subresourcewebbundlemetadataerror (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.SubresourceWebBundleMetadataError"]], "subresourcewebbundlemetadatareceived (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.SubresourceWebBundleMetadataReceived"]], "text_track (resourcetype attribute)": [[37, "nodriver.cdp.network.ResourceType.TEXT_TRACK"]], "third_party_blocked_in_first_party_set (cookieblockedreason attribute)": [[37, "nodriver.cdp.network.CookieBlockedReason.THIRD_PARTY_BLOCKED_IN_FIRST_PARTY_SET"]], "third_party_blocked_in_first_party_set (setcookieblockedreason attribute)": [[37, "nodriver.cdp.network.SetCookieBlockedReason.THIRD_PARTY_BLOCKED_IN_FIRST_PARTY_SET"]], "third_party_phaseout (cookieblockedreason attribute)": [[37, "nodriver.cdp.network.CookieBlockedReason.THIRD_PARTY_PHASEOUT"]], "third_party_phaseout (setcookieblockedreason attribute)": [[37, "nodriver.cdp.network.SetCookieBlockedReason.THIRD_PARTY_PHASEOUT"]], "timed_out (errorreason attribute)": [[37, "nodriver.cdp.network.ErrorReason.TIMED_OUT"]], "top_level_storage_access (cookieexemptionreason attribute)": [[37, "nodriver.cdp.network.CookieExemptionReason.TOP_LEVEL_STORAGE_ACCESS"]], "top_level_tpcd_deprecation_trial (cookieexemptionreason attribute)": [[37, "nodriver.cdp.network.CookieExemptionReason.TOP_LEVEL_TPCD_DEPRECATION_TRIAL"]], "tpcd_deprecation_trial (cookieexemptionreason attribute)": [[37, "nodriver.cdp.network.CookieExemptionReason.TPCD_DEPRECATION_TRIAL"]], "tpcd_heuristics (cookieexemptionreason attribute)": [[37, "nodriver.cdp.network.CookieExemptionReason.TPCD_HEURISTICS"]], "tpcd_metadata (cookieexemptionreason attribute)": [[37, "nodriver.cdp.network.CookieExemptionReason.TPCD_METADATA"]], "timesinceepoch (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.TimeSinceEpoch"]], "trusttokenoperationdone (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.TrustTokenOperationDone"]], "trusttokenoperationtype (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.TrustTokenOperationType"]], "trusttokenparams (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.TrustTokenParams"]], "unexpected_private_network_access (corserror attribute)": [[37, "nodriver.cdp.network.CorsError.UNEXPECTED_PRIVATE_NETWORK_ACCESS"]], "unknown (certificatetransparencycompliance attribute)": [[37, "nodriver.cdp.network.CertificateTransparencyCompliance.UNKNOWN"]], "unknown (ipaddressspace attribute)": [[37, "nodriver.cdp.network.IPAddressSpace.UNKNOWN"]], "unknown_error (cookieblockedreason attribute)": [[37, "nodriver.cdp.network.CookieBlockedReason.UNKNOWN_ERROR"]], "unknown_error (setcookieblockedreason attribute)": [[37, "nodriver.cdp.network.SetCookieBlockedReason.UNKNOWN_ERROR"]], "unsafe_none (crossoriginopenerpolicyvalue attribute)": [[37, "nodriver.cdp.network.CrossOriginOpenerPolicyValue.UNSAFE_NONE"]], "unset (cookiesourcescheme attribute)": [[37, "nodriver.cdp.network.CookieSourceScheme.UNSET"]], "unspecified_reason (alternateprotocolusage attribute)": [[37, "nodriver.cdp.network.AlternateProtocolUsage.UNSPECIFIED_REASON"]], "user_preferences (cookieblockedreason attribute)": [[37, "nodriver.cdp.network.CookieBlockedReason.USER_PREFERENCES"]], "user_preferences (setcookieblockedreason attribute)": [[37, "nodriver.cdp.network.SetCookieBlockedReason.USER_PREFERENCES"]], "user_setting (cookieexemptionreason attribute)": [[37, "nodriver.cdp.network.CookieExemptionReason.USER_SETTING"]], "very_high (resourcepriority attribute)": [[37, "nodriver.cdp.network.ResourcePriority.VERY_HIGH"]], "very_low (resourcepriority attribute)": [[37, "nodriver.cdp.network.ResourcePriority.VERY_LOW"]], "warn_from_insecure_to_more_private (privatenetworkrequestpolicy attribute)": [[37, "nodriver.cdp.network.PrivateNetworkRequestPolicy.WARN_FROM_INSECURE_TO_MORE_PRIVATE"]], "web_socket (resourcetype attribute)": [[37, "nodriver.cdp.network.ResourceType.WEB_SOCKET"]], "wifi (connectiontype attribute)": [[37, "nodriver.cdp.network.ConnectionType.WIFI"]], "wildcard_origin_not_allowed (corserror attribute)": [[37, "nodriver.cdp.network.CorsError.WILDCARD_ORIGIN_NOT_ALLOWED"]], "wimax (connectiontype attribute)": [[37, "nodriver.cdp.network.ConnectionType.WIMAX"]], "websocketclosed (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.WebSocketClosed"]], "websocketcreated (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.WebSocketCreated"]], "websocketframe (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.WebSocketFrame"]], "websocketframeerror (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.WebSocketFrameError"]], "websocketframereceived (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.WebSocketFrameReceived"]], "websocketframesent (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.WebSocketFrameSent"]], "websockethandshakeresponsereceived (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.WebSocketHandshakeResponseReceived"]], "websocketrequest (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.WebSocketRequest"]], "websocketresponse (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.WebSocketResponse"]], "websocketwillsendhandshakerequest (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.WebSocketWillSendHandshakeRequest"]], "webtransportclosed (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.WebTransportClosed"]], "webtransportconnectionestablished (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.WebTransportConnectionEstablished"]], "webtransportcreated (class in nodriver.cdp.network)": [[37, "nodriver.cdp.network.WebTransportCreated"]], "xhr (resourcetype attribute)": [[37, "nodriver.cdp.network.ResourceType.XHR"]], "zstd (contentencoding attribute)": [[37, "nodriver.cdp.network.ContentEncoding.ZSTD"]], "actual_source_type (serviceworkerrouterinfo attribute)": [[37, "nodriver.cdp.network.ServiceWorkerRouterInfo.actual_source_type"]], "alternate_protocol_usage (response attribute)": [[37, "nodriver.cdp.network.Response.alternate_protocol_usage"]], "associated_cookies (requestwillbesentextrainfo attribute)": [[37, "nodriver.cdp.network.RequestWillBeSentExtraInfo.associated_cookies"]], "auth_challenge (requestintercepted attribute)": [[37, "nodriver.cdp.network.RequestIntercepted.auth_challenge"]], "blocked_cookies (responsereceivedextrainfo attribute)": [[37, "nodriver.cdp.network.ResponseReceivedExtraInfo.blocked_cookies"]], "blocked_reason (loadingfailed attribute)": [[37, "nodriver.cdp.network.LoadingFailed.blocked_reason"]], "blocked_reasons (associatedcookie attribute)": [[37, "nodriver.cdp.network.AssociatedCookie.blocked_reasons"]], "blocked_reasons (blockedsetcookiewithreason attribute)": [[37, "nodriver.cdp.network.BlockedSetCookieWithReason.blocked_reasons"]], "body (reportingapireport attribute)": [[37, "nodriver.cdp.network.ReportingApiReport.body"]], "body_size (cachedresource attribute)": [[37, "nodriver.cdp.network.CachedResource.body_size"]], "bundle_request_id (subresourcewebbundleinnerresponseerror attribute)": [[37, "nodriver.cdp.network.SubresourceWebBundleInnerResponseError.bundle_request_id"]], "bundle_request_id (subresourcewebbundleinnerresponseparsed attribute)": [[37, "nodriver.cdp.network.SubresourceWebBundleInnerResponseParsed.bundle_request_id"]], "bytes_ (postdataentry attribute)": [[37, "nodriver.cdp.network.PostDataEntry.bytes_"]], "cache_storage_cache_name (response attribute)": [[37, "nodriver.cdp.network.Response.cache_storage_cache_name"]], "can_clear_browser_cache() (in module nodriver.cdp.network)": [[37, "nodriver.cdp.network.can_clear_browser_cache"]], "can_clear_browser_cookies() (in module nodriver.cdp.network)": [[37, "nodriver.cdp.network.can_clear_browser_cookies"]], "can_emulate_network_conditions() (in module nodriver.cdp.network)": [[37, "nodriver.cdp.network.can_emulate_network_conditions"]], "canceled (loadingfailed attribute)": [[37, "nodriver.cdp.network.LoadingFailed.canceled"]], "cert_sha256 (signedexchangesignature attribute)": [[37, "nodriver.cdp.network.SignedExchangeSignature.cert_sha256"]], "cert_url (signedexchangesignature attribute)": [[37, "nodriver.cdp.network.SignedExchangeSignature.cert_url"]], "certificate_id (securitydetails attribute)": [[37, "nodriver.cdp.network.SecurityDetails.certificate_id"]], "certificate_transparency_compliance (securitydetails attribute)": [[37, "nodriver.cdp.network.SecurityDetails.certificate_transparency_compliance"]], "certificates (signedexchangesignature attribute)": [[37, "nodriver.cdp.network.SignedExchangeSignature.certificates"]], "charset (response attribute)": [[37, "nodriver.cdp.network.Response.charset"]], "cipher (securitydetails attribute)": [[37, "nodriver.cdp.network.SecurityDetails.cipher"]], "clear_accepted_encodings_override() (in module nodriver.cdp.network)": [[37, "nodriver.cdp.network.clear_accepted_encodings_override"]], "clear_browser_cache() (in module nodriver.cdp.network)": [[37, "nodriver.cdp.network.clear_browser_cache"]], "clear_browser_cookies() (in module nodriver.cdp.network)": [[37, "nodriver.cdp.network.clear_browser_cookies"]], "client_security_state (requestwillbesentextrainfo attribute)": [[37, "nodriver.cdp.network.RequestWillBeSentExtraInfo.client_security_state"]], "coep (securityisolationstatus attribute)": [[37, "nodriver.cdp.network.SecurityIsolationStatus.coep"]], "column_number (initiator attribute)": [[37, "nodriver.cdp.network.Initiator.column_number"]], "completed_attempts (reportingapireport attribute)": [[37, "nodriver.cdp.network.ReportingApiReport.completed_attempts"]], "connect_end (resourcetiming attribute)": [[37, "nodriver.cdp.network.ResourceTiming.connect_end"]], "connect_start (resourcetiming attribute)": [[37, "nodriver.cdp.network.ResourceTiming.connect_start"]], "connect_timing (requestwillbesentextrainfo attribute)": [[37, "nodriver.cdp.network.RequestWillBeSentExtraInfo.connect_timing"]], "connection_id (response attribute)": [[37, "nodriver.cdp.network.Response.connection_id"]], "connection_reused (response attribute)": [[37, "nodriver.cdp.network.Response.connection_reused"]], "continue_intercepted_request() (in module nodriver.cdp.network)": [[37, "nodriver.cdp.network.continue_intercepted_request"]], "cookie (associatedcookie attribute)": [[37, "nodriver.cdp.network.AssociatedCookie.cookie"]], "cookie (blockedsetcookiewithreason attribute)": [[37, "nodriver.cdp.network.BlockedSetCookieWithReason.cookie"]], "cookie (exemptedsetcookiewithreason attribute)": [[37, "nodriver.cdp.network.ExemptedSetCookieWithReason.cookie"]], "cookie_line (blockedsetcookiewithreason attribute)": [[37, "nodriver.cdp.network.BlockedSetCookieWithReason.cookie_line"]], "cookie_line (exemptedsetcookiewithreason attribute)": [[37, "nodriver.cdp.network.ExemptedSetCookieWithReason.cookie_line"]], "cookie_partition_key (responsereceivedextrainfo attribute)": [[37, "nodriver.cdp.network.ResponseReceivedExtraInfo.cookie_partition_key"]], "cookie_partition_key_opaque (responsereceivedextrainfo attribute)": [[37, "nodriver.cdp.network.ResponseReceivedExtraInfo.cookie_partition_key_opaque"]], "coop (securityisolationstatus attribute)": [[37, "nodriver.cdp.network.SecurityIsolationStatus.coop"]], "cors_error (corserrorstatus attribute)": [[37, "nodriver.cdp.network.CorsErrorStatus.cors_error"]], "cors_error_status (loadingfailed attribute)": [[37, "nodriver.cdp.network.LoadingFailed.cors_error_status"]], "csp (securityisolationstatus attribute)": [[37, "nodriver.cdp.network.SecurityIsolationStatus.csp"]], "data (datareceived attribute)": [[37, "nodriver.cdp.network.DataReceived.data"]], "data (eventsourcemessagereceived attribute)": [[37, "nodriver.cdp.network.EventSourceMessageReceived.data"]], "data_length (datareceived attribute)": [[37, "nodriver.cdp.network.DataReceived.data_length"]], "date (signedexchangesignature attribute)": [[37, "nodriver.cdp.network.SignedExchangeSignature.date"]], "delete_cookies() (in module nodriver.cdp.network)": [[37, "nodriver.cdp.network.delete_cookies"]], "depth (reportingapireport attribute)": [[37, "nodriver.cdp.network.ReportingApiReport.depth"]], "destination (reportingapireport attribute)": [[37, "nodriver.cdp.network.ReportingApiReport.destination"]], "disable() (in module nodriver.cdp.network)": [[37, "nodriver.cdp.network.disable"]], "disable_cache (loadnetworkresourceoptions attribute)": [[37, "nodriver.cdp.network.LoadNetworkResourceOptions.disable_cache"]], "dns_end (resourcetiming attribute)": [[37, "nodriver.cdp.network.ResourceTiming.dns_end"]], "dns_start (resourcetiming attribute)": [[37, "nodriver.cdp.network.ResourceTiming.dns_start"]], "document_url (requestwillbesent attribute)": [[37, "nodriver.cdp.network.RequestWillBeSent.document_url"]], "domain (cookie attribute)": [[37, "nodriver.cdp.network.Cookie.domain"]], "domain (cookieparam attribute)": [[37, "nodriver.cdp.network.CookieParam.domain"]], "effective_directives (contentsecuritypolicystatus attribute)": [[37, "nodriver.cdp.network.ContentSecurityPolicyStatus.effective_directives"]], "emulate_network_conditions() (in module nodriver.cdp.network)": [[37, "nodriver.cdp.network.emulate_network_conditions"]], "enable() (in module nodriver.cdp.network)": [[37, "nodriver.cdp.network.enable"]], "enable_reporting_api() (in module nodriver.cdp.network)": [[37, "nodriver.cdp.network.enable_reporting_api"]], "encoded_data_length (datareceived attribute)": [[37, "nodriver.cdp.network.DataReceived.encoded_data_length"]], "encoded_data_length (loadingfinished attribute)": [[37, "nodriver.cdp.network.LoadingFinished.encoded_data_length"]], "encoded_data_length (response attribute)": [[37, "nodriver.cdp.network.Response.encoded_data_length"]], "encrypted_client_hello (securitydetails attribute)": [[37, "nodriver.cdp.network.SecurityDetails.encrypted_client_hello"]], "endpoints (reportingapiendpointschangedfororigin attribute)": [[37, "nodriver.cdp.network.ReportingApiEndpointsChangedForOrigin.endpoints"]], "error_field (signedexchangeerror attribute)": [[37, "nodriver.cdp.network.SignedExchangeError.error_field"]], "error_message (subresourcewebbundleinnerresponseerror attribute)": [[37, "nodriver.cdp.network.SubresourceWebBundleInnerResponseError.error_message"]], "error_message (subresourcewebbundlemetadataerror attribute)": [[37, "nodriver.cdp.network.SubresourceWebBundleMetadataError.error_message"]], "error_message (websocketframeerror attribute)": [[37, "nodriver.cdp.network.WebSocketFrameError.error_message"]], "error_text (loadingfailed attribute)": [[37, "nodriver.cdp.network.LoadingFailed.error_text"]], "errors (signedexchangeinfo attribute)": [[37, "nodriver.cdp.network.SignedExchangeInfo.errors"]], "event_id (eventsourcemessagereceived attribute)": [[37, "nodriver.cdp.network.EventSourceMessageReceived.event_id"]], "event_name (eventsourcemessagereceived attribute)": [[37, "nodriver.cdp.network.EventSourceMessageReceived.event_name"]], "exempted_cookies (responsereceivedextrainfo attribute)": [[37, "nodriver.cdp.network.ResponseReceivedExtraInfo.exempted_cookies"]], "exemption_reason (associatedcookie attribute)": [[37, "nodriver.cdp.network.AssociatedCookie.exemption_reason"]], "exemption_reason (exemptedsetcookiewithreason attribute)": [[37, "nodriver.cdp.network.ExemptedSetCookieWithReason.exemption_reason"]], "expires (cookie attribute)": [[37, "nodriver.cdp.network.Cookie.expires"]], "expires (cookieparam attribute)": [[37, "nodriver.cdp.network.CookieParam.expires"]], "expires (signedexchangesignature attribute)": [[37, "nodriver.cdp.network.SignedExchangeSignature.expires"]], "failed_parameter (corserrorstatus attribute)": [[37, "nodriver.cdp.network.CorsErrorStatus.failed_parameter"]], "frame_id (requestintercepted attribute)": [[37, "nodriver.cdp.network.RequestIntercepted.frame_id"]], "frame_id (requestwillbesent attribute)": [[37, "nodriver.cdp.network.RequestWillBeSent.frame_id"]], "frame_id (responsereceived attribute)": [[37, "nodriver.cdp.network.ResponseReceived.frame_id"]], "from_disk_cache (response attribute)": [[37, "nodriver.cdp.network.Response.from_disk_cache"]], "from_early_hints (response attribute)": [[37, "nodriver.cdp.network.Response.from_early_hints"]], "from_prefetch_cache (response attribute)": [[37, "nodriver.cdp.network.Response.from_prefetch_cache"]], "from_service_worker (response attribute)": [[37, "nodriver.cdp.network.Response.from_service_worker"]], "get_all_cookies() (in module nodriver.cdp.network)": [[37, "nodriver.cdp.network.get_all_cookies"]], "get_certificate() (in module nodriver.cdp.network)": [[37, "nodriver.cdp.network.get_certificate"]], "get_cookies() (in module nodriver.cdp.network)": [[37, "nodriver.cdp.network.get_cookies"]], "get_request_post_data() (in module nodriver.cdp.network)": [[37, "nodriver.cdp.network.get_request_post_data"]], "get_response_body() (in module nodriver.cdp.network)": [[37, "nodriver.cdp.network.get_response_body"]], "get_response_body_for_interception() (in module nodriver.cdp.network)": [[37, "nodriver.cdp.network.get_response_body_for_interception"]], "get_security_isolation_status() (in module nodriver.cdp.network)": [[37, "nodriver.cdp.network.get_security_isolation_status"]], "group_name (reportingapiendpoint attribute)": [[37, "nodriver.cdp.network.ReportingApiEndpoint.group_name"]], "has_cross_site_ancestor (cookiepartitionkey attribute)": [[37, "nodriver.cdp.network.CookiePartitionKey.has_cross_site_ancestor"]], "has_extra_info (responsereceived attribute)": [[37, "nodriver.cdp.network.ResponseReceived.has_extra_info"]], "has_post_data (request attribute)": [[37, "nodriver.cdp.network.Request.has_post_data"]], "has_user_gesture (requestwillbesent attribute)": [[37, "nodriver.cdp.network.RequestWillBeSent.has_user_gesture"]], "hash_algorithm (signedcertificatetimestamp attribute)": [[37, "nodriver.cdp.network.SignedCertificateTimestamp.hash_algorithm"]], "header (signedexchangeinfo attribute)": [[37, "nodriver.cdp.network.SignedExchangeInfo.header"]], "header_integrity (signedexchangeheader attribute)": [[37, "nodriver.cdp.network.SignedExchangeHeader.header_integrity"]], "headers (loadnetworkresourcepageresult attribute)": [[37, "nodriver.cdp.network.LoadNetworkResourcePageResult.headers"]], "headers (request attribute)": [[37, "nodriver.cdp.network.Request.headers"]], "headers (requestwillbesentextrainfo attribute)": [[37, "nodriver.cdp.network.RequestWillBeSentExtraInfo.headers"]], "headers (response attribute)": [[37, "nodriver.cdp.network.Response.headers"]], "headers (responsereceivedearlyhints attribute)": [[37, "nodriver.cdp.network.ResponseReceivedEarlyHints.headers"]], "headers (responsereceivedextrainfo attribute)": [[37, "nodriver.cdp.network.ResponseReceivedExtraInfo.headers"]], "headers (websocketrequest attribute)": [[37, "nodriver.cdp.network.WebSocketRequest.headers"]], "headers (websocketresponse attribute)": [[37, "nodriver.cdp.network.WebSocketResponse.headers"]], "headers_text (response attribute)": [[37, "nodriver.cdp.network.Response.headers_text"]], "headers_text (responsereceivedextrainfo attribute)": [[37, "nodriver.cdp.network.ResponseReceivedExtraInfo.headers_text"]], "headers_text (websocketresponse attribute)": [[37, "nodriver.cdp.network.WebSocketResponse.headers_text"]], "http_only (cookie attribute)": [[37, "nodriver.cdp.network.Cookie.http_only"]], "http_only (cookieparam attribute)": [[37, "nodriver.cdp.network.CookieParam.http_only"]], "http_status_code (loadnetworkresourcepageresult attribute)": [[37, "nodriver.cdp.network.LoadNetworkResourcePageResult.http_status_code"]], "id_ (reportingapireport attribute)": [[37, "nodriver.cdp.network.ReportingApiReport.id_"]], "include_credentials (loadnetworkresourceoptions attribute)": [[37, "nodriver.cdp.network.LoadNetworkResourceOptions.include_credentials"]], "info (signedexchangereceived attribute)": [[37, "nodriver.cdp.network.SignedExchangeReceived.info"]], "initial_priority (request attribute)": [[37, "nodriver.cdp.network.Request.initial_priority"]], "initiator (requestwillbesent attribute)": [[37, "nodriver.cdp.network.RequestWillBeSent.initiator"]], "initiator (websocketcreated attribute)": [[37, "nodriver.cdp.network.WebSocketCreated.initiator"]], "initiator (webtransportcreated attribute)": [[37, "nodriver.cdp.network.WebTransportCreated.initiator"]], "initiator_ip_address_space (clientsecuritystate attribute)": [[37, "nodriver.cdp.network.ClientSecurityState.initiator_ip_address_space"]], "initiator_is_secure_context (clientsecuritystate attribute)": [[37, "nodriver.cdp.network.ClientSecurityState.initiator_is_secure_context"]], "initiator_url (reportingapireport attribute)": [[37, "nodriver.cdp.network.ReportingApiReport.initiator_url"]], "inner_request_id (subresourcewebbundleinnerresponseerror attribute)": [[37, "nodriver.cdp.network.SubresourceWebBundleInnerResponseError.inner_request_id"]], "inner_request_id (subresourcewebbundleinnerresponseparsed attribute)": [[37, "nodriver.cdp.network.SubresourceWebBundleInnerResponseParsed.inner_request_id"]], "inner_request_url (subresourcewebbundleinnerresponseerror attribute)": [[37, "nodriver.cdp.network.SubresourceWebBundleInnerResponseError.inner_request_url"]], "inner_request_url (subresourcewebbundleinnerresponseparsed attribute)": [[37, "nodriver.cdp.network.SubresourceWebBundleInnerResponseParsed.inner_request_url"]], "integrity (signedexchangesignature attribute)": [[37, "nodriver.cdp.network.SignedExchangeSignature.integrity"]], "interception_id (requestintercepted attribute)": [[37, "nodriver.cdp.network.RequestIntercepted.interception_id"]], "interception_stage (requestpattern attribute)": [[37, "nodriver.cdp.network.RequestPattern.interception_stage"]], "is_download (requestintercepted attribute)": [[37, "nodriver.cdp.network.RequestIntercepted.is_download"]], "is_enforced (contentsecuritypolicystatus attribute)": [[37, "nodriver.cdp.network.ContentSecurityPolicyStatus.is_enforced"]], "is_link_preload (request attribute)": [[37, "nodriver.cdp.network.Request.is_link_preload"]], "is_navigation_request (requestintercepted attribute)": [[37, "nodriver.cdp.network.RequestIntercepted.is_navigation_request"]], "is_same_site (request attribute)": [[37, "nodriver.cdp.network.Request.is_same_site"]], "issued_token_count (trusttokenoperationdone attribute)": [[37, "nodriver.cdp.network.TrustTokenOperationDone.issued_token_count"]], "issuer (securitydetails attribute)": [[37, "nodriver.cdp.network.SecurityDetails.issuer"]], "issuer_origin (trusttokenoperationdone attribute)": [[37, "nodriver.cdp.network.TrustTokenOperationDone.issuer_origin"]], "issuers (trusttokenparams attribute)": [[37, "nodriver.cdp.network.TrustTokenParams.issuers"]], "key_exchange (securitydetails attribute)": [[37, "nodriver.cdp.network.SecurityDetails.key_exchange"]], "key_exchange_group (securitydetails attribute)": [[37, "nodriver.cdp.network.SecurityDetails.key_exchange_group"]], "label (signedexchangesignature attribute)": [[37, "nodriver.cdp.network.SignedExchangeSignature.label"]], "line_number (initiator attribute)": [[37, "nodriver.cdp.network.Initiator.line_number"]], "load_network_resource() (in module nodriver.cdp.network)": [[37, "nodriver.cdp.network.load_network_resource"]], "loader_id (requestwillbesent attribute)": [[37, "nodriver.cdp.network.RequestWillBeSent.loader_id"]], "loader_id (responsereceived attribute)": [[37, "nodriver.cdp.network.ResponseReceived.loader_id"]], "log_description (signedcertificatetimestamp attribute)": [[37, "nodriver.cdp.network.SignedCertificateTimestamp.log_description"]], "log_id (signedcertificatetimestamp attribute)": [[37, "nodriver.cdp.network.SignedCertificateTimestamp.log_id"]], "mac (securitydetails attribute)": [[37, "nodriver.cdp.network.SecurityDetails.mac"]], "mask (websocketframe attribute)": [[37, "nodriver.cdp.network.WebSocketFrame.mask"]], "matched_source_type (serviceworkerrouterinfo attribute)": [[37, "nodriver.cdp.network.ServiceWorkerRouterInfo.matched_source_type"]], "message (signedexchangeerror attribute)": [[37, "nodriver.cdp.network.SignedExchangeError.message"]], "method (request attribute)": [[37, "nodriver.cdp.network.Request.method"]], "mime_type (response attribute)": [[37, "nodriver.cdp.network.Response.mime_type"]], "mixed_content_type (request attribute)": [[37, "nodriver.cdp.network.Request.mixed_content_type"]], "name (cookie attribute)": [[37, "nodriver.cdp.network.Cookie.name"]], "name (cookieparam attribute)": [[37, "nodriver.cdp.network.CookieParam.name"]], "net_error (loadnetworkresourcepageresult attribute)": [[37, "nodriver.cdp.network.LoadNetworkResourcePageResult.net_error"]], "net_error_name (loadnetworkresourcepageresult attribute)": [[37, "nodriver.cdp.network.LoadNetworkResourcePageResult.net_error_name"]], "new_priority (resourcechangedpriority attribute)": [[37, "nodriver.cdp.network.ResourceChangedPriority.new_priority"]], "nodriver.cdp.network": [[37, "module-nodriver.cdp.network"]], "opcode (websocketframe attribute)": [[37, "nodriver.cdp.network.WebSocketFrame.opcode"]], "operation (trusttokenparams attribute)": [[37, "nodriver.cdp.network.TrustTokenParams.operation"]], "origin (reportingapiendpointschangedfororigin attribute)": [[37, "nodriver.cdp.network.ReportingApiEndpointsChangedForOrigin.origin"]], "origin (signedcertificatetimestamp attribute)": [[37, "nodriver.cdp.network.SignedCertificateTimestamp.origin"]], "outer_response (signedexchangeinfo attribute)": [[37, "nodriver.cdp.network.SignedExchangeInfo.outer_response"]], "partition_key (cookie attribute)": [[37, "nodriver.cdp.network.Cookie.partition_key"]], "partition_key (cookieparam attribute)": [[37, "nodriver.cdp.network.CookieParam.partition_key"]], "partition_key_opaque (cookie attribute)": [[37, "nodriver.cdp.network.Cookie.partition_key_opaque"]], "path (cookie attribute)": [[37, "nodriver.cdp.network.Cookie.path"]], "path (cookieparam attribute)": [[37, "nodriver.cdp.network.CookieParam.path"]], "payload_data (websocketframe attribute)": [[37, "nodriver.cdp.network.WebSocketFrame.payload_data"]], "post_data (request attribute)": [[37, "nodriver.cdp.network.Request.post_data"]], "post_data_entries (request attribute)": [[37, "nodriver.cdp.network.Request.post_data_entries"]], "priority (cookie attribute)": [[37, "nodriver.cdp.network.Cookie.priority"]], "priority (cookieparam attribute)": [[37, "nodriver.cdp.network.CookieParam.priority"]], "private_network_request_policy (clientsecuritystate attribute)": [[37, "nodriver.cdp.network.ClientSecurityState.private_network_request_policy"]], "protocol (response attribute)": [[37, "nodriver.cdp.network.Response.protocol"]], "protocol (securitydetails attribute)": [[37, "nodriver.cdp.network.SecurityDetails.protocol"]], "proxy_end (resourcetiming attribute)": [[37, "nodriver.cdp.network.ResourceTiming.proxy_end"]], "proxy_start (resourcetiming attribute)": [[37, "nodriver.cdp.network.ResourceTiming.proxy_start"]], "push_end (resourcetiming attribute)": [[37, "nodriver.cdp.network.ResourceTiming.push_end"]], "push_start (resourcetiming attribute)": [[37, "nodriver.cdp.network.ResourceTiming.push_start"]], "receive_headers_end (resourcetiming attribute)": [[37, "nodriver.cdp.network.ResourceTiming.receive_headers_end"]], "receive_headers_start (resourcetiming attribute)": [[37, "nodriver.cdp.network.ResourceTiming.receive_headers_start"]], "redirect_has_extra_info (requestwillbesent attribute)": [[37, "nodriver.cdp.network.RequestWillBeSent.redirect_has_extra_info"]], "redirect_response (requestwillbesent attribute)": [[37, "nodriver.cdp.network.RequestWillBeSent.redirect_response"]], "redirect_url (requestintercepted attribute)": [[37, "nodriver.cdp.network.RequestIntercepted.redirect_url"]], "referrer_policy (request attribute)": [[37, "nodriver.cdp.network.Request.referrer_policy"]], "refresh_policy (trusttokenparams attribute)": [[37, "nodriver.cdp.network.TrustTokenParams.refresh_policy"]], "remote_ip_address (response attribute)": [[37, "nodriver.cdp.network.Response.remote_ip_address"]], "remote_port (response attribute)": [[37, "nodriver.cdp.network.Response.remote_port"]], "replay_xhr() (in module nodriver.cdp.network)": [[37, "nodriver.cdp.network.replay_xhr"]], "report (reportingapireportadded attribute)": [[37, "nodriver.cdp.network.ReportingApiReportAdded.report"]], "report (reportingapireportupdated attribute)": [[37, "nodriver.cdp.network.ReportingApiReportUpdated.report"]], "report_only_reporting_endpoint (crossoriginembedderpolicystatus attribute)": [[37, "nodriver.cdp.network.CrossOriginEmbedderPolicyStatus.report_only_reporting_endpoint"]], "report_only_reporting_endpoint (crossoriginopenerpolicystatus attribute)": [[37, "nodriver.cdp.network.CrossOriginOpenerPolicyStatus.report_only_reporting_endpoint"]], "report_only_value (crossoriginembedderpolicystatus attribute)": [[37, "nodriver.cdp.network.CrossOriginEmbedderPolicyStatus.report_only_value"]], "report_only_value (crossoriginopenerpolicystatus attribute)": [[37, "nodriver.cdp.network.CrossOriginOpenerPolicyStatus.report_only_value"]], "reporting_endpoint (crossoriginembedderpolicystatus attribute)": [[37, "nodriver.cdp.network.CrossOriginEmbedderPolicyStatus.reporting_endpoint"]], "reporting_endpoint (crossoriginopenerpolicystatus attribute)": [[37, "nodriver.cdp.network.CrossOriginOpenerPolicyStatus.reporting_endpoint"]], "request (requestintercepted attribute)": [[37, "nodriver.cdp.network.RequestIntercepted.request"]], "request (requestwillbesent attribute)": [[37, "nodriver.cdp.network.RequestWillBeSent.request"]], "request (websocketwillsendhandshakerequest attribute)": [[37, "nodriver.cdp.network.WebSocketWillSendHandshakeRequest.request"]], "request_headers (response attribute)": [[37, "nodriver.cdp.network.Response.request_headers"]], "request_headers (websocketresponse attribute)": [[37, "nodriver.cdp.network.WebSocketResponse.request_headers"]], "request_headers_text (response attribute)": [[37, "nodriver.cdp.network.Response.request_headers_text"]], "request_headers_text (websocketresponse attribute)": [[37, "nodriver.cdp.network.WebSocketResponse.request_headers_text"]], "request_id (datareceived attribute)": [[37, "nodriver.cdp.network.DataReceived.request_id"]], "request_id (eventsourcemessagereceived attribute)": [[37, "nodriver.cdp.network.EventSourceMessageReceived.request_id"]], "request_id (initiator attribute)": [[37, "nodriver.cdp.network.Initiator.request_id"]], "request_id (loadingfailed attribute)": [[37, "nodriver.cdp.network.LoadingFailed.request_id"]], "request_id (loadingfinished attribute)": [[37, "nodriver.cdp.network.LoadingFinished.request_id"]], "request_id (requestintercepted attribute)": [[37, "nodriver.cdp.network.RequestIntercepted.request_id"]], "request_id (requestservedfromcache attribute)": [[37, "nodriver.cdp.network.RequestServedFromCache.request_id"]], "request_id (requestwillbesent attribute)": [[37, "nodriver.cdp.network.RequestWillBeSent.request_id"]], "request_id (requestwillbesentextrainfo attribute)": [[37, "nodriver.cdp.network.RequestWillBeSentExtraInfo.request_id"]], "request_id (resourcechangedpriority attribute)": [[37, "nodriver.cdp.network.ResourceChangedPriority.request_id"]], "request_id (responsereceived attribute)": [[37, "nodriver.cdp.network.ResponseReceived.request_id"]], "request_id (responsereceivedearlyhints attribute)": [[37, "nodriver.cdp.network.ResponseReceivedEarlyHints.request_id"]], "request_id (responsereceivedextrainfo attribute)": [[37, "nodriver.cdp.network.ResponseReceivedExtraInfo.request_id"]], "request_id (signedexchangereceived attribute)": [[37, "nodriver.cdp.network.SignedExchangeReceived.request_id"]], "request_id (subresourcewebbundlemetadataerror attribute)": [[37, "nodriver.cdp.network.SubresourceWebBundleMetadataError.request_id"]], "request_id (subresourcewebbundlemetadatareceived attribute)": [[37, "nodriver.cdp.network.SubresourceWebBundleMetadataReceived.request_id"]], "request_id (trusttokenoperationdone attribute)": [[37, "nodriver.cdp.network.TrustTokenOperationDone.request_id"]], "request_id (websocketclosed attribute)": [[37, "nodriver.cdp.network.WebSocketClosed.request_id"]], "request_id (websocketcreated attribute)": [[37, "nodriver.cdp.network.WebSocketCreated.request_id"]], "request_id (websocketframeerror attribute)": [[37, "nodriver.cdp.network.WebSocketFrameError.request_id"]], "request_id (websocketframereceived attribute)": [[37, "nodriver.cdp.network.WebSocketFrameReceived.request_id"]], "request_id (websocketframesent attribute)": [[37, "nodriver.cdp.network.WebSocketFrameSent.request_id"]], "request_id (websockethandshakeresponsereceived attribute)": [[37, "nodriver.cdp.network.WebSocketHandshakeResponseReceived.request_id"]], "request_id (websocketwillsendhandshakerequest attribute)": [[37, "nodriver.cdp.network.WebSocketWillSendHandshakeRequest.request_id"]], "request_time (connecttiming attribute)": [[37, "nodriver.cdp.network.ConnectTiming.request_time"]], "request_time (resourcetiming attribute)": [[37, "nodriver.cdp.network.ResourceTiming.request_time"]], "request_url (signedexchangeheader attribute)": [[37, "nodriver.cdp.network.SignedExchangeHeader.request_url"]], "resource_ip_address_space (responsereceivedextrainfo attribute)": [[37, "nodriver.cdp.network.ResponseReceivedExtraInfo.resource_ip_address_space"]], "resource_type (requestintercepted attribute)": [[37, "nodriver.cdp.network.RequestIntercepted.resource_type"]], "response (cachedresource attribute)": [[37, "nodriver.cdp.network.CachedResource.response"]], "response (responsereceived attribute)": [[37, "nodriver.cdp.network.ResponseReceived.response"]], "response (websocketframereceived attribute)": [[37, "nodriver.cdp.network.WebSocketFrameReceived.response"]], "response (websocketframesent attribute)": [[37, "nodriver.cdp.network.WebSocketFrameSent.response"]], "response (websockethandshakeresponsereceived attribute)": [[37, "nodriver.cdp.network.WebSocketHandshakeResponseReceived.response"]], "response_code (signedexchangeheader attribute)": [[37, "nodriver.cdp.network.SignedExchangeHeader.response_code"]], "response_error_reason (requestintercepted attribute)": [[37, "nodriver.cdp.network.RequestIntercepted.response_error_reason"]], "response_headers (requestintercepted attribute)": [[37, "nodriver.cdp.network.RequestIntercepted.response_headers"]], "response_headers (signedexchangeheader attribute)": [[37, "nodriver.cdp.network.SignedExchangeHeader.response_headers"]], "response_status_code (requestintercepted attribute)": [[37, "nodriver.cdp.network.RequestIntercepted.response_status_code"]], "response_time (response attribute)": [[37, "nodriver.cdp.network.Response.response_time"]], "rule_id_matched (serviceworkerrouterinfo attribute)": [[37, "nodriver.cdp.network.ServiceWorkerRouterInfo.rule_id_matched"]], "same_party (cookie attribute)": [[37, "nodriver.cdp.network.Cookie.same_party"]], "same_party (cookieparam attribute)": [[37, "nodriver.cdp.network.CookieParam.same_party"]], "same_site (cookie attribute)": [[37, "nodriver.cdp.network.Cookie.same_site"]], "same_site (cookieparam attribute)": [[37, "nodriver.cdp.network.CookieParam.same_site"]], "san_list (securitydetails attribute)": [[37, "nodriver.cdp.network.SecurityDetails.san_list"]], "search_in_response_body() (in module nodriver.cdp.network)": [[37, "nodriver.cdp.network.search_in_response_body"]], "secure (cookie attribute)": [[37, "nodriver.cdp.network.Cookie.secure"]], "secure (cookieparam attribute)": [[37, "nodriver.cdp.network.CookieParam.secure"]], "security_details (response attribute)": [[37, "nodriver.cdp.network.Response.security_details"]], "security_details (signedexchangeinfo attribute)": [[37, "nodriver.cdp.network.SignedExchangeInfo.security_details"]], "security_state (response attribute)": [[37, "nodriver.cdp.network.Response.security_state"]], "send_end (resourcetiming attribute)": [[37, "nodriver.cdp.network.ResourceTiming.send_end"]], "send_start (resourcetiming attribute)": [[37, "nodriver.cdp.network.ResourceTiming.send_start"]], "server_signature_algorithm (securitydetails attribute)": [[37, "nodriver.cdp.network.SecurityDetails.server_signature_algorithm"]], "service_worker_response_source (response attribute)": [[37, "nodriver.cdp.network.Response.service_worker_response_source"]], "service_worker_router_info (response attribute)": [[37, "nodriver.cdp.network.Response.service_worker_router_info"]], "session (cookie attribute)": [[37, "nodriver.cdp.network.Cookie.session"]], "set_accepted_encodings() (in module nodriver.cdp.network)": [[37, "nodriver.cdp.network.set_accepted_encodings"]], "set_attach_debug_stack() (in module nodriver.cdp.network)": [[37, "nodriver.cdp.network.set_attach_debug_stack"]], "set_blocked_ur_ls() (in module nodriver.cdp.network)": [[37, "nodriver.cdp.network.set_blocked_ur_ls"]], "set_bypass_service_worker() (in module nodriver.cdp.network)": [[37, "nodriver.cdp.network.set_bypass_service_worker"]], "set_cache_disabled() (in module nodriver.cdp.network)": [[37, "nodriver.cdp.network.set_cache_disabled"]], "set_cookie() (in module nodriver.cdp.network)": [[37, "nodriver.cdp.network.set_cookie"]], "set_cookies() (in module nodriver.cdp.network)": [[37, "nodriver.cdp.network.set_cookies"]], "set_extra_http_headers() (in module nodriver.cdp.network)": [[37, "nodriver.cdp.network.set_extra_http_headers"]], "set_request_interception() (in module nodriver.cdp.network)": [[37, "nodriver.cdp.network.set_request_interception"]], "set_user_agent_override() (in module nodriver.cdp.network)": [[37, "nodriver.cdp.network.set_user_agent_override"]], "signature (signedexchangesignature attribute)": [[37, "nodriver.cdp.network.SignedExchangeSignature.signature"]], "signature_algorithm (signedcertificatetimestamp attribute)": [[37, "nodriver.cdp.network.SignedCertificateTimestamp.signature_algorithm"]], "signature_data (signedcertificatetimestamp attribute)": [[37, "nodriver.cdp.network.SignedCertificateTimestamp.signature_data"]], "signature_index (signedexchangeerror attribute)": [[37, "nodriver.cdp.network.SignedExchangeError.signature_index"]], "signatures (signedexchangeheader attribute)": [[37, "nodriver.cdp.network.SignedExchangeHeader.signatures"]], "signed_certificate_timestamp_list (securitydetails attribute)": [[37, "nodriver.cdp.network.SecurityDetails.signed_certificate_timestamp_list"]], "site_has_cookie_in_other_partition (requestwillbesentextrainfo attribute)": [[37, "nodriver.cdp.network.RequestWillBeSentExtraInfo.site_has_cookie_in_other_partition"]], "size (cookie attribute)": [[37, "nodriver.cdp.network.Cookie.size"]], "source (contentsecuritypolicystatus attribute)": [[37, "nodriver.cdp.network.ContentSecurityPolicyStatus.source"]], "source_port (cookie attribute)": [[37, "nodriver.cdp.network.Cookie.source_port"]], "source_port (cookieparam attribute)": [[37, "nodriver.cdp.network.CookieParam.source_port"]], "source_scheme (cookie attribute)": [[37, "nodriver.cdp.network.Cookie.source_scheme"]], "source_scheme (cookieparam attribute)": [[37, "nodriver.cdp.network.CookieParam.source_scheme"]], "ssl_end (resourcetiming attribute)": [[37, "nodriver.cdp.network.ResourceTiming.ssl_end"]], "ssl_start (resourcetiming attribute)": [[37, "nodriver.cdp.network.ResourceTiming.ssl_start"]], "stack (initiator attribute)": [[37, "nodriver.cdp.network.Initiator.stack"]], "status (reportingapireport attribute)": [[37, "nodriver.cdp.network.ReportingApiReport.status"]], "status (response attribute)": [[37, "nodriver.cdp.network.Response.status"]], "status (signedcertificatetimestamp attribute)": [[37, "nodriver.cdp.network.SignedCertificateTimestamp.status"]], "status (trusttokenoperationdone attribute)": [[37, "nodriver.cdp.network.TrustTokenOperationDone.status"]], "status (websocketresponse attribute)": [[37, "nodriver.cdp.network.WebSocketResponse.status"]], "status_code (responsereceivedextrainfo attribute)": [[37, "nodriver.cdp.network.ResponseReceivedExtraInfo.status_code"]], "status_text (response attribute)": [[37, "nodriver.cdp.network.Response.status_text"]], "status_text (websocketresponse attribute)": [[37, "nodriver.cdp.network.WebSocketResponse.status_text"]], "stream (loadnetworkresourcepageresult attribute)": [[37, "nodriver.cdp.network.LoadNetworkResourcePageResult.stream"]], "stream_resource_content() (in module nodriver.cdp.network)": [[37, "nodriver.cdp.network.stream_resource_content"]], "subject_name (securitydetails attribute)": [[37, "nodriver.cdp.network.SecurityDetails.subject_name"]], "success (loadnetworkresourcepageresult attribute)": [[37, "nodriver.cdp.network.LoadNetworkResourcePageResult.success"]], "take_response_body_for_interception_as_stream() (in module nodriver.cdp.network)": [[37, "nodriver.cdp.network.take_response_body_for_interception_as_stream"]], "timestamp (datareceived attribute)": [[37, "nodriver.cdp.network.DataReceived.timestamp"]], "timestamp (eventsourcemessagereceived attribute)": [[37, "nodriver.cdp.network.EventSourceMessageReceived.timestamp"]], "timestamp (loadingfailed attribute)": [[37, "nodriver.cdp.network.LoadingFailed.timestamp"]], "timestamp (loadingfinished attribute)": [[37, "nodriver.cdp.network.LoadingFinished.timestamp"]], "timestamp (reportingapireport attribute)": [[37, "nodriver.cdp.network.ReportingApiReport.timestamp"]], "timestamp (requestwillbesent attribute)": [[37, "nodriver.cdp.network.RequestWillBeSent.timestamp"]], "timestamp (resourcechangedpriority attribute)": [[37, "nodriver.cdp.network.ResourceChangedPriority.timestamp"]], "timestamp (responsereceived attribute)": [[37, "nodriver.cdp.network.ResponseReceived.timestamp"]], "timestamp (signedcertificatetimestamp attribute)": [[37, "nodriver.cdp.network.SignedCertificateTimestamp.timestamp"]], "timestamp (websocketclosed attribute)": [[37, "nodriver.cdp.network.WebSocketClosed.timestamp"]], "timestamp (websocketframeerror attribute)": [[37, "nodriver.cdp.network.WebSocketFrameError.timestamp"]], "timestamp (websocketframereceived attribute)": [[37, "nodriver.cdp.network.WebSocketFrameReceived.timestamp"]], "timestamp (websocketframesent attribute)": [[37, "nodriver.cdp.network.WebSocketFrameSent.timestamp"]], "timestamp (websockethandshakeresponsereceived attribute)": [[37, "nodriver.cdp.network.WebSocketHandshakeResponseReceived.timestamp"]], "timestamp (websocketwillsendhandshakerequest attribute)": [[37, "nodriver.cdp.network.WebSocketWillSendHandshakeRequest.timestamp"]], "timestamp (webtransportclosed attribute)": [[37, "nodriver.cdp.network.WebTransportClosed.timestamp"]], "timestamp (webtransportconnectionestablished attribute)": [[37, "nodriver.cdp.network.WebTransportConnectionEstablished.timestamp"]], "timestamp (webtransportcreated attribute)": [[37, "nodriver.cdp.network.WebTransportCreated.timestamp"]], "timing (response attribute)": [[37, "nodriver.cdp.network.Response.timing"]], "top_level_origin (trusttokenoperationdone attribute)": [[37, "nodriver.cdp.network.TrustTokenOperationDone.top_level_origin"]], "top_level_site (cookiepartitionkey attribute)": [[37, "nodriver.cdp.network.CookiePartitionKey.top_level_site"]], "transport_id (webtransportclosed attribute)": [[37, "nodriver.cdp.network.WebTransportClosed.transport_id"]], "transport_id (webtransportconnectionestablished attribute)": [[37, "nodriver.cdp.network.WebTransportConnectionEstablished.transport_id"]], "transport_id (webtransportcreated attribute)": [[37, "nodriver.cdp.network.WebTransportCreated.transport_id"]], "trust_token_params (request attribute)": [[37, "nodriver.cdp.network.Request.trust_token_params"]], "type_ (cachedresource attribute)": [[37, "nodriver.cdp.network.CachedResource.type_"]], "type_ (initiator attribute)": [[37, "nodriver.cdp.network.Initiator.type_"]], "type_ (loadingfailed attribute)": [[37, "nodriver.cdp.network.LoadingFailed.type_"]], "type_ (reportingapireport attribute)": [[37, "nodriver.cdp.network.ReportingApiReport.type_"]], "type_ (requestwillbesent attribute)": [[37, "nodriver.cdp.network.RequestWillBeSent.type_"]], "type_ (responsereceived attribute)": [[37, "nodriver.cdp.network.ResponseReceived.type_"]], "type_ (trusttokenoperationdone attribute)": [[37, "nodriver.cdp.network.TrustTokenOperationDone.type_"]], "url (cachedresource attribute)": [[37, "nodriver.cdp.network.CachedResource.url"]], "url (cookieparam attribute)": [[37, "nodriver.cdp.network.CookieParam.url"]], "url (initiator attribute)": [[37, "nodriver.cdp.network.Initiator.url"]], "url (reportingapiendpoint attribute)": [[37, "nodriver.cdp.network.ReportingApiEndpoint.url"]], "url (request attribute)": [[37, "nodriver.cdp.network.Request.url"]], "url (response attribute)": [[37, "nodriver.cdp.network.Response.url"]], "url (websocketcreated attribute)": [[37, "nodriver.cdp.network.WebSocketCreated.url"]], "url (webtransportcreated attribute)": [[37, "nodriver.cdp.network.WebTransportCreated.url"]], "url_fragment (request attribute)": [[37, "nodriver.cdp.network.Request.url_fragment"]], "urls (subresourcewebbundlemetadatareceived attribute)": [[37, "nodriver.cdp.network.SubresourceWebBundleMetadataReceived.urls"]], "valid_from (securitydetails attribute)": [[37, "nodriver.cdp.network.SecurityDetails.valid_from"]], "valid_to (securitydetails attribute)": [[37, "nodriver.cdp.network.SecurityDetails.valid_to"]], "validity_url (signedexchangesignature attribute)": [[37, "nodriver.cdp.network.SignedExchangeSignature.validity_url"]], "value (cookie attribute)": [[37, "nodriver.cdp.network.Cookie.value"]], "value (cookieparam attribute)": [[37, "nodriver.cdp.network.CookieParam.value"]], "value (crossoriginembedderpolicystatus attribute)": [[37, "nodriver.cdp.network.CrossOriginEmbedderPolicyStatus.value"]], "value (crossoriginopenerpolicystatus attribute)": [[37, "nodriver.cdp.network.CrossOriginOpenerPolicyStatus.value"]], "wall_time (requestwillbesent attribute)": [[37, "nodriver.cdp.network.RequestWillBeSent.wall_time"]], "wall_time (websocketwillsendhandshakerequest attribute)": [[37, "nodriver.cdp.network.WebSocketWillSendHandshakeRequest.wall_time"]], "worker_cache_lookup_start (resourcetiming attribute)": [[37, "nodriver.cdp.network.ResourceTiming.worker_cache_lookup_start"]], "worker_fetch_start (resourcetiming attribute)": [[37, "nodriver.cdp.network.ResourceTiming.worker_fetch_start"]], "worker_ready (resourcetiming attribute)": [[37, "nodriver.cdp.network.ResourceTiming.worker_ready"]], "worker_respond_with_settled (resourcetiming attribute)": [[37, "nodriver.cdp.network.ResourceTiming.worker_respond_with_settled"]], "worker_router_evaluation_start (resourcetiming attribute)": [[37, "nodriver.cdp.network.ResourceTiming.worker_router_evaluation_start"]], "worker_start (resourcetiming attribute)": [[37, "nodriver.cdp.network.ResourceTiming.worker_start"]], "aa (contrastalgorithm attribute)": [[38, "nodriver.cdp.overlay.ContrastAlgorithm.AA"]], "aaa (contrastalgorithm attribute)": [[38, "nodriver.cdp.overlay.ContrastAlgorithm.AAA"]], "apca (contrastalgorithm attribute)": [[38, "nodriver.cdp.overlay.ContrastAlgorithm.APCA"]], "boxstyle (class in nodriver.cdp.overlay)": [[38, "nodriver.cdp.overlay.BoxStyle"]], "capture_area_screenshot (inspectmode attribute)": [[38, "nodriver.cdp.overlay.InspectMode.CAPTURE_AREA_SCREENSHOT"]], "colorformat (class in nodriver.cdp.overlay)": [[38, "nodriver.cdp.overlay.ColorFormat"]], "containerquerycontainerhighlightconfig (class in nodriver.cdp.overlay)": [[38, "nodriver.cdp.overlay.ContainerQueryContainerHighlightConfig"]], "containerqueryhighlightconfig (class in nodriver.cdp.overlay)": [[38, "nodriver.cdp.overlay.ContainerQueryHighlightConfig"]], "contrastalgorithm (class in nodriver.cdp.overlay)": [[38, "nodriver.cdp.overlay.ContrastAlgorithm"]], "flexcontainerhighlightconfig (class in nodriver.cdp.overlay)": [[38, "nodriver.cdp.overlay.FlexContainerHighlightConfig"]], "flexitemhighlightconfig (class in nodriver.cdp.overlay)": [[38, "nodriver.cdp.overlay.FlexItemHighlightConfig"]], "flexnodehighlightconfig (class in nodriver.cdp.overlay)": [[38, "nodriver.cdp.overlay.FlexNodeHighlightConfig"]], "gridhighlightconfig (class in nodriver.cdp.overlay)": [[38, "nodriver.cdp.overlay.GridHighlightConfig"]], "gridnodehighlightconfig (class in nodriver.cdp.overlay)": [[38, "nodriver.cdp.overlay.GridNodeHighlightConfig"]], "hex_ (colorformat attribute)": [[38, "nodriver.cdp.overlay.ColorFormat.HEX_"]], "hsl (colorformat attribute)": [[38, "nodriver.cdp.overlay.ColorFormat.HSL"]], "hwb (colorformat attribute)": [[38, "nodriver.cdp.overlay.ColorFormat.HWB"]], "highlightconfig (class in nodriver.cdp.overlay)": [[38, "nodriver.cdp.overlay.HighlightConfig"]], "hingeconfig (class in nodriver.cdp.overlay)": [[38, "nodriver.cdp.overlay.HingeConfig"]], "inspectmode (class in nodriver.cdp.overlay)": [[38, "nodriver.cdp.overlay.InspectMode"]], "inspectmodecanceled (class in nodriver.cdp.overlay)": [[38, "nodriver.cdp.overlay.InspectModeCanceled"]], "inspectnoderequested (class in nodriver.cdp.overlay)": [[38, "nodriver.cdp.overlay.InspectNodeRequested"]], "isolatedelementhighlightconfig (class in nodriver.cdp.overlay)": [[38, "nodriver.cdp.overlay.IsolatedElementHighlightConfig"]], "isolationmodehighlightconfig (class in nodriver.cdp.overlay)": [[38, "nodriver.cdp.overlay.IsolationModeHighlightConfig"]], "linestyle (class in nodriver.cdp.overlay)": [[38, "nodriver.cdp.overlay.LineStyle"]], "none (inspectmode attribute)": [[38, "nodriver.cdp.overlay.InspectMode.NONE"]], "nodehighlightrequested (class in nodriver.cdp.overlay)": [[38, "nodriver.cdp.overlay.NodeHighlightRequested"]], "rgb (colorformat attribute)": [[38, "nodriver.cdp.overlay.ColorFormat.RGB"]], "search_for_node (inspectmode attribute)": [[38, "nodriver.cdp.overlay.InspectMode.SEARCH_FOR_NODE"]], "search_for_ua_shadow_dom (inspectmode attribute)": [[38, "nodriver.cdp.overlay.InspectMode.SEARCH_FOR_UA_SHADOW_DOM"]], "show_distances (inspectmode attribute)": [[38, "nodriver.cdp.overlay.InspectMode.SHOW_DISTANCES"]], "screenshotrequested (class in nodriver.cdp.overlay)": [[38, "nodriver.cdp.overlay.ScreenshotRequested"]], "scrollsnapcontainerhighlightconfig (class in nodriver.cdp.overlay)": [[38, "nodriver.cdp.overlay.ScrollSnapContainerHighlightConfig"]], "scrollsnaphighlightconfig (class in nodriver.cdp.overlay)": [[38, "nodriver.cdp.overlay.ScrollSnapHighlightConfig"]], "sourceorderconfig (class in nodriver.cdp.overlay)": [[38, "nodriver.cdp.overlay.SourceOrderConfig"]], "windowcontrolsoverlayconfig (class in nodriver.cdp.overlay)": [[38, "nodriver.cdp.overlay.WindowControlsOverlayConfig"]], "area_border_color (gridhighlightconfig attribute)": [[38, "nodriver.cdp.overlay.GridHighlightConfig.area_border_color"]], "backend_node_id (inspectnoderequested attribute)": [[38, "nodriver.cdp.overlay.InspectNodeRequested.backend_node_id"]], "base_size_border (flexitemhighlightconfig attribute)": [[38, "nodriver.cdp.overlay.FlexItemHighlightConfig.base_size_border"]], "base_size_box (flexitemhighlightconfig attribute)": [[38, "nodriver.cdp.overlay.FlexItemHighlightConfig.base_size_box"]], "border_color (highlightconfig attribute)": [[38, "nodriver.cdp.overlay.HighlightConfig.border_color"]], "cell_border_color (gridhighlightconfig attribute)": [[38, "nodriver.cdp.overlay.GridHighlightConfig.cell_border_color"]], "cell_border_dash (gridhighlightconfig attribute)": [[38, "nodriver.cdp.overlay.GridHighlightConfig.cell_border_dash"]], "child_outline_color (sourceorderconfig attribute)": [[38, "nodriver.cdp.overlay.SourceOrderConfig.child_outline_color"]], "color (linestyle attribute)": [[38, "nodriver.cdp.overlay.LineStyle.color"]], "color_format (highlightconfig attribute)": [[38, "nodriver.cdp.overlay.HighlightConfig.color_format"]], "column_gap_color (gridhighlightconfig attribute)": [[38, "nodriver.cdp.overlay.GridHighlightConfig.column_gap_color"]], "column_gap_space (flexcontainerhighlightconfig attribute)": [[38, "nodriver.cdp.overlay.FlexContainerHighlightConfig.column_gap_space"]], "column_hatch_color (gridhighlightconfig attribute)": [[38, "nodriver.cdp.overlay.GridHighlightConfig.column_hatch_color"]], "column_line_color (gridhighlightconfig attribute)": [[38, "nodriver.cdp.overlay.GridHighlightConfig.column_line_color"]], "column_line_dash (gridhighlightconfig attribute)": [[38, "nodriver.cdp.overlay.GridHighlightConfig.column_line_dash"]], "container_border (containerquerycontainerhighlightconfig attribute)": [[38, "nodriver.cdp.overlay.ContainerQueryContainerHighlightConfig.container_border"]], "container_border (flexcontainerhighlightconfig attribute)": [[38, "nodriver.cdp.overlay.FlexContainerHighlightConfig.container_border"]], "container_query_container_highlight_config (containerqueryhighlightconfig attribute)": [[38, "nodriver.cdp.overlay.ContainerQueryHighlightConfig.container_query_container_highlight_config"]], "container_query_container_highlight_config (highlightconfig attribute)": [[38, "nodriver.cdp.overlay.HighlightConfig.container_query_container_highlight_config"]], "content_color (highlightconfig attribute)": [[38, "nodriver.cdp.overlay.HighlightConfig.content_color"]], "content_color (hingeconfig attribute)": [[38, "nodriver.cdp.overlay.HingeConfig.content_color"]], "contrast_algorithm (highlightconfig attribute)": [[38, "nodriver.cdp.overlay.HighlightConfig.contrast_algorithm"]], "cross_alignment (flexcontainerhighlightconfig attribute)": [[38, "nodriver.cdp.overlay.FlexContainerHighlightConfig.cross_alignment"]], "cross_distributed_space (flexcontainerhighlightconfig attribute)": [[38, "nodriver.cdp.overlay.FlexContainerHighlightConfig.cross_distributed_space"]], "css_grid_color (highlightconfig attribute)": [[38, "nodriver.cdp.overlay.HighlightConfig.css_grid_color"]], "descendant_border (containerquerycontainerhighlightconfig attribute)": [[38, "nodriver.cdp.overlay.ContainerQueryContainerHighlightConfig.descendant_border"]], "disable() (in module nodriver.cdp.overlay)": [[38, "nodriver.cdp.overlay.disable"]], "enable() (in module nodriver.cdp.overlay)": [[38, "nodriver.cdp.overlay.enable"]], "event_target_color (highlightconfig attribute)": [[38, "nodriver.cdp.overlay.HighlightConfig.event_target_color"]], "fill_color (boxstyle attribute)": [[38, "nodriver.cdp.overlay.BoxStyle.fill_color"]], "flex_container_highlight_config (flexnodehighlightconfig attribute)": [[38, "nodriver.cdp.overlay.FlexNodeHighlightConfig.flex_container_highlight_config"]], "flex_container_highlight_config (highlightconfig attribute)": [[38, "nodriver.cdp.overlay.HighlightConfig.flex_container_highlight_config"]], "flex_item_highlight_config (highlightconfig attribute)": [[38, "nodriver.cdp.overlay.HighlightConfig.flex_item_highlight_config"]], "flexibility_arrow (flexitemhighlightconfig attribute)": [[38, "nodriver.cdp.overlay.FlexItemHighlightConfig.flexibility_arrow"]], "get_grid_highlight_objects_for_test() (in module nodriver.cdp.overlay)": [[38, "nodriver.cdp.overlay.get_grid_highlight_objects_for_test"]], "get_highlight_object_for_test() (in module nodriver.cdp.overlay)": [[38, "nodriver.cdp.overlay.get_highlight_object_for_test"]], "get_source_order_highlight_object_for_test() (in module nodriver.cdp.overlay)": [[38, "nodriver.cdp.overlay.get_source_order_highlight_object_for_test"]], "grid_background_color (gridhighlightconfig attribute)": [[38, "nodriver.cdp.overlay.GridHighlightConfig.grid_background_color"]], "grid_border_color (gridhighlightconfig attribute)": [[38, "nodriver.cdp.overlay.GridHighlightConfig.grid_border_color"]], "grid_border_dash (gridhighlightconfig attribute)": [[38, "nodriver.cdp.overlay.GridHighlightConfig.grid_border_dash"]], "grid_highlight_config (gridnodehighlightconfig attribute)": [[38, "nodriver.cdp.overlay.GridNodeHighlightConfig.grid_highlight_config"]], "grid_highlight_config (highlightconfig attribute)": [[38, "nodriver.cdp.overlay.HighlightConfig.grid_highlight_config"]], "hatch_color (boxstyle attribute)": [[38, "nodriver.cdp.overlay.BoxStyle.hatch_color"]], "hide_highlight() (in module nodriver.cdp.overlay)": [[38, "nodriver.cdp.overlay.hide_highlight"]], "highlight_frame() (in module nodriver.cdp.overlay)": [[38, "nodriver.cdp.overlay.highlight_frame"]], "highlight_node() (in module nodriver.cdp.overlay)": [[38, "nodriver.cdp.overlay.highlight_node"]], "highlight_quad() (in module nodriver.cdp.overlay)": [[38, "nodriver.cdp.overlay.highlight_quad"]], "highlight_rect() (in module nodriver.cdp.overlay)": [[38, "nodriver.cdp.overlay.highlight_rect"]], "highlight_source_order() (in module nodriver.cdp.overlay)": [[38, "nodriver.cdp.overlay.highlight_source_order"]], "isolation_mode_highlight_config (isolatedelementhighlightconfig attribute)": [[38, "nodriver.cdp.overlay.IsolatedElementHighlightConfig.isolation_mode_highlight_config"]], "item_separator (flexcontainerhighlightconfig attribute)": [[38, "nodriver.cdp.overlay.FlexContainerHighlightConfig.item_separator"]], "line_separator (flexcontainerhighlightconfig attribute)": [[38, "nodriver.cdp.overlay.FlexContainerHighlightConfig.line_separator"]], "main_distributed_space (flexcontainerhighlightconfig attribute)": [[38, "nodriver.cdp.overlay.FlexContainerHighlightConfig.main_distributed_space"]], "margin_color (highlightconfig attribute)": [[38, "nodriver.cdp.overlay.HighlightConfig.margin_color"]], "mask_color (isolationmodehighlightconfig attribute)": [[38, "nodriver.cdp.overlay.IsolationModeHighlightConfig.mask_color"]], "node_id (containerqueryhighlightconfig attribute)": [[38, "nodriver.cdp.overlay.ContainerQueryHighlightConfig.node_id"]], "node_id (flexnodehighlightconfig attribute)": [[38, "nodriver.cdp.overlay.FlexNodeHighlightConfig.node_id"]], "node_id (gridnodehighlightconfig attribute)": [[38, "nodriver.cdp.overlay.GridNodeHighlightConfig.node_id"]], "node_id (isolatedelementhighlightconfig attribute)": [[38, "nodriver.cdp.overlay.IsolatedElementHighlightConfig.node_id"]], "node_id (nodehighlightrequested attribute)": [[38, "nodriver.cdp.overlay.NodeHighlightRequested.node_id"]], "node_id (scrollsnaphighlightconfig attribute)": [[38, "nodriver.cdp.overlay.ScrollSnapHighlightConfig.node_id"]], "nodriver.cdp.overlay": [[38, "module-nodriver.cdp.overlay"]], "outline_color (hingeconfig attribute)": [[38, "nodriver.cdp.overlay.HingeConfig.outline_color"]], "padding_color (highlightconfig attribute)": [[38, "nodriver.cdp.overlay.HighlightConfig.padding_color"]], "parent_outline_color (sourceorderconfig attribute)": [[38, "nodriver.cdp.overlay.SourceOrderConfig.parent_outline_color"]], "pattern (linestyle attribute)": [[38, "nodriver.cdp.overlay.LineStyle.pattern"]], "rect (hingeconfig attribute)": [[38, "nodriver.cdp.overlay.HingeConfig.rect"]], "resizer_color (isolationmodehighlightconfig attribute)": [[38, "nodriver.cdp.overlay.IsolationModeHighlightConfig.resizer_color"]], "resizer_handle_color (isolationmodehighlightconfig attribute)": [[38, "nodriver.cdp.overlay.IsolationModeHighlightConfig.resizer_handle_color"]], "row_gap_color (gridhighlightconfig attribute)": [[38, "nodriver.cdp.overlay.GridHighlightConfig.row_gap_color"]], "row_gap_space (flexcontainerhighlightconfig attribute)": [[38, "nodriver.cdp.overlay.FlexContainerHighlightConfig.row_gap_space"]], "row_hatch_color (gridhighlightconfig attribute)": [[38, "nodriver.cdp.overlay.GridHighlightConfig.row_hatch_color"]], "row_line_color (gridhighlightconfig attribute)": [[38, "nodriver.cdp.overlay.GridHighlightConfig.row_line_color"]], "row_line_dash (gridhighlightconfig attribute)": [[38, "nodriver.cdp.overlay.GridHighlightConfig.row_line_dash"]], "scroll_margin_color (scrollsnapcontainerhighlightconfig attribute)": [[38, "nodriver.cdp.overlay.ScrollSnapContainerHighlightConfig.scroll_margin_color"]], "scroll_padding_color (scrollsnapcontainerhighlightconfig attribute)": [[38, "nodriver.cdp.overlay.ScrollSnapContainerHighlightConfig.scroll_padding_color"]], "scroll_snap_container_highlight_config (scrollsnaphighlightconfig attribute)": [[38, "nodriver.cdp.overlay.ScrollSnapHighlightConfig.scroll_snap_container_highlight_config"]], "selected_platform (windowcontrolsoverlayconfig attribute)": [[38, "nodriver.cdp.overlay.WindowControlsOverlayConfig.selected_platform"]], "set_inspect_mode() (in module nodriver.cdp.overlay)": [[38, "nodriver.cdp.overlay.set_inspect_mode"]], "set_paused_in_debugger_message() (in module nodriver.cdp.overlay)": [[38, "nodriver.cdp.overlay.set_paused_in_debugger_message"]], "set_show_ad_highlights() (in module nodriver.cdp.overlay)": [[38, "nodriver.cdp.overlay.set_show_ad_highlights"]], "set_show_container_query_overlays() (in module nodriver.cdp.overlay)": [[38, "nodriver.cdp.overlay.set_show_container_query_overlays"]], "set_show_debug_borders() (in module nodriver.cdp.overlay)": [[38, "nodriver.cdp.overlay.set_show_debug_borders"]], "set_show_flex_overlays() (in module nodriver.cdp.overlay)": [[38, "nodriver.cdp.overlay.set_show_flex_overlays"]], "set_show_fps_counter() (in module nodriver.cdp.overlay)": [[38, "nodriver.cdp.overlay.set_show_fps_counter"]], "set_show_grid_overlays() (in module nodriver.cdp.overlay)": [[38, "nodriver.cdp.overlay.set_show_grid_overlays"]], "set_show_hinge() (in module nodriver.cdp.overlay)": [[38, "nodriver.cdp.overlay.set_show_hinge"]], "set_show_hit_test_borders() (in module nodriver.cdp.overlay)": [[38, "nodriver.cdp.overlay.set_show_hit_test_borders"]], "set_show_isolated_elements() (in module nodriver.cdp.overlay)": [[38, "nodriver.cdp.overlay.set_show_isolated_elements"]], "set_show_layout_shift_regions() (in module nodriver.cdp.overlay)": [[38, "nodriver.cdp.overlay.set_show_layout_shift_regions"]], "set_show_paint_rects() (in module nodriver.cdp.overlay)": [[38, "nodriver.cdp.overlay.set_show_paint_rects"]], "set_show_scroll_bottleneck_rects() (in module nodriver.cdp.overlay)": [[38, "nodriver.cdp.overlay.set_show_scroll_bottleneck_rects"]], "set_show_scroll_snap_overlays() (in module nodriver.cdp.overlay)": [[38, "nodriver.cdp.overlay.set_show_scroll_snap_overlays"]], "set_show_viewport_size_on_resize() (in module nodriver.cdp.overlay)": [[38, "nodriver.cdp.overlay.set_show_viewport_size_on_resize"]], "set_show_web_vitals() (in module nodriver.cdp.overlay)": [[38, "nodriver.cdp.overlay.set_show_web_vitals"]], "set_show_window_controls_overlay() (in module nodriver.cdp.overlay)": [[38, "nodriver.cdp.overlay.set_show_window_controls_overlay"]], "shape_color (highlightconfig attribute)": [[38, "nodriver.cdp.overlay.HighlightConfig.shape_color"]], "shape_margin_color (highlightconfig attribute)": [[38, "nodriver.cdp.overlay.HighlightConfig.shape_margin_color"]], "show_accessibility_info (highlightconfig attribute)": [[38, "nodriver.cdp.overlay.HighlightConfig.show_accessibility_info"]], "show_area_names (gridhighlightconfig attribute)": [[38, "nodriver.cdp.overlay.GridHighlightConfig.show_area_names"]], "show_css (windowcontrolsoverlayconfig attribute)": [[38, "nodriver.cdp.overlay.WindowControlsOverlayConfig.show_css"]], "show_extension_lines (highlightconfig attribute)": [[38, "nodriver.cdp.overlay.HighlightConfig.show_extension_lines"]], "show_grid_extension_lines (gridhighlightconfig attribute)": [[38, "nodriver.cdp.overlay.GridHighlightConfig.show_grid_extension_lines"]], "show_info (highlightconfig attribute)": [[38, "nodriver.cdp.overlay.HighlightConfig.show_info"]], "show_line_names (gridhighlightconfig attribute)": [[38, "nodriver.cdp.overlay.GridHighlightConfig.show_line_names"]], "show_negative_line_numbers (gridhighlightconfig attribute)": [[38, "nodriver.cdp.overlay.GridHighlightConfig.show_negative_line_numbers"]], "show_positive_line_numbers (gridhighlightconfig attribute)": [[38, "nodriver.cdp.overlay.GridHighlightConfig.show_positive_line_numbers"]], "show_rulers (highlightconfig attribute)": [[38, "nodriver.cdp.overlay.HighlightConfig.show_rulers"]], "show_styles (highlightconfig attribute)": [[38, "nodriver.cdp.overlay.HighlightConfig.show_styles"]], "show_track_sizes (gridhighlightconfig attribute)": [[38, "nodriver.cdp.overlay.GridHighlightConfig.show_track_sizes"]], "snap_area_border (scrollsnapcontainerhighlightconfig attribute)": [[38, "nodriver.cdp.overlay.ScrollSnapContainerHighlightConfig.snap_area_border"]], "snapport_border (scrollsnapcontainerhighlightconfig attribute)": [[38, "nodriver.cdp.overlay.ScrollSnapContainerHighlightConfig.snapport_border"]], "theme_color (windowcontrolsoverlayconfig attribute)": [[38, "nodriver.cdp.overlay.WindowControlsOverlayConfig.theme_color"]], "viewport (screenshotrequested attribute)": [[38, "nodriver.cdp.overlay.ScreenshotRequested.viewport"]], "accelerometer (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.ACCELEROMETER"]], "activation_navigations_disallowed_for_bug1234857 (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.ACTIVATION_NAVIGATIONS_DISALLOWED_FOR_BUG1234857"]], "address_bar (transitiontype attribute)": [[39, "nodriver.cdp.page.TransitionType.ADDRESS_BAR"]], "alert (dialogtype attribute)": [[39, "nodriver.cdp.page.DialogType.ALERT"]], "all_screens_capture (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.ALL_SCREENS_CAPTURE"]], "ambient_light_sensor (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.AMBIENT_LIGHT_SENSOR"]], "anchor_click (clientnavigationreason attribute)": [[39, "nodriver.cdp.page.ClientNavigationReason.ANCHOR_CLICK"]], "app_banner (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.APP_BANNER"]], "attribution_reporting (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.ATTRIBUTION_REPORTING"]], "autoplay (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.AUTOPLAY"]], "auto_accept (autoresponsemode attribute)": [[39, "nodriver.cdp.page.AutoResponseMode.AUTO_ACCEPT"]], "auto_bookmark (transitiontype attribute)": [[39, "nodriver.cdp.page.TransitionType.AUTO_BOOKMARK"]], "auto_opt_out (autoresponsemode attribute)": [[39, "nodriver.cdp.page.AutoResponseMode.AUTO_OPT_OUT"]], "auto_reject (autoresponsemode attribute)": [[39, "nodriver.cdp.page.AutoResponseMode.AUTO_REJECT"]], "auto_subframe (transitiontype attribute)": [[39, "nodriver.cdp.page.TransitionType.AUTO_SUBFRAME"]], "auto_toplevel (transitiontype attribute)": [[39, "nodriver.cdp.page.TransitionType.AUTO_TOPLEVEL"]], "adframeexplanation (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.AdFrameExplanation"]], "adframestatus (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.AdFrameStatus"]], "adframetype (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.AdFrameType"]], "adscriptid (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.AdScriptId"]], "appmanifesterror (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.AppManifestError"]], "appmanifestparsedproperties (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.AppManifestParsedProperties"]], "autoresponsemode (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.AutoResponseMode"]], "back_forward_cache_disabled (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.BACK_FORWARD_CACHE_DISABLED"]], "back_forward_cache_disabled_by_command_line (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.BACK_FORWARD_CACHE_DISABLED_BY_COMMAND_LINE"]], "back_forward_cache_disabled_by_low_memory (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.BACK_FORWARD_CACHE_DISABLED_BY_LOW_MEMORY"]], "back_forward_cache_disabled_for_delegate (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.BACK_FORWARD_CACHE_DISABLED_FOR_DELEGATE"]], "back_forward_cache_disabled_for_prerender (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.BACK_FORWARD_CACHE_DISABLED_FOR_PRERENDER"]], "back_forward_cache_restore (navigationtype attribute)": [[39, "nodriver.cdp.page.NavigationType.BACK_FORWARD_CACHE_RESTORE"]], "beforeunload (dialogtype attribute)": [[39, "nodriver.cdp.page.DialogType.BEFOREUNLOAD"]], "bluetooth (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.BLUETOOTH"]], "broadcast_channel (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.BROADCAST_CHANNEL"]], "broadcast_channel_on_message (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.BROADCAST_CHANNEL_ON_MESSAGE"]], "browsing_instance_not_swapped (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.BROWSING_INSTANCE_NOT_SWAPPED"]], "browsing_topics (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.BROWSING_TOPICS"]], "backforwardcacheblockingdetails (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.BackForwardCacheBlockingDetails"]], "backforwardcachenotrestoredexplanation (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredExplanation"]], "backforwardcachenotrestoredexplanationtree (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredExplanationTree"]], "backforwardcachenotrestoredreason (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason"]], "backforwardcachenotrestoredreasontype (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReasonType"]], "backforwardcachenotused (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.BackForwardCacheNotUsed"]], "cache_control_no_store (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.CACHE_CONTROL_NO_STORE"]], "cache_control_no_store_cookie_modified (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.CACHE_CONTROL_NO_STORE_COOKIE_MODIFIED"]], "cache_control_no_store_http_only_cookie_modified (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.CACHE_CONTROL_NO_STORE_HTTP_ONLY_COOKIE_MODIFIED"]], "cache_flushed (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.CACHE_FLUSHED"]], "cache_limit (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.CACHE_LIMIT"]], "camera (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.CAMERA"]], "captured_surface_control (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.CAPTURED_SURFACE_CONTROL"]], "child (adframetype attribute)": [[39, "nodriver.cdp.page.AdFrameType.CHILD"]], "ch_device_memory (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.CH_DEVICE_MEMORY"]], "ch_downlink (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.CH_DOWNLINK"]], "ch_dpr (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.CH_DPR"]], "ch_ect (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.CH_ECT"]], "ch_prefers_color_scheme (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.CH_PREFERS_COLOR_SCHEME"]], "ch_prefers_reduced_motion (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.CH_PREFERS_REDUCED_MOTION"]], "ch_prefers_reduced_transparency (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.CH_PREFERS_REDUCED_TRANSPARENCY"]], "ch_rtt (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.CH_RTT"]], "ch_save_data (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.CH_SAVE_DATA"]], "ch_ua (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.CH_UA"]], "ch_ua_arch (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.CH_UA_ARCH"]], "ch_ua_bitness (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.CH_UA_BITNESS"]], "ch_ua_form_factors (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.CH_UA_FORM_FACTORS"]], "ch_ua_full_version (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.CH_UA_FULL_VERSION"]], "ch_ua_full_version_list (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.CH_UA_FULL_VERSION_LIST"]], "ch_ua_mobile (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.CH_UA_MOBILE"]], "ch_ua_model (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.CH_UA_MODEL"]], "ch_ua_platform (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.CH_UA_PLATFORM"]], "ch_ua_platform_version (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.CH_UA_PLATFORM_VERSION"]], "ch_ua_wow64 (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.CH_UA_WOW64"]], "ch_viewport_height (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.CH_VIEWPORT_HEIGHT"]], "ch_viewport_width (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.CH_VIEWPORT_WIDTH"]], "ch_width (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.CH_WIDTH"]], "circumstantial (backforwardcachenotrestoredreasontype attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReasonType.CIRCUMSTANTIAL"]], "clipboard_read (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.CLIPBOARD_READ"]], "clipboard_write (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.CLIPBOARD_WRITE"]], "compute_pressure (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.COMPUTE_PRESSURE"]], "confirm (dialogtype attribute)": [[39, "nodriver.cdp.page.DialogType.CONFIRM"]], "conflicting_browsing_instance (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.CONFLICTING_BROWSING_INSTANCE"]], "contains_plugins (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.CONTAINS_PLUGINS"]], "content_discarded (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.CONTENT_DISCARDED"]], "content_file_chooser (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.CONTENT_FILE_CHOOSER"]], "content_file_system_access (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.CONTENT_FILE_SYSTEM_ACCESS"]], "content_media_devices_dispatcher_host (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.CONTENT_MEDIA_DEVICES_DISPATCHER_HOST"]], "content_media_session_service (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.CONTENT_MEDIA_SESSION_SERVICE"]], "content_screen_reader (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.CONTENT_SCREEN_READER"]], "content_security_handler (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.CONTENT_SECURITY_HANDLER"]], "content_serial (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.CONTENT_SERIAL"]], "content_web_authentication_api (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.CONTENT_WEB_AUTHENTICATION_API"]], "content_web_bluetooth (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.CONTENT_WEB_BLUETOOTH"]], "content_web_usb (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.CONTENT_WEB_USB"]], "controlled_frame (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.CONTROLLED_FRAME"]], "cookie_disabled (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.COOKIE_DISABLED"]], "cookie_flushed (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.COOKIE_FLUSHED"]], "created_by_ad_script (adframeexplanation attribute)": [[39, "nodriver.cdp.page.AdFrameExplanation.CREATED_BY_AD_SCRIPT"]], "cross_origin_isolated (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.CROSS_ORIGIN_ISOLATED"]], "current_tab (clientnavigationdisposition attribute)": [[39, "nodriver.cdp.page.ClientNavigationDisposition.CURRENT_TAB"]], "clientnavigationdisposition (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.ClientNavigationDisposition"]], "clientnavigationreason (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.ClientNavigationReason"]], "compilationcacheparams (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.CompilationCacheParams"]], "compilationcacheproduced (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.CompilationCacheProduced"]], "crossoriginisolatedcontexttype (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.CrossOriginIsolatedContextType"]], "deferred_fetch (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.DEFERRED_FETCH"]], "deferred_fetch_minimal (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.DEFERRED_FETCH_MINIMAL"]], "digital_credentials_get (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.DIGITAL_CREDENTIALS_GET"]], "direct_sockets (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.DIRECT_SOCKETS"]], "direct_sockets_private (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.DIRECT_SOCKETS_PRIVATE"]], "disable_for_render_frame_host_called (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.DISABLE_FOR_RENDER_FRAME_HOST_CALLED"]], "display_capture (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.DISPLAY_CAPTURE"]], "document_domain (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.DOCUMENT_DOMAIN"]], "document_loaded (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.DOCUMENT_LOADED"]], "domain_not_allowed (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.DOMAIN_NOT_ALLOWED"]], "download (clientnavigationdisposition attribute)": [[39, "nodriver.cdp.page.ClientNavigationDisposition.DOWNLOAD"]], "dummy (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.DUMMY"]], "dialogtype (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.DialogType"]], "documentopened (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.DocumentOpened"]], "domcontenteventfired (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.DomContentEventFired"]], "downloadprogress (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.DownloadProgress"]], "downloadwillbegin (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.DownloadWillBegin"]], "embedder_app_banner_manager (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.EMBEDDER_APP_BANNER_MANAGER"]], "embedder_chrome_password_manager_client_bind_credential_manager (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.EMBEDDER_CHROME_PASSWORD_MANAGER_CLIENT_BIND_CREDENTIAL_MANAGER"]], "embedder_dom_distiller_self_deleting_request_delegate (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.EMBEDDER_DOM_DISTILLER_SELF_DELETING_REQUEST_DELEGATE"]], "embedder_dom_distiller_viewer_source (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.EMBEDDER_DOM_DISTILLER_VIEWER_SOURCE"]], "embedder_extensions (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.EMBEDDER_EXTENSIONS"]], "embedder_extension_messaging (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.EMBEDDER_EXTENSION_MESSAGING"]], "embedder_extension_messaging_for_open_port (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.EMBEDDER_EXTENSION_MESSAGING_FOR_OPEN_PORT"]], "embedder_extension_sent_message_to_cached_frame (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.EMBEDDER_EXTENSION_SENT_MESSAGE_TO_CACHED_FRAME"]], "embedder_modal_dialog (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.EMBEDDER_MODAL_DIALOG"]], "embedder_offline_page (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.EMBEDDER_OFFLINE_PAGE"]], "embedder_oom_intervention_tab_helper (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.EMBEDDER_OOM_INTERVENTION_TAB_HELPER"]], "embedder_permission_request_manager (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.EMBEDDER_PERMISSION_REQUEST_MANAGER"]], "embedder_popup_blocker_tab_helper (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.EMBEDDER_POPUP_BLOCKER_TAB_HELPER"]], "embedder_safe_browsing_threat_details (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.EMBEDDER_SAFE_BROWSING_THREAT_DETAILS"]], "embedder_safe_browsing_triggered_popup_blocker (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.EMBEDDER_SAFE_BROWSING_TRIGGERED_POPUP_BLOCKER"]], "enabled (origintrialstatus attribute)": [[39, "nodriver.cdp.page.OriginTrialStatus.ENABLED"]], "encrypted_media (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.ENCRYPTED_MEDIA"]], "entered_back_forward_cache_before_service_worker_host_added (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.ENTERED_BACK_FORWARD_CACHE_BEFORE_SERVICE_WORKER_HOST_ADDED"]], "error_document (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.ERROR_DOCUMENT"]], "execution_while_not_rendered (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.EXECUTION_WHILE_NOT_RENDERED"]], "execution_while_out_of_viewport (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.EXECUTION_WHILE_OUT_OF_VIEWPORT"]], "expired (origintrialtokenstatus attribute)": [[39, "nodriver.cdp.page.OriginTrialTokenStatus.EXPIRED"]], "feature_disabled (origintrialtokenstatus attribute)": [[39, "nodriver.cdp.page.OriginTrialTokenStatus.FEATURE_DISABLED"]], "feature_disabled_for_user (origintrialtokenstatus attribute)": [[39, "nodriver.cdp.page.OriginTrialTokenStatus.FEATURE_DISABLED_FOR_USER"]], "fenced_frames_embedder (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.FENCED_FRAMES_EMBEDDER"]], "fenced_unpartitioned_storage_read (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.FENCED_UNPARTITIONED_STORAGE_READ"]], "focus_without_user_activation (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.FOCUS_WITHOUT_USER_ACTIVATION"]], "foreground_cache_limit (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.FOREGROUND_CACHE_LIMIT"]], "form_submission_get (clientnavigationreason attribute)": [[39, "nodriver.cdp.page.ClientNavigationReason.FORM_SUBMISSION_GET"]], "form_submission_post (clientnavigationreason attribute)": [[39, "nodriver.cdp.page.ClientNavigationReason.FORM_SUBMISSION_POST"]], "form_submit (transitiontype attribute)": [[39, "nodriver.cdp.page.TransitionType.FORM_SUBMIT"]], "frobulate (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.FROBULATE"]], "fullscreen (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.FULLSCREEN"]], "filechooseropened (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.FileChooserOpened"]], "filefilter (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.FileFilter"]], "filehandler (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.FileHandler"]], "fontfamilies (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.FontFamilies"]], "fontsizes (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.FontSizes"]], "frame (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.Frame"]], "frameattached (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.FrameAttached"]], "frameclearedschedulednavigation (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.FrameClearedScheduledNavigation"]], "framedetached (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.FrameDetached"]], "frameid (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.FrameId"]], "framenavigated (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.FrameNavigated"]], "framerequestednavigation (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.FrameRequestedNavigation"]], "frameresized (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.FrameResized"]], "frameresource (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.FrameResource"]], "frameresourcetree (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.FrameResourceTree"]], "frameschedulednavigation (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.FrameScheduledNavigation"]], "framestartedloading (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.FrameStartedLoading"]], "framestoppedloading (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.FrameStoppedLoading"]], "framesubtreewillbedetached (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.FrameSubtreeWillBeDetached"]], "frametree (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.FrameTree"]], "gamepad (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.GAMEPAD"]], "generated (transitiontype attribute)": [[39, "nodriver.cdp.page.TransitionType.GENERATED"]], "geolocation (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.GEOLOCATION"]], "gyroscope (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.GYROSCOPE"]], "gatedapifeatures (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.GatedAPIFeatures"]], "have_inner_contents (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.HAVE_INNER_CONTENTS"]], "header (permissionspolicyblockreason attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyBlockReason.HEADER"]], "hid (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.HID"]], "http_auth_required (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.HTTP_AUTH_REQUIRED"]], "http_header_refresh (clientnavigationreason attribute)": [[39, "nodriver.cdp.page.ClientNavigationReason.HTTP_HEADER_REFRESH"]], "http_method_not_get (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.HTTP_METHOD_NOT_GET"]], "http_status_not_ok (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.HTTP_STATUS_NOT_OK"]], "identity_credentials_get (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.IDENTITY_CREDENTIALS_GET"]], "idle_detection (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.IDLE_DETECTION"]], "idle_manager (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.IDLE_MANAGER"]], "iframe_attribute (permissionspolicyblockreason attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyBlockReason.IFRAME_ATTRIBUTE"]], "ignore_event_and_evict (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.IGNORE_EVENT_AND_EVICT"]], "indexed_db_event (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.INDEXED_DB_EVENT"]], "initial_frame_navigation (clientnavigationreason attribute)": [[39, "nodriver.cdp.page.ClientNavigationReason.INITIAL_FRAME_NAVIGATION"]], "injected_javascript (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.INJECTED_JAVASCRIPT"]], "injected_style_sheet (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.INJECTED_STYLE_SHEET"]], "insecure (origintrialtokenstatus attribute)": [[39, "nodriver.cdp.page.OriginTrialTokenStatus.INSECURE"]], "insecure_ancestor (securecontexttype attribute)": [[39, "nodriver.cdp.page.SecureContextType.INSECURE_ANCESTOR"]], "insecure_scheme (securecontexttype attribute)": [[39, "nodriver.cdp.page.SecureContextType.INSECURE_SCHEME"]], "interest_cohort (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.INTEREST_COHORT"]], "invalid_signature (origintrialtokenstatus attribute)": [[39, "nodriver.cdp.page.OriginTrialTokenStatus.INVALID_SIGNATURE"]], "in_fenced_frame_tree (permissionspolicyblockreason attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyBlockReason.IN_FENCED_FRAME_TREE"]], "in_isolated_app (permissionspolicyblockreason attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyBlockReason.IN_ISOLATED_APP"]], "isolated (crossoriginisolatedcontexttype attribute)": [[39, "nodriver.cdp.page.CrossOriginIsolatedContextType.ISOLATED"]], "imageresource (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.ImageResource"]], "installabilityerror (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.InstallabilityError"]], "installabilityerrorargument (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.InstallabilityErrorArgument"]], "interstitialhidden (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.InterstitialHidden"]], "interstitialshown (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.InterstitialShown"]], "java_script_execution (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.JAVA_SCRIPT_EXECUTION"]], "join_ad_interest_group (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.JOIN_AD_INTEREST_GROUP"]], "js_network_request_received_cache_control_no_store_resource (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.JS_NETWORK_REQUEST_RECEIVED_CACHE_CONTROL_NO_STORE_RESOURCE"]], "javascriptdialogclosed (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.JavascriptDialogClosed"]], "javascriptdialogopening (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.JavascriptDialogOpening"]], "keepalive_request (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.KEEPALIVE_REQUEST"]], "keyboard_lock (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.KEYBOARD_LOCK"]], "keyboard_map (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.KEYBOARD_MAP"]], "keyword (transitiontype attribute)": [[39, "nodriver.cdp.page.TransitionType.KEYWORD"]], "keyword_generated (transitiontype attribute)": [[39, "nodriver.cdp.page.TransitionType.KEYWORD_GENERATED"]], "link (transitiontype attribute)": [[39, "nodriver.cdp.page.TransitionType.LINK"]], "live_media_stream_track (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.LIVE_MEDIA_STREAM_TRACK"]], "loading (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.LOADING"]], "local_fonts (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.LOCAL_FONTS"]], "launchhandler (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.LaunchHandler"]], "layoutviewport (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.LayoutViewport"]], "lifecycleevent (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.LifecycleEvent"]], "loadeventfired (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.LoadEventFired"]], "magnetometer (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.MAGNETOMETER"]], "main_resource_has_cache_control_no_cache (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.MAIN_RESOURCE_HAS_CACHE_CONTROL_NO_CACHE"]], "main_resource_has_cache_control_no_store (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.MAIN_RESOURCE_HAS_CACHE_CONTROL_NO_STORE"]], "malformed (origintrialtokenstatus attribute)": [[39, "nodriver.cdp.page.OriginTrialTokenStatus.MALFORMED"]], "manual_subframe (transitiontype attribute)": [[39, "nodriver.cdp.page.TransitionType.MANUAL_SUBFRAME"]], "matched_blocking_rule (adframeexplanation attribute)": [[39, "nodriver.cdp.page.AdFrameExplanation.MATCHED_BLOCKING_RULE"]], "media_playback_while_not_visible (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.MEDIA_PLAYBACK_WHILE_NOT_VISIBLE"]], "meta_tag_refresh (clientnavigationreason attribute)": [[39, "nodriver.cdp.page.ClientNavigationReason.META_TAG_REFRESH"]], "microphone (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.MICROPHONE"]], "midi (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.MIDI"]], "navigation (navigationtype attribute)": [[39, "nodriver.cdp.page.NavigationType.NAVIGATION"]], "navigation_cancelled_while_restoring (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.NAVIGATION_CANCELLED_WHILE_RESTORING"]], "network_exceeds_buffer_limit (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.NETWORK_EXCEEDS_BUFFER_LIMIT"]], "network_request_datapipe_drained_as_bytes_consumer (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.NETWORK_REQUEST_DATAPIPE_DRAINED_AS_BYTES_CONSUMER"]], "network_request_redirected (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.NETWORK_REQUEST_REDIRECTED"]], "network_request_timeout (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.NETWORK_REQUEST_TIMEOUT"]], "new_tab (clientnavigationdisposition attribute)": [[39, "nodriver.cdp.page.ClientNavigationDisposition.NEW_TAB"]], "new_window (clientnavigationdisposition attribute)": [[39, "nodriver.cdp.page.ClientNavigationDisposition.NEW_WINDOW"]], "none (adframetype attribute)": [[39, "nodriver.cdp.page.AdFrameType.NONE"]], "none (autoresponsemode attribute)": [[39, "nodriver.cdp.page.AutoResponseMode.NONE"]], "none (origintrialusagerestriction attribute)": [[39, "nodriver.cdp.page.OriginTrialUsageRestriction.NONE"]], "not_isolated (crossoriginisolatedcontexttype attribute)": [[39, "nodriver.cdp.page.CrossOriginIsolatedContextType.NOT_ISOLATED"]], "not_isolated_feature_disabled (crossoriginisolatedcontexttype attribute)": [[39, "nodriver.cdp.page.CrossOriginIsolatedContextType.NOT_ISOLATED_FEATURE_DISABLED"]], "not_most_recent_navigation_entry (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.NOT_MOST_RECENT_NAVIGATION_ENTRY"]], "not_primary_main_frame (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.NOT_PRIMARY_MAIN_FRAME"]], "not_supported (origintrialtokenstatus attribute)": [[39, "nodriver.cdp.page.OriginTrialTokenStatus.NOT_SUPPORTED"]], "no_referrer (referrerpolicy attribute)": [[39, "nodriver.cdp.page.ReferrerPolicy.NO_REFERRER"]], "no_referrer_when_downgrade (referrerpolicy attribute)": [[39, "nodriver.cdp.page.ReferrerPolicy.NO_REFERRER_WHEN_DOWNGRADE"]], "no_response_head (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.NO_RESPONSE_HEAD"]], "navigatedwithindocument (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.NavigatedWithinDocument"]], "navigationentry (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.NavigationEntry"]], "navigationtype (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.NavigationType"]], "origin (referrerpolicy attribute)": [[39, "nodriver.cdp.page.ReferrerPolicy.ORIGIN"]], "origin_when_cross_origin (referrerpolicy attribute)": [[39, "nodriver.cdp.page.ReferrerPolicy.ORIGIN_WHEN_CROSS_ORIGIN"]], "os_not_supported (origintrialstatus attribute)": [[39, "nodriver.cdp.page.OriginTrialStatus.OS_NOT_SUPPORTED"]], "other (clientnavigationreason attribute)": [[39, "nodriver.cdp.page.ClientNavigationReason.OTHER"]], "other (transitiontype attribute)": [[39, "nodriver.cdp.page.TransitionType.OTHER"]], "otp_credentials (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.OTP_CREDENTIALS"]], "outstanding_network_request_direct_socket (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.OUTSTANDING_NETWORK_REQUEST_DIRECT_SOCKET"]], "outstanding_network_request_fetch (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.OUTSTANDING_NETWORK_REQUEST_FETCH"]], "outstanding_network_request_others (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.OUTSTANDING_NETWORK_REQUEST_OTHERS"]], "outstanding_network_request_xhr (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.OUTSTANDING_NETWORK_REQUEST_XHR"]], "origintrial (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.OriginTrial"]], "origintrialstatus (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.OriginTrialStatus"]], "origintrialtoken (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.OriginTrialToken"]], "origintrialtokenstatus (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.OriginTrialTokenStatus"]], "origintrialtokenwithstatus (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.OriginTrialTokenWithStatus"]], "origintrialusagerestriction (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.OriginTrialUsageRestriction"]], "page_block_interstitial (clientnavigationreason attribute)": [[39, "nodriver.cdp.page.ClientNavigationReason.PAGE_BLOCK_INTERSTITIAL"]], "page_support_needed (backforwardcachenotrestoredreasontype attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReasonType.PAGE_SUPPORT_NEEDED"]], "parent_is_ad (adframeexplanation attribute)": [[39, "nodriver.cdp.page.AdFrameExplanation.PARENT_IS_AD"]], "parser_aborted (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.PARSER_ABORTED"]], "payment (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.PAYMENT"]], "payment_manager (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.PAYMENT_MANAGER"]], "performance_measure_memory (gatedapifeatures attribute)": [[39, "nodriver.cdp.page.GatedAPIFeatures.PERFORMANCE_MEASURE_MEMORY"]], "performance_profile (gatedapifeatures attribute)": [[39, "nodriver.cdp.page.GatedAPIFeatures.PERFORMANCE_PROFILE"]], "picture_in_picture (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.PICTURE_IN_PICTURE"]], "picture_in_picture (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.PICTURE_IN_PICTURE"]], "popins (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.POPINS"]], "post_message_by_web_view_client (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.POST_MESSAGE_BY_WEB_VIEW_CLIENT"]], "printing (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.PRINTING"]], "private_aggregation (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.PRIVATE_AGGREGATION"]], "private_state_token_issuance (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.PRIVATE_STATE_TOKEN_ISSUANCE"]], "private_state_token_redemption (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.PRIVATE_STATE_TOKEN_REDEMPTION"]], "prompt (dialogtype attribute)": [[39, "nodriver.cdp.page.DialogType.PROMPT"]], "publickey_credentials_create (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.PUBLICKEY_CREDENTIALS_CREATE"]], "publickey_credentials_get (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.PUBLICKEY_CREDENTIALS_GET"]], "permissionspolicyblocklocator (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.PermissionsPolicyBlockLocator"]], "permissionspolicyblockreason (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.PermissionsPolicyBlockReason"]], "permissionspolicyfeature (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature"]], "permissionspolicyfeaturestate (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.PermissionsPolicyFeatureState"]], "protocolhandler (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.ProtocolHandler"]], "related_active_contents_exist (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.RELATED_ACTIVE_CONTENTS_EXIST"]], "reload (clientnavigationreason attribute)": [[39, "nodriver.cdp.page.ClientNavigationReason.RELOAD"]], "reload (transitiontype attribute)": [[39, "nodriver.cdp.page.TransitionType.RELOAD"]], "renderer_process_crashed (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.RENDERER_PROCESS_CRASHED"]], "renderer_process_killed (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.RENDERER_PROCESS_KILLED"]], "render_frame_host_reused_cross_site (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.RENDER_FRAME_HOST_REUSED_CROSS_SITE"]], "render_frame_host_reused_same_site (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.RENDER_FRAME_HOST_REUSED_SAME_SITE"]], "requested_audio_capture_permission (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.REQUESTED_AUDIO_CAPTURE_PERMISSION"]], "requested_background_work_permission (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.REQUESTED_BACKGROUND_WORK_PERMISSION"]], "requested_back_forward_cache_blocked_sensors (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.REQUESTED_BACK_FORWARD_CACHE_BLOCKED_SENSORS"]], "requested_by_web_view_client (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.REQUESTED_BY_WEB_VIEW_CLIENT"]], "requested_midi_permission (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.REQUESTED_MIDI_PERMISSION"]], "requested_storage_access_grant (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.REQUESTED_STORAGE_ACCESS_GRANT"]], "requested_video_capture_permission (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.REQUESTED_VIDEO_CAPTURE_PERMISSION"]], "root (adframetype attribute)": [[39, "nodriver.cdp.page.AdFrameType.ROOT"]], "run_ad_auction (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.RUN_AD_AUCTION"]], "referrerpolicy (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.ReferrerPolicy"]], "relatedapplication (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.RelatedApplication"]], "same_origin (referrerpolicy attribute)": [[39, "nodriver.cdp.page.ReferrerPolicy.SAME_ORIGIN"]], "scheduler_tracked_feature_used (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.SCHEDULER_TRACKED_FEATURE_USED"]], "scheme_not_http_or_https (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.SCHEME_NOT_HTTP_OR_HTTPS"]], "screen_wake_lock (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.SCREEN_WAKE_LOCK"]], "script_initiated (clientnavigationreason attribute)": [[39, "nodriver.cdp.page.ClientNavigationReason.SCRIPT_INITIATED"]], "secure (securecontexttype attribute)": [[39, "nodriver.cdp.page.SecureContextType.SECURE"]], "secure_localhost (securecontexttype attribute)": [[39, "nodriver.cdp.page.SecureContextType.SECURE_LOCALHOST"]], "serial (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.SERIAL"]], "service_worker_claim (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.SERVICE_WORKER_CLAIM"]], "service_worker_post_message (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.SERVICE_WORKER_POST_MESSAGE"]], "service_worker_unregistration (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.SERVICE_WORKER_UNREGISTRATION"]], "service_worker_version_activation (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.SERVICE_WORKER_VERSION_ACTIVATION"]], "session_restored (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.SESSION_RESTORED"]], "shared_array_buffers (gatedapifeatures attribute)": [[39, "nodriver.cdp.page.GatedAPIFeatures.SHARED_ARRAY_BUFFERS"]], "shared_array_buffers_transfer_allowed (gatedapifeatures attribute)": [[39, "nodriver.cdp.page.GatedAPIFeatures.SHARED_ARRAY_BUFFERS_TRANSFER_ALLOWED"]], "shared_autofill (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.SHARED_AUTOFILL"]], "shared_storage (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.SHARED_STORAGE"]], "shared_storage_select_url (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.SHARED_STORAGE_SELECT_URL"]], "shared_worker (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.SHARED_WORKER"]], "smart_card (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.SMART_CARD"]], "smart_card (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.SMART_CARD"]], "speaker_selection (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.SPEAKER_SELECTION"]], "speech_recognizer (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.SPEECH_RECOGNIZER"]], "speech_synthesis (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.SPEECH_SYNTHESIS"]], "storage_access (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.STORAGE_ACCESS"]], "strict_origin (referrerpolicy attribute)": [[39, "nodriver.cdp.page.ReferrerPolicy.STRICT_ORIGIN"]], "strict_origin_when_cross_origin (referrerpolicy attribute)": [[39, "nodriver.cdp.page.ReferrerPolicy.STRICT_ORIGIN_WHEN_CROSS_ORIGIN"]], "subframe_is_navigating (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.SUBFRAME_IS_NAVIGATING"]], "subresource_has_cache_control_no_cache (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.SUBRESOURCE_HAS_CACHE_CONTROL_NO_CACHE"]], "subresource_has_cache_control_no_store (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.SUBRESOURCE_HAS_CACHE_CONTROL_NO_STORE"]], "subset (origintrialusagerestriction attribute)": [[39, "nodriver.cdp.page.OriginTrialUsageRestriction.SUBSET"]], "sub_apps (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.SUB_APPS"]], "success (origintrialtokenstatus attribute)": [[39, "nodriver.cdp.page.OriginTrialTokenStatus.SUCCESS"]], "support_pending (backforwardcachenotrestoredreasontype attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReasonType.SUPPORT_PENDING"]], "sync_xhr (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.SYNC_XHR"]], "scopeextension (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.ScopeExtension"]], "screencastframe (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.ScreencastFrame"]], "screencastframemetadata (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.ScreencastFrameMetadata"]], "screencastvisibilitychanged (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.ScreencastVisibilityChanged"]], "screenshot (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.Screenshot"]], "scriptfontfamilies (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.ScriptFontFamilies"]], "scriptidentifier (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.ScriptIdentifier"]], "securecontexttype (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.SecureContextType"]], "sharetarget (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.ShareTarget"]], "shortcut (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.Shortcut"]], "timeout (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.TIMEOUT"]], "timeout_putting_in_cache (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.TIMEOUT_PUTTING_IN_CACHE"]], "token_disabled (origintrialtokenstatus attribute)": [[39, "nodriver.cdp.page.OriginTrialTokenStatus.TOKEN_DISABLED"]], "trial_not_allowed (origintrialstatus attribute)": [[39, "nodriver.cdp.page.OriginTrialStatus.TRIAL_NOT_ALLOWED"]], "typed (transitiontype attribute)": [[39, "nodriver.cdp.page.TransitionType.TYPED"]], "transitiontype (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.TransitionType"]], "unknown (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.UNKNOWN"]], "unknown_trial (origintrialtokenstatus attribute)": [[39, "nodriver.cdp.page.OriginTrialTokenStatus.UNKNOWN_TRIAL"]], "unload (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.UNLOAD"]], "unload_handler (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.UNLOAD_HANDLER"]], "unload_handler_exists_in_main_frame (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.UNLOAD_HANDLER_EXISTS_IN_MAIN_FRAME"]], "unload_handler_exists_in_sub_frame (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.UNLOAD_HANDLER_EXISTS_IN_SUB_FRAME"]], "unsafe_url (referrerpolicy attribute)": [[39, "nodriver.cdp.page.ReferrerPolicy.UNSAFE_URL"]], "usb (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.USB"]], "usb_unrestricted (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.USB_UNRESTRICTED"]], "user_agent_override_differs (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.USER_AGENT_OVERRIDE_DIFFERS"]], "valid_token_not_provided (origintrialstatus attribute)": [[39, "nodriver.cdp.page.OriginTrialStatus.VALID_TOKEN_NOT_PROVIDED"]], "vertical_scroll (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.VERTICAL_SCROLL"]], "viewport (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.Viewport"]], "visualviewport (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.VisualViewport"]], "was_granted_media_access (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.WAS_GRANTED_MEDIA_ACCESS"]], "web_app_installation (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.WEB_APP_INSTALLATION"]], "web_database (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.WEB_DATABASE"]], "web_hid (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.WEB_HID"]], "web_locks (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.WEB_LOCKS"]], "web_nfc (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.WEB_NFC"]], "web_otp_service (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.WEB_OTP_SERVICE"]], "web_printing (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.WEB_PRINTING"]], "web_rtc (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.WEB_RTC"]], "web_rtc_sticky (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.WEB_RTC_STICKY"]], "web_share (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.WEB_SHARE"]], "web_share (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.WEB_SHARE"]], "web_socket (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.WEB_SOCKET"]], "web_socket_sticky (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.WEB_SOCKET_STICKY"]], "web_transport (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.WEB_TRANSPORT"]], "web_transport_sticky (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.WEB_TRANSPORT_STICKY"]], "web_view_document_start_javascript_changed (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.WEB_VIEW_DOCUMENT_START_JAVASCRIPT_CHANGED"]], "web_view_java_script_object_changed (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.WEB_VIEW_JAVA_SCRIPT_OBJECT_CHANGED"]], "web_view_message_listener_injected (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.WEB_VIEW_MESSAGE_LISTENER_INJECTED"]], "web_view_safe_browsing_allowlist_changed (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.WEB_VIEW_SAFE_BROWSING_ALLOWLIST_CHANGED"]], "web_view_settings_changed (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.WEB_VIEW_SETTINGS_CHANGED"]], "web_xr (backforwardcachenotrestoredreason attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredReason.WEB_XR"]], "window_management (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.WINDOW_MANAGEMENT"]], "wrong_origin (origintrialtokenstatus attribute)": [[39, "nodriver.cdp.page.OriginTrialTokenStatus.WRONG_ORIGIN"]], "wrong_version (origintrialtokenstatus attribute)": [[39, "nodriver.cdp.page.OriginTrialTokenStatus.WRONG_VERSION"]], "webappmanifest (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.WebAppManifest"]], "windowopen (class in nodriver.cdp.page)": [[39, "nodriver.cdp.page.WindowOpen"]], "xr_spatial_tracking (permissionspolicyfeature attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeature.XR_SPATIAL_TRACKING"]], "accepts (filefilter attribute)": [[39, "nodriver.cdp.page.FileFilter.accepts"]], "accepts (filehandler attribute)": [[39, "nodriver.cdp.page.FileHandler.accepts"], [44, "nodriver.cdp.pwa.FileHandler.accepts"]], "action (filehandler attribute)": [[39, "nodriver.cdp.page.FileHandler.action"], [44, "nodriver.cdp.pwa.FileHandler.action"]], "action (sharetarget attribute)": [[39, "nodriver.cdp.page.ShareTarget.action"]], "ad_frame_status (frame attribute)": [[39, "nodriver.cdp.page.Frame.ad_frame_status"]], "ad_frame_type (adframestatus attribute)": [[39, "nodriver.cdp.page.AdFrameStatus.ad_frame_type"]], "add_compilation_cache() (in module nodriver.cdp.page)": [[39, "nodriver.cdp.page.add_compilation_cache"]], "add_script_to_evaluate_on_load() (in module nodriver.cdp.page)": [[39, "nodriver.cdp.page.add_script_to_evaluate_on_load"]], "add_script_to_evaluate_on_new_document() (in module nodriver.cdp.page)": [[39, "nodriver.cdp.page.add_script_to_evaluate_on_new_document"]], "allowed (permissionspolicyfeaturestate attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeatureState.allowed"]], "backend_node_id (filechooseropened attribute)": [[39, "nodriver.cdp.page.FileChooserOpened.backend_node_id"]], "background_color (webappmanifest attribute)": [[39, "nodriver.cdp.page.WebAppManifest.background_color"]], "block_reason (permissionspolicyblocklocator attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyBlockLocator.block_reason"]], "bring_to_front() (in module nodriver.cdp.page)": [[39, "nodriver.cdp.page.bring_to_front"]], "canceled (frameresource attribute)": [[39, "nodriver.cdp.page.FrameResource.canceled"]], "capture_screenshot() (in module nodriver.cdp.page)": [[39, "nodriver.cdp.page.capture_screenshot"]], "capture_snapshot() (in module nodriver.cdp.page)": [[39, "nodriver.cdp.page.capture_snapshot"]], "child_frames (frameresourcetree attribute)": [[39, "nodriver.cdp.page.FrameResourceTree.child_frames"]], "child_frames (frametree attribute)": [[39, "nodriver.cdp.page.FrameTree.child_frames"]], "children (backforwardcachenotrestoredexplanationtree attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredExplanationTree.children"]], "clear_compilation_cache() (in module nodriver.cdp.page)": [[39, "nodriver.cdp.page.clear_compilation_cache"]], "clear_device_metrics_override() (in module nodriver.cdp.page)": [[39, "nodriver.cdp.page.clear_device_metrics_override"]], "clear_device_orientation_override() (in module nodriver.cdp.page)": [[39, "nodriver.cdp.page.clear_device_orientation_override"]], "clear_geolocation_override() (in module nodriver.cdp.page)": [[39, "nodriver.cdp.page.clear_geolocation_override"]], "client_height (layoutviewport attribute)": [[39, "nodriver.cdp.page.LayoutViewport.client_height"]], "client_height (visualviewport attribute)": [[39, "nodriver.cdp.page.VisualViewport.client_height"]], "client_mode (launchhandler attribute)": [[39, "nodriver.cdp.page.LaunchHandler.client_mode"]], "client_width (layoutviewport attribute)": [[39, "nodriver.cdp.page.LayoutViewport.client_width"]], "client_width (visualviewport attribute)": [[39, "nodriver.cdp.page.VisualViewport.client_width"]], "close() (in module nodriver.cdp.page)": [[39, "nodriver.cdp.page.close"]], "column (appmanifesterror attribute)": [[39, "nodriver.cdp.page.AppManifestError.column"]], "column_number (backforwardcacheblockingdetails attribute)": [[39, "nodriver.cdp.page.BackForwardCacheBlockingDetails.column_number"]], "content_size (frameresource attribute)": [[39, "nodriver.cdp.page.FrameResource.content_size"]], "context (backforwardcachenotrestoredexplanation attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredExplanation.context"]], "crash() (in module nodriver.cdp.page)": [[39, "nodriver.cdp.page.crash"]], "create_isolated_world() (in module nodriver.cdp.page)": [[39, "nodriver.cdp.page.create_isolated_world"]], "critical (appmanifesterror attribute)": [[39, "nodriver.cdp.page.AppManifestError.critical"]], "cross_origin_isolated_context_type (frame attribute)": [[39, "nodriver.cdp.page.Frame.cross_origin_isolated_context_type"]], "cursive (fontfamilies attribute)": [[39, "nodriver.cdp.page.FontFamilies.cursive"]], "data (compilationcacheproduced attribute)": [[39, "nodriver.cdp.page.CompilationCacheProduced.data"]], "data (screencastframe attribute)": [[39, "nodriver.cdp.page.ScreencastFrame.data"]], "debugger_id (adscriptid attribute)": [[39, "nodriver.cdp.page.AdScriptId.debugger_id"]], "default_prompt (javascriptdialogopening attribute)": [[39, "nodriver.cdp.page.JavascriptDialogOpening.default_prompt"]], "delay (frameschedulednavigation attribute)": [[39, "nodriver.cdp.page.FrameScheduledNavigation.delay"]], "delete_cookie() (in module nodriver.cdp.page)": [[39, "nodriver.cdp.page.delete_cookie"]], "description (webappmanifest attribute)": [[39, "nodriver.cdp.page.WebAppManifest.description"]], "details (backforwardcachenotrestoredexplanation attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredExplanation.details"]], "device_height (screencastframemetadata attribute)": [[39, "nodriver.cdp.page.ScreencastFrameMetadata.device_height"]], "device_width (screencastframemetadata attribute)": [[39, "nodriver.cdp.page.ScreencastFrameMetadata.device_width"]], "dir_ (webappmanifest attribute)": [[39, "nodriver.cdp.page.WebAppManifest.dir_"]], "disable() (in module nodriver.cdp.page)": [[39, "nodriver.cdp.page.disable"]], "display (webappmanifest attribute)": [[39, "nodriver.cdp.page.WebAppManifest.display"]], "display_overrides (webappmanifest attribute)": [[39, "nodriver.cdp.page.WebAppManifest.display_overrides"]], "disposition (framerequestednavigation attribute)": [[39, "nodriver.cdp.page.FrameRequestedNavigation.disposition"]], "domain_and_registry (frame attribute)": [[39, "nodriver.cdp.page.Frame.domain_and_registry"]], "eager (compilationcacheparams attribute)": [[39, "nodriver.cdp.page.CompilationCacheParams.eager"]], "enable() (in module nodriver.cdp.page)": [[39, "nodriver.cdp.page.enable"]], "enctype (sharetarget attribute)": [[39, "nodriver.cdp.page.ShareTarget.enctype"]], "error_arguments (installabilityerror attribute)": [[39, "nodriver.cdp.page.InstallabilityError.error_arguments"]], "error_id (installabilityerror attribute)": [[39, "nodriver.cdp.page.InstallabilityError.error_id"]], "expiry_time (origintrialtoken attribute)": [[39, "nodriver.cdp.page.OriginTrialToken.expiry_time"]], "explanations (adframestatus attribute)": [[39, "nodriver.cdp.page.AdFrameStatus.explanations"]], "explanations (backforwardcachenotrestoredexplanationtree attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredExplanationTree.explanations"]], "failed (frameresource attribute)": [[39, "nodriver.cdp.page.FrameResource.failed"]], "fantasy (fontfamilies attribute)": [[39, "nodriver.cdp.page.FontFamilies.fantasy"]], "feature (permissionspolicyfeaturestate attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeatureState.feature"]], "file_handlers (webappmanifest attribute)": [[39, "nodriver.cdp.page.WebAppManifest.file_handlers"]], "files (sharetarget attribute)": [[39, "nodriver.cdp.page.ShareTarget.files"]], "fixed (fontfamilies attribute)": [[39, "nodriver.cdp.page.FontFamilies.fixed"]], "fixed (fontsizes attribute)": [[39, "nodriver.cdp.page.FontSizes.fixed"]], "font_families (scriptfontfamilies attribute)": [[39, "nodriver.cdp.page.ScriptFontFamilies.font_families"]], "form_factor (screenshot attribute)": [[39, "nodriver.cdp.page.Screenshot.form_factor"]], "frame (documentopened attribute)": [[39, "nodriver.cdp.page.DocumentOpened.frame"]], "frame (framenavigated attribute)": [[39, "nodriver.cdp.page.FrameNavigated.frame"]], "frame (frameresourcetree attribute)": [[39, "nodriver.cdp.page.FrameResourceTree.frame"]], "frame (frametree attribute)": [[39, "nodriver.cdp.page.FrameTree.frame"]], "frame_id (backforwardcachenotused attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotUsed.frame_id"]], "frame_id (filechooseropened attribute)": [[39, "nodriver.cdp.page.FileChooserOpened.frame_id"]], "frame_id (frameattached attribute)": [[39, "nodriver.cdp.page.FrameAttached.frame_id"]], "frame_id (frameclearedschedulednavigation attribute)": [[39, "nodriver.cdp.page.FrameClearedScheduledNavigation.frame_id"]], "frame_id (framedetached attribute)": [[39, "nodriver.cdp.page.FrameDetached.frame_id"]], "frame_id (framerequestednavigation attribute)": [[39, "nodriver.cdp.page.FrameRequestedNavigation.frame_id"]], "frame_id (frameschedulednavigation attribute)": [[39, "nodriver.cdp.page.FrameScheduledNavigation.frame_id"]], "frame_id (framestartedloading attribute)": [[39, "nodriver.cdp.page.FrameStartedLoading.frame_id"]], "frame_id (framestoppedloading attribute)": [[39, "nodriver.cdp.page.FrameStoppedLoading.frame_id"]], "frame_id (framesubtreewillbedetached attribute)": [[39, "nodriver.cdp.page.FrameSubtreeWillBeDetached.frame_id"]], "frame_id (lifecycleevent attribute)": [[39, "nodriver.cdp.page.LifecycleEvent.frame_id"]], "frame_id (navigatedwithindocument attribute)": [[39, "nodriver.cdp.page.NavigatedWithinDocument.frame_id"]], "frame_id (permissionspolicyblocklocator attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyBlockLocator.frame_id"]], "function (backforwardcacheblockingdetails attribute)": [[39, "nodriver.cdp.page.BackForwardCacheBlockingDetails.function"]], "gated_api_features (frame attribute)": [[39, "nodriver.cdp.page.Frame.gated_api_features"]], "generate_test_report() (in module nodriver.cdp.page)": [[39, "nodriver.cdp.page.generate_test_report"]], "get_ad_script_id() (in module nodriver.cdp.page)": [[39, "nodriver.cdp.page.get_ad_script_id"]], "get_app_id() (in module nodriver.cdp.page)": [[39, "nodriver.cdp.page.get_app_id"]], "get_app_manifest() (in module nodriver.cdp.page)": [[39, "nodriver.cdp.page.get_app_manifest"]], "get_frame_tree() (in module nodriver.cdp.page)": [[39, "nodriver.cdp.page.get_frame_tree"]], "get_installability_errors() (in module nodriver.cdp.page)": [[39, "nodriver.cdp.page.get_installability_errors"]], "get_layout_metrics() (in module nodriver.cdp.page)": [[39, "nodriver.cdp.page.get_layout_metrics"]], "get_manifest_icons() (in module nodriver.cdp.page)": [[39, "nodriver.cdp.page.get_manifest_icons"]], "get_navigation_history() (in module nodriver.cdp.page)": [[39, "nodriver.cdp.page.get_navigation_history"]], "get_origin_trials() (in module nodriver.cdp.page)": [[39, "nodriver.cdp.page.get_origin_trials"]], "get_permissions_policy_state() (in module nodriver.cdp.page)": [[39, "nodriver.cdp.page.get_permissions_policy_state"]], "get_resource_content() (in module nodriver.cdp.page)": [[39, "nodriver.cdp.page.get_resource_content"]], "get_resource_tree() (in module nodriver.cdp.page)": [[39, "nodriver.cdp.page.get_resource_tree"]], "handle_java_script_dialog() (in module nodriver.cdp.page)": [[39, "nodriver.cdp.page.handle_java_script_dialog"]], "has_browser_handler (javascriptdialogopening attribute)": [[39, "nodriver.cdp.page.JavascriptDialogOpening.has_browser_handler"]], "has_origin_wildcard (scopeextension attribute)": [[39, "nodriver.cdp.page.ScopeExtension.has_origin_wildcard"]], "height (viewport attribute)": [[39, "nodriver.cdp.page.Viewport.height"]], "icons (filehandler attribute)": [[39, "nodriver.cdp.page.FileHandler.icons"]], "icons (webappmanifest attribute)": [[39, "nodriver.cdp.page.WebAppManifest.icons"]], "id_ (frame attribute)": [[39, "nodriver.cdp.page.Frame.id_"]], "id_ (navigationentry attribute)": [[39, "nodriver.cdp.page.NavigationEntry.id_"]], "id_ (relatedapplication attribute)": [[39, "nodriver.cdp.page.RelatedApplication.id_"]], "id_ (webappmanifest attribute)": [[39, "nodriver.cdp.page.WebAppManifest.id_"]], "image (screenshot attribute)": [[39, "nodriver.cdp.page.Screenshot.image"]], "is_third_party (origintrialtoken attribute)": [[39, "nodriver.cdp.page.OriginTrialToken.is_third_party"]], "label (screenshot attribute)": [[39, "nodriver.cdp.page.Screenshot.label"]], "lang (webappmanifest attribute)": [[39, "nodriver.cdp.page.WebAppManifest.lang"]], "last_modified (frameresource attribute)": [[39, "nodriver.cdp.page.FrameResource.last_modified"]], "launch_handler (webappmanifest attribute)": [[39, "nodriver.cdp.page.WebAppManifest.launch_handler"]], "launch_type (filehandler attribute)": [[39, "nodriver.cdp.page.FileHandler.launch_type"]], "line (appmanifesterror attribute)": [[39, "nodriver.cdp.page.AppManifestError.line"]], "line_number (backforwardcacheblockingdetails attribute)": [[39, "nodriver.cdp.page.BackForwardCacheBlockingDetails.line_number"]], "loader_id (backforwardcachenotused attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotUsed.loader_id"]], "loader_id (frame attribute)": [[39, "nodriver.cdp.page.Frame.loader_id"]], "loader_id (lifecycleevent attribute)": [[39, "nodriver.cdp.page.LifecycleEvent.loader_id"]], "locator (permissionspolicyfeaturestate attribute)": [[39, "nodriver.cdp.page.PermissionsPolicyFeatureState.locator"]], "match_sub_domains (origintrialtoken attribute)": [[39, "nodriver.cdp.page.OriginTrialToken.match_sub_domains"]], "math (fontfamilies attribute)": [[39, "nodriver.cdp.page.FontFamilies.math"]], "message (appmanifesterror attribute)": [[39, "nodriver.cdp.page.AppManifestError.message"]], "message (javascriptdialogopening attribute)": [[39, "nodriver.cdp.page.JavascriptDialogOpening.message"]], "metadata (screencastframe attribute)": [[39, "nodriver.cdp.page.ScreencastFrame.metadata"]], "method (sharetarget attribute)": [[39, "nodriver.cdp.page.ShareTarget.method"]], "mime_type (frame attribute)": [[39, "nodriver.cdp.page.Frame.mime_type"]], "mime_type (frameresource attribute)": [[39, "nodriver.cdp.page.FrameResource.mime_type"]], "mode (filechooseropened attribute)": [[39, "nodriver.cdp.page.FileChooserOpened.mode"]], "name (filefilter attribute)": [[39, "nodriver.cdp.page.FileFilter.name"]], "name (filehandler attribute)": [[39, "nodriver.cdp.page.FileHandler.name"]], "name (frame attribute)": [[39, "nodriver.cdp.page.Frame.name"]], "name (installabilityerrorargument attribute)": [[39, "nodriver.cdp.page.InstallabilityErrorArgument.name"]], "name (lifecycleevent attribute)": [[39, "nodriver.cdp.page.LifecycleEvent.name"]], "name (shortcut attribute)": [[39, "nodriver.cdp.page.Shortcut.name"]], "name (webappmanifest attribute)": [[39, "nodriver.cdp.page.WebAppManifest.name"]], "navigate() (in module nodriver.cdp.page)": [[39, "nodriver.cdp.page.navigate"]], "navigate_to_history_entry() (in module nodriver.cdp.page)": [[39, "nodriver.cdp.page.navigate_to_history_entry"]], "navigation_type (navigatedwithindocument attribute)": [[39, "nodriver.cdp.page.NavigatedWithinDocument.navigation_type"]], "nodriver.cdp.page": [[39, "module-nodriver.cdp.page"]], "not_restored_explanations (backforwardcachenotused attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotUsed.not_restored_explanations"]], "not_restored_explanations_tree (backforwardcachenotused attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotUsed.not_restored_explanations_tree"]], "offset_top (screencastframemetadata attribute)": [[39, "nodriver.cdp.page.ScreencastFrameMetadata.offset_top"]], "offset_x (visualviewport attribute)": [[39, "nodriver.cdp.page.VisualViewport.offset_x"]], "offset_y (visualviewport attribute)": [[39, "nodriver.cdp.page.VisualViewport.offset_y"]], "orientation (webappmanifest attribute)": [[39, "nodriver.cdp.page.WebAppManifest.orientation"]], "origin (origintrialtoken attribute)": [[39, "nodriver.cdp.page.OriginTrialToken.origin"]], "origin (scopeextension attribute)": [[39, "nodriver.cdp.page.ScopeExtension.origin"]], "page_scale_factor (screencastframemetadata attribute)": [[39, "nodriver.cdp.page.ScreencastFrameMetadata.page_scale_factor"]], "page_x (layoutviewport attribute)": [[39, "nodriver.cdp.page.LayoutViewport.page_x"]], "page_x (visualviewport attribute)": [[39, "nodriver.cdp.page.VisualViewport.page_x"]], "page_y (layoutviewport attribute)": [[39, "nodriver.cdp.page.LayoutViewport.page_y"]], "page_y (visualviewport attribute)": [[39, "nodriver.cdp.page.VisualViewport.page_y"]], "parent_frame_id (frameattached attribute)": [[39, "nodriver.cdp.page.FrameAttached.parent_frame_id"]], "parent_id (frame attribute)": [[39, "nodriver.cdp.page.Frame.parent_id"]], "parsed_token (origintrialtokenwithstatus attribute)": [[39, "nodriver.cdp.page.OriginTrialTokenWithStatus.parsed_token"]], "prefer_related_applications (webappmanifest attribute)": [[39, "nodriver.cdp.page.WebAppManifest.prefer_related_applications"]], "print_to_pdf() (in module nodriver.cdp.page)": [[39, "nodriver.cdp.page.print_to_pdf"]], "produce_compilation_cache() (in module nodriver.cdp.page)": [[39, "nodriver.cdp.page.produce_compilation_cache"]], "protocol (protocolhandler attribute)": [[39, "nodriver.cdp.page.ProtocolHandler.protocol"]], "protocol_handlers (webappmanifest attribute)": [[39, "nodriver.cdp.page.WebAppManifest.protocol_handlers"]], "raw_token_text (origintrialtokenwithstatus attribute)": [[39, "nodriver.cdp.page.OriginTrialTokenWithStatus.raw_token_text"]], "reason (backforwardcachenotrestoredexplanation attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredExplanation.reason"]], "reason (framedetached attribute)": [[39, "nodriver.cdp.page.FrameDetached.reason"]], "reason (framerequestednavigation attribute)": [[39, "nodriver.cdp.page.FrameRequestedNavigation.reason"]], "reason (frameschedulednavigation attribute)": [[39, "nodriver.cdp.page.FrameScheduledNavigation.reason"]], "related_applications (webappmanifest attribute)": [[39, "nodriver.cdp.page.WebAppManifest.related_applications"]], "reload() (in module nodriver.cdp.page)": [[39, "nodriver.cdp.page.reload"]], "remove_script_to_evaluate_on_load() (in module nodriver.cdp.page)": [[39, "nodriver.cdp.page.remove_script_to_evaluate_on_load"]], "remove_script_to_evaluate_on_new_document() (in module nodriver.cdp.page)": [[39, "nodriver.cdp.page.remove_script_to_evaluate_on_new_document"]], "reset_navigation_history() (in module nodriver.cdp.page)": [[39, "nodriver.cdp.page.reset_navigation_history"]], "resources (frameresourcetree attribute)": [[39, "nodriver.cdp.page.FrameResourceTree.resources"]], "result (javascriptdialogclosed attribute)": [[39, "nodriver.cdp.page.JavascriptDialogClosed.result"]], "sans_serif (fontfamilies attribute)": [[39, "nodriver.cdp.page.FontFamilies.sans_serif"]], "scale (viewport attribute)": [[39, "nodriver.cdp.page.Viewport.scale"]], "scale (visualviewport attribute)": [[39, "nodriver.cdp.page.VisualViewport.scale"]], "scope (appmanifestparsedproperties attribute)": [[39, "nodriver.cdp.page.AppManifestParsedProperties.scope"]], "scope (webappmanifest attribute)": [[39, "nodriver.cdp.page.WebAppManifest.scope"]], "scope_extensions (webappmanifest attribute)": [[39, "nodriver.cdp.page.WebAppManifest.scope_extensions"]], "screencast_frame_ack() (in module nodriver.cdp.page)": [[39, "nodriver.cdp.page.screencast_frame_ack"]], "screenshots (webappmanifest attribute)": [[39, "nodriver.cdp.page.WebAppManifest.screenshots"]], "script (scriptfontfamilies attribute)": [[39, "nodriver.cdp.page.ScriptFontFamilies.script"]], "script_id (adscriptid attribute)": [[39, "nodriver.cdp.page.AdScriptId.script_id"]], "scroll_offset_x (screencastframemetadata attribute)": [[39, "nodriver.cdp.page.ScreencastFrameMetadata.scroll_offset_x"]], "scroll_offset_y (screencastframemetadata attribute)": [[39, "nodriver.cdp.page.ScreencastFrameMetadata.scroll_offset_y"]], "search_in_resource() (in module nodriver.cdp.page)": [[39, "nodriver.cdp.page.search_in_resource"]], "secure_context_type (frame attribute)": [[39, "nodriver.cdp.page.Frame.secure_context_type"]], "security_origin (frame attribute)": [[39, "nodriver.cdp.page.Frame.security_origin"]], "serif (fontfamilies attribute)": [[39, "nodriver.cdp.page.FontFamilies.serif"]], "session_id (screencastframe attribute)": [[39, "nodriver.cdp.page.ScreencastFrame.session_id"]], "set_ad_blocking_enabled() (in module nodriver.cdp.page)": [[39, "nodriver.cdp.page.set_ad_blocking_enabled"]], "set_bypass_csp() (in module nodriver.cdp.page)": [[39, "nodriver.cdp.page.set_bypass_csp"]], "set_device_metrics_override() (in module nodriver.cdp.page)": [[39, "nodriver.cdp.page.set_device_metrics_override"]], "set_device_orientation_override() (in module nodriver.cdp.page)": [[39, "nodriver.cdp.page.set_device_orientation_override"]], "set_document_content() (in module nodriver.cdp.page)": [[39, "nodriver.cdp.page.set_document_content"]], "set_download_behavior() (in module nodriver.cdp.page)": [[39, "nodriver.cdp.page.set_download_behavior"]], "set_font_families() (in module nodriver.cdp.page)": [[39, "nodriver.cdp.page.set_font_families"]], "set_font_sizes() (in module nodriver.cdp.page)": [[39, "nodriver.cdp.page.set_font_sizes"]], "set_geolocation_override() (in module nodriver.cdp.page)": [[39, "nodriver.cdp.page.set_geolocation_override"]], "set_intercept_file_chooser_dialog() (in module nodriver.cdp.page)": [[39, "nodriver.cdp.page.set_intercept_file_chooser_dialog"]], "set_lifecycle_events_enabled() (in module nodriver.cdp.page)": [[39, "nodriver.cdp.page.set_lifecycle_events_enabled"]], "set_prerendering_allowed() (in module nodriver.cdp.page)": [[39, "nodriver.cdp.page.set_prerendering_allowed"]], "set_rph_registration_mode() (in module nodriver.cdp.page)": [[39, "nodriver.cdp.page.set_rph_registration_mode"]], "set_spc_transaction_mode() (in module nodriver.cdp.page)": [[39, "nodriver.cdp.page.set_spc_transaction_mode"]], "set_touch_emulation_enabled() (in module nodriver.cdp.page)": [[39, "nodriver.cdp.page.set_touch_emulation_enabled"]], "set_web_lifecycle_state() (in module nodriver.cdp.page)": [[39, "nodriver.cdp.page.set_web_lifecycle_state"]], "share_target (webappmanifest attribute)": [[39, "nodriver.cdp.page.WebAppManifest.share_target"]], "short_name (webappmanifest attribute)": [[39, "nodriver.cdp.page.WebAppManifest.short_name"]], "shortcuts (webappmanifest attribute)": [[39, "nodriver.cdp.page.WebAppManifest.shortcuts"]], "sizes (imageresource attribute)": [[39, "nodriver.cdp.page.ImageResource.sizes"]], "stack (frameattached attribute)": [[39, "nodriver.cdp.page.FrameAttached.stack"]], "standard (fontfamilies attribute)": [[39, "nodriver.cdp.page.FontFamilies.standard"]], "standard (fontsizes attribute)": [[39, "nodriver.cdp.page.FontSizes.standard"]], "start_screencast() (in module nodriver.cdp.page)": [[39, "nodriver.cdp.page.start_screencast"]], "start_url (webappmanifest attribute)": [[39, "nodriver.cdp.page.WebAppManifest.start_url"]], "status (origintrial attribute)": [[39, "nodriver.cdp.page.OriginTrial.status"]], "status (origintrialtokenwithstatus attribute)": [[39, "nodriver.cdp.page.OriginTrialTokenWithStatus.status"]], "stop_loading() (in module nodriver.cdp.page)": [[39, "nodriver.cdp.page.stop_loading"]], "stop_screencast() (in module nodriver.cdp.page)": [[39, "nodriver.cdp.page.stop_screencast"]], "text (sharetarget attribute)": [[39, "nodriver.cdp.page.ShareTarget.text"]], "theme_color (webappmanifest attribute)": [[39, "nodriver.cdp.page.WebAppManifest.theme_color"]], "timestamp (domcontenteventfired attribute)": [[39, "nodriver.cdp.page.DomContentEventFired.timestamp"]], "timestamp (lifecycleevent attribute)": [[39, "nodriver.cdp.page.LifecycleEvent.timestamp"]], "timestamp (loadeventfired attribute)": [[39, "nodriver.cdp.page.LoadEventFired.timestamp"]], "timestamp (screencastframemetadata attribute)": [[39, "nodriver.cdp.page.ScreencastFrameMetadata.timestamp"]], "title (navigationentry attribute)": [[39, "nodriver.cdp.page.NavigationEntry.title"]], "title (sharetarget attribute)": [[39, "nodriver.cdp.page.ShareTarget.title"]], "tokens_with_status (origintrial attribute)": [[39, "nodriver.cdp.page.OriginTrial.tokens_with_status"]], "transition_type (navigationentry attribute)": [[39, "nodriver.cdp.page.NavigationEntry.transition_type"]], "trial_name (origintrial attribute)": [[39, "nodriver.cdp.page.OriginTrial.trial_name"]], "trial_name (origintrialtoken attribute)": [[39, "nodriver.cdp.page.OriginTrialToken.trial_name"]], "type_ (backforwardcachenotrestoredexplanation attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredExplanation.type_"]], "type_ (framenavigated attribute)": [[39, "nodriver.cdp.page.FrameNavigated.type_"]], "type_ (frameresource attribute)": [[39, "nodriver.cdp.page.FrameResource.type_"]], "type_ (imageresource attribute)": [[39, "nodriver.cdp.page.ImageResource.type_"]], "type_ (javascriptdialogopening attribute)": [[39, "nodriver.cdp.page.JavascriptDialogOpening.type_"]], "unreachable_url (frame attribute)": [[39, "nodriver.cdp.page.Frame.unreachable_url"]], "url (backforwardcacheblockingdetails attribute)": [[39, "nodriver.cdp.page.BackForwardCacheBlockingDetails.url"]], "url (backforwardcachenotrestoredexplanationtree attribute)": [[39, "nodriver.cdp.page.BackForwardCacheNotRestoredExplanationTree.url"]], "url (compilationcacheparams attribute)": [[39, "nodriver.cdp.page.CompilationCacheParams.url"]], "url (compilationcacheproduced attribute)": [[39, "nodriver.cdp.page.CompilationCacheProduced.url"]], "url (frame attribute)": [[39, "nodriver.cdp.page.Frame.url"]], "url (framerequestednavigation attribute)": [[39, "nodriver.cdp.page.FrameRequestedNavigation.url"]], "url (frameresource attribute)": [[39, "nodriver.cdp.page.FrameResource.url"]], "url (frameschedulednavigation attribute)": [[39, "nodriver.cdp.page.FrameScheduledNavigation.url"]], "url (imageresource attribute)": [[39, "nodriver.cdp.page.ImageResource.url"]], "url (javascriptdialogopening attribute)": [[39, "nodriver.cdp.page.JavascriptDialogOpening.url"]], "url (navigatedwithindocument attribute)": [[39, "nodriver.cdp.page.NavigatedWithinDocument.url"]], "url (navigationentry attribute)": [[39, "nodriver.cdp.page.NavigationEntry.url"]], "url (protocolhandler attribute)": [[39, "nodriver.cdp.page.ProtocolHandler.url"]], "url (relatedapplication attribute)": [[39, "nodriver.cdp.page.RelatedApplication.url"]], "url (sharetarget attribute)": [[39, "nodriver.cdp.page.ShareTarget.url"]], "url (shortcut attribute)": [[39, "nodriver.cdp.page.Shortcut.url"]], "url (windowopen attribute)": [[39, "nodriver.cdp.page.WindowOpen.url"]], "url_fragment (frame attribute)": [[39, "nodriver.cdp.page.Frame.url_fragment"]], "usage_restriction (origintrialtoken attribute)": [[39, "nodriver.cdp.page.OriginTrialToken.usage_restriction"]], "user_gesture (windowopen attribute)": [[39, "nodriver.cdp.page.WindowOpen.user_gesture"]], "user_input (javascriptdialogclosed attribute)": [[39, "nodriver.cdp.page.JavascriptDialogClosed.user_input"]], "user_typed_url (navigationentry attribute)": [[39, "nodriver.cdp.page.NavigationEntry.user_typed_url"]], "value (installabilityerrorargument attribute)": [[39, "nodriver.cdp.page.InstallabilityErrorArgument.value"]], "visible (screencastvisibilitychanged attribute)": [[39, "nodriver.cdp.page.ScreencastVisibilityChanged.visible"]], "wait_for_debugger() (in module nodriver.cdp.page)": [[39, "nodriver.cdp.page.wait_for_debugger"]], "width (viewport attribute)": [[39, "nodriver.cdp.page.Viewport.width"]], "window_features (windowopen attribute)": [[39, "nodriver.cdp.page.WindowOpen.window_features"]], "window_name (windowopen attribute)": [[39, "nodriver.cdp.page.WindowOpen.window_name"]], "x (viewport attribute)": [[39, "nodriver.cdp.page.Viewport.x"]], "y (viewport attribute)": [[39, "nodriver.cdp.page.Viewport.y"]], "zoom (visualviewport attribute)": [[39, "nodriver.cdp.page.VisualViewport.zoom"]], "metric (class in nodriver.cdp.performance)": [[40, "nodriver.cdp.performance.Metric"]], "metrics (class in nodriver.cdp.performance)": [[40, "nodriver.cdp.performance.Metrics"]], "disable() (in module nodriver.cdp.performance)": [[40, "nodriver.cdp.performance.disable"]], "enable() (in module nodriver.cdp.performance)": [[40, "nodriver.cdp.performance.enable"]], "get_metrics() (in module nodriver.cdp.performance)": [[40, "nodriver.cdp.performance.get_metrics"]], "metrics (metrics attribute)": [[40, "nodriver.cdp.performance.Metrics.metrics"]], "name (metric attribute)": [[40, "nodriver.cdp.performance.Metric.name"]], "nodriver.cdp.performance": [[40, "module-nodriver.cdp.performance"]], "set_time_domain() (in module nodriver.cdp.performance)": [[40, "nodriver.cdp.performance.set_time_domain"]], "title (metrics attribute)": [[40, "nodriver.cdp.performance.Metrics.title"]], "value (metric attribute)": [[40, "nodriver.cdp.performance.Metric.value"]], "largestcontentfulpaint (class in nodriver.cdp.performance_timeline)": [[41, "nodriver.cdp.performance_timeline.LargestContentfulPaint"]], "layoutshift (class in nodriver.cdp.performance_timeline)": [[41, "nodriver.cdp.performance_timeline.LayoutShift"]], "layoutshiftattribution (class in nodriver.cdp.performance_timeline)": [[41, "nodriver.cdp.performance_timeline.LayoutShiftAttribution"]], "timelineevent (class in nodriver.cdp.performance_timeline)": [[41, "nodriver.cdp.performance_timeline.TimelineEvent"]], "timelineeventadded (class in nodriver.cdp.performance_timeline)": [[41, "nodriver.cdp.performance_timeline.TimelineEventAdded"]], "current_rect (layoutshiftattribution attribute)": [[41, "nodriver.cdp.performance_timeline.LayoutShiftAttribution.current_rect"]], "duration (timelineevent attribute)": [[41, "nodriver.cdp.performance_timeline.TimelineEvent.duration"]], "element_id (largestcontentfulpaint attribute)": [[41, "nodriver.cdp.performance_timeline.LargestContentfulPaint.element_id"]], "enable() (in module nodriver.cdp.performance_timeline)": [[41, "nodriver.cdp.performance_timeline.enable"]], "event (timelineeventadded attribute)": [[41, "nodriver.cdp.performance_timeline.TimelineEventAdded.event"]], "frame_id (timelineevent attribute)": [[41, "nodriver.cdp.performance_timeline.TimelineEvent.frame_id"]], "had_recent_input (layoutshift attribute)": [[41, "nodriver.cdp.performance_timeline.LayoutShift.had_recent_input"]], "last_input_time (layoutshift attribute)": [[41, "nodriver.cdp.performance_timeline.LayoutShift.last_input_time"]], "layout_shift_details (timelineevent attribute)": [[41, "nodriver.cdp.performance_timeline.TimelineEvent.layout_shift_details"]], "lcp_details (timelineevent attribute)": [[41, "nodriver.cdp.performance_timeline.TimelineEvent.lcp_details"]], "load_time (largestcontentfulpaint attribute)": [[41, "nodriver.cdp.performance_timeline.LargestContentfulPaint.load_time"]], "name (timelineevent attribute)": [[41, "nodriver.cdp.performance_timeline.TimelineEvent.name"]], "node_id (largestcontentfulpaint attribute)": [[41, "nodriver.cdp.performance_timeline.LargestContentfulPaint.node_id"]], "node_id (layoutshiftattribution attribute)": [[41, "nodriver.cdp.performance_timeline.LayoutShiftAttribution.node_id"]], "nodriver.cdp.performance_timeline": [[41, "module-nodriver.cdp.performance_timeline"]], "previous_rect (layoutshiftattribution attribute)": [[41, "nodriver.cdp.performance_timeline.LayoutShiftAttribution.previous_rect"]], "render_time (largestcontentfulpaint attribute)": [[41, "nodriver.cdp.performance_timeline.LargestContentfulPaint.render_time"]], "size (largestcontentfulpaint attribute)": [[41, "nodriver.cdp.performance_timeline.LargestContentfulPaint.size"]], "sources (layoutshift attribute)": [[41, "nodriver.cdp.performance_timeline.LayoutShift.sources"]], "time (timelineevent attribute)": [[41, "nodriver.cdp.performance_timeline.TimelineEvent.time"]], "type_ (timelineevent attribute)": [[41, "nodriver.cdp.performance_timeline.TimelineEvent.type_"]], "url (largestcontentfulpaint attribute)": [[41, "nodriver.cdp.performance_timeline.LargestContentfulPaint.url"]], "value (layoutshift attribute)": [[41, "nodriver.cdp.performance_timeline.LayoutShift.value"]], "activated (prerenderfinalstatus attribute)": [[42, "nodriver.cdp.preload.PrerenderFinalStatus.ACTIVATED"]], "activated_before_started (prerenderfinalstatus attribute)": [[42, "nodriver.cdp.preload.PrerenderFinalStatus.ACTIVATED_BEFORE_STARTED"]], "activated_during_main_frame_navigation (prerenderfinalstatus attribute)": [[42, "nodriver.cdp.preload.PrerenderFinalStatus.ACTIVATED_DURING_MAIN_FRAME_NAVIGATION"]], "activated_in_background (prerenderfinalstatus attribute)": [[42, "nodriver.cdp.preload.PrerenderFinalStatus.ACTIVATED_IN_BACKGROUND"]], "activated_with_auxiliary_browsing_contexts (prerenderfinalstatus attribute)": [[42, "nodriver.cdp.preload.PrerenderFinalStatus.ACTIVATED_WITH_AUXILIARY_BROWSING_CONTEXTS"]], "activation_frame_policy_not_compatible (prerenderfinalstatus attribute)": [[42, "nodriver.cdp.preload.PrerenderFinalStatus.ACTIVATION_FRAME_POLICY_NOT_COMPATIBLE"]], "activation_navigation_destroyed_before_success (prerenderfinalstatus attribute)": [[42, "nodriver.cdp.preload.PrerenderFinalStatus.ACTIVATION_NAVIGATION_DESTROYED_BEFORE_SUCCESS"]], "activation_navigation_parameter_mismatch (prerenderfinalstatus attribute)": [[42, "nodriver.cdp.preload.PrerenderFinalStatus.ACTIVATION_NAVIGATION_PARAMETER_MISMATCH"]], "activation_url_has_effective_url (prerenderfinalstatus attribute)": [[42, "nodriver.cdp.preload.PrerenderFinalStatus.ACTIVATION_URL_HAS_EFFECTIVE_URL"]], "all_prerendering_canceled (prerenderfinalstatus attribute)": [[42, "nodriver.cdp.preload.PrerenderFinalStatus.ALL_PRERENDERING_CANCELED"]], "audio_output_device_requested (prerenderfinalstatus attribute)": [[42, "nodriver.cdp.preload.PrerenderFinalStatus.AUDIO_OUTPUT_DEVICE_REQUESTED"]], "battery_saver_enabled (prerenderfinalstatus attribute)": [[42, "nodriver.cdp.preload.PrerenderFinalStatus.BATTERY_SAVER_ENABLED"]], "blank (speculationtargethint attribute)": [[42, "nodriver.cdp.preload.SpeculationTargetHint.BLANK"]], "blocked_by_client (prerenderfinalstatus attribute)": [[42, "nodriver.cdp.preload.PrerenderFinalStatus.BLOCKED_BY_CLIENT"]], "cancel_all_hosts_for_testing (prerenderfinalstatus attribute)": [[42, "nodriver.cdp.preload.PrerenderFinalStatus.CANCEL_ALL_HOSTS_FOR_TESTING"]], "client_cert_requested (prerenderfinalstatus attribute)": [[42, "nodriver.cdp.preload.PrerenderFinalStatus.CLIENT_CERT_REQUESTED"]], "cross_site_navigation_in_initial_navigation (prerenderfinalstatus attribute)": [[42, "nodriver.cdp.preload.PrerenderFinalStatus.CROSS_SITE_NAVIGATION_IN_INITIAL_NAVIGATION"]], "cross_site_navigation_in_main_frame_navigation (prerenderfinalstatus attribute)": [[42, "nodriver.cdp.preload.PrerenderFinalStatus.CROSS_SITE_NAVIGATION_IN_MAIN_FRAME_NAVIGATION"]], "cross_site_redirect_in_initial_navigation (prerenderfinalstatus attribute)": [[42, "nodriver.cdp.preload.PrerenderFinalStatus.CROSS_SITE_REDIRECT_IN_INITIAL_NAVIGATION"]], "cross_site_redirect_in_main_frame_navigation (prerenderfinalstatus attribute)": [[42, "nodriver.cdp.preload.PrerenderFinalStatus.CROSS_SITE_REDIRECT_IN_MAIN_FRAME_NAVIGATION"]], "data_saver_enabled (prerenderfinalstatus attribute)": [[42, "nodriver.cdp.preload.PrerenderFinalStatus.DATA_SAVER_ENABLED"]], "destroyed (prerenderfinalstatus attribute)": [[42, "nodriver.cdp.preload.PrerenderFinalStatus.DESTROYED"]], "did_fail_load (prerenderfinalstatus attribute)": [[42, "nodriver.cdp.preload.PrerenderFinalStatus.DID_FAIL_LOAD"]], "download (prerenderfinalstatus attribute)": [[42, "nodriver.cdp.preload.PrerenderFinalStatus.DOWNLOAD"]], "embedder_host_disallowed (prerenderfinalstatus attribute)": [[42, "nodriver.cdp.preload.PrerenderFinalStatus.EMBEDDER_HOST_DISALLOWED"]], "failure (preloadingstatus attribute)": [[42, "nodriver.cdp.preload.PreloadingStatus.FAILURE"]], "inactive_page_restriction (prerenderfinalstatus attribute)": [[42, "nodriver.cdp.preload.PrerenderFinalStatus.INACTIVE_PAGE_RESTRICTION"]], "invalid_rules_skipped (ruleseterrortype attribute)": [[42, "nodriver.cdp.preload.RuleSetErrorType.INVALID_RULES_SKIPPED"]], "invalid_scheme_navigation (prerenderfinalstatus attribute)": [[42, "nodriver.cdp.preload.PrerenderFinalStatus.INVALID_SCHEME_NAVIGATION"]], "invalid_scheme_redirect (prerenderfinalstatus attribute)": [[42, "nodriver.cdp.preload.PrerenderFinalStatus.INVALID_SCHEME_REDIRECT"]], "java_script_interface_added (prerenderfinalstatus attribute)": [[42, "nodriver.cdp.preload.PrerenderFinalStatus.JAVA_SCRIPT_INTERFACE_ADDED"]], "java_script_interface_removed (prerenderfinalstatus attribute)": [[42, "nodriver.cdp.preload.PrerenderFinalStatus.JAVA_SCRIPT_INTERFACE_REMOVED"]], "login_auth_requested (prerenderfinalstatus attribute)": [[42, "nodriver.cdp.preload.PrerenderFinalStatus.LOGIN_AUTH_REQUESTED"]], "low_end_device (prerenderfinalstatus attribute)": [[42, "nodriver.cdp.preload.PrerenderFinalStatus.LOW_END_DEVICE"]], "main_frame_navigation (prerenderfinalstatus attribute)": [[42, "nodriver.cdp.preload.PrerenderFinalStatus.MAIN_FRAME_NAVIGATION"]], "max_num_of_running_eager_prerenders_exceeded (prerenderfinalstatus attribute)": [[42, "nodriver.cdp.preload.PrerenderFinalStatus.MAX_NUM_OF_RUNNING_EAGER_PRERENDERS_EXCEEDED"]], "max_num_of_running_embedder_prerenders_exceeded (prerenderfinalstatus attribute)": [[42, "nodriver.cdp.preload.PrerenderFinalStatus.MAX_NUM_OF_RUNNING_EMBEDDER_PRERENDERS_EXCEEDED"]], "max_num_of_running_non_eager_prerenders_exceeded (prerenderfinalstatus attribute)": [[42, "nodriver.cdp.preload.PrerenderFinalStatus.MAX_NUM_OF_RUNNING_NON_EAGER_PRERENDERS_EXCEEDED"]], "memory_limit_exceeded (prerenderfinalstatus attribute)": [[42, "nodriver.cdp.preload.PrerenderFinalStatus.MEMORY_LIMIT_EXCEEDED"]], "memory_pressure_after_triggered (prerenderfinalstatus attribute)": [[42, "nodriver.cdp.preload.PrerenderFinalStatus.MEMORY_PRESSURE_AFTER_TRIGGERED"]], "memory_pressure_on_trigger (prerenderfinalstatus attribute)": [[42, "nodriver.cdp.preload.PrerenderFinalStatus.MEMORY_PRESSURE_ON_TRIGGER"]], "mixed_content (prerenderfinalstatus attribute)": [[42, "nodriver.cdp.preload.PrerenderFinalStatus.MIXED_CONTENT"]], "mojo_binder_policy (prerenderfinalstatus attribute)": [[42, "nodriver.cdp.preload.PrerenderFinalStatus.MOJO_BINDER_POLICY"]], "navigation_bad_http_status (prerenderfinalstatus attribute)": [[42, "nodriver.cdp.preload.PrerenderFinalStatus.NAVIGATION_BAD_HTTP_STATUS"]], "navigation_not_committed (prerenderfinalstatus attribute)": [[42, "nodriver.cdp.preload.PrerenderFinalStatus.NAVIGATION_NOT_COMMITTED"]], "navigation_request_blocked_by_csp (prerenderfinalstatus attribute)": [[42, "nodriver.cdp.preload.PrerenderFinalStatus.NAVIGATION_REQUEST_BLOCKED_BY_CSP"]], "navigation_request_network_error (prerenderfinalstatus attribute)": [[42, "nodriver.cdp.preload.PrerenderFinalStatus.NAVIGATION_REQUEST_NETWORK_ERROR"]], "not_supported (preloadingstatus attribute)": [[42, "nodriver.cdp.preload.PreloadingStatus.NOT_SUPPORTED"]], "other_prerendered_page_activated (prerenderfinalstatus attribute)": [[42, "nodriver.cdp.preload.PrerenderFinalStatus.OTHER_PRERENDERED_PAGE_ACTIVATED"]], "pending (preloadingstatus attribute)": [[42, "nodriver.cdp.preload.PreloadingStatus.PENDING"]], "prefetch (speculationaction attribute)": [[42, "nodriver.cdp.preload.SpeculationAction.PREFETCH"]], "prefetch_allowed (prefetchstatus attribute)": [[42, "nodriver.cdp.preload.PrefetchStatus.PREFETCH_ALLOWED"]], "prefetch_evicted_after_candidate_removed (prefetchstatus attribute)": [[42, "nodriver.cdp.preload.PrefetchStatus.PREFETCH_EVICTED_AFTER_CANDIDATE_REMOVED"]], "prefetch_evicted_for_newer_prefetch (prefetchstatus attribute)": [[42, "nodriver.cdp.preload.PrefetchStatus.PREFETCH_EVICTED_FOR_NEWER_PREFETCH"]], "prefetch_failed_ineligible_redirect (prefetchstatus attribute)": [[42, "nodriver.cdp.preload.PrefetchStatus.PREFETCH_FAILED_INELIGIBLE_REDIRECT"]], "prefetch_failed_invalid_redirect (prefetchstatus attribute)": [[42, "nodriver.cdp.preload.PrefetchStatus.PREFETCH_FAILED_INVALID_REDIRECT"]], "prefetch_failed_mime_not_supported (prefetchstatus attribute)": [[42, "nodriver.cdp.preload.PrefetchStatus.PREFETCH_FAILED_MIME_NOT_SUPPORTED"]], "prefetch_failed_net_error (prefetchstatus attribute)": [[42, "nodriver.cdp.preload.PrefetchStatus.PREFETCH_FAILED_NET_ERROR"]], "prefetch_failed_non2_xx (prefetchstatus attribute)": [[42, "nodriver.cdp.preload.PrefetchStatus.PREFETCH_FAILED_NON2_XX"]], "prefetch_heldback (prefetchstatus attribute)": [[42, "nodriver.cdp.preload.PrefetchStatus.PREFETCH_HELDBACK"]], "prefetch_ineligible_retry_after (prefetchstatus attribute)": [[42, "nodriver.cdp.preload.PrefetchStatus.PREFETCH_INELIGIBLE_RETRY_AFTER"]], "prefetch_is_privacy_decoy (prefetchstatus attribute)": [[42, "nodriver.cdp.preload.PrefetchStatus.PREFETCH_IS_PRIVACY_DECOY"]], "prefetch_is_stale (prefetchstatus attribute)": [[42, "nodriver.cdp.preload.PrefetchStatus.PREFETCH_IS_STALE"]], "prefetch_not_eligible_battery_saver_enabled (prefetchstatus attribute)": [[42, "nodriver.cdp.preload.PrefetchStatus.PREFETCH_NOT_ELIGIBLE_BATTERY_SAVER_ENABLED"]], "prefetch_not_eligible_browser_context_off_the_record (prefetchstatus attribute)": [[42, "nodriver.cdp.preload.PrefetchStatus.PREFETCH_NOT_ELIGIBLE_BROWSER_CONTEXT_OFF_THE_RECORD"]], "prefetch_not_eligible_data_saver_enabled (prefetchstatus attribute)": [[42, "nodriver.cdp.preload.PrefetchStatus.PREFETCH_NOT_ELIGIBLE_DATA_SAVER_ENABLED"]], "prefetch_not_eligible_existing_proxy (prefetchstatus attribute)": [[42, "nodriver.cdp.preload.PrefetchStatus.PREFETCH_NOT_ELIGIBLE_EXISTING_PROXY"]], "prefetch_not_eligible_host_is_non_unique (prefetchstatus attribute)": [[42, "nodriver.cdp.preload.PrefetchStatus.PREFETCH_NOT_ELIGIBLE_HOST_IS_NON_UNIQUE"]], "prefetch_not_eligible_non_default_storage_partition (prefetchstatus attribute)": [[42, "nodriver.cdp.preload.PrefetchStatus.PREFETCH_NOT_ELIGIBLE_NON_DEFAULT_STORAGE_PARTITION"]], "prefetch_not_eligible_preloading_disabled (prefetchstatus attribute)": [[42, "nodriver.cdp.preload.PrefetchStatus.PREFETCH_NOT_ELIGIBLE_PRELOADING_DISABLED"]], "prefetch_not_eligible_same_site_cross_origin_prefetch_required_proxy (prefetchstatus attribute)": [[42, "nodriver.cdp.preload.PrefetchStatus.PREFETCH_NOT_ELIGIBLE_SAME_SITE_CROSS_ORIGIN_PREFETCH_REQUIRED_PROXY"]], "prefetch_not_eligible_scheme_is_not_https (prefetchstatus attribute)": [[42, "nodriver.cdp.preload.PrefetchStatus.PREFETCH_NOT_ELIGIBLE_SCHEME_IS_NOT_HTTPS"]], "prefetch_not_eligible_user_has_cookies (prefetchstatus attribute)": [[42, "nodriver.cdp.preload.PrefetchStatus.PREFETCH_NOT_ELIGIBLE_USER_HAS_COOKIES"]], "prefetch_not_eligible_user_has_service_worker (prefetchstatus attribute)": [[42, "nodriver.cdp.preload.PrefetchStatus.PREFETCH_NOT_ELIGIBLE_USER_HAS_SERVICE_WORKER"]], "prefetch_not_finished_in_time (prefetchstatus attribute)": [[42, "nodriver.cdp.preload.PrefetchStatus.PREFETCH_NOT_FINISHED_IN_TIME"]], "prefetch_not_started (prefetchstatus attribute)": [[42, "nodriver.cdp.preload.PrefetchStatus.PREFETCH_NOT_STARTED"]], "prefetch_not_used_cookies_changed (prefetchstatus attribute)": [[42, "nodriver.cdp.preload.PrefetchStatus.PREFETCH_NOT_USED_COOKIES_CHANGED"]], "prefetch_not_used_probe_failed (prefetchstatus attribute)": [[42, "nodriver.cdp.preload.PrefetchStatus.PREFETCH_NOT_USED_PROBE_FAILED"]], "prefetch_proxy_not_available (prefetchstatus attribute)": [[42, "nodriver.cdp.preload.PrefetchStatus.PREFETCH_PROXY_NOT_AVAILABLE"]], "prefetch_response_used (prefetchstatus attribute)": [[42, "nodriver.cdp.preload.PrefetchStatus.PREFETCH_RESPONSE_USED"]], "prefetch_successful_but_not_used (prefetchstatus attribute)": [[42, "nodriver.cdp.preload.PrefetchStatus.PREFETCH_SUCCESSFUL_BUT_NOT_USED"]], "preloading_disabled (prerenderfinalstatus attribute)": [[42, "nodriver.cdp.preload.PrerenderFinalStatus.PRELOADING_DISABLED"]], "preloading_unsupported_by_web_contents (prerenderfinalstatus attribute)": [[42, "nodriver.cdp.preload.PrerenderFinalStatus.PRELOADING_UNSUPPORTED_BY_WEB_CONTENTS"]], "prerender (speculationaction attribute)": [[42, "nodriver.cdp.preload.SpeculationAction.PRERENDER"]], "prerendering_disabled_by_dev_tools (prerenderfinalstatus attribute)": [[42, "nodriver.cdp.preload.PrerenderFinalStatus.PRERENDERING_DISABLED_BY_DEV_TOOLS"]], "prerendering_url_has_effective_url (prerenderfinalstatus attribute)": [[42, "nodriver.cdp.preload.PrerenderFinalStatus.PRERENDERING_URL_HAS_EFFECTIVE_URL"]], "prerender_failed_during_prefetch (prerenderfinalstatus attribute)": [[42, "nodriver.cdp.preload.PrerenderFinalStatus.PRERENDER_FAILED_DURING_PREFETCH"]], "primary_main_frame_renderer_process_crashed (prerenderfinalstatus attribute)": [[42, "nodriver.cdp.preload.PrerenderFinalStatus.PRIMARY_MAIN_FRAME_RENDERER_PROCESS_CRASHED"]], "primary_main_frame_renderer_process_killed (prerenderfinalstatus attribute)": [[42, "nodriver.cdp.preload.PrerenderFinalStatus.PRIMARY_MAIN_FRAME_RENDERER_PROCESS_KILLED"]], "prefetchstatus (class in nodriver.cdp.preload)": [[42, "nodriver.cdp.preload.PrefetchStatus"]], "prefetchstatusupdated (class in nodriver.cdp.preload)": [[42, "nodriver.cdp.preload.PrefetchStatusUpdated"]], "preloadenabledstateupdated (class in nodriver.cdp.preload)": [[42, "nodriver.cdp.preload.PreloadEnabledStateUpdated"]], "preloadingattemptkey (class in nodriver.cdp.preload)": [[42, "nodriver.cdp.preload.PreloadingAttemptKey"]], "preloadingattemptsource (class in nodriver.cdp.preload)": [[42, "nodriver.cdp.preload.PreloadingAttemptSource"]], "preloadingattemptsourcesupdated (class in nodriver.cdp.preload)": [[42, "nodriver.cdp.preload.PreloadingAttemptSourcesUpdated"]], "preloadingstatus (class in nodriver.cdp.preload)": [[42, "nodriver.cdp.preload.PreloadingStatus"]], "prerenderfinalstatus (class in nodriver.cdp.preload)": [[42, "nodriver.cdp.preload.PrerenderFinalStatus"]], "prerendermismatchedheaders (class in nodriver.cdp.preload)": [[42, "nodriver.cdp.preload.PrerenderMismatchedHeaders"]], "prerenderstatusupdated (class in nodriver.cdp.preload)": [[42, "nodriver.cdp.preload.PrerenderStatusUpdated"]], "ready (preloadingstatus attribute)": [[42, "nodriver.cdp.preload.PreloadingStatus.READY"]], "redirected_prerendering_url_has_effective_url (prerenderfinalstatus attribute)": [[42, "nodriver.cdp.preload.PrerenderFinalStatus.REDIRECTED_PRERENDERING_URL_HAS_EFFECTIVE_URL"]], "renderer_process_crashed (prerenderfinalstatus attribute)": [[42, "nodriver.cdp.preload.PrerenderFinalStatus.RENDERER_PROCESS_CRASHED"]], "renderer_process_killed (prerenderfinalstatus attribute)": [[42, "nodriver.cdp.preload.PrerenderFinalStatus.RENDERER_PROCESS_KILLED"]], "running (preloadingstatus attribute)": [[42, "nodriver.cdp.preload.PreloadingStatus.RUNNING"]], "ruleset (class in nodriver.cdp.preload)": [[42, "nodriver.cdp.preload.RuleSet"]], "ruleseterrortype (class in nodriver.cdp.preload)": [[42, "nodriver.cdp.preload.RuleSetErrorType"]], "rulesetid (class in nodriver.cdp.preload)": [[42, "nodriver.cdp.preload.RuleSetId"]], "rulesetremoved (class in nodriver.cdp.preload)": [[42, "nodriver.cdp.preload.RuleSetRemoved"]], "rulesetupdated (class in nodriver.cdp.preload)": [[42, "nodriver.cdp.preload.RuleSetUpdated"]], "same_site_cross_origin_navigation_not_opt_in_in_initial_navigation (prerenderfinalstatus attribute)": [[42, "nodriver.cdp.preload.PrerenderFinalStatus.SAME_SITE_CROSS_ORIGIN_NAVIGATION_NOT_OPT_IN_IN_INITIAL_NAVIGATION"]], "same_site_cross_origin_navigation_not_opt_in_in_main_frame_navigation (prerenderfinalstatus attribute)": [[42, "nodriver.cdp.preload.PrerenderFinalStatus.SAME_SITE_CROSS_ORIGIN_NAVIGATION_NOT_OPT_IN_IN_MAIN_FRAME_NAVIGATION"]], "same_site_cross_origin_redirect_not_opt_in_in_initial_navigation (prerenderfinalstatus attribute)": [[42, "nodriver.cdp.preload.PrerenderFinalStatus.SAME_SITE_CROSS_ORIGIN_REDIRECT_NOT_OPT_IN_IN_INITIAL_NAVIGATION"]], "same_site_cross_origin_redirect_not_opt_in_in_main_frame_navigation (prerenderfinalstatus attribute)": [[42, "nodriver.cdp.preload.PrerenderFinalStatus.SAME_SITE_CROSS_ORIGIN_REDIRECT_NOT_OPT_IN_IN_MAIN_FRAME_NAVIGATION"]], "self (speculationtargethint attribute)": [[42, "nodriver.cdp.preload.SpeculationTargetHint.SELF"]], "slow_network (prerenderfinalstatus attribute)": [[42, "nodriver.cdp.preload.PrerenderFinalStatus.SLOW_NETWORK"]], "source_is_not_json_object (ruleseterrortype attribute)": [[42, "nodriver.cdp.preload.RuleSetErrorType.SOURCE_IS_NOT_JSON_OBJECT"]], "speculation_rule_removed (prerenderfinalstatus attribute)": [[42, "nodriver.cdp.preload.PrerenderFinalStatus.SPECULATION_RULE_REMOVED"]], "ssl_certificate_error (prerenderfinalstatus attribute)": [[42, "nodriver.cdp.preload.PrerenderFinalStatus.SSL_CERTIFICATE_ERROR"]], "start_failed (prerenderfinalstatus attribute)": [[42, "nodriver.cdp.preload.PrerenderFinalStatus.START_FAILED"]], "stop (prerenderfinalstatus attribute)": [[42, "nodriver.cdp.preload.PrerenderFinalStatus.STOP"]], "success (preloadingstatus attribute)": [[42, "nodriver.cdp.preload.PreloadingStatus.SUCCESS"]], "speculationaction (class in nodriver.cdp.preload)": [[42, "nodriver.cdp.preload.SpeculationAction"]], "speculationtargethint (class in nodriver.cdp.preload)": [[42, "nodriver.cdp.preload.SpeculationTargetHint"]], "tab_closed_by_user_gesture (prerenderfinalstatus attribute)": [[42, "nodriver.cdp.preload.PrerenderFinalStatus.TAB_CLOSED_BY_USER_GESTURE"]], "tab_closed_without_user_gesture (prerenderfinalstatus attribute)": [[42, "nodriver.cdp.preload.PrerenderFinalStatus.TAB_CLOSED_WITHOUT_USER_GESTURE"]], "timeout_backgrounded (prerenderfinalstatus attribute)": [[42, "nodriver.cdp.preload.PrerenderFinalStatus.TIMEOUT_BACKGROUNDED"]], "trigger_backgrounded (prerenderfinalstatus attribute)": [[42, "nodriver.cdp.preload.PrerenderFinalStatus.TRIGGER_BACKGROUNDED"]], "trigger_destroyed (prerenderfinalstatus attribute)": [[42, "nodriver.cdp.preload.PrerenderFinalStatus.TRIGGER_DESTROYED"]], "trigger_url_has_effective_url (prerenderfinalstatus attribute)": [[42, "nodriver.cdp.preload.PrerenderFinalStatus.TRIGGER_URL_HAS_EFFECTIVE_URL"]], "ua_change_requires_reload (prerenderfinalstatus attribute)": [[42, "nodriver.cdp.preload.PrerenderFinalStatus.UA_CHANGE_REQUIRES_RELOAD"]], "v8_optimizer_disabled (prerenderfinalstatus attribute)": [[42, "nodriver.cdp.preload.PrerenderFinalStatus.V8_OPTIMIZER_DISABLED"]], "window_closed (prerenderfinalstatus attribute)": [[42, "nodriver.cdp.preload.PrerenderFinalStatus.WINDOW_CLOSED"]], "action (preloadingattemptkey attribute)": [[42, "nodriver.cdp.preload.PreloadingAttemptKey.action"]], "activation_value (prerendermismatchedheaders attribute)": [[42, "nodriver.cdp.preload.PrerenderMismatchedHeaders.activation_value"]], "backend_node_id (ruleset attribute)": [[42, "nodriver.cdp.preload.RuleSet.backend_node_id"]], "disable() (in module nodriver.cdp.preload)": [[42, "nodriver.cdp.preload.disable"]], "disabled_by_battery_saver (preloadenabledstateupdated attribute)": [[42, "nodriver.cdp.preload.PreloadEnabledStateUpdated.disabled_by_battery_saver"]], "disabled_by_data_saver (preloadenabledstateupdated attribute)": [[42, "nodriver.cdp.preload.PreloadEnabledStateUpdated.disabled_by_data_saver"]], "disabled_by_holdback_prefetch_speculation_rules (preloadenabledstateupdated attribute)": [[42, "nodriver.cdp.preload.PreloadEnabledStateUpdated.disabled_by_holdback_prefetch_speculation_rules"]], "disabled_by_holdback_prerender_speculation_rules (preloadenabledstateupdated attribute)": [[42, "nodriver.cdp.preload.PreloadEnabledStateUpdated.disabled_by_holdback_prerender_speculation_rules"]], "disabled_by_preference (preloadenabledstateupdated attribute)": [[42, "nodriver.cdp.preload.PreloadEnabledStateUpdated.disabled_by_preference"]], "disallowed_mojo_interface (prerenderstatusupdated attribute)": [[42, "nodriver.cdp.preload.PrerenderStatusUpdated.disallowed_mojo_interface"]], "enable() (in module nodriver.cdp.preload)": [[42, "nodriver.cdp.preload.enable"]], "error_message (ruleset attribute)": [[42, "nodriver.cdp.preload.RuleSet.error_message"]], "error_type (ruleset attribute)": [[42, "nodriver.cdp.preload.RuleSet.error_type"]], "header_name (prerendermismatchedheaders attribute)": [[42, "nodriver.cdp.preload.PrerenderMismatchedHeaders.header_name"]], "id_ (ruleset attribute)": [[42, "nodriver.cdp.preload.RuleSet.id_"]], "id_ (rulesetremoved attribute)": [[42, "nodriver.cdp.preload.RuleSetRemoved.id_"]], "initial_value (prerendermismatchedheaders attribute)": [[42, "nodriver.cdp.preload.PrerenderMismatchedHeaders.initial_value"]], "initiating_frame_id (prefetchstatusupdated attribute)": [[42, "nodriver.cdp.preload.PrefetchStatusUpdated.initiating_frame_id"]], "key (prefetchstatusupdated attribute)": [[42, "nodriver.cdp.preload.PrefetchStatusUpdated.key"]], "key (preloadingattemptsource attribute)": [[42, "nodriver.cdp.preload.PreloadingAttemptSource.key"]], "key (prerenderstatusupdated attribute)": [[42, "nodriver.cdp.preload.PrerenderStatusUpdated.key"]], "loader_id (preloadingattemptkey attribute)": [[42, "nodriver.cdp.preload.PreloadingAttemptKey.loader_id"]], "loader_id (preloadingattemptsourcesupdated attribute)": [[42, "nodriver.cdp.preload.PreloadingAttemptSourcesUpdated.loader_id"]], "loader_id (ruleset attribute)": [[42, "nodriver.cdp.preload.RuleSet.loader_id"]], "mismatched_headers (prerenderstatusupdated attribute)": [[42, "nodriver.cdp.preload.PrerenderStatusUpdated.mismatched_headers"]], "node_ids (preloadingattemptsource attribute)": [[42, "nodriver.cdp.preload.PreloadingAttemptSource.node_ids"]], "nodriver.cdp.preload": [[42, "module-nodriver.cdp.preload"]], "prefetch_status (prefetchstatusupdated attribute)": [[42, "nodriver.cdp.preload.PrefetchStatusUpdated.prefetch_status"]], "prefetch_url (prefetchstatusupdated attribute)": [[42, "nodriver.cdp.preload.PrefetchStatusUpdated.prefetch_url"]], "preloading_attempt_sources (preloadingattemptsourcesupdated attribute)": [[42, "nodriver.cdp.preload.PreloadingAttemptSourcesUpdated.preloading_attempt_sources"]], "prerender_status (prerenderstatusupdated attribute)": [[42, "nodriver.cdp.preload.PrerenderStatusUpdated.prerender_status"]], "request_id (prefetchstatusupdated attribute)": [[42, "nodriver.cdp.preload.PrefetchStatusUpdated.request_id"]], "request_id (ruleset attribute)": [[42, "nodriver.cdp.preload.RuleSet.request_id"]], "rule_set (rulesetupdated attribute)": [[42, "nodriver.cdp.preload.RuleSetUpdated.rule_set"]], "rule_set_ids (preloadingattemptsource attribute)": [[42, "nodriver.cdp.preload.PreloadingAttemptSource.rule_set_ids"]], "source_text (ruleset attribute)": [[42, "nodriver.cdp.preload.RuleSet.source_text"]], "status (prefetchstatusupdated attribute)": [[42, "nodriver.cdp.preload.PrefetchStatusUpdated.status"]], "status (prerenderstatusupdated attribute)": [[42, "nodriver.cdp.preload.PrerenderStatusUpdated.status"]], "target_hint (preloadingattemptkey attribute)": [[42, "nodriver.cdp.preload.PreloadingAttemptKey.target_hint"]], "url (preloadingattemptkey attribute)": [[42, "nodriver.cdp.preload.PreloadingAttemptKey.url"]], "url (ruleset attribute)": [[42, "nodriver.cdp.preload.RuleSet.url"]], "consoleprofilefinished (class in nodriver.cdp.profiler)": [[43, "nodriver.cdp.profiler.ConsoleProfileFinished"]], "consoleprofilestarted (class in nodriver.cdp.profiler)": [[43, "nodriver.cdp.profiler.ConsoleProfileStarted"]], "coveragerange (class in nodriver.cdp.profiler)": [[43, "nodriver.cdp.profiler.CoverageRange"]], "functioncoverage (class in nodriver.cdp.profiler)": [[43, "nodriver.cdp.profiler.FunctionCoverage"]], "positiontickinfo (class in nodriver.cdp.profiler)": [[43, "nodriver.cdp.profiler.PositionTickInfo"]], "precisecoveragedeltaupdate (class in nodriver.cdp.profiler)": [[43, "nodriver.cdp.profiler.PreciseCoverageDeltaUpdate"]], "profile (class in nodriver.cdp.profiler)": [[43, "nodriver.cdp.profiler.Profile"]], "profilenode (class in nodriver.cdp.profiler)": [[43, "nodriver.cdp.profiler.ProfileNode"]], "scriptcoverage (class in nodriver.cdp.profiler)": [[43, "nodriver.cdp.profiler.ScriptCoverage"]], "call_frame (profilenode attribute)": [[43, "nodriver.cdp.profiler.ProfileNode.call_frame"]], "children (profilenode attribute)": [[43, "nodriver.cdp.profiler.ProfileNode.children"]], "count (coveragerange attribute)": [[43, "nodriver.cdp.profiler.CoverageRange.count"]], "deopt_reason (profilenode attribute)": [[43, "nodriver.cdp.profiler.ProfileNode.deopt_reason"]], "disable() (in module nodriver.cdp.profiler)": [[43, "nodriver.cdp.profiler.disable"]], "enable() (in module nodriver.cdp.profiler)": [[43, "nodriver.cdp.profiler.enable"]], "end_offset (coveragerange attribute)": [[43, "nodriver.cdp.profiler.CoverageRange.end_offset"]], "end_time (profile attribute)": [[43, "nodriver.cdp.profiler.Profile.end_time"]], "function_name (functioncoverage attribute)": [[43, "nodriver.cdp.profiler.FunctionCoverage.function_name"]], "functions (scriptcoverage attribute)": [[43, "nodriver.cdp.profiler.ScriptCoverage.functions"]], "get_best_effort_coverage() (in module nodriver.cdp.profiler)": [[43, "nodriver.cdp.profiler.get_best_effort_coverage"]], "hit_count (profilenode attribute)": [[43, "nodriver.cdp.profiler.ProfileNode.hit_count"]], "id_ (consoleprofilefinished attribute)": [[43, "nodriver.cdp.profiler.ConsoleProfileFinished.id_"]], "id_ (consoleprofilestarted attribute)": [[43, "nodriver.cdp.profiler.ConsoleProfileStarted.id_"]], "id_ (profilenode attribute)": [[43, "nodriver.cdp.profiler.ProfileNode.id_"]], "is_block_coverage (functioncoverage attribute)": [[43, "nodriver.cdp.profiler.FunctionCoverage.is_block_coverage"]], "line (positiontickinfo attribute)": [[43, "nodriver.cdp.profiler.PositionTickInfo.line"]], "location (consoleprofilefinished attribute)": [[43, "nodriver.cdp.profiler.ConsoleProfileFinished.location"]], "location (consoleprofilestarted attribute)": [[43, "nodriver.cdp.profiler.ConsoleProfileStarted.location"]], "nodes (profile attribute)": [[43, "nodriver.cdp.profiler.Profile.nodes"]], "nodriver.cdp.profiler": [[43, "module-nodriver.cdp.profiler"]], "occasion (precisecoveragedeltaupdate attribute)": [[43, "nodriver.cdp.profiler.PreciseCoverageDeltaUpdate.occasion"]], "position_ticks (profilenode attribute)": [[43, "nodriver.cdp.profiler.ProfileNode.position_ticks"]], "profile (consoleprofilefinished attribute)": [[43, "nodriver.cdp.profiler.ConsoleProfileFinished.profile"]], "ranges (functioncoverage attribute)": [[43, "nodriver.cdp.profiler.FunctionCoverage.ranges"]], "result (precisecoveragedeltaupdate attribute)": [[43, "nodriver.cdp.profiler.PreciseCoverageDeltaUpdate.result"]], "samples (profile attribute)": [[43, "nodriver.cdp.profiler.Profile.samples"]], "script_id (scriptcoverage attribute)": [[43, "nodriver.cdp.profiler.ScriptCoverage.script_id"]], "set_sampling_interval() (in module nodriver.cdp.profiler)": [[43, "nodriver.cdp.profiler.set_sampling_interval"]], "start() (in module nodriver.cdp.profiler)": [[43, "nodriver.cdp.profiler.start"]], "start_offset (coveragerange attribute)": [[43, "nodriver.cdp.profiler.CoverageRange.start_offset"]], "start_precise_coverage() (in module nodriver.cdp.profiler)": [[43, "nodriver.cdp.profiler.start_precise_coverage"]], "start_time (profile attribute)": [[43, "nodriver.cdp.profiler.Profile.start_time"]], "stop() (in module nodriver.cdp.profiler)": [[43, "nodriver.cdp.profiler.stop"]], "stop_precise_coverage() (in module nodriver.cdp.profiler)": [[43, "nodriver.cdp.profiler.stop_precise_coverage"]], "take_precise_coverage() (in module nodriver.cdp.profiler)": [[43, "nodriver.cdp.profiler.take_precise_coverage"]], "ticks (positiontickinfo attribute)": [[43, "nodriver.cdp.profiler.PositionTickInfo.ticks"]], "time_deltas (profile attribute)": [[43, "nodriver.cdp.profiler.Profile.time_deltas"]], "timestamp (precisecoveragedeltaupdate attribute)": [[43, "nodriver.cdp.profiler.PreciseCoverageDeltaUpdate.timestamp"]], "title (consoleprofilefinished attribute)": [[43, "nodriver.cdp.profiler.ConsoleProfileFinished.title"]], "title (consoleprofilestarted attribute)": [[43, "nodriver.cdp.profiler.ConsoleProfileStarted.title"]], "url (scriptcoverage attribute)": [[43, "nodriver.cdp.profiler.ScriptCoverage.url"]], "browser (displaymode attribute)": [[44, "nodriver.cdp.pwa.DisplayMode.BROWSER"]], "displaymode (class in nodriver.cdp.pwa)": [[44, "nodriver.cdp.pwa.DisplayMode"]], "filehandler (class in nodriver.cdp.pwa)": [[44, "nodriver.cdp.pwa.FileHandler"]], "filehandleraccept (class in nodriver.cdp.pwa)": [[44, "nodriver.cdp.pwa.FileHandlerAccept"]], "standalone (displaymode attribute)": [[44, "nodriver.cdp.pwa.DisplayMode.STANDALONE"]], "change_app_user_settings() (in module nodriver.cdp.pwa)": [[44, "nodriver.cdp.pwa.change_app_user_settings"]], "display_name (filehandler attribute)": [[44, "nodriver.cdp.pwa.FileHandler.display_name"]], "file_extensions (filehandleraccept attribute)": [[44, "nodriver.cdp.pwa.FileHandlerAccept.file_extensions"]], "get_os_app_state() (in module nodriver.cdp.pwa)": [[44, "nodriver.cdp.pwa.get_os_app_state"]], "install() (in module nodriver.cdp.pwa)": [[44, "nodriver.cdp.pwa.install"]], "launch() (in module nodriver.cdp.pwa)": [[44, "nodriver.cdp.pwa.launch"]], "launch_files_in_app() (in module nodriver.cdp.pwa)": [[44, "nodriver.cdp.pwa.launch_files_in_app"]], "media_type (filehandleraccept attribute)": [[44, "nodriver.cdp.pwa.FileHandlerAccept.media_type"]], "nodriver.cdp.pwa": [[44, "module-nodriver.cdp.pwa"]], "open_current_page_in_app() (in module nodriver.cdp.pwa)": [[44, "nodriver.cdp.pwa.open_current_page_in_app"]], "uninstall() (in module nodriver.cdp.pwa)": [[44, "nodriver.cdp.pwa.uninstall"]], "bindingcalled (class in nodriver.cdp.runtime)": [[45, "nodriver.cdp.runtime.BindingCalled"]], "callargument (class in nodriver.cdp.runtime)": [[45, "nodriver.cdp.runtime.CallArgument"]], "callframe (class in nodriver.cdp.runtime)": [[45, "nodriver.cdp.runtime.CallFrame"]], "consoleapicalled (class in nodriver.cdp.runtime)": [[45, "nodriver.cdp.runtime.ConsoleAPICalled"]], "custompreview (class in nodriver.cdp.runtime)": [[45, "nodriver.cdp.runtime.CustomPreview"]], "deepserializedvalue (class in nodriver.cdp.runtime)": [[45, "nodriver.cdp.runtime.DeepSerializedValue"]], "entrypreview (class in nodriver.cdp.runtime)": [[45, "nodriver.cdp.runtime.EntryPreview"]], "exceptiondetails (class in nodriver.cdp.runtime)": [[45, "nodriver.cdp.runtime.ExceptionDetails"]], "exceptionrevoked (class in nodriver.cdp.runtime)": [[45, "nodriver.cdp.runtime.ExceptionRevoked"]], "exceptionthrown (class in nodriver.cdp.runtime)": [[45, "nodriver.cdp.runtime.ExceptionThrown"]], "executioncontextcreated (class in nodriver.cdp.runtime)": [[45, "nodriver.cdp.runtime.ExecutionContextCreated"]], "executioncontextdescription (class in nodriver.cdp.runtime)": [[45, "nodriver.cdp.runtime.ExecutionContextDescription"]], "executioncontextdestroyed (class in nodriver.cdp.runtime)": [[45, "nodriver.cdp.runtime.ExecutionContextDestroyed"]], "executioncontextid (class in nodriver.cdp.runtime)": [[45, "nodriver.cdp.runtime.ExecutionContextId"]], "executioncontextscleared (class in nodriver.cdp.runtime)": [[45, "nodriver.cdp.runtime.ExecutionContextsCleared"]], "inspectrequested (class in nodriver.cdp.runtime)": [[45, "nodriver.cdp.runtime.InspectRequested"]], "internalpropertydescriptor (class in nodriver.cdp.runtime)": [[45, "nodriver.cdp.runtime.InternalPropertyDescriptor"]], "objectpreview (class in nodriver.cdp.runtime)": [[45, "nodriver.cdp.runtime.ObjectPreview"]], "privatepropertydescriptor (class in nodriver.cdp.runtime)": [[45, "nodriver.cdp.runtime.PrivatePropertyDescriptor"]], "propertydescriptor (class in nodriver.cdp.runtime)": [[45, "nodriver.cdp.runtime.PropertyDescriptor"]], "propertypreview (class in nodriver.cdp.runtime)": [[45, "nodriver.cdp.runtime.PropertyPreview"]], "remoteobject (class in nodriver.cdp.runtime)": [[45, "nodriver.cdp.runtime.RemoteObject"]], "remoteobjectid (class in nodriver.cdp.runtime)": [[45, "nodriver.cdp.runtime.RemoteObjectId"]], "scriptid (class in nodriver.cdp.runtime)": [[45, "nodriver.cdp.runtime.ScriptId"]], "serializationoptions (class in nodriver.cdp.runtime)": [[45, "nodriver.cdp.runtime.SerializationOptions"]], "stacktrace (class in nodriver.cdp.runtime)": [[45, "nodriver.cdp.runtime.StackTrace"]], "stacktraceid (class in nodriver.cdp.runtime)": [[45, "nodriver.cdp.runtime.StackTraceId"]], "timedelta (class in nodriver.cdp.runtime)": [[45, "nodriver.cdp.runtime.TimeDelta"]], "timestamp (class in nodriver.cdp.runtime)": [[45, "nodriver.cdp.runtime.Timestamp"]], "uniquedebuggerid (class in nodriver.cdp.runtime)": [[45, "nodriver.cdp.runtime.UniqueDebuggerId"]], "unserializablevalue (class in nodriver.cdp.runtime)": [[45, "nodriver.cdp.runtime.UnserializableValue"]], "add_binding() (in module nodriver.cdp.runtime)": [[45, "nodriver.cdp.runtime.add_binding"]], "additional_parameters (serializationoptions attribute)": [[45, "nodriver.cdp.runtime.SerializationOptions.additional_parameters"]], "args (consoleapicalled attribute)": [[45, "nodriver.cdp.runtime.ConsoleAPICalled.args"]], "aux_data (executioncontextdescription attribute)": [[45, "nodriver.cdp.runtime.ExecutionContextDescription.aux_data"]], "await_promise() (in module nodriver.cdp.runtime)": [[45, "nodriver.cdp.runtime.await_promise"]], "body_getter_id (custompreview attribute)": [[45, "nodriver.cdp.runtime.CustomPreview.body_getter_id"]], "call_frames (stacktrace attribute)": [[45, "nodriver.cdp.runtime.StackTrace.call_frames"]], "call_function_on() (in module nodriver.cdp.runtime)": [[45, "nodriver.cdp.runtime.call_function_on"]], "class_name (remoteobject attribute)": [[45, "nodriver.cdp.runtime.RemoteObject.class_name"]], "column_number (callframe attribute)": [[45, "nodriver.cdp.runtime.CallFrame.column_number"]], "column_number (exceptiondetails attribute)": [[45, "nodriver.cdp.runtime.ExceptionDetails.column_number"]], "compile_script() (in module nodriver.cdp.runtime)": [[45, "nodriver.cdp.runtime.compile_script"]], "configurable (propertydescriptor attribute)": [[45, "nodriver.cdp.runtime.PropertyDescriptor.configurable"]], "context (consoleapicalled attribute)": [[45, "nodriver.cdp.runtime.ConsoleAPICalled.context"]], "context (executioncontextcreated attribute)": [[45, "nodriver.cdp.runtime.ExecutionContextCreated.context"]], "custom_preview (remoteobject attribute)": [[45, "nodriver.cdp.runtime.RemoteObject.custom_preview"]], "debugger_id (stacktraceid attribute)": [[45, "nodriver.cdp.runtime.StackTraceId.debugger_id"]], "deep_serialized_value (remoteobject attribute)": [[45, "nodriver.cdp.runtime.RemoteObject.deep_serialized_value"]], "description (objectpreview attribute)": [[45, "nodriver.cdp.runtime.ObjectPreview.description"]], "description (remoteobject attribute)": [[45, "nodriver.cdp.runtime.RemoteObject.description"]], "description (stacktrace attribute)": [[45, "nodriver.cdp.runtime.StackTrace.description"]], "disable() (in module nodriver.cdp.runtime)": [[45, "nodriver.cdp.runtime.disable"]], "discard_console_entries() (in module nodriver.cdp.runtime)": [[45, "nodriver.cdp.runtime.discard_console_entries"]], "enable() (in module nodriver.cdp.runtime)": [[45, "nodriver.cdp.runtime.enable"]], "entries (objectpreview attribute)": [[45, "nodriver.cdp.runtime.ObjectPreview.entries"]], "enumerable (propertydescriptor attribute)": [[45, "nodriver.cdp.runtime.PropertyDescriptor.enumerable"]], "evaluate() (in module nodriver.cdp.runtime)": [[45, "nodriver.cdp.runtime.evaluate"]], "exception (exceptiondetails attribute)": [[45, "nodriver.cdp.runtime.ExceptionDetails.exception"]], "exception_details (exceptionthrown attribute)": [[45, "nodriver.cdp.runtime.ExceptionThrown.exception_details"]], "exception_id (exceptiondetails attribute)": [[45, "nodriver.cdp.runtime.ExceptionDetails.exception_id"]], "exception_id (exceptionrevoked attribute)": [[45, "nodriver.cdp.runtime.ExceptionRevoked.exception_id"]], "exception_meta_data (exceptiondetails attribute)": [[45, "nodriver.cdp.runtime.ExceptionDetails.exception_meta_data"]], "execution_context_id (bindingcalled attribute)": [[45, "nodriver.cdp.runtime.BindingCalled.execution_context_id"]], "execution_context_id (consoleapicalled attribute)": [[45, "nodriver.cdp.runtime.ConsoleAPICalled.execution_context_id"]], "execution_context_id (exceptiondetails attribute)": [[45, "nodriver.cdp.runtime.ExceptionDetails.execution_context_id"]], "execution_context_id (executioncontextdestroyed attribute)": [[45, "nodriver.cdp.runtime.ExecutionContextDestroyed.execution_context_id"]], "execution_context_id (inspectrequested attribute)": [[45, "nodriver.cdp.runtime.InspectRequested.execution_context_id"]], "execution_context_unique_id (executioncontextdestroyed attribute)": [[45, "nodriver.cdp.runtime.ExecutionContextDestroyed.execution_context_unique_id"]], "get (privatepropertydescriptor attribute)": [[45, "nodriver.cdp.runtime.PrivatePropertyDescriptor.get"]], "get (propertydescriptor attribute)": [[45, "nodriver.cdp.runtime.PropertyDescriptor.get"]], "get_exception_details() (in module nodriver.cdp.runtime)": [[45, "nodriver.cdp.runtime.get_exception_details"]], "get_heap_usage() (in module nodriver.cdp.runtime)": [[45, "nodriver.cdp.runtime.get_heap_usage"]], "get_isolate_id() (in module nodriver.cdp.runtime)": [[45, "nodriver.cdp.runtime.get_isolate_id"]], "get_properties() (in module nodriver.cdp.runtime)": [[45, "nodriver.cdp.runtime.get_properties"]], "global_lexical_scope_names() (in module nodriver.cdp.runtime)": [[45, "nodriver.cdp.runtime.global_lexical_scope_names"]], "header (custompreview attribute)": [[45, "nodriver.cdp.runtime.CustomPreview.header"]], "hints (inspectrequested attribute)": [[45, "nodriver.cdp.runtime.InspectRequested.hints"]], "id_ (executioncontextdescription attribute)": [[45, "nodriver.cdp.runtime.ExecutionContextDescription.id_"]], "id_ (stacktraceid attribute)": [[45, "nodriver.cdp.runtime.StackTraceId.id_"]], "is_own (propertydescriptor attribute)": [[45, "nodriver.cdp.runtime.PropertyDescriptor.is_own"]], "key (entrypreview attribute)": [[45, "nodriver.cdp.runtime.EntryPreview.key"]], "line_number (callframe attribute)": [[45, "nodriver.cdp.runtime.CallFrame.line_number"]], "line_number (exceptiondetails attribute)": [[45, "nodriver.cdp.runtime.ExceptionDetails.line_number"]], "max_depth (serializationoptions attribute)": [[45, "nodriver.cdp.runtime.SerializationOptions.max_depth"]], "name (bindingcalled attribute)": [[45, "nodriver.cdp.runtime.BindingCalled.name"]], "name (executioncontextdescription attribute)": [[45, "nodriver.cdp.runtime.ExecutionContextDescription.name"]], "name (internalpropertydescriptor attribute)": [[45, "nodriver.cdp.runtime.InternalPropertyDescriptor.name"]], "name (privatepropertydescriptor attribute)": [[45, "nodriver.cdp.runtime.PrivatePropertyDescriptor.name"]], "name (propertydescriptor attribute)": [[45, "nodriver.cdp.runtime.PropertyDescriptor.name"]], "name (propertypreview attribute)": [[45, "nodriver.cdp.runtime.PropertyPreview.name"]], "nodriver.cdp.runtime": [[45, "module-nodriver.cdp.runtime"]], "object_ (inspectrequested attribute)": [[45, "nodriver.cdp.runtime.InspectRequested.object_"]], "object_id (callargument attribute)": [[45, "nodriver.cdp.runtime.CallArgument.object_id"]], "object_id (deepserializedvalue attribute)": [[45, "nodriver.cdp.runtime.DeepSerializedValue.object_id"]], "object_id (remoteobject attribute)": [[45, "nodriver.cdp.runtime.RemoteObject.object_id"]], "origin (executioncontextdescription attribute)": [[45, "nodriver.cdp.runtime.ExecutionContextDescription.origin"]], "overflow (objectpreview attribute)": [[45, "nodriver.cdp.runtime.ObjectPreview.overflow"]], "parent (stacktrace attribute)": [[45, "nodriver.cdp.runtime.StackTrace.parent"]], "parent_id (stacktrace attribute)": [[45, "nodriver.cdp.runtime.StackTrace.parent_id"]], "payload (bindingcalled attribute)": [[45, "nodriver.cdp.runtime.BindingCalled.payload"]], "preview (remoteobject attribute)": [[45, "nodriver.cdp.runtime.RemoteObject.preview"]], "properties (objectpreview attribute)": [[45, "nodriver.cdp.runtime.ObjectPreview.properties"]], "query_objects() (in module nodriver.cdp.runtime)": [[45, "nodriver.cdp.runtime.query_objects"]], "reason (exceptionrevoked attribute)": [[45, "nodriver.cdp.runtime.ExceptionRevoked.reason"]], "release_object() (in module nodriver.cdp.runtime)": [[45, "nodriver.cdp.runtime.release_object"]], "release_object_group() (in module nodriver.cdp.runtime)": [[45, "nodriver.cdp.runtime.release_object_group"]], "remove_binding() (in module nodriver.cdp.runtime)": [[45, "nodriver.cdp.runtime.remove_binding"]], "run_if_waiting_for_debugger() (in module nodriver.cdp.runtime)": [[45, "nodriver.cdp.runtime.run_if_waiting_for_debugger"]], "run_script() (in module nodriver.cdp.runtime)": [[45, "nodriver.cdp.runtime.run_script"]], "script_id (callframe attribute)": [[45, "nodriver.cdp.runtime.CallFrame.script_id"]], "script_id (exceptiondetails attribute)": [[45, "nodriver.cdp.runtime.ExceptionDetails.script_id"]], "serialization (serializationoptions attribute)": [[45, "nodriver.cdp.runtime.SerializationOptions.serialization"]], "set_ (privatepropertydescriptor attribute)": [[45, "nodriver.cdp.runtime.PrivatePropertyDescriptor.set_"]], "set_ (propertydescriptor attribute)": [[45, "nodriver.cdp.runtime.PropertyDescriptor.set_"]], "set_async_call_stack_depth() (in module nodriver.cdp.runtime)": [[45, "nodriver.cdp.runtime.set_async_call_stack_depth"]], "set_custom_object_formatter_enabled() (in module nodriver.cdp.runtime)": [[45, "nodriver.cdp.runtime.set_custom_object_formatter_enabled"]], "set_max_call_stack_size_to_capture() (in module nodriver.cdp.runtime)": [[45, "nodriver.cdp.runtime.set_max_call_stack_size_to_capture"]], "stack_trace (consoleapicalled attribute)": [[45, "nodriver.cdp.runtime.ConsoleAPICalled.stack_trace"]], "stack_trace (exceptiondetails attribute)": [[45, "nodriver.cdp.runtime.ExceptionDetails.stack_trace"]], "subtype (objectpreview attribute)": [[45, "nodriver.cdp.runtime.ObjectPreview.subtype"]], "subtype (propertypreview attribute)": [[45, "nodriver.cdp.runtime.PropertyPreview.subtype"]], "subtype (remoteobject attribute)": [[45, "nodriver.cdp.runtime.RemoteObject.subtype"]], "symbol (propertydescriptor attribute)": [[45, "nodriver.cdp.runtime.PropertyDescriptor.symbol"]], "terminate_execution() (in module nodriver.cdp.runtime)": [[45, "nodriver.cdp.runtime.terminate_execution"]], "text (exceptiondetails attribute)": [[45, "nodriver.cdp.runtime.ExceptionDetails.text"]], "timestamp (consoleapicalled attribute)": [[45, "nodriver.cdp.runtime.ConsoleAPICalled.timestamp"]], "timestamp (exceptionthrown attribute)": [[45, "nodriver.cdp.runtime.ExceptionThrown.timestamp"]], "type_ (consoleapicalled attribute)": [[45, "nodriver.cdp.runtime.ConsoleAPICalled.type_"]], "type_ (deepserializedvalue attribute)": [[45, "nodriver.cdp.runtime.DeepSerializedValue.type_"]], "type_ (objectpreview attribute)": [[45, "nodriver.cdp.runtime.ObjectPreview.type_"]], "type_ (propertypreview attribute)": [[45, "nodriver.cdp.runtime.PropertyPreview.type_"]], "type_ (remoteobject attribute)": [[45, "nodriver.cdp.runtime.RemoteObject.type_"]], "unique_id (executioncontextdescription attribute)": [[45, "nodriver.cdp.runtime.ExecutionContextDescription.unique_id"]], "unserializable_value (callargument attribute)": [[45, "nodriver.cdp.runtime.CallArgument.unserializable_value"]], "unserializable_value (remoteobject attribute)": [[45, "nodriver.cdp.runtime.RemoteObject.unserializable_value"]], "url (exceptiondetails attribute)": [[45, "nodriver.cdp.runtime.ExceptionDetails.url"]], "value (callargument attribute)": [[45, "nodriver.cdp.runtime.CallArgument.value"]], "value (deepserializedvalue attribute)": [[45, "nodriver.cdp.runtime.DeepSerializedValue.value"]], "value (entrypreview attribute)": [[45, "nodriver.cdp.runtime.EntryPreview.value"]], "value (internalpropertydescriptor attribute)": [[45, "nodriver.cdp.runtime.InternalPropertyDescriptor.value"]], "value (privatepropertydescriptor attribute)": [[45, "nodriver.cdp.runtime.PrivatePropertyDescriptor.value"]], "value (propertydescriptor attribute)": [[45, "nodriver.cdp.runtime.PropertyDescriptor.value"]], "value (propertypreview attribute)": [[45, "nodriver.cdp.runtime.PropertyPreview.value"]], "value (remoteobject attribute)": [[45, "nodriver.cdp.runtime.RemoteObject.value"]], "value_preview (propertypreview attribute)": [[45, "nodriver.cdp.runtime.PropertyPreview.value_preview"]], "was_thrown (propertydescriptor attribute)": [[45, "nodriver.cdp.runtime.PropertyDescriptor.was_thrown"]], "weak_local_object_reference (deepserializedvalue attribute)": [[45, "nodriver.cdp.runtime.DeepSerializedValue.weak_local_object_reference"]], "writable (propertydescriptor attribute)": [[45, "nodriver.cdp.runtime.PropertyDescriptor.writable"]], "domain (class in nodriver.cdp.schema)": [[46, "nodriver.cdp.schema.Domain"]], "get_domains() (in module nodriver.cdp.schema)": [[46, "nodriver.cdp.schema.get_domains"]], "name (domain attribute)": [[46, "nodriver.cdp.schema.Domain.name"]], "nodriver.cdp.schema": [[46, "module-nodriver.cdp.schema"]], "version (domain attribute)": [[46, "nodriver.cdp.schema.Domain.version"]], "bad_reputation (safetytipstatus attribute)": [[47, "nodriver.cdp.security.SafetyTipStatus.BAD_REPUTATION"]], "blockable (mixedcontenttype attribute)": [[47, "nodriver.cdp.security.MixedContentType.BLOCKABLE"]], "cancel (certificateerroraction attribute)": [[47, "nodriver.cdp.security.CertificateErrorAction.CANCEL"]], "continue (certificateerroraction attribute)": [[47, "nodriver.cdp.security.CertificateErrorAction.CONTINUE"]], "certificateerror (class in nodriver.cdp.security)": [[47, "nodriver.cdp.security.CertificateError"]], "certificateerroraction (class in nodriver.cdp.security)": [[47, "nodriver.cdp.security.CertificateErrorAction"]], "certificateid (class in nodriver.cdp.security)": [[47, "nodriver.cdp.security.CertificateId"]], "certificatesecuritystate (class in nodriver.cdp.security)": [[47, "nodriver.cdp.security.CertificateSecurityState"]], "info (securitystate attribute)": [[47, "nodriver.cdp.security.SecurityState.INFO"]], "insecure (securitystate attribute)": [[47, "nodriver.cdp.security.SecurityState.INSECURE"]], "insecure_broken (securitystate attribute)": [[47, "nodriver.cdp.security.SecurityState.INSECURE_BROKEN"]], "insecurecontentstatus (class in nodriver.cdp.security)": [[47, "nodriver.cdp.security.InsecureContentStatus"]], "lookalike (safetytipstatus attribute)": [[47, "nodriver.cdp.security.SafetyTipStatus.LOOKALIKE"]], "mixedcontenttype (class in nodriver.cdp.security)": [[47, "nodriver.cdp.security.MixedContentType"]], "neutral (securitystate attribute)": [[47, "nodriver.cdp.security.SecurityState.NEUTRAL"]], "none (mixedcontenttype attribute)": [[47, "nodriver.cdp.security.MixedContentType.NONE"]], "optionally_blockable (mixedcontenttype attribute)": [[47, "nodriver.cdp.security.MixedContentType.OPTIONALLY_BLOCKABLE"]], "secure (securitystate attribute)": [[47, "nodriver.cdp.security.SecurityState.SECURE"]], "safetytipinfo (class in nodriver.cdp.security)": [[47, "nodriver.cdp.security.SafetyTipInfo"]], "safetytipstatus (class in nodriver.cdp.security)": [[47, "nodriver.cdp.security.SafetyTipStatus"]], "securitystate (class in nodriver.cdp.security)": [[47, "nodriver.cdp.security.SecurityState"]], "securitystatechanged (class in nodriver.cdp.security)": [[47, "nodriver.cdp.security.SecurityStateChanged"]], "securitystateexplanation (class in nodriver.cdp.security)": [[47, "nodriver.cdp.security.SecurityStateExplanation"]], "unknown (securitystate attribute)": [[47, "nodriver.cdp.security.SecurityState.UNKNOWN"]], "visiblesecuritystate (class in nodriver.cdp.security)": [[47, "nodriver.cdp.security.VisibleSecurityState"]], "visiblesecuritystatechanged (class in nodriver.cdp.security)": [[47, "nodriver.cdp.security.VisibleSecurityStateChanged"]], "certificate (certificatesecuritystate attribute)": [[47, "nodriver.cdp.security.CertificateSecurityState.certificate"]], "certificate (securitystateexplanation attribute)": [[47, "nodriver.cdp.security.SecurityStateExplanation.certificate"]], "certificate_has_sha1_signature (certificatesecuritystate attribute)": [[47, "nodriver.cdp.security.CertificateSecurityState.certificate_has_sha1_signature"]], "certificate_has_weak_signature (certificatesecuritystate attribute)": [[47, "nodriver.cdp.security.CertificateSecurityState.certificate_has_weak_signature"]], "certificate_network_error (certificatesecuritystate attribute)": [[47, "nodriver.cdp.security.CertificateSecurityState.certificate_network_error"]], "certificate_security_state (visiblesecuritystate attribute)": [[47, "nodriver.cdp.security.VisibleSecurityState.certificate_security_state"]], "cipher (certificatesecuritystate attribute)": [[47, "nodriver.cdp.security.CertificateSecurityState.cipher"]], "contained_mixed_form (insecurecontentstatus attribute)": [[47, "nodriver.cdp.security.InsecureContentStatus.contained_mixed_form"]], "description (securitystateexplanation attribute)": [[47, "nodriver.cdp.security.SecurityStateExplanation.description"]], "disable() (in module nodriver.cdp.security)": [[47, "nodriver.cdp.security.disable"]], "displayed_content_with_cert_errors (insecurecontentstatus attribute)": [[47, "nodriver.cdp.security.InsecureContentStatus.displayed_content_with_cert_errors"]], "displayed_insecure_content_style (insecurecontentstatus attribute)": [[47, "nodriver.cdp.security.InsecureContentStatus.displayed_insecure_content_style"]], "displayed_mixed_content (insecurecontentstatus attribute)": [[47, "nodriver.cdp.security.InsecureContentStatus.displayed_mixed_content"]], "enable() (in module nodriver.cdp.security)": [[47, "nodriver.cdp.security.enable"]], "error_type (certificateerror attribute)": [[47, "nodriver.cdp.security.CertificateError.error_type"]], "event_id (certificateerror attribute)": [[47, "nodriver.cdp.security.CertificateError.event_id"]], "explanations (securitystatechanged attribute)": [[47, "nodriver.cdp.security.SecurityStateChanged.explanations"]], "handle_certificate_error() (in module nodriver.cdp.security)": [[47, "nodriver.cdp.security.handle_certificate_error"]], "insecure_content_status (securitystatechanged attribute)": [[47, "nodriver.cdp.security.SecurityStateChanged.insecure_content_status"]], "issuer (certificatesecuritystate attribute)": [[47, "nodriver.cdp.security.CertificateSecurityState.issuer"]], "key_exchange (certificatesecuritystate attribute)": [[47, "nodriver.cdp.security.CertificateSecurityState.key_exchange"]], "key_exchange_group (certificatesecuritystate attribute)": [[47, "nodriver.cdp.security.CertificateSecurityState.key_exchange_group"]], "mac (certificatesecuritystate attribute)": [[47, "nodriver.cdp.security.CertificateSecurityState.mac"]], "mixed_content_type (securitystateexplanation attribute)": [[47, "nodriver.cdp.security.SecurityStateExplanation.mixed_content_type"]], "modern_ssl (certificatesecuritystate attribute)": [[47, "nodriver.cdp.security.CertificateSecurityState.modern_ssl"]], "nodriver.cdp.security": [[47, "module-nodriver.cdp.security"]], "obsolete_ssl_cipher (certificatesecuritystate attribute)": [[47, "nodriver.cdp.security.CertificateSecurityState.obsolete_ssl_cipher"]], "obsolete_ssl_key_exchange (certificatesecuritystate attribute)": [[47, "nodriver.cdp.security.CertificateSecurityState.obsolete_ssl_key_exchange"]], "obsolete_ssl_protocol (certificatesecuritystate attribute)": [[47, "nodriver.cdp.security.CertificateSecurityState.obsolete_ssl_protocol"]], "obsolete_ssl_signature (certificatesecuritystate attribute)": [[47, "nodriver.cdp.security.CertificateSecurityState.obsolete_ssl_signature"]], "protocol (certificatesecuritystate attribute)": [[47, "nodriver.cdp.security.CertificateSecurityState.protocol"]], "ran_content_with_cert_errors (insecurecontentstatus attribute)": [[47, "nodriver.cdp.security.InsecureContentStatus.ran_content_with_cert_errors"]], "ran_insecure_content_style (insecurecontentstatus attribute)": [[47, "nodriver.cdp.security.InsecureContentStatus.ran_insecure_content_style"]], "ran_mixed_content (insecurecontentstatus attribute)": [[47, "nodriver.cdp.security.InsecureContentStatus.ran_mixed_content"]], "recommendations (securitystateexplanation attribute)": [[47, "nodriver.cdp.security.SecurityStateExplanation.recommendations"]], "request_url (certificateerror attribute)": [[47, "nodriver.cdp.security.CertificateError.request_url"]], "safe_url (safetytipinfo attribute)": [[47, "nodriver.cdp.security.SafetyTipInfo.safe_url"]], "safety_tip_info (visiblesecuritystate attribute)": [[47, "nodriver.cdp.security.VisibleSecurityState.safety_tip_info"]], "safety_tip_status (safetytipinfo attribute)": [[47, "nodriver.cdp.security.SafetyTipInfo.safety_tip_status"]], "scheme_is_cryptographic (securitystatechanged attribute)": [[47, "nodriver.cdp.security.SecurityStateChanged.scheme_is_cryptographic"]], "security_state (securitystatechanged attribute)": [[47, "nodriver.cdp.security.SecurityStateChanged.security_state"]], "security_state (securitystateexplanation attribute)": [[47, "nodriver.cdp.security.SecurityStateExplanation.security_state"]], "security_state (visiblesecuritystate attribute)": [[47, "nodriver.cdp.security.VisibleSecurityState.security_state"]], "security_state_issue_ids (visiblesecuritystate attribute)": [[47, "nodriver.cdp.security.VisibleSecurityState.security_state_issue_ids"]], "set_ignore_certificate_errors() (in module nodriver.cdp.security)": [[47, "nodriver.cdp.security.set_ignore_certificate_errors"]], "set_override_certificate_errors() (in module nodriver.cdp.security)": [[47, "nodriver.cdp.security.set_override_certificate_errors"]], "subject_name (certificatesecuritystate attribute)": [[47, "nodriver.cdp.security.CertificateSecurityState.subject_name"]], "summary (securitystatechanged attribute)": [[47, "nodriver.cdp.security.SecurityStateChanged.summary"]], "summary (securitystateexplanation attribute)": [[47, "nodriver.cdp.security.SecurityStateExplanation.summary"]], "title (securitystateexplanation attribute)": [[47, "nodriver.cdp.security.SecurityStateExplanation.title"]], "valid_from (certificatesecuritystate attribute)": [[47, "nodriver.cdp.security.CertificateSecurityState.valid_from"]], "valid_to (certificatesecuritystate attribute)": [[47, "nodriver.cdp.security.CertificateSecurityState.valid_to"]], "visible_security_state (visiblesecuritystatechanged attribute)": [[47, "nodriver.cdp.security.VisibleSecurityStateChanged.visible_security_state"]], "activated (serviceworkerversionstatus attribute)": [[48, "nodriver.cdp.service_worker.ServiceWorkerVersionStatus.ACTIVATED"]], "activating (serviceworkerversionstatus attribute)": [[48, "nodriver.cdp.service_worker.ServiceWorkerVersionStatus.ACTIVATING"]], "installed (serviceworkerversionstatus attribute)": [[48, "nodriver.cdp.service_worker.ServiceWorkerVersionStatus.INSTALLED"]], "installing (serviceworkerversionstatus attribute)": [[48, "nodriver.cdp.service_worker.ServiceWorkerVersionStatus.INSTALLING"]], "new (serviceworkerversionstatus attribute)": [[48, "nodriver.cdp.service_worker.ServiceWorkerVersionStatus.NEW"]], "redundant (serviceworkerversionstatus attribute)": [[48, "nodriver.cdp.service_worker.ServiceWorkerVersionStatus.REDUNDANT"]], "running (serviceworkerversionrunningstatus attribute)": [[48, "nodriver.cdp.service_worker.ServiceWorkerVersionRunningStatus.RUNNING"]], "registrationid (class in nodriver.cdp.service_worker)": [[48, "nodriver.cdp.service_worker.RegistrationID"]], "starting (serviceworkerversionrunningstatus attribute)": [[48, "nodriver.cdp.service_worker.ServiceWorkerVersionRunningStatus.STARTING"]], "stopped (serviceworkerversionrunningstatus attribute)": [[48, "nodriver.cdp.service_worker.ServiceWorkerVersionRunningStatus.STOPPED"]], "stopping (serviceworkerversionrunningstatus attribute)": [[48, "nodriver.cdp.service_worker.ServiceWorkerVersionRunningStatus.STOPPING"]], "serviceworkererrormessage (class in nodriver.cdp.service_worker)": [[48, "nodriver.cdp.service_worker.ServiceWorkerErrorMessage"]], "serviceworkerregistration (class in nodriver.cdp.service_worker)": [[48, "nodriver.cdp.service_worker.ServiceWorkerRegistration"]], "serviceworkerversion (class in nodriver.cdp.service_worker)": [[48, "nodriver.cdp.service_worker.ServiceWorkerVersion"]], "serviceworkerversionrunningstatus (class in nodriver.cdp.service_worker)": [[48, "nodriver.cdp.service_worker.ServiceWorkerVersionRunningStatus"]], "serviceworkerversionstatus (class in nodriver.cdp.service_worker)": [[48, "nodriver.cdp.service_worker.ServiceWorkerVersionStatus"]], "workererrorreported (class in nodriver.cdp.service_worker)": [[48, "nodriver.cdp.service_worker.WorkerErrorReported"]], "workerregistrationupdated (class in nodriver.cdp.service_worker)": [[48, "nodriver.cdp.service_worker.WorkerRegistrationUpdated"]], "workerversionupdated (class in nodriver.cdp.service_worker)": [[48, "nodriver.cdp.service_worker.WorkerVersionUpdated"]], "column_number (serviceworkererrormessage attribute)": [[48, "nodriver.cdp.service_worker.ServiceWorkerErrorMessage.column_number"]], "controlled_clients (serviceworkerversion attribute)": [[48, "nodriver.cdp.service_worker.ServiceWorkerVersion.controlled_clients"]], "deliver_push_message() (in module nodriver.cdp.service_worker)": [[48, "nodriver.cdp.service_worker.deliver_push_message"]], "disable() (in module nodriver.cdp.service_worker)": [[48, "nodriver.cdp.service_worker.disable"]], "dispatch_periodic_sync_event() (in module nodriver.cdp.service_worker)": [[48, "nodriver.cdp.service_worker.dispatch_periodic_sync_event"]], "dispatch_sync_event() (in module nodriver.cdp.service_worker)": [[48, "nodriver.cdp.service_worker.dispatch_sync_event"]], "enable() (in module nodriver.cdp.service_worker)": [[48, "nodriver.cdp.service_worker.enable"]], "error_message (serviceworkererrormessage attribute)": [[48, "nodriver.cdp.service_worker.ServiceWorkerErrorMessage.error_message"]], "error_message (workererrorreported attribute)": [[48, "nodriver.cdp.service_worker.WorkerErrorReported.error_message"]], "inspect_worker() (in module nodriver.cdp.service_worker)": [[48, "nodriver.cdp.service_worker.inspect_worker"]], "is_deleted (serviceworkerregistration attribute)": [[48, "nodriver.cdp.service_worker.ServiceWorkerRegistration.is_deleted"]], "line_number (serviceworkererrormessage attribute)": [[48, "nodriver.cdp.service_worker.ServiceWorkerErrorMessage.line_number"]], "nodriver.cdp.service_worker": [[48, "module-nodriver.cdp.service_worker"]], "registration_id (serviceworkererrormessage attribute)": [[48, "nodriver.cdp.service_worker.ServiceWorkerErrorMessage.registration_id"]], "registration_id (serviceworkerregistration attribute)": [[48, "nodriver.cdp.service_worker.ServiceWorkerRegistration.registration_id"]], "registration_id (serviceworkerversion attribute)": [[48, "nodriver.cdp.service_worker.ServiceWorkerVersion.registration_id"]], "registrations (workerregistrationupdated attribute)": [[48, "nodriver.cdp.service_worker.WorkerRegistrationUpdated.registrations"]], "router_rules (serviceworkerversion attribute)": [[48, "nodriver.cdp.service_worker.ServiceWorkerVersion.router_rules"]], "running_status (serviceworkerversion attribute)": [[48, "nodriver.cdp.service_worker.ServiceWorkerVersion.running_status"]], "scope_url (serviceworkerregistration attribute)": [[48, "nodriver.cdp.service_worker.ServiceWorkerRegistration.scope_url"]], "script_last_modified (serviceworkerversion attribute)": [[48, "nodriver.cdp.service_worker.ServiceWorkerVersion.script_last_modified"]], "script_response_time (serviceworkerversion attribute)": [[48, "nodriver.cdp.service_worker.ServiceWorkerVersion.script_response_time"]], "script_url (serviceworkerversion attribute)": [[48, "nodriver.cdp.service_worker.ServiceWorkerVersion.script_url"]], "set_force_update_on_page_load() (in module nodriver.cdp.service_worker)": [[48, "nodriver.cdp.service_worker.set_force_update_on_page_load"]], "skip_waiting() (in module nodriver.cdp.service_worker)": [[48, "nodriver.cdp.service_worker.skip_waiting"]], "source_url (serviceworkererrormessage attribute)": [[48, "nodriver.cdp.service_worker.ServiceWorkerErrorMessage.source_url"]], "start_worker() (in module nodriver.cdp.service_worker)": [[48, "nodriver.cdp.service_worker.start_worker"]], "status (serviceworkerversion attribute)": [[48, "nodriver.cdp.service_worker.ServiceWorkerVersion.status"]], "stop_all_workers() (in module nodriver.cdp.service_worker)": [[48, "nodriver.cdp.service_worker.stop_all_workers"]], "stop_worker() (in module nodriver.cdp.service_worker)": [[48, "nodriver.cdp.service_worker.stop_worker"]], "target_id (serviceworkerversion attribute)": [[48, "nodriver.cdp.service_worker.ServiceWorkerVersion.target_id"]], "unregister() (in module nodriver.cdp.service_worker)": [[48, "nodriver.cdp.service_worker.unregister"]], "update_registration() (in module nodriver.cdp.service_worker)": [[48, "nodriver.cdp.service_worker.update_registration"]], "version_id (serviceworkererrormessage attribute)": [[48, "nodriver.cdp.service_worker.ServiceWorkerErrorMessage.version_id"]], "version_id (serviceworkerversion attribute)": [[48, "nodriver.cdp.service_worker.ServiceWorkerVersion.version_id"]], "versions (workerversionupdated attribute)": [[48, "nodriver.cdp.service_worker.WorkerVersionUpdated.versions"]], "additional_bid (interestgroupaccesstype attribute)": [[49, "nodriver.cdp.storage.InterestGroupAccessType.ADDITIONAL_BID"]], "additional_bid_win (interestgroupaccesstype attribute)": [[49, "nodriver.cdp.storage.InterestGroupAccessType.ADDITIONAL_BID_WIN"]], "all_ (storagetype attribute)": [[49, "nodriver.cdp.storage.StorageType.ALL_"]], "appcache (storagetype attribute)": [[49, "nodriver.cdp.storage.StorageType.APPCACHE"]], "attributionreportingaggregatabledebugreportingconfig (class in nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.AttributionReportingAggregatableDebugReportingConfig"]], "attributionreportingaggregatabledebugreportingdata (class in nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.AttributionReportingAggregatableDebugReportingData"]], "attributionreportingaggregatablededupkey (class in nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.AttributionReportingAggregatableDedupKey"]], "attributionreportingaggregatableresult (class in nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.AttributionReportingAggregatableResult"]], "attributionreportingaggregatabletriggerdata (class in nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.AttributionReportingAggregatableTriggerData"]], "attributionreportingaggregatablevaluedictentry (class in nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.AttributionReportingAggregatableValueDictEntry"]], "attributionreportingaggregatablevalueentry (class in nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.AttributionReportingAggregatableValueEntry"]], "attributionreportingaggregationkeysentry (class in nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.AttributionReportingAggregationKeysEntry"]], "attributionreportingeventlevelresult (class in nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.AttributionReportingEventLevelResult"]], "attributionreportingeventreportwindows (class in nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.AttributionReportingEventReportWindows"]], "attributionreportingeventtriggerdata (class in nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.AttributionReportingEventTriggerData"]], "attributionreportingfilterconfig (class in nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.AttributionReportingFilterConfig"]], "attributionreportingfilterdataentry (class in nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.AttributionReportingFilterDataEntry"]], "attributionreportingfilterpair (class in nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.AttributionReportingFilterPair"]], "attributionreportingsourceregistered (class in nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.AttributionReportingSourceRegistered"]], "attributionreportingsourceregistration (class in nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.AttributionReportingSourceRegistration"]], "attributionreportingsourceregistrationresult (class in nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.AttributionReportingSourceRegistrationResult"]], "attributionreportingsourceregistrationtimeconfig (class in nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.AttributionReportingSourceRegistrationTimeConfig"]], "attributionreportingsourcetype (class in nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.AttributionReportingSourceType"]], "attributionreportingtriggerdatamatching (class in nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.AttributionReportingTriggerDataMatching"]], "attributionreportingtriggerregistered (class in nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.AttributionReportingTriggerRegistered"]], "attributionreportingtriggerregistration (class in nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.AttributionReportingTriggerRegistration"]], "attributionreportingtriggerspec (class in nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.AttributionReportingTriggerSpec"]], "attributionscopesdata (class in nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.AttributionScopesData"]], "bid (interestgroupaccesstype attribute)": [[49, "nodriver.cdp.storage.InterestGroupAccessType.BID"]], "bidder_js (interestgroupauctionfetchtype attribute)": [[49, "nodriver.cdp.storage.InterestGroupAuctionFetchType.BIDDER_JS"]], "bidder_trusted_signals (interestgroupauctionfetchtype attribute)": [[49, "nodriver.cdp.storage.InterestGroupAuctionFetchType.BIDDER_TRUSTED_SIGNALS"]], "bidder_wasm (interestgroupauctionfetchtype attribute)": [[49, "nodriver.cdp.storage.InterestGroupAuctionFetchType.BIDDER_WASM"]], "cache_storage (storagetype attribute)": [[49, "nodriver.cdp.storage.StorageType.CACHE_STORAGE"]], "clear (interestgroupaccesstype attribute)": [[49, "nodriver.cdp.storage.InterestGroupAccessType.CLEAR"]], "config_resolved (interestgroupauctioneventtype attribute)": [[49, "nodriver.cdp.storage.InterestGroupAuctionEventType.CONFIG_RESOLVED"]], "cookies (storagetype attribute)": [[49, "nodriver.cdp.storage.StorageType.COOKIES"]], "cachestoragecontentupdated (class in nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.CacheStorageContentUpdated"]], "cachestoragelistupdated (class in nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.CacheStorageListUpdated"]], "deduplicated (attributionreportingaggregatableresult attribute)": [[49, "nodriver.cdp.storage.AttributionReportingAggregatableResult.DEDUPLICATED"]], "deduplicated (attributionreportingeventlevelresult attribute)": [[49, "nodriver.cdp.storage.AttributionReportingEventLevelResult.DEDUPLICATED"]], "destination_both_limits_reached (attributionreportingsourceregistrationresult attribute)": [[49, "nodriver.cdp.storage.AttributionReportingSourceRegistrationResult.DESTINATION_BOTH_LIMITS_REACHED"]], "destination_global_limit_reached (attributionreportingsourceregistrationresult attribute)": [[49, "nodriver.cdp.storage.AttributionReportingSourceRegistrationResult.DESTINATION_GLOBAL_LIMIT_REACHED"]], "destination_per_day_reporting_limit_reached (attributionreportingsourceregistrationresult attribute)": [[49, "nodriver.cdp.storage.AttributionReportingSourceRegistrationResult.DESTINATION_PER_DAY_REPORTING_LIMIT_REACHED"]], "destination_reporting_limit_reached (attributionreportingsourceregistrationresult attribute)": [[49, "nodriver.cdp.storage.AttributionReportingSourceRegistrationResult.DESTINATION_REPORTING_LIMIT_REACHED"]], "document_add_module (sharedstorageaccesstype attribute)": [[49, "nodriver.cdp.storage.SharedStorageAccessType.DOCUMENT_ADD_MODULE"]], "document_append (sharedstorageaccesstype attribute)": [[49, "nodriver.cdp.storage.SharedStorageAccessType.DOCUMENT_APPEND"]], "document_clear (sharedstorageaccesstype attribute)": [[49, "nodriver.cdp.storage.SharedStorageAccessType.DOCUMENT_CLEAR"]], "document_delete (sharedstorageaccesstype attribute)": [[49, "nodriver.cdp.storage.SharedStorageAccessType.DOCUMENT_DELETE"]], "document_get (sharedstorageaccesstype attribute)": [[49, "nodriver.cdp.storage.SharedStorageAccessType.DOCUMENT_GET"]], "document_run (sharedstorageaccesstype attribute)": [[49, "nodriver.cdp.storage.SharedStorageAccessType.DOCUMENT_RUN"]], "document_select_url (sharedstorageaccesstype attribute)": [[49, "nodriver.cdp.storage.SharedStorageAccessType.DOCUMENT_SELECT_URL"]], "document_set (sharedstorageaccesstype attribute)": [[49, "nodriver.cdp.storage.SharedStorageAccessType.DOCUMENT_SET"]], "event (attributionreportingsourcetype attribute)": [[49, "nodriver.cdp.storage.AttributionReportingSourceType.EVENT"]], "exact (attributionreportingtriggerdatamatching attribute)": [[49, "nodriver.cdp.storage.AttributionReportingTriggerDataMatching.EXACT"]], "exceeds_max_channel_capacity (attributionreportingsourceregistrationresult attribute)": [[49, "nodriver.cdp.storage.AttributionReportingSourceRegistrationResult.EXCEEDS_MAX_CHANNEL_CAPACITY"]], "exceeds_max_event_states_limit (attributionreportingsourceregistrationresult attribute)": [[49, "nodriver.cdp.storage.AttributionReportingSourceRegistrationResult.EXCEEDS_MAX_EVENT_STATES_LIMIT"]], "exceeds_max_scopes_channel_capacity (attributionreportingsourceregistrationresult attribute)": [[49, "nodriver.cdp.storage.AttributionReportingSourceRegistrationResult.EXCEEDS_MAX_SCOPES_CHANNEL_CAPACITY"]], "exceeds_max_trigger_state_cardinality (attributionreportingsourceregistrationresult attribute)": [[49, "nodriver.cdp.storage.AttributionReportingSourceRegistrationResult.EXCEEDS_MAX_TRIGGER_STATE_CARDINALITY"]], "excessive_attributions (attributionreportingaggregatableresult attribute)": [[49, "nodriver.cdp.storage.AttributionReportingAggregatableResult.EXCESSIVE_ATTRIBUTIONS"]], "excessive_attributions (attributionreportingeventlevelresult attribute)": [[49, "nodriver.cdp.storage.AttributionReportingEventLevelResult.EXCESSIVE_ATTRIBUTIONS"]], "excessive_reporting_origins (attributionreportingaggregatableresult attribute)": [[49, "nodriver.cdp.storage.AttributionReportingAggregatableResult.EXCESSIVE_REPORTING_ORIGINS"]], "excessive_reporting_origins (attributionreportingeventlevelresult attribute)": [[49, "nodriver.cdp.storage.AttributionReportingEventLevelResult.EXCESSIVE_REPORTING_ORIGINS"]], "excessive_reporting_origins (attributionreportingsourceregistrationresult attribute)": [[49, "nodriver.cdp.storage.AttributionReportingSourceRegistrationResult.EXCESSIVE_REPORTING_ORIGINS"]], "excessive_reports (attributionreportingaggregatableresult attribute)": [[49, "nodriver.cdp.storage.AttributionReportingAggregatableResult.EXCESSIVE_REPORTS"]], "excessive_reports (attributionreportingeventlevelresult attribute)": [[49, "nodriver.cdp.storage.AttributionReportingEventLevelResult.EXCESSIVE_REPORTS"]], "exclude (attributionreportingsourceregistrationtimeconfig attribute)": [[49, "nodriver.cdp.storage.AttributionReportingSourceRegistrationTimeConfig.EXCLUDE"]], "falsely_attributed_source (attributionreportingeventlevelresult attribute)": [[49, "nodriver.cdp.storage.AttributionReportingEventLevelResult.FALSELY_ATTRIBUTED_SOURCE"]], "file_systems (storagetype attribute)": [[49, "nodriver.cdp.storage.StorageType.FILE_SYSTEMS"]], "header_append (sharedstorageaccesstype attribute)": [[49, "nodriver.cdp.storage.SharedStorageAccessType.HEADER_APPEND"]], "header_clear (sharedstorageaccesstype attribute)": [[49, "nodriver.cdp.storage.SharedStorageAccessType.HEADER_CLEAR"]], "header_delete (sharedstorageaccesstype attribute)": [[49, "nodriver.cdp.storage.SharedStorageAccessType.HEADER_DELETE"]], "header_set (sharedstorageaccesstype attribute)": [[49, "nodriver.cdp.storage.SharedStorageAccessType.HEADER_SET"]], "include (attributionreportingsourceregistrationtimeconfig attribute)": [[49, "nodriver.cdp.storage.AttributionReportingSourceRegistrationTimeConfig.INCLUDE"]], "indexeddb (storagetype attribute)": [[49, "nodriver.cdp.storage.StorageType.INDEXEDDB"]], "insufficient_budget (attributionreportingaggregatableresult attribute)": [[49, "nodriver.cdp.storage.AttributionReportingAggregatableResult.INSUFFICIENT_BUDGET"]], "insufficient_named_budget (attributionreportingaggregatableresult attribute)": [[49, "nodriver.cdp.storage.AttributionReportingAggregatableResult.INSUFFICIENT_NAMED_BUDGET"]], "insufficient_source_capacity (attributionreportingsourceregistrationresult attribute)": [[49, "nodriver.cdp.storage.AttributionReportingSourceRegistrationResult.INSUFFICIENT_SOURCE_CAPACITY"]], "insufficient_unique_destination_capacity (attributionreportingsourceregistrationresult attribute)": [[49, "nodriver.cdp.storage.AttributionReportingSourceRegistrationResult.INSUFFICIENT_UNIQUE_DESTINATION_CAPACITY"]], "interest_groups (storagetype attribute)": [[49, "nodriver.cdp.storage.StorageType.INTEREST_GROUPS"]], "internal_error (attributionreportingaggregatableresult attribute)": [[49, "nodriver.cdp.storage.AttributionReportingAggregatableResult.INTERNAL_ERROR"]], "internal_error (attributionreportingeventlevelresult attribute)": [[49, "nodriver.cdp.storage.AttributionReportingEventLevelResult.INTERNAL_ERROR"]], "internal_error (attributionreportingsourceregistrationresult attribute)": [[49, "nodriver.cdp.storage.AttributionReportingSourceRegistrationResult.INTERNAL_ERROR"]], "indexeddbcontentupdated (class in nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.IndexedDBContentUpdated"]], "indexeddblistupdated (class in nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.IndexedDBListUpdated"]], "interestgroupaccesstype (class in nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.InterestGroupAccessType"]], "interestgroupaccessed (class in nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.InterestGroupAccessed"]], "interestgroupauctioneventoccurred (class in nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.InterestGroupAuctionEventOccurred"]], "interestgroupauctioneventtype (class in nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.InterestGroupAuctionEventType"]], "interestgroupauctionfetchtype (class in nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.InterestGroupAuctionFetchType"]], "interestgroupauctionid (class in nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.InterestGroupAuctionId"]], "interestgroupauctionnetworkrequestcreated (class in nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.InterestGroupAuctionNetworkRequestCreated"]], "join (interestgroupaccesstype attribute)": [[49, "nodriver.cdp.storage.InterestGroupAccessType.JOIN"]], "leave (interestgroupaccesstype attribute)": [[49, "nodriver.cdp.storage.InterestGroupAccessType.LEAVE"]], "loaded (interestgroupaccesstype attribute)": [[49, "nodriver.cdp.storage.InterestGroupAccessType.LOADED"]], "local_storage (storagetype attribute)": [[49, "nodriver.cdp.storage.StorageType.LOCAL_STORAGE"]], "modulus (attributionreportingtriggerdatamatching attribute)": [[49, "nodriver.cdp.storage.AttributionReportingTriggerDataMatching.MODULUS"]], "navigation (attributionreportingsourcetype attribute)": [[49, "nodriver.cdp.storage.AttributionReportingSourceType.NAVIGATION"]], "never_attributed_source (attributionreportingeventlevelresult attribute)": [[49, "nodriver.cdp.storage.AttributionReportingEventLevelResult.NEVER_ATTRIBUTED_SOURCE"]], "not_registered (attributionreportingaggregatableresult attribute)": [[49, "nodriver.cdp.storage.AttributionReportingAggregatableResult.NOT_REGISTERED"]], "not_registered (attributionreportingeventlevelresult attribute)": [[49, "nodriver.cdp.storage.AttributionReportingEventLevelResult.NOT_REGISTERED"]], "no_capacity_for_attribution_destination (attributionreportingaggregatableresult attribute)": [[49, "nodriver.cdp.storage.AttributionReportingAggregatableResult.NO_CAPACITY_FOR_ATTRIBUTION_DESTINATION"]], "no_capacity_for_attribution_destination (attributionreportingeventlevelresult attribute)": [[49, "nodriver.cdp.storage.AttributionReportingEventLevelResult.NO_CAPACITY_FOR_ATTRIBUTION_DESTINATION"]], "no_histograms (attributionreportingaggregatableresult attribute)": [[49, "nodriver.cdp.storage.AttributionReportingAggregatableResult.NO_HISTOGRAMS"]], "no_matching_configurations (attributionreportingeventlevelresult attribute)": [[49, "nodriver.cdp.storage.AttributionReportingEventLevelResult.NO_MATCHING_CONFIGURATIONS"]], "no_matching_sources (attributionreportingaggregatableresult attribute)": [[49, "nodriver.cdp.storage.AttributionReportingAggregatableResult.NO_MATCHING_SOURCES"]], "no_matching_sources (attributionreportingeventlevelresult attribute)": [[49, "nodriver.cdp.storage.AttributionReportingEventLevelResult.NO_MATCHING_SOURCES"]], "no_matching_source_filter_data (attributionreportingaggregatableresult attribute)": [[49, "nodriver.cdp.storage.AttributionReportingAggregatableResult.NO_MATCHING_SOURCE_FILTER_DATA"]], "no_matching_source_filter_data (attributionreportingeventlevelresult attribute)": [[49, "nodriver.cdp.storage.AttributionReportingEventLevelResult.NO_MATCHING_SOURCE_FILTER_DATA"]], "no_matching_trigger_data (attributionreportingeventlevelresult attribute)": [[49, "nodriver.cdp.storage.AttributionReportingEventLevelResult.NO_MATCHING_TRIGGER_DATA"]], "other (storagetype attribute)": [[49, "nodriver.cdp.storage.StorageType.OTHER"]], "priority_too_low (attributionreportingeventlevelresult attribute)": [[49, "nodriver.cdp.storage.AttributionReportingEventLevelResult.PRIORITY_TOO_LOW"]], "prohibited_by_browser_policy (attributionreportingaggregatableresult attribute)": [[49, "nodriver.cdp.storage.AttributionReportingAggregatableResult.PROHIBITED_BY_BROWSER_POLICY"]], "prohibited_by_browser_policy (attributionreportingeventlevelresult attribute)": [[49, "nodriver.cdp.storage.AttributionReportingEventLevelResult.PROHIBITED_BY_BROWSER_POLICY"]], "prohibited_by_browser_policy (attributionreportingsourceregistrationresult attribute)": [[49, "nodriver.cdp.storage.AttributionReportingSourceRegistrationResult.PROHIBITED_BY_BROWSER_POLICY"]], "relaxed (storagebucketsdurability attribute)": [[49, "nodriver.cdp.storage.StorageBucketsDurability.RELAXED"]], "reporting_origins_per_site_limit_reached (attributionreportingsourceregistrationresult attribute)": [[49, "nodriver.cdp.storage.AttributionReportingSourceRegistrationResult.REPORTING_ORIGINS_PER_SITE_LIMIT_REACHED"]], "report_window_not_started (attributionreportingeventlevelresult attribute)": [[49, "nodriver.cdp.storage.AttributionReportingEventLevelResult.REPORT_WINDOW_NOT_STARTED"]], "report_window_passed (attributionreportingaggregatableresult attribute)": [[49, "nodriver.cdp.storage.AttributionReportingAggregatableResult.REPORT_WINDOW_PASSED"]], "report_window_passed (attributionreportingeventlevelresult attribute)": [[49, "nodriver.cdp.storage.AttributionReportingEventLevelResult.REPORT_WINDOW_PASSED"]], "relatedwebsiteset (class in nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.RelatedWebsiteSet"]], "seller_js (interestgroupauctionfetchtype attribute)": [[49, "nodriver.cdp.storage.InterestGroupAuctionFetchType.SELLER_JS"]], "seller_trusted_signals (interestgroupauctionfetchtype attribute)": [[49, "nodriver.cdp.storage.InterestGroupAuctionFetchType.SELLER_TRUSTED_SIGNALS"]], "service_workers (storagetype attribute)": [[49, "nodriver.cdp.storage.StorageType.SERVICE_WORKERS"]], "shader_cache (storagetype attribute)": [[49, "nodriver.cdp.storage.StorageType.SHADER_CACHE"]], "shared_storage (storagetype attribute)": [[49, "nodriver.cdp.storage.StorageType.SHARED_STORAGE"]], "started (interestgroupauctioneventtype attribute)": [[49, "nodriver.cdp.storage.InterestGroupAuctionEventType.STARTED"]], "storage_buckets (storagetype attribute)": [[49, "nodriver.cdp.storage.StorageType.STORAGE_BUCKETS"]], "strict (storagebucketsdurability attribute)": [[49, "nodriver.cdp.storage.StorageBucketsDurability.STRICT"]], "success (attributionreportingaggregatableresult attribute)": [[49, "nodriver.cdp.storage.AttributionReportingAggregatableResult.SUCCESS"]], "success (attributionreportingeventlevelresult attribute)": [[49, "nodriver.cdp.storage.AttributionReportingEventLevelResult.SUCCESS"]], "success (attributionreportingsourceregistrationresult attribute)": [[49, "nodriver.cdp.storage.AttributionReportingSourceRegistrationResult.SUCCESS"]], "success_dropped_lower_priority (attributionreportingeventlevelresult attribute)": [[49, "nodriver.cdp.storage.AttributionReportingEventLevelResult.SUCCESS_DROPPED_LOWER_PRIORITY"]], "success_noised (attributionreportingsourceregistrationresult attribute)": [[49, "nodriver.cdp.storage.AttributionReportingSourceRegistrationResult.SUCCESS_NOISED"]], "serializedstoragekey (class in nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.SerializedStorageKey"]], "sharedstorageaccessparams (class in nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.SharedStorageAccessParams"]], "sharedstorageaccesstype (class in nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.SharedStorageAccessType"]], "sharedstorageaccessed (class in nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.SharedStorageAccessed"]], "sharedstorageentry (class in nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.SharedStorageEntry"]], "sharedstoragemetadata (class in nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.SharedStorageMetadata"]], "sharedstoragereportingmetadata (class in nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.SharedStorageReportingMetadata"]], "sharedstorageurlwithmetadata (class in nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.SharedStorageUrlWithMetadata"]], "signedint64asbase10 (class in nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.SignedInt64AsBase10"]], "storagebucket (class in nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.StorageBucket"]], "storagebucketcreatedorupdated (class in nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.StorageBucketCreatedOrUpdated"]], "storagebucketdeleted (class in nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.StorageBucketDeleted"]], "storagebucketinfo (class in nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.StorageBucketInfo"]], "storagebucketsdurability (class in nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.StorageBucketsDurability"]], "storagetype (class in nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.StorageType"]], "top_level_additional_bid (interestgroupaccesstype attribute)": [[49, "nodriver.cdp.storage.InterestGroupAccessType.TOP_LEVEL_ADDITIONAL_BID"]], "top_level_bid (interestgroupaccesstype attribute)": [[49, "nodriver.cdp.storage.InterestGroupAccessType.TOP_LEVEL_BID"]], "trusttokens (class in nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.TrustTokens"]], "update (interestgroupaccesstype attribute)": [[49, "nodriver.cdp.storage.InterestGroupAccessType.UPDATE"]], "unsignedint128asbase16 (class in nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.UnsignedInt128AsBase16"]], "unsignedint64asbase10 (class in nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.UnsignedInt64AsBase10"]], "usagefortype (class in nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.UsageForType"]], "websql (storagetype attribute)": [[49, "nodriver.cdp.storage.StorageType.WEBSQL"]], "win (interestgroupaccesstype attribute)": [[49, "nodriver.cdp.storage.InterestGroupAccessType.WIN"]], "worklet_append (sharedstorageaccesstype attribute)": [[49, "nodriver.cdp.storage.SharedStorageAccessType.WORKLET_APPEND"]], "worklet_clear (sharedstorageaccesstype attribute)": [[49, "nodriver.cdp.storage.SharedStorageAccessType.WORKLET_CLEAR"]], "worklet_delete (sharedstorageaccesstype attribute)": [[49, "nodriver.cdp.storage.SharedStorageAccessType.WORKLET_DELETE"]], "worklet_entries (sharedstorageaccesstype attribute)": [[49, "nodriver.cdp.storage.SharedStorageAccessType.WORKLET_ENTRIES"]], "worklet_get (sharedstorageaccesstype attribute)": [[49, "nodriver.cdp.storage.SharedStorageAccessType.WORKLET_GET"]], "worklet_keys (sharedstorageaccesstype attribute)": [[49, "nodriver.cdp.storage.SharedStorageAccessType.WORKLET_KEYS"]], "worklet_length (sharedstorageaccesstype attribute)": [[49, "nodriver.cdp.storage.SharedStorageAccessType.WORKLET_LENGTH"]], "worklet_remaining_budget (sharedstorageaccesstype attribute)": [[49, "nodriver.cdp.storage.SharedStorageAccessType.WORKLET_REMAINING_BUDGET"]], "worklet_set (sharedstorageaccesstype attribute)": [[49, "nodriver.cdp.storage.SharedStorageAccessType.WORKLET_SET"]], "access_time (interestgroupaccessed attribute)": [[49, "nodriver.cdp.storage.InterestGroupAccessed.access_time"]], "access_time (sharedstorageaccessed attribute)": [[49, "nodriver.cdp.storage.SharedStorageAccessed.access_time"]], "aggregatable (attributionreportingtriggerregistered attribute)": [[49, "nodriver.cdp.storage.AttributionReportingTriggerRegistered.aggregatable"]], "aggregatable_debug_reporting_config (attributionreportingsourceregistration attribute)": [[49, "nodriver.cdp.storage.AttributionReportingSourceRegistration.aggregatable_debug_reporting_config"]], "aggregatable_debug_reporting_config (attributionreportingtriggerregistration attribute)": [[49, "nodriver.cdp.storage.AttributionReportingTriggerRegistration.aggregatable_debug_reporting_config"]], "aggregatable_dedup_keys (attributionreportingtriggerregistration attribute)": [[49, "nodriver.cdp.storage.AttributionReportingTriggerRegistration.aggregatable_dedup_keys"]], "aggregatable_filtering_id_max_bytes (attributionreportingtriggerregistration attribute)": [[49, "nodriver.cdp.storage.AttributionReportingTriggerRegistration.aggregatable_filtering_id_max_bytes"]], "aggregatable_report_window (attributionreportingsourceregistration attribute)": [[49, "nodriver.cdp.storage.AttributionReportingSourceRegistration.aggregatable_report_window"]], "aggregatable_trigger_data (attributionreportingtriggerregistration attribute)": [[49, "nodriver.cdp.storage.AttributionReportingTriggerRegistration.aggregatable_trigger_data"]], "aggregatable_values (attributionreportingtriggerregistration attribute)": [[49, "nodriver.cdp.storage.AttributionReportingTriggerRegistration.aggregatable_values"]], "aggregation_coordinator_origin (attributionreportingaggregatabledebugreportingconfig attribute)": [[49, "nodriver.cdp.storage.AttributionReportingAggregatableDebugReportingConfig.aggregation_coordinator_origin"]], "aggregation_coordinator_origin (attributionreportingtriggerregistration attribute)": [[49, "nodriver.cdp.storage.AttributionReportingTriggerRegistration.aggregation_coordinator_origin"]], "aggregation_keys (attributionreportingsourceregistration attribute)": [[49, "nodriver.cdp.storage.AttributionReportingSourceRegistration.aggregation_keys"]], "associated_sites (relatedwebsiteset attribute)": [[49, "nodriver.cdp.storage.RelatedWebsiteSet.associated_sites"]], "auction_config (interestgroupauctioneventoccurred attribute)": [[49, "nodriver.cdp.storage.InterestGroupAuctionEventOccurred.auction_config"]], "auctions (interestgroupauctionnetworkrequestcreated attribute)": [[49, "nodriver.cdp.storage.InterestGroupAuctionNetworkRequestCreated.auctions"]], "bid (interestgroupaccessed attribute)": [[49, "nodriver.cdp.storage.InterestGroupAccessed.bid"]], "bid_currency (interestgroupaccessed attribute)": [[49, "nodriver.cdp.storage.InterestGroupAccessed.bid_currency"]], "bucket (storagebucketinfo attribute)": [[49, "nodriver.cdp.storage.StorageBucketInfo.bucket"]], "bucket_id (cachestoragecontentupdated attribute)": [[49, "nodriver.cdp.storage.CacheStorageContentUpdated.bucket_id"]], "bucket_id (cachestoragelistupdated attribute)": [[49, "nodriver.cdp.storage.CacheStorageListUpdated.bucket_id"]], "bucket_id (indexeddbcontentupdated attribute)": [[49, "nodriver.cdp.storage.IndexedDBContentUpdated.bucket_id"]], "bucket_id (indexeddblistupdated attribute)": [[49, "nodriver.cdp.storage.IndexedDBListUpdated.bucket_id"]], "bucket_id (storagebucketdeleted attribute)": [[49, "nodriver.cdp.storage.StorageBucketDeleted.bucket_id"]], "bucket_info (storagebucketcreatedorupdated attribute)": [[49, "nodriver.cdp.storage.StorageBucketCreatedOrUpdated.bucket_info"]], "budget (attributionreportingaggregatabledebugreportingconfig attribute)": [[49, "nodriver.cdp.storage.AttributionReportingAggregatableDebugReportingConfig.budget"]], "bytes_used (sharedstoragemetadata attribute)": [[49, "nodriver.cdp.storage.SharedStorageMetadata.bytes_used"]], "cache_name (cachestoragecontentupdated attribute)": [[49, "nodriver.cdp.storage.CacheStorageContentUpdated.cache_name"]], "clear_cookies() (in module nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.clear_cookies"]], "clear_data_for_origin() (in module nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.clear_data_for_origin"]], "clear_data_for_storage_key() (in module nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.clear_data_for_storage_key"]], "clear_shared_storage_entries() (in module nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.clear_shared_storage_entries"]], "clear_trust_tokens() (in module nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.clear_trust_tokens"]], "component_seller_origin (interestgroupaccessed attribute)": [[49, "nodriver.cdp.storage.InterestGroupAccessed.component_seller_origin"]], "count (trusttokens attribute)": [[49, "nodriver.cdp.storage.TrustTokens.count"]], "creation_time (sharedstoragemetadata attribute)": [[49, "nodriver.cdp.storage.SharedStorageMetadata.creation_time"]], "data (attributionreportingeventtriggerdata attribute)": [[49, "nodriver.cdp.storage.AttributionReportingEventTriggerData.data"]], "database_name (indexeddbcontentupdated attribute)": [[49, "nodriver.cdp.storage.IndexedDBContentUpdated.database_name"]], "debug_data (attributionreportingaggregatabledebugreportingconfig attribute)": [[49, "nodriver.cdp.storage.AttributionReportingAggregatableDebugReportingConfig.debug_data"]], "debug_key (attributionreportingsourceregistration attribute)": [[49, "nodriver.cdp.storage.AttributionReportingSourceRegistration.debug_key"]], "debug_key (attributionreportingtriggerregistration attribute)": [[49, "nodriver.cdp.storage.AttributionReportingTriggerRegistration.debug_key"]], "debug_reporting (attributionreportingtriggerregistration attribute)": [[49, "nodriver.cdp.storage.AttributionReportingTriggerRegistration.debug_reporting"]], "dedup_key (attributionreportingaggregatablededupkey attribute)": [[49, "nodriver.cdp.storage.AttributionReportingAggregatableDedupKey.dedup_key"]], "dedup_key (attributionreportingeventtriggerdata attribute)": [[49, "nodriver.cdp.storage.AttributionReportingEventTriggerData.dedup_key"]], "delete_shared_storage_entry() (in module nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.delete_shared_storage_entry"]], "delete_storage_bucket() (in module nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.delete_storage_bucket"]], "destination_limit_priority (attributionreportingsourceregistration attribute)": [[49, "nodriver.cdp.storage.AttributionReportingSourceRegistration.destination_limit_priority"]], "destination_sites (attributionreportingsourceregistration attribute)": [[49, "nodriver.cdp.storage.AttributionReportingSourceRegistration.destination_sites"]], "durability (storagebucketinfo attribute)": [[49, "nodriver.cdp.storage.StorageBucketInfo.durability"]], "ends (attributionreportingeventreportwindows attribute)": [[49, "nodriver.cdp.storage.AttributionReportingEventReportWindows.ends"]], "event_id (attributionreportingsourceregistration attribute)": [[49, "nodriver.cdp.storage.AttributionReportingSourceRegistration.event_id"]], "event_level (attributionreportingtriggerregistered attribute)": [[49, "nodriver.cdp.storage.AttributionReportingTriggerRegistered.event_level"]], "event_report_windows (attributionreportingtriggerspec attribute)": [[49, "nodriver.cdp.storage.AttributionReportingTriggerSpec.event_report_windows"]], "event_time (interestgroupauctioneventoccurred attribute)": [[49, "nodriver.cdp.storage.InterestGroupAuctionEventOccurred.event_time"]], "event_trigger_data (attributionreportingtriggerregistration attribute)": [[49, "nodriver.cdp.storage.AttributionReportingTriggerRegistration.event_trigger_data"]], "event_type (sharedstoragereportingmetadata attribute)": [[49, "nodriver.cdp.storage.SharedStorageReportingMetadata.event_type"]], "expiration (storagebucketinfo attribute)": [[49, "nodriver.cdp.storage.StorageBucketInfo.expiration"]], "expiry (attributionreportingsourceregistration attribute)": [[49, "nodriver.cdp.storage.AttributionReportingSourceRegistration.expiry"]], "filter_data (attributionreportingsourceregistration attribute)": [[49, "nodriver.cdp.storage.AttributionReportingSourceRegistration.filter_data"]], "filter_values (attributionreportingfilterconfig attribute)": [[49, "nodriver.cdp.storage.AttributionReportingFilterConfig.filter_values"]], "filtering_id (attributionreportingaggregatablevaluedictentry attribute)": [[49, "nodriver.cdp.storage.AttributionReportingAggregatableValueDictEntry.filtering_id"]], "filters (attributionreportingaggregatablededupkey attribute)": [[49, "nodriver.cdp.storage.AttributionReportingAggregatableDedupKey.filters"]], "filters (attributionreportingaggregatabletriggerdata attribute)": [[49, "nodriver.cdp.storage.AttributionReportingAggregatableTriggerData.filters"]], "filters (attributionreportingaggregatablevalueentry attribute)": [[49, "nodriver.cdp.storage.AttributionReportingAggregatableValueEntry.filters"]], "filters (attributionreportingeventtriggerdata attribute)": [[49, "nodriver.cdp.storage.AttributionReportingEventTriggerData.filters"]], "filters (attributionreportingfilterpair attribute)": [[49, "nodriver.cdp.storage.AttributionReportingFilterPair.filters"]], "filters (attributionreportingtriggerregistration attribute)": [[49, "nodriver.cdp.storage.AttributionReportingTriggerRegistration.filters"]], "get_cookies() (in module nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.get_cookies"]], "get_interest_group_details() (in module nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.get_interest_group_details"]], "get_related_website_sets() (in module nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.get_related_website_sets"]], "get_shared_storage_entries() (in module nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.get_shared_storage_entries"]], "get_shared_storage_metadata() (in module nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.get_shared_storage_metadata"]], "get_storage_key_for_frame() (in module nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.get_storage_key_for_frame"]], "get_trust_tokens() (in module nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.get_trust_tokens"]], "get_usage_and_quota() (in module nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.get_usage_and_quota"]], "id_ (storagebucketinfo attribute)": [[49, "nodriver.cdp.storage.StorageBucketInfo.id_"]], "ignore_if_present (sharedstorageaccessparams attribute)": [[49, "nodriver.cdp.storage.SharedStorageAccessParams.ignore_if_present"]], "issuer_origin (trusttokens attribute)": [[49, "nodriver.cdp.storage.TrustTokens.issuer_origin"]], "key (attributionreportingaggregatablevaluedictentry attribute)": [[49, "nodriver.cdp.storage.AttributionReportingAggregatableValueDictEntry.key"]], "key (attributionreportingaggregationkeysentry attribute)": [[49, "nodriver.cdp.storage.AttributionReportingAggregationKeysEntry.key"]], "key (attributionreportingfilterdataentry attribute)": [[49, "nodriver.cdp.storage.AttributionReportingFilterDataEntry.key"]], "key (sharedstorageaccessparams attribute)": [[49, "nodriver.cdp.storage.SharedStorageAccessParams.key"]], "key (sharedstorageentry attribute)": [[49, "nodriver.cdp.storage.SharedStorageEntry.key"]], "key_piece (attributionreportingaggregatabledebugreportingconfig attribute)": [[49, "nodriver.cdp.storage.AttributionReportingAggregatableDebugReportingConfig.key_piece"]], "key_piece (attributionreportingaggregatabledebugreportingdata attribute)": [[49, "nodriver.cdp.storage.AttributionReportingAggregatableDebugReportingData.key_piece"]], "key_piece (attributionreportingaggregatabletriggerdata attribute)": [[49, "nodriver.cdp.storage.AttributionReportingAggregatableTriggerData.key_piece"]], "length (sharedstoragemetadata attribute)": [[49, "nodriver.cdp.storage.SharedStorageMetadata.length"]], "limit (attributionscopesdata attribute)": [[49, "nodriver.cdp.storage.AttributionScopesData.limit"]], "lookback_window (attributionreportingfilterconfig attribute)": [[49, "nodriver.cdp.storage.AttributionReportingFilterConfig.lookback_window"]], "main_frame_id (sharedstorageaccessed attribute)": [[49, "nodriver.cdp.storage.SharedStorageAccessed.main_frame_id"]], "max_event_level_reports (attributionreportingsourceregistration attribute)": [[49, "nodriver.cdp.storage.AttributionReportingSourceRegistration.max_event_level_reports"]], "max_event_states (attributionscopesdata attribute)": [[49, "nodriver.cdp.storage.AttributionScopesData.max_event_states"]], "name (interestgroupaccessed attribute)": [[49, "nodriver.cdp.storage.InterestGroupAccessed.name"]], "name (storagebucket attribute)": [[49, "nodriver.cdp.storage.StorageBucket.name"]], "nodriver.cdp.storage": [[49, "module-nodriver.cdp.storage"]], "not_filters (attributionreportingfilterpair attribute)": [[49, "nodriver.cdp.storage.AttributionReportingFilterPair.not_filters"]], "object_store_name (indexeddbcontentupdated attribute)": [[49, "nodriver.cdp.storage.IndexedDBContentUpdated.object_store_name"]], "operation_name (sharedstorageaccessparams attribute)": [[49, "nodriver.cdp.storage.SharedStorageAccessParams.operation_name"]], "origin (cachestoragecontentupdated attribute)": [[49, "nodriver.cdp.storage.CacheStorageContentUpdated.origin"]], "origin (cachestoragelistupdated attribute)": [[49, "nodriver.cdp.storage.CacheStorageListUpdated.origin"]], "origin (indexeddbcontentupdated attribute)": [[49, "nodriver.cdp.storage.IndexedDBContentUpdated.origin"]], "origin (indexeddblistupdated attribute)": [[49, "nodriver.cdp.storage.IndexedDBListUpdated.origin"]], "override_quota_for_origin() (in module nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.override_quota_for_origin"]], "owner_origin (interestgroupaccessed attribute)": [[49, "nodriver.cdp.storage.InterestGroupAccessed.owner_origin"]], "owner_origin (sharedstorageaccessed attribute)": [[49, "nodriver.cdp.storage.SharedStorageAccessed.owner_origin"]], "params (sharedstorageaccessed attribute)": [[49, "nodriver.cdp.storage.SharedStorageAccessed.params"]], "parent_auction_id (interestgroupauctioneventoccurred attribute)": [[49, "nodriver.cdp.storage.InterestGroupAuctionEventOccurred.parent_auction_id"]], "persistent (storagebucketinfo attribute)": [[49, "nodriver.cdp.storage.StorageBucketInfo.persistent"]], "primary_sites (relatedwebsiteset attribute)": [[49, "nodriver.cdp.storage.RelatedWebsiteSet.primary_sites"]], "priority (attributionreportingeventtriggerdata attribute)": [[49, "nodriver.cdp.storage.AttributionReportingEventTriggerData.priority"]], "priority (attributionreportingsourceregistration attribute)": [[49, "nodriver.cdp.storage.AttributionReportingSourceRegistration.priority"]], "quota (storagebucketinfo attribute)": [[49, "nodriver.cdp.storage.StorageBucketInfo.quota"]], "registration (attributionreportingsourceregistered attribute)": [[49, "nodriver.cdp.storage.AttributionReportingSourceRegistered.registration"]], "registration (attributionreportingtriggerregistered attribute)": [[49, "nodriver.cdp.storage.AttributionReportingTriggerRegistered.registration"]], "remaining_budget (sharedstoragemetadata attribute)": [[49, "nodriver.cdp.storage.SharedStorageMetadata.remaining_budget"]], "reporting_metadata (sharedstorageurlwithmetadata attribute)": [[49, "nodriver.cdp.storage.SharedStorageUrlWithMetadata.reporting_metadata"]], "reporting_origin (attributionreportingsourceregistration attribute)": [[49, "nodriver.cdp.storage.AttributionReportingSourceRegistration.reporting_origin"]], "reporting_url (sharedstoragereportingmetadata attribute)": [[49, "nodriver.cdp.storage.SharedStorageReportingMetadata.reporting_url"]], "request_id (interestgroupauctionnetworkrequestcreated attribute)": [[49, "nodriver.cdp.storage.InterestGroupAuctionNetworkRequestCreated.request_id"]], "reset_shared_storage_budget() (in module nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.reset_shared_storage_budget"]], "result (attributionreportingsourceregistered attribute)": [[49, "nodriver.cdp.storage.AttributionReportingSourceRegistered.result"]], "run_bounce_tracking_mitigations() (in module nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.run_bounce_tracking_mitigations"]], "scopes (attributionreportingtriggerregistration attribute)": [[49, "nodriver.cdp.storage.AttributionReportingTriggerRegistration.scopes"]], "scopes_data (attributionreportingsourceregistration attribute)": [[49, "nodriver.cdp.storage.AttributionReportingSourceRegistration.scopes_data"]], "script_source_url (sharedstorageaccessparams attribute)": [[49, "nodriver.cdp.storage.SharedStorageAccessParams.script_source_url"]], "send_pending_attribution_reports() (in module nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.send_pending_attribution_reports"]], "serialized_data (sharedstorageaccessparams attribute)": [[49, "nodriver.cdp.storage.SharedStorageAccessParams.serialized_data"]], "service_sites (relatedwebsiteset attribute)": [[49, "nodriver.cdp.storage.RelatedWebsiteSet.service_sites"]], "set_attribution_reporting_local_testing_mode() (in module nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.set_attribution_reporting_local_testing_mode"]], "set_attribution_reporting_tracking() (in module nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.set_attribution_reporting_tracking"]], "set_cookies() (in module nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.set_cookies"]], "set_interest_group_auction_tracking() (in module nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.set_interest_group_auction_tracking"]], "set_interest_group_tracking() (in module nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.set_interest_group_tracking"]], "set_shared_storage_entry() (in module nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.set_shared_storage_entry"]], "set_shared_storage_tracking() (in module nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.set_shared_storage_tracking"]], "set_storage_bucket_tracking() (in module nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.set_storage_bucket_tracking"]], "source_keys (attributionreportingaggregatabletriggerdata attribute)": [[49, "nodriver.cdp.storage.AttributionReportingAggregatableTriggerData.source_keys"]], "source_origin (attributionreportingsourceregistration attribute)": [[49, "nodriver.cdp.storage.AttributionReportingSourceRegistration.source_origin"]], "source_registration_time_config (attributionreportingtriggerregistration attribute)": [[49, "nodriver.cdp.storage.AttributionReportingTriggerRegistration.source_registration_time_config"]], "start (attributionreportingeventreportwindows attribute)": [[49, "nodriver.cdp.storage.AttributionReportingEventReportWindows.start"]], "storage_key (cachestoragecontentupdated attribute)": [[49, "nodriver.cdp.storage.CacheStorageContentUpdated.storage_key"]], "storage_key (cachestoragelistupdated attribute)": [[49, "nodriver.cdp.storage.CacheStorageListUpdated.storage_key"]], "storage_key (indexeddbcontentupdated attribute)": [[49, "nodriver.cdp.storage.IndexedDBContentUpdated.storage_key"]], "storage_key (indexeddblistupdated attribute)": [[49, "nodriver.cdp.storage.IndexedDBListUpdated.storage_key"]], "storage_key (storagebucket attribute)": [[49, "nodriver.cdp.storage.StorageBucket.storage_key"]], "storage_type (usagefortype attribute)": [[49, "nodriver.cdp.storage.UsageForType.storage_type"]], "time (attributionreportingsourceregistration attribute)": [[49, "nodriver.cdp.storage.AttributionReportingSourceRegistration.time"]], "track_cache_storage_for_origin() (in module nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.track_cache_storage_for_origin"]], "track_cache_storage_for_storage_key() (in module nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.track_cache_storage_for_storage_key"]], "track_indexed_db_for_origin() (in module nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.track_indexed_db_for_origin"]], "track_indexed_db_for_storage_key() (in module nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.track_indexed_db_for_storage_key"]], "trigger_context_id (attributionreportingtriggerregistration attribute)": [[49, "nodriver.cdp.storage.AttributionReportingTriggerRegistration.trigger_context_id"]], "trigger_data (attributionreportingtriggerspec attribute)": [[49, "nodriver.cdp.storage.AttributionReportingTriggerSpec.trigger_data"]], "trigger_data_matching (attributionreportingsourceregistration attribute)": [[49, "nodriver.cdp.storage.AttributionReportingSourceRegistration.trigger_data_matching"]], "trigger_specs (attributionreportingsourceregistration attribute)": [[49, "nodriver.cdp.storage.AttributionReportingSourceRegistration.trigger_specs"]], "type_ (attributionreportingsourceregistration attribute)": [[49, "nodriver.cdp.storage.AttributionReportingSourceRegistration.type_"]], "type_ (interestgroupaccessed attribute)": [[49, "nodriver.cdp.storage.InterestGroupAccessed.type_"]], "type_ (interestgroupauctioneventoccurred attribute)": [[49, "nodriver.cdp.storage.InterestGroupAuctionEventOccurred.type_"]], "type_ (interestgroupauctionnetworkrequestcreated attribute)": [[49, "nodriver.cdp.storage.InterestGroupAuctionNetworkRequestCreated.type_"]], "type_ (sharedstorageaccessed attribute)": [[49, "nodriver.cdp.storage.SharedStorageAccessed.type_"]], "types (attributionreportingaggregatabledebugreportingdata attribute)": [[49, "nodriver.cdp.storage.AttributionReportingAggregatableDebugReportingData.types"]], "unique_auction_id (interestgroupaccessed attribute)": [[49, "nodriver.cdp.storage.InterestGroupAccessed.unique_auction_id"]], "unique_auction_id (interestgroupauctioneventoccurred attribute)": [[49, "nodriver.cdp.storage.InterestGroupAuctionEventOccurred.unique_auction_id"]], "untrack_cache_storage_for_origin() (in module nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.untrack_cache_storage_for_origin"]], "untrack_cache_storage_for_storage_key() (in module nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.untrack_cache_storage_for_storage_key"]], "untrack_indexed_db_for_origin() (in module nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.untrack_indexed_db_for_origin"]], "untrack_indexed_db_for_storage_key() (in module nodriver.cdp.storage)": [[49, "nodriver.cdp.storage.untrack_indexed_db_for_storage_key"]], "url (sharedstorageurlwithmetadata attribute)": [[49, "nodriver.cdp.storage.SharedStorageUrlWithMetadata.url"]], "urls_with_metadata (sharedstorageaccessparams attribute)": [[49, "nodriver.cdp.storage.SharedStorageAccessParams.urls_with_metadata"]], "usage (usagefortype attribute)": [[49, "nodriver.cdp.storage.UsageForType.usage"]], "value (attributionreportingaggregatabledebugreportingdata attribute)": [[49, "nodriver.cdp.storage.AttributionReportingAggregatableDebugReportingData.value"]], "value (attributionreportingaggregatablevaluedictentry attribute)": [[49, "nodriver.cdp.storage.AttributionReportingAggregatableValueDictEntry.value"]], "value (attributionreportingaggregationkeysentry attribute)": [[49, "nodriver.cdp.storage.AttributionReportingAggregationKeysEntry.value"]], "value (sharedstorageaccessparams attribute)": [[49, "nodriver.cdp.storage.SharedStorageAccessParams.value"]], "value (sharedstorageentry attribute)": [[49, "nodriver.cdp.storage.SharedStorageEntry.value"]], "values (attributionreportingaggregatablevalueentry attribute)": [[49, "nodriver.cdp.storage.AttributionReportingAggregatableValueEntry.values"]], "values (attributionreportingfilterdataentry attribute)": [[49, "nodriver.cdp.storage.AttributionReportingFilterDataEntry.values"]], "values (attributionscopesdata attribute)": [[49, "nodriver.cdp.storage.AttributionScopesData.values"]], "gpudevice (class in nodriver.cdp.system_info)": [[50, "nodriver.cdp.system_info.GPUDevice"]], "gpuinfo (class in nodriver.cdp.system_info)": [[50, "nodriver.cdp.system_info.GPUInfo"]], "imagedecodeacceleratorcapability (class in nodriver.cdp.system_info)": [[50, "nodriver.cdp.system_info.ImageDecodeAcceleratorCapability"]], "imagetype (class in nodriver.cdp.system_info)": [[50, "nodriver.cdp.system_info.ImageType"]], "jpeg (imagetype attribute)": [[50, "nodriver.cdp.system_info.ImageType.JPEG"]], "processinfo (class in nodriver.cdp.system_info)": [[50, "nodriver.cdp.system_info.ProcessInfo"]], "size (class in nodriver.cdp.system_info)": [[50, "nodriver.cdp.system_info.Size"]], "subsamplingformat (class in nodriver.cdp.system_info)": [[50, "nodriver.cdp.system_info.SubsamplingFormat"]], "unknown (imagetype attribute)": [[50, "nodriver.cdp.system_info.ImageType.UNKNOWN"]], "videodecodeacceleratorcapability (class in nodriver.cdp.system_info)": [[50, "nodriver.cdp.system_info.VideoDecodeAcceleratorCapability"]], "videoencodeacceleratorcapability (class in nodriver.cdp.system_info)": [[50, "nodriver.cdp.system_info.VideoEncodeAcceleratorCapability"]], "webp (imagetype attribute)": [[50, "nodriver.cdp.system_info.ImageType.WEBP"]], "yuv420 (subsamplingformat attribute)": [[50, "nodriver.cdp.system_info.SubsamplingFormat.YUV420"]], "yuv422 (subsamplingformat attribute)": [[50, "nodriver.cdp.system_info.SubsamplingFormat.YUV422"]], "yuv444 (subsamplingformat attribute)": [[50, "nodriver.cdp.system_info.SubsamplingFormat.YUV444"]], "aux_attributes (gpuinfo attribute)": [[50, "nodriver.cdp.system_info.GPUInfo.aux_attributes"]], "cpu_time (processinfo attribute)": [[50, "nodriver.cdp.system_info.ProcessInfo.cpu_time"]], "device_id (gpudevice attribute)": [[50, "nodriver.cdp.system_info.GPUDevice.device_id"]], "device_string (gpudevice attribute)": [[50, "nodriver.cdp.system_info.GPUDevice.device_string"]], "devices (gpuinfo attribute)": [[50, "nodriver.cdp.system_info.GPUInfo.devices"]], "driver_bug_workarounds (gpuinfo attribute)": [[50, "nodriver.cdp.system_info.GPUInfo.driver_bug_workarounds"]], "driver_vendor (gpudevice attribute)": [[50, "nodriver.cdp.system_info.GPUDevice.driver_vendor"]], "driver_version (gpudevice attribute)": [[50, "nodriver.cdp.system_info.GPUDevice.driver_version"]], "feature_status (gpuinfo attribute)": [[50, "nodriver.cdp.system_info.GPUInfo.feature_status"]], "get_feature_state() (in module nodriver.cdp.system_info)": [[50, "nodriver.cdp.system_info.get_feature_state"]], "get_info() (in module nodriver.cdp.system_info)": [[50, "nodriver.cdp.system_info.get_info"]], "get_process_info() (in module nodriver.cdp.system_info)": [[50, "nodriver.cdp.system_info.get_process_info"]], "height (size attribute)": [[50, "nodriver.cdp.system_info.Size.height"]], "id_ (processinfo attribute)": [[50, "nodriver.cdp.system_info.ProcessInfo.id_"]], "image_decoding (gpuinfo attribute)": [[50, "nodriver.cdp.system_info.GPUInfo.image_decoding"]], "image_type (imagedecodeacceleratorcapability attribute)": [[50, "nodriver.cdp.system_info.ImageDecodeAcceleratorCapability.image_type"]], "max_dimensions (imagedecodeacceleratorcapability attribute)": [[50, "nodriver.cdp.system_info.ImageDecodeAcceleratorCapability.max_dimensions"]], "max_framerate_denominator (videoencodeacceleratorcapability attribute)": [[50, "nodriver.cdp.system_info.VideoEncodeAcceleratorCapability.max_framerate_denominator"]], "max_framerate_numerator (videoencodeacceleratorcapability attribute)": [[50, "nodriver.cdp.system_info.VideoEncodeAcceleratorCapability.max_framerate_numerator"]], "max_resolution (videodecodeacceleratorcapability attribute)": [[50, "nodriver.cdp.system_info.VideoDecodeAcceleratorCapability.max_resolution"]], "max_resolution (videoencodeacceleratorcapability attribute)": [[50, "nodriver.cdp.system_info.VideoEncodeAcceleratorCapability.max_resolution"]], "min_dimensions (imagedecodeacceleratorcapability attribute)": [[50, "nodriver.cdp.system_info.ImageDecodeAcceleratorCapability.min_dimensions"]], "min_resolution (videodecodeacceleratorcapability attribute)": [[50, "nodriver.cdp.system_info.VideoDecodeAcceleratorCapability.min_resolution"]], "nodriver.cdp.system_info": [[50, "module-nodriver.cdp.system_info"]], "profile (videodecodeacceleratorcapability attribute)": [[50, "nodriver.cdp.system_info.VideoDecodeAcceleratorCapability.profile"]], "profile (videoencodeacceleratorcapability attribute)": [[50, "nodriver.cdp.system_info.VideoEncodeAcceleratorCapability.profile"]], "revision (gpudevice attribute)": [[50, "nodriver.cdp.system_info.GPUDevice.revision"]], "sub_sys_id (gpudevice attribute)": [[50, "nodriver.cdp.system_info.GPUDevice.sub_sys_id"]], "subsamplings (imagedecodeacceleratorcapability attribute)": [[50, "nodriver.cdp.system_info.ImageDecodeAcceleratorCapability.subsamplings"]], "type_ (processinfo attribute)": [[50, "nodriver.cdp.system_info.ProcessInfo.type_"]], "vendor_id (gpudevice attribute)": [[50, "nodriver.cdp.system_info.GPUDevice.vendor_id"]], "vendor_string (gpudevice attribute)": [[50, "nodriver.cdp.system_info.GPUDevice.vendor_string"]], "video_decoding (gpuinfo attribute)": [[50, "nodriver.cdp.system_info.GPUInfo.video_decoding"]], "video_encoding (gpuinfo attribute)": [[50, "nodriver.cdp.system_info.GPUInfo.video_encoding"]], "width (size attribute)": [[50, "nodriver.cdp.system_info.Size.width"]], "attachedtotarget (class in nodriver.cdp.target)": [[51, "nodriver.cdp.target.AttachedToTarget"]], "detachedfromtarget (class in nodriver.cdp.target)": [[51, "nodriver.cdp.target.DetachedFromTarget"]], "filterentry (class in nodriver.cdp.target)": [[51, "nodriver.cdp.target.FilterEntry"]], "receivedmessagefromtarget (class in nodriver.cdp.target)": [[51, "nodriver.cdp.target.ReceivedMessageFromTarget"]], "remotelocation (class in nodriver.cdp.target)": [[51, "nodriver.cdp.target.RemoteLocation"]], "sessionid (class in nodriver.cdp.target)": [[51, "nodriver.cdp.target.SessionID"]], "targetcrashed (class in nodriver.cdp.target)": [[51, "nodriver.cdp.target.TargetCrashed"]], "targetcreated (class in nodriver.cdp.target)": [[51, "nodriver.cdp.target.TargetCreated"]], "targetdestroyed (class in nodriver.cdp.target)": [[51, "nodriver.cdp.target.TargetDestroyed"]], "targetfilter (class in nodriver.cdp.target)": [[51, "nodriver.cdp.target.TargetFilter"]], "targetid (class in nodriver.cdp.target)": [[51, "nodriver.cdp.target.TargetID"]], "targetinfo (class in nodriver.cdp.target)": [[51, "nodriver.cdp.target.TargetInfo"]], "targetinfochanged (class in nodriver.cdp.target)": [[51, "nodriver.cdp.target.TargetInfoChanged"]], "activate_target() (in module nodriver.cdp.target)": [[51, "nodriver.cdp.target.activate_target"]], "attach_to_browser_target() (in module nodriver.cdp.target)": [[51, "nodriver.cdp.target.attach_to_browser_target"]], "attach_to_target() (in module nodriver.cdp.target)": [[51, "nodriver.cdp.target.attach_to_target"]], "attached (targetinfo attribute)": [[51, "nodriver.cdp.target.TargetInfo.attached"]], "auto_attach_related() (in module nodriver.cdp.target)": [[51, "nodriver.cdp.target.auto_attach_related"]], "browser_context_id (targetinfo attribute)": [[51, "nodriver.cdp.target.TargetInfo.browser_context_id"]], "can_access_opener (targetinfo attribute)": [[51, "nodriver.cdp.target.TargetInfo.can_access_opener"]], "close_target() (in module nodriver.cdp.target)": [[51, "nodriver.cdp.target.close_target"]], "create_browser_context() (in module nodriver.cdp.target)": [[51, "nodriver.cdp.target.create_browser_context"]], "create_target() (in module nodriver.cdp.target)": [[51, "nodriver.cdp.target.create_target"]], "detach_from_target() (in module nodriver.cdp.target)": [[51, "nodriver.cdp.target.detach_from_target"]], "dispose_browser_context() (in module nodriver.cdp.target)": [[51, "nodriver.cdp.target.dispose_browser_context"]], "error_code (targetcrashed attribute)": [[51, "nodriver.cdp.target.TargetCrashed.error_code"]], "exclude (filterentry attribute)": [[51, "nodriver.cdp.target.FilterEntry.exclude"]], "expose_dev_tools_protocol() (in module nodriver.cdp.target)": [[51, "nodriver.cdp.target.expose_dev_tools_protocol"]], "get_browser_contexts() (in module nodriver.cdp.target)": [[51, "nodriver.cdp.target.get_browser_contexts"]], "get_target_info() (in module nodriver.cdp.target)": [[51, "nodriver.cdp.target.get_target_info"]], "get_targets() (in module nodriver.cdp.target)": [[51, "nodriver.cdp.target.get_targets"]], "host (remotelocation attribute)": [[51, "nodriver.cdp.target.RemoteLocation.host"]], "message (receivedmessagefromtarget attribute)": [[51, "nodriver.cdp.target.ReceivedMessageFromTarget.message"]], "nodriver.cdp.target": [[51, "module-nodriver.cdp.target"]], "opener_frame_id (targetinfo attribute)": [[51, "nodriver.cdp.target.TargetInfo.opener_frame_id"]], "opener_id (targetinfo attribute)": [[51, "nodriver.cdp.target.TargetInfo.opener_id"]], "port (remotelocation attribute)": [[51, "nodriver.cdp.target.RemoteLocation.port"]], "send_message_to_target() (in module nodriver.cdp.target)": [[51, "nodriver.cdp.target.send_message_to_target"]], "session_id (attachedtotarget attribute)": [[51, "nodriver.cdp.target.AttachedToTarget.session_id"]], "session_id (detachedfromtarget attribute)": [[51, "nodriver.cdp.target.DetachedFromTarget.session_id"]], "session_id (receivedmessagefromtarget attribute)": [[51, "nodriver.cdp.target.ReceivedMessageFromTarget.session_id"]], "set_auto_attach() (in module nodriver.cdp.target)": [[51, "nodriver.cdp.target.set_auto_attach"]], "set_discover_targets() (in module nodriver.cdp.target)": [[51, "nodriver.cdp.target.set_discover_targets"]], "set_remote_locations() (in module nodriver.cdp.target)": [[51, "nodriver.cdp.target.set_remote_locations"]], "status (targetcrashed attribute)": [[51, "nodriver.cdp.target.TargetCrashed.status"]], "subtype (targetinfo attribute)": [[51, "nodriver.cdp.target.TargetInfo.subtype"]], "target_id (detachedfromtarget attribute)": [[51, "nodriver.cdp.target.DetachedFromTarget.target_id"]], "target_id (receivedmessagefromtarget attribute)": [[51, "nodriver.cdp.target.ReceivedMessageFromTarget.target_id"]], "target_id (targetcrashed attribute)": [[51, "nodriver.cdp.target.TargetCrashed.target_id"]], "target_id (targetdestroyed attribute)": [[51, "nodriver.cdp.target.TargetDestroyed.target_id"]], "target_id (targetinfo attribute)": [[51, "nodriver.cdp.target.TargetInfo.target_id"]], "target_info (attachedtotarget attribute)": [[51, "nodriver.cdp.target.AttachedToTarget.target_info"]], "target_info (targetcreated attribute)": [[51, "nodriver.cdp.target.TargetCreated.target_info"]], "target_info (targetinfochanged attribute)": [[51, "nodriver.cdp.target.TargetInfoChanged.target_info"]], "title (targetinfo attribute)": [[51, "nodriver.cdp.target.TargetInfo.title"]], "type_ (filterentry attribute)": [[51, "nodriver.cdp.target.FilterEntry.type_"]], "type_ (targetinfo attribute)": [[51, "nodriver.cdp.target.TargetInfo.type_"]], "url (targetinfo attribute)": [[51, "nodriver.cdp.target.TargetInfo.url"]], "waiting_for_debugger (attachedtotarget attribute)": [[51, "nodriver.cdp.target.AttachedToTarget.waiting_for_debugger"]], "accepted (class in nodriver.cdp.tethering)": [[52, "nodriver.cdp.tethering.Accepted"]], "bind() (in module nodriver.cdp.tethering)": [[52, "nodriver.cdp.tethering.bind"]], "connection_id (accepted attribute)": [[52, "nodriver.cdp.tethering.Accepted.connection_id"]], "nodriver.cdp.tethering": [[52, "module-nodriver.cdp.tethering"]], "port (accepted attribute)": [[52, "nodriver.cdp.tethering.Accepted.port"]], "unbind() (in module nodriver.cdp.tethering)": [[52, "nodriver.cdp.tethering.unbind"]], "auto (tracingbackend attribute)": [[53, "nodriver.cdp.tracing.TracingBackend.AUTO"]], "background (memorydumplevelofdetail attribute)": [[53, "nodriver.cdp.tracing.MemoryDumpLevelOfDetail.BACKGROUND"]], "bufferusage (class in nodriver.cdp.tracing)": [[53, "nodriver.cdp.tracing.BufferUsage"]], "chrome (tracingbackend attribute)": [[53, "nodriver.cdp.tracing.TracingBackend.CHROME"]], "detailed (memorydumplevelofdetail attribute)": [[53, "nodriver.cdp.tracing.MemoryDumpLevelOfDetail.DETAILED"]], "datacollected (class in nodriver.cdp.tracing)": [[53, "nodriver.cdp.tracing.DataCollected"]], "gzip (streamcompression attribute)": [[53, "nodriver.cdp.tracing.StreamCompression.GZIP"]], "json (streamformat attribute)": [[53, "nodriver.cdp.tracing.StreamFormat.JSON"]], "light (memorydumplevelofdetail attribute)": [[53, "nodriver.cdp.tracing.MemoryDumpLevelOfDetail.LIGHT"]], "memorydumpconfig (class in nodriver.cdp.tracing)": [[53, "nodriver.cdp.tracing.MemoryDumpConfig"]], "memorydumplevelofdetail (class in nodriver.cdp.tracing)": [[53, "nodriver.cdp.tracing.MemoryDumpLevelOfDetail"]], "none (streamcompression attribute)": [[53, "nodriver.cdp.tracing.StreamCompression.NONE"]], "proto (streamformat attribute)": [[53, "nodriver.cdp.tracing.StreamFormat.PROTO"]], "system (tracingbackend attribute)": [[53, "nodriver.cdp.tracing.TracingBackend.SYSTEM"]], "streamcompression (class in nodriver.cdp.tracing)": [[53, "nodriver.cdp.tracing.StreamCompression"]], "streamformat (class in nodriver.cdp.tracing)": [[53, "nodriver.cdp.tracing.StreamFormat"]], "traceconfig (class in nodriver.cdp.tracing)": [[53, "nodriver.cdp.tracing.TraceConfig"]], "tracingbackend (class in nodriver.cdp.tracing)": [[53, "nodriver.cdp.tracing.TracingBackend"]], "tracingcomplete (class in nodriver.cdp.tracing)": [[53, "nodriver.cdp.tracing.TracingComplete"]], "data_loss_occurred (tracingcomplete attribute)": [[53, "nodriver.cdp.tracing.TracingComplete.data_loss_occurred"]], "enable_argument_filter (traceconfig attribute)": [[53, "nodriver.cdp.tracing.TraceConfig.enable_argument_filter"]], "enable_sampling (traceconfig attribute)": [[53, "nodriver.cdp.tracing.TraceConfig.enable_sampling"]], "enable_systrace (traceconfig attribute)": [[53, "nodriver.cdp.tracing.TraceConfig.enable_systrace"]], "end() (in module nodriver.cdp.tracing)": [[53, "nodriver.cdp.tracing.end"]], "event_count (bufferusage attribute)": [[53, "nodriver.cdp.tracing.BufferUsage.event_count"]], "excluded_categories (traceconfig attribute)": [[53, "nodriver.cdp.tracing.TraceConfig.excluded_categories"]], "get_categories() (in module nodriver.cdp.tracing)": [[53, "nodriver.cdp.tracing.get_categories"]], "included_categories (traceconfig attribute)": [[53, "nodriver.cdp.tracing.TraceConfig.included_categories"]], "memory_dump_config (traceconfig attribute)": [[53, "nodriver.cdp.tracing.TraceConfig.memory_dump_config"]], "nodriver.cdp.tracing": [[53, "module-nodriver.cdp.tracing"]], "percent_full (bufferusage attribute)": [[53, "nodriver.cdp.tracing.BufferUsage.percent_full"]], "record_clock_sync_marker() (in module nodriver.cdp.tracing)": [[53, "nodriver.cdp.tracing.record_clock_sync_marker"]], "record_mode (traceconfig attribute)": [[53, "nodriver.cdp.tracing.TraceConfig.record_mode"]], "request_memory_dump() (in module nodriver.cdp.tracing)": [[53, "nodriver.cdp.tracing.request_memory_dump"]], "start() (in module nodriver.cdp.tracing)": [[53, "nodriver.cdp.tracing.start"]], "stream (tracingcomplete attribute)": [[53, "nodriver.cdp.tracing.TracingComplete.stream"]], "stream_compression (tracingcomplete attribute)": [[53, "nodriver.cdp.tracing.TracingComplete.stream_compression"]], "synthetic_delays (traceconfig attribute)": [[53, "nodriver.cdp.tracing.TraceConfig.synthetic_delays"]], "trace_buffer_size_in_kb (traceconfig attribute)": [[53, "nodriver.cdp.tracing.TraceConfig.trace_buffer_size_in_kb"]], "trace_format (tracingcomplete attribute)": [[53, "nodriver.cdp.tracing.TracingComplete.trace_format"]], "value (bufferusage attribute)": [[53, "nodriver.cdp.tracing.BufferUsage.value"]], "value (datacollected attribute)": [[53, "nodriver.cdp.tracing.DataCollected.value"]], "a_rate (automationrate attribute)": [[54, "nodriver.cdp.web_audio.AutomationRate.A_RATE"]], "audiolistener (class in nodriver.cdp.web_audio)": [[54, "nodriver.cdp.web_audio.AudioListener"]], "audiolistenercreated (class in nodriver.cdp.web_audio)": [[54, "nodriver.cdp.web_audio.AudioListenerCreated"]], "audiolistenerwillbedestroyed (class in nodriver.cdp.web_audio)": [[54, "nodriver.cdp.web_audio.AudioListenerWillBeDestroyed"]], "audionode (class in nodriver.cdp.web_audio)": [[54, "nodriver.cdp.web_audio.AudioNode"]], "audionodecreated (class in nodriver.cdp.web_audio)": [[54, "nodriver.cdp.web_audio.AudioNodeCreated"]], "audionodewillbedestroyed (class in nodriver.cdp.web_audio)": [[54, "nodriver.cdp.web_audio.AudioNodeWillBeDestroyed"]], "audioparam (class in nodriver.cdp.web_audio)": [[54, "nodriver.cdp.web_audio.AudioParam"]], "audioparamcreated (class in nodriver.cdp.web_audio)": [[54, "nodriver.cdp.web_audio.AudioParamCreated"]], "audioparamwillbedestroyed (class in nodriver.cdp.web_audio)": [[54, "nodriver.cdp.web_audio.AudioParamWillBeDestroyed"]], "automationrate (class in nodriver.cdp.web_audio)": [[54, "nodriver.cdp.web_audio.AutomationRate"]], "baseaudiocontext (class in nodriver.cdp.web_audio)": [[54, "nodriver.cdp.web_audio.BaseAudioContext"]], "clamped_max (channelcountmode attribute)": [[54, "nodriver.cdp.web_audio.ChannelCountMode.CLAMPED_MAX"]], "closed (contextstate attribute)": [[54, "nodriver.cdp.web_audio.ContextState.CLOSED"]], "channelcountmode (class in nodriver.cdp.web_audio)": [[54, "nodriver.cdp.web_audio.ChannelCountMode"]], "channelinterpretation (class in nodriver.cdp.web_audio)": [[54, "nodriver.cdp.web_audio.ChannelInterpretation"]], "contextchanged (class in nodriver.cdp.web_audio)": [[54, "nodriver.cdp.web_audio.ContextChanged"]], "contextcreated (class in nodriver.cdp.web_audio)": [[54, "nodriver.cdp.web_audio.ContextCreated"]], "contextrealtimedata (class in nodriver.cdp.web_audio)": [[54, "nodriver.cdp.web_audio.ContextRealtimeData"]], "contextstate (class in nodriver.cdp.web_audio)": [[54, "nodriver.cdp.web_audio.ContextState"]], "contexttype (class in nodriver.cdp.web_audio)": [[54, "nodriver.cdp.web_audio.ContextType"]], "contextwillbedestroyed (class in nodriver.cdp.web_audio)": [[54, "nodriver.cdp.web_audio.ContextWillBeDestroyed"]], "discrete (channelinterpretation attribute)": [[54, "nodriver.cdp.web_audio.ChannelInterpretation.DISCRETE"]], "explicit (channelcountmode attribute)": [[54, "nodriver.cdp.web_audio.ChannelCountMode.EXPLICIT"]], "graphobjectid (class in nodriver.cdp.web_audio)": [[54, "nodriver.cdp.web_audio.GraphObjectId"]], "interrupted (contextstate attribute)": [[54, "nodriver.cdp.web_audio.ContextState.INTERRUPTED"]], "k_rate (automationrate attribute)": [[54, "nodriver.cdp.web_audio.AutomationRate.K_RATE"]], "max_ (channelcountmode attribute)": [[54, "nodriver.cdp.web_audio.ChannelCountMode.MAX_"]], "nodeparamconnected (class in nodriver.cdp.web_audio)": [[54, "nodriver.cdp.web_audio.NodeParamConnected"]], "nodeparamdisconnected (class in nodriver.cdp.web_audio)": [[54, "nodriver.cdp.web_audio.NodeParamDisconnected"]], "nodetype (class in nodriver.cdp.web_audio)": [[54, "nodriver.cdp.web_audio.NodeType"]], "nodesconnected (class in nodriver.cdp.web_audio)": [[54, "nodriver.cdp.web_audio.NodesConnected"]], "nodesdisconnected (class in nodriver.cdp.web_audio)": [[54, "nodriver.cdp.web_audio.NodesDisconnected"]], "offline (contexttype attribute)": [[54, "nodriver.cdp.web_audio.ContextType.OFFLINE"]], "paramtype (class in nodriver.cdp.web_audio)": [[54, "nodriver.cdp.web_audio.ParamType"]], "realtime (contexttype attribute)": [[54, "nodriver.cdp.web_audio.ContextType.REALTIME"]], "running (contextstate attribute)": [[54, "nodriver.cdp.web_audio.ContextState.RUNNING"]], "speakers (channelinterpretation attribute)": [[54, "nodriver.cdp.web_audio.ChannelInterpretation.SPEAKERS"]], "suspended (contextstate attribute)": [[54, "nodriver.cdp.web_audio.ContextState.SUSPENDED"]], "callback_buffer_size (baseaudiocontext attribute)": [[54, "nodriver.cdp.web_audio.BaseAudioContext.callback_buffer_size"]], "callback_interval_mean (contextrealtimedata attribute)": [[54, "nodriver.cdp.web_audio.ContextRealtimeData.callback_interval_mean"]], "callback_interval_variance (contextrealtimedata attribute)": [[54, "nodriver.cdp.web_audio.ContextRealtimeData.callback_interval_variance"]], "channel_count (audionode attribute)": [[54, "nodriver.cdp.web_audio.AudioNode.channel_count"]], "channel_count_mode (audionode attribute)": [[54, "nodriver.cdp.web_audio.AudioNode.channel_count_mode"]], "channel_interpretation (audionode attribute)": [[54, "nodriver.cdp.web_audio.AudioNode.channel_interpretation"]], "context (contextchanged attribute)": [[54, "nodriver.cdp.web_audio.ContextChanged.context"]], "context (contextcreated attribute)": [[54, "nodriver.cdp.web_audio.ContextCreated.context"]], "context_id (audiolistener attribute)": [[54, "nodriver.cdp.web_audio.AudioListener.context_id"]], "context_id (audiolistenerwillbedestroyed attribute)": [[54, "nodriver.cdp.web_audio.AudioListenerWillBeDestroyed.context_id"]], "context_id (audionode attribute)": [[54, "nodriver.cdp.web_audio.AudioNode.context_id"]], "context_id (audionodewillbedestroyed attribute)": [[54, "nodriver.cdp.web_audio.AudioNodeWillBeDestroyed.context_id"]], "context_id (audioparam attribute)": [[54, "nodriver.cdp.web_audio.AudioParam.context_id"]], "context_id (audioparamwillbedestroyed attribute)": [[54, "nodriver.cdp.web_audio.AudioParamWillBeDestroyed.context_id"]], "context_id (baseaudiocontext attribute)": [[54, "nodriver.cdp.web_audio.BaseAudioContext.context_id"]], "context_id (contextwillbedestroyed attribute)": [[54, "nodriver.cdp.web_audio.ContextWillBeDestroyed.context_id"]], "context_id (nodeparamconnected attribute)": [[54, "nodriver.cdp.web_audio.NodeParamConnected.context_id"]], "context_id (nodeparamdisconnected attribute)": [[54, "nodriver.cdp.web_audio.NodeParamDisconnected.context_id"]], "context_id (nodesconnected attribute)": [[54, "nodriver.cdp.web_audio.NodesConnected.context_id"]], "context_id (nodesdisconnected attribute)": [[54, "nodriver.cdp.web_audio.NodesDisconnected.context_id"]], "context_state (baseaudiocontext attribute)": [[54, "nodriver.cdp.web_audio.BaseAudioContext.context_state"]], "context_type (baseaudiocontext attribute)": [[54, "nodriver.cdp.web_audio.BaseAudioContext.context_type"]], "current_time (contextrealtimedata attribute)": [[54, "nodriver.cdp.web_audio.ContextRealtimeData.current_time"]], "default_value (audioparam attribute)": [[54, "nodriver.cdp.web_audio.AudioParam.default_value"]], "destination_id (nodeparamconnected attribute)": [[54, "nodriver.cdp.web_audio.NodeParamConnected.destination_id"]], "destination_id (nodeparamdisconnected attribute)": [[54, "nodriver.cdp.web_audio.NodeParamDisconnected.destination_id"]], "destination_id (nodesconnected attribute)": [[54, "nodriver.cdp.web_audio.NodesConnected.destination_id"]], "destination_id (nodesdisconnected attribute)": [[54, "nodriver.cdp.web_audio.NodesDisconnected.destination_id"]], "destination_input_index (nodesconnected attribute)": [[54, "nodriver.cdp.web_audio.NodesConnected.destination_input_index"]], "destination_input_index (nodesdisconnected attribute)": [[54, "nodriver.cdp.web_audio.NodesDisconnected.destination_input_index"]], "disable() (in module nodriver.cdp.web_audio)": [[54, "nodriver.cdp.web_audio.disable"]], "enable() (in module nodriver.cdp.web_audio)": [[54, "nodriver.cdp.web_audio.enable"]], "get_realtime_data() (in module nodriver.cdp.web_audio)": [[54, "nodriver.cdp.web_audio.get_realtime_data"]], "listener (audiolistenercreated attribute)": [[54, "nodriver.cdp.web_audio.AudioListenerCreated.listener"]], "listener_id (audiolistener attribute)": [[54, "nodriver.cdp.web_audio.AudioListener.listener_id"]], "listener_id (audiolistenerwillbedestroyed attribute)": [[54, "nodriver.cdp.web_audio.AudioListenerWillBeDestroyed.listener_id"]], "max_output_channel_count (baseaudiocontext attribute)": [[54, "nodriver.cdp.web_audio.BaseAudioContext.max_output_channel_count"]], "max_value (audioparam attribute)": [[54, "nodriver.cdp.web_audio.AudioParam.max_value"]], "min_value (audioparam attribute)": [[54, "nodriver.cdp.web_audio.AudioParam.min_value"]], "node (audionodecreated attribute)": [[54, "nodriver.cdp.web_audio.AudioNodeCreated.node"]], "node_id (audionode attribute)": [[54, "nodriver.cdp.web_audio.AudioNode.node_id"]], "node_id (audionodewillbedestroyed attribute)": [[54, "nodriver.cdp.web_audio.AudioNodeWillBeDestroyed.node_id"]], "node_id (audioparam attribute)": [[54, "nodriver.cdp.web_audio.AudioParam.node_id"]], "node_id (audioparamwillbedestroyed attribute)": [[54, "nodriver.cdp.web_audio.AudioParamWillBeDestroyed.node_id"]], "node_type (audionode attribute)": [[54, "nodriver.cdp.web_audio.AudioNode.node_type"]], "nodriver.cdp.web_audio": [[54, "module-nodriver.cdp.web_audio"]], "number_of_inputs (audionode attribute)": [[54, "nodriver.cdp.web_audio.AudioNode.number_of_inputs"]], "number_of_outputs (audionode attribute)": [[54, "nodriver.cdp.web_audio.AudioNode.number_of_outputs"]], "param (audioparamcreated attribute)": [[54, "nodriver.cdp.web_audio.AudioParamCreated.param"]], "param_id (audioparam attribute)": [[54, "nodriver.cdp.web_audio.AudioParam.param_id"]], "param_id (audioparamwillbedestroyed attribute)": [[54, "nodriver.cdp.web_audio.AudioParamWillBeDestroyed.param_id"]], "param_type (audioparam attribute)": [[54, "nodriver.cdp.web_audio.AudioParam.param_type"]], "rate (audioparam attribute)": [[54, "nodriver.cdp.web_audio.AudioParam.rate"]], "realtime_data (baseaudiocontext attribute)": [[54, "nodriver.cdp.web_audio.BaseAudioContext.realtime_data"]], "render_capacity (contextrealtimedata attribute)": [[54, "nodriver.cdp.web_audio.ContextRealtimeData.render_capacity"]], "sample_rate (baseaudiocontext attribute)": [[54, "nodriver.cdp.web_audio.BaseAudioContext.sample_rate"]], "source_id (nodeparamconnected attribute)": [[54, "nodriver.cdp.web_audio.NodeParamConnected.source_id"]], "source_id (nodeparamdisconnected attribute)": [[54, "nodriver.cdp.web_audio.NodeParamDisconnected.source_id"]], "source_id (nodesconnected attribute)": [[54, "nodriver.cdp.web_audio.NodesConnected.source_id"]], "source_id (nodesdisconnected attribute)": [[54, "nodriver.cdp.web_audio.NodesDisconnected.source_id"]], "source_output_index (nodeparamconnected attribute)": [[54, "nodriver.cdp.web_audio.NodeParamConnected.source_output_index"]], "source_output_index (nodeparamdisconnected attribute)": [[54, "nodriver.cdp.web_audio.NodeParamDisconnected.source_output_index"]], "source_output_index (nodesconnected attribute)": [[54, "nodriver.cdp.web_audio.NodesConnected.source_output_index"]], "source_output_index (nodesdisconnected attribute)": [[54, "nodriver.cdp.web_audio.NodesDisconnected.source_output_index"]], "authenticatorid (class in nodriver.cdp.web_authn)": [[55, "nodriver.cdp.web_authn.AuthenticatorId"]], "authenticatorprotocol (class in nodriver.cdp.web_authn)": [[55, "nodriver.cdp.web_authn.AuthenticatorProtocol"]], "authenticatortransport (class in nodriver.cdp.web_authn)": [[55, "nodriver.cdp.web_authn.AuthenticatorTransport"]], "ble (authenticatortransport attribute)": [[55, "nodriver.cdp.web_authn.AuthenticatorTransport.BLE"]], "cable (authenticatortransport attribute)": [[55, "nodriver.cdp.web_authn.AuthenticatorTransport.CABLE"]], "ctap2 (authenticatorprotocol attribute)": [[55, "nodriver.cdp.web_authn.AuthenticatorProtocol.CTAP2"]], "ctap2_0 (ctap2version attribute)": [[55, "nodriver.cdp.web_authn.Ctap2Version.CTAP2_0"]], "ctap2_1 (ctap2version attribute)": [[55, "nodriver.cdp.web_authn.Ctap2Version.CTAP2_1"]], "credential (class in nodriver.cdp.web_authn)": [[55, "nodriver.cdp.web_authn.Credential"]], "credentialadded (class in nodriver.cdp.web_authn)": [[55, "nodriver.cdp.web_authn.CredentialAdded"]], "credentialasserted (class in nodriver.cdp.web_authn)": [[55, "nodriver.cdp.web_authn.CredentialAsserted"]], "credentialdeleted (class in nodriver.cdp.web_authn)": [[55, "nodriver.cdp.web_authn.CredentialDeleted"]], "credentialupdated (class in nodriver.cdp.web_authn)": [[55, "nodriver.cdp.web_authn.CredentialUpdated"]], "ctap2version (class in nodriver.cdp.web_authn)": [[55, "nodriver.cdp.web_authn.Ctap2Version"]], "internal (authenticatortransport attribute)": [[55, "nodriver.cdp.web_authn.AuthenticatorTransport.INTERNAL"]], "nfc (authenticatortransport attribute)": [[55, "nodriver.cdp.web_authn.AuthenticatorTransport.NFC"]], "u2f (authenticatorprotocol attribute)": [[55, "nodriver.cdp.web_authn.AuthenticatorProtocol.U2F"]], "usb (authenticatortransport attribute)": [[55, "nodriver.cdp.web_authn.AuthenticatorTransport.USB"]], "virtualauthenticatoroptions (class in nodriver.cdp.web_authn)": [[55, "nodriver.cdp.web_authn.VirtualAuthenticatorOptions"]], "add_credential() (in module nodriver.cdp.web_authn)": [[55, "nodriver.cdp.web_authn.add_credential"]], "add_virtual_authenticator() (in module nodriver.cdp.web_authn)": [[55, "nodriver.cdp.web_authn.add_virtual_authenticator"]], "authenticator_id (credentialadded attribute)": [[55, "nodriver.cdp.web_authn.CredentialAdded.authenticator_id"]], "authenticator_id (credentialasserted attribute)": [[55, "nodriver.cdp.web_authn.CredentialAsserted.authenticator_id"]], "authenticator_id (credentialdeleted attribute)": [[55, "nodriver.cdp.web_authn.CredentialDeleted.authenticator_id"]], "authenticator_id (credentialupdated attribute)": [[55, "nodriver.cdp.web_authn.CredentialUpdated.authenticator_id"]], "automatic_presence_simulation (virtualauthenticatoroptions attribute)": [[55, "nodriver.cdp.web_authn.VirtualAuthenticatorOptions.automatic_presence_simulation"]], "backup_eligibility (credential attribute)": [[55, "nodriver.cdp.web_authn.Credential.backup_eligibility"]], "backup_state (credential attribute)": [[55, "nodriver.cdp.web_authn.Credential.backup_state"]], "clear_credentials() (in module nodriver.cdp.web_authn)": [[55, "nodriver.cdp.web_authn.clear_credentials"]], "credential (credentialadded attribute)": [[55, "nodriver.cdp.web_authn.CredentialAdded.credential"]], "credential (credentialasserted attribute)": [[55, "nodriver.cdp.web_authn.CredentialAsserted.credential"]], "credential (credentialupdated attribute)": [[55, "nodriver.cdp.web_authn.CredentialUpdated.credential"]], "credential_id (credential attribute)": [[55, "nodriver.cdp.web_authn.Credential.credential_id"]], "credential_id (credentialdeleted attribute)": [[55, "nodriver.cdp.web_authn.CredentialDeleted.credential_id"]], "ctap2_version (virtualauthenticatoroptions attribute)": [[55, "nodriver.cdp.web_authn.VirtualAuthenticatorOptions.ctap2_version"]], "default_backup_eligibility (virtualauthenticatoroptions attribute)": [[55, "nodriver.cdp.web_authn.VirtualAuthenticatorOptions.default_backup_eligibility"]], "default_backup_state (virtualauthenticatoroptions attribute)": [[55, "nodriver.cdp.web_authn.VirtualAuthenticatorOptions.default_backup_state"]], "disable() (in module nodriver.cdp.web_authn)": [[55, "nodriver.cdp.web_authn.disable"]], "enable() (in module nodriver.cdp.web_authn)": [[55, "nodriver.cdp.web_authn.enable"]], "get_credential() (in module nodriver.cdp.web_authn)": [[55, "nodriver.cdp.web_authn.get_credential"]], "get_credentials() (in module nodriver.cdp.web_authn)": [[55, "nodriver.cdp.web_authn.get_credentials"]], "has_cred_blob (virtualauthenticatoroptions attribute)": [[55, "nodriver.cdp.web_authn.VirtualAuthenticatorOptions.has_cred_blob"]], "has_large_blob (virtualauthenticatoroptions attribute)": [[55, "nodriver.cdp.web_authn.VirtualAuthenticatorOptions.has_large_blob"]], "has_min_pin_length (virtualauthenticatoroptions attribute)": [[55, "nodriver.cdp.web_authn.VirtualAuthenticatorOptions.has_min_pin_length"]], "has_prf (virtualauthenticatoroptions attribute)": [[55, "nodriver.cdp.web_authn.VirtualAuthenticatorOptions.has_prf"]], "has_resident_key (virtualauthenticatoroptions attribute)": [[55, "nodriver.cdp.web_authn.VirtualAuthenticatorOptions.has_resident_key"]], "has_user_verification (virtualauthenticatoroptions attribute)": [[55, "nodriver.cdp.web_authn.VirtualAuthenticatorOptions.has_user_verification"]], "is_resident_credential (credential attribute)": [[55, "nodriver.cdp.web_authn.Credential.is_resident_credential"]], "is_user_verified (virtualauthenticatoroptions attribute)": [[55, "nodriver.cdp.web_authn.VirtualAuthenticatorOptions.is_user_verified"]], "large_blob (credential attribute)": [[55, "nodriver.cdp.web_authn.Credential.large_blob"]], "nodriver.cdp.web_authn": [[55, "module-nodriver.cdp.web_authn"]], "private_key (credential attribute)": [[55, "nodriver.cdp.web_authn.Credential.private_key"]], "protocol (virtualauthenticatoroptions attribute)": [[55, "nodriver.cdp.web_authn.VirtualAuthenticatorOptions.protocol"]], "remove_credential() (in module nodriver.cdp.web_authn)": [[55, "nodriver.cdp.web_authn.remove_credential"]], "remove_virtual_authenticator() (in module nodriver.cdp.web_authn)": [[55, "nodriver.cdp.web_authn.remove_virtual_authenticator"]], "rp_id (credential attribute)": [[55, "nodriver.cdp.web_authn.Credential.rp_id"]], "set_automatic_presence_simulation() (in module nodriver.cdp.web_authn)": [[55, "nodriver.cdp.web_authn.set_automatic_presence_simulation"]], "set_credential_properties() (in module nodriver.cdp.web_authn)": [[55, "nodriver.cdp.web_authn.set_credential_properties"]], "set_response_override_bits() (in module nodriver.cdp.web_authn)": [[55, "nodriver.cdp.web_authn.set_response_override_bits"]], "set_user_verified() (in module nodriver.cdp.web_authn)": [[55, "nodriver.cdp.web_authn.set_user_verified"]], "sign_count (credential attribute)": [[55, "nodriver.cdp.web_authn.Credential.sign_count"]], "transport (virtualauthenticatoroptions attribute)": [[55, "nodriver.cdp.web_authn.VirtualAuthenticatorOptions.transport"]], "user_display_name (credential attribute)": [[55, "nodriver.cdp.web_authn.Credential.user_display_name"]], "user_handle (credential attribute)": [[55, "nodriver.cdp.web_authn.Credential.user_handle"]], "user_name (credential attribute)": [[55, "nodriver.cdp.web_authn.Credential.user_name"]], "browser (class in nodriver)": [[56, "nodriver.Browser"]], "config (browser attribute)": [[56, "nodriver.Browser.config"]], "connection (browser attribute)": [[56, "nodriver.Browser.connection"]], "cookies (browser property)": [[56, "nodriver.Browser.cookies"]], "create() (browser class method)": [[56, "nodriver.Browser.create"]], "get() (browser method)": [[56, "nodriver.Browser.get"]], "grant_all_permissions() (browser method)": [[56, "nodriver.Browser.grant_all_permissions"]], "main_tab (browser property)": [[56, "nodriver.Browser.main_tab"]], "sleep() (browser method)": [[56, "nodriver.Browser.sleep"]], "start() (browser method)": [[56, "nodriver.Browser.start"]], "stop() (browser method)": [[56, "nodriver.Browser.stop"]], "stopped (browser property)": [[56, "nodriver.Browser.stopped"]], "tabs (browser property)": [[56, "nodriver.Browser.tabs"]], "targets (browser attribute)": [[56, "nodriver.Browser.targets"]], "tile_windows() (browser method)": [[56, "nodriver.Browser.tile_windows"]], "update_targets() (browser method)": [[56, "nodriver.Browser.update_targets"]], "wait() (browser method)": [[56, "nodriver.Browser.wait"]], "websocket_url (browser property)": [[56, "nodriver.Browser.websocket_url"]], "element (class in nodriver)": [[57, "nodriver.Element"]], "apply() (element method)": [[57, "nodriver.Element.apply"]], "assigned_slot (element property)": [[57, "nodriver.Element.assigned_slot"]], "attributes (element property)": [[57, "nodriver.Element.attributes"]], "attrs (element property)": [[57, "nodriver.Element.attrs"]], "backend_node_id (element property)": [[57, "nodriver.Element.backend_node_id"]], "base_url (element property)": [[57, "nodriver.Element.base_url"]], "child_node_count (element property)": [[57, "nodriver.Element.child_node_count"]], "children (element property)": [[57, "nodriver.Element.children"]], "clear_input() (element method)": [[57, "nodriver.Element.clear_input"]], "click() (element method)": [[57, "nodriver.Element.click"]], "compatibility_mode (element property)": [[57, "nodriver.Element.compatibility_mode"]], "content_document (element property)": [[57, "nodriver.Element.content_document"]], "distributed_nodes (element property)": [[57, "nodriver.Element.distributed_nodes"]], "document_url (element property)": [[57, "nodriver.Element.document_url"]], "flash() (element method)": [[57, "nodriver.Element.flash"]], "focus() (element method)": [[57, "nodriver.Element.focus"]], "frame_id (element property)": [[57, "nodriver.Element.frame_id"]], "get_html() (element method)": [[57, "nodriver.Element.get_html"]], "get_js_attributes() (element method)": [[57, "nodriver.Element.get_js_attributes"]], "get_position() (element method)": [[57, "nodriver.Element.get_position"]], "highlight_overlay() (element method)": [[57, "nodriver.Element.highlight_overlay"]], "imported_document (element property)": [[57, "nodriver.Element.imported_document"]], "internal_subset (element property)": [[57, "nodriver.Element.internal_subset"]], "is_recording() (element method)": [[57, "nodriver.Element.is_recording"]], "is_svg (element property)": [[57, "nodriver.Element.is_svg"]], "local_name (element property)": [[57, "nodriver.Element.local_name"]], "mouse_click() (element method)": [[57, "nodriver.Element.mouse_click"]], "mouse_drag() (element method)": [[57, "nodriver.Element.mouse_drag"]], "mouse_move() (element method)": [[57, "nodriver.Element.mouse_move"]], "node (element property)": [[57, "nodriver.Element.node"]], "node_id (element property)": [[57, "nodriver.Element.node_id"]], "node_name (element property)": [[57, "nodriver.Element.node_name"]], "node_type (element property)": [[57, "nodriver.Element.node_type"]], "node_value (element property)": [[57, "nodriver.Element.node_value"]], "object_id (element property)": [[57, "nodriver.Element.object_id"]], "parent (element property)": [[57, "nodriver.Element.parent"]], "parent_id (element property)": [[57, "nodriver.Element.parent_id"]], "pseudo_elements (element property)": [[57, "nodriver.Element.pseudo_elements"]], "pseudo_identifier (element property)": [[57, "nodriver.Element.pseudo_identifier"]], "pseudo_type (element property)": [[57, "nodriver.Element.pseudo_type"]], "public_id (element property)": [[57, "nodriver.Element.public_id"]], "query_selector() (element method)": [[57, "nodriver.Element.query_selector"]], "query_selector_all() (element method)": [[57, "nodriver.Element.query_selector_all"]], "record_video() (element method)": [[57, "nodriver.Element.record_video"]], "remote_object (element property)": [[57, "nodriver.Element.remote_object"]], "remove_from_dom() (element method)": [[57, "nodriver.Element.remove_from_dom"]], "save_screenshot() (element method)": [[57, "nodriver.Element.save_screenshot"]], "save_to_dom() (element method)": [[57, "nodriver.Element.save_to_dom"]], "scroll_into_view() (element method)": [[57, "nodriver.Element.scroll_into_view"]], "select_option() (element method)": [[57, "nodriver.Element.select_option"]], "send_file() (element method)": [[57, "nodriver.Element.send_file"]], "send_keys() (element method)": [[57, "nodriver.Element.send_keys"]], "set_text() (element method)": [[57, "nodriver.Element.set_text"]], "set_value() (element method)": [[57, "nodriver.Element.set_value"]], "shadow_children (element property)": [[57, "nodriver.Element.shadow_children"]], "shadow_root_type (element property)": [[57, "nodriver.Element.shadow_root_type"]], "shadow_roots (element property)": [[57, "nodriver.Element.shadow_roots"]], "system_id (element property)": [[57, "nodriver.Element.system_id"]], "tab (element property)": [[57, "nodriver.Element.tab"]], "tag (element property)": [[57, "nodriver.Element.tag"]], "tag_name (element property)": [[57, "nodriver.Element.tag_name"]], "template_content (element property)": [[57, "nodriver.Element.template_content"]], "text (element property)": [[57, "nodriver.Element.text"]], "text_all (element property)": [[57, "nodriver.Element.text_all"]], "tree (element property)": [[57, "nodriver.Element.tree"]], "update() (element method)": [[57, "nodriver.Element.update"]], "value (element property)": [[57, "nodriver.Element.value"]], "xml_version (element property)": [[57, "nodriver.Element.xml_version"]], "config (class in nodriver)": [[58, "nodriver.Config"]], "contradict (class in nodriver.core._contradict)": [[58, "id0"], [58, "nodriver.core._contradict.ContraDict"]], "add_argument() (config method)": [[58, "nodriver.Config.add_argument"]], "add_extension() (config method)": [[58, "nodriver.Config.add_extension"]], "browser_args (config property)": [[58, "nodriver.Config.browser_args"]], "cdict() (in module nodriver.core._contradict)": [[58, "nodriver.core._contradict.cdict"]], "clear() (contradict method)": [[58, "id1"], [58, "nodriver.core._contradict.ContraDict.clear"]], "copy() (contradict method)": [[58, "id2"], [58, "nodriver.core._contradict.ContraDict.copy"]], "fromkeys() (contradict method)": [[58, "id3"], [58, "nodriver.core._contradict.ContraDict.fromkeys"]], "get() (contradict method)": [[58, "id4"], [58, "nodriver.core._contradict.ContraDict.get"]], "items() (contradict method)": [[58, "id5"], [58, "nodriver.core._contradict.ContraDict.items"]], "keys() (contradict method)": [[58, "id6"], [58, "nodriver.core._contradict.ContraDict.keys"]], "nodriver.core._contradict": [[58, "module-nodriver.core._contradict"]], "pop() (contradict method)": [[58, "id7"], [58, "nodriver.core._contradict.ContraDict.pop"]], "popitem() (contradict method)": [[58, "id8"], [58, "nodriver.core._contradict.ContraDict.popitem"]], "setdefault() (contradict method)": [[58, "id9"], [58, "nodriver.core._contradict.ContraDict.setdefault"]], "update() (contradict method)": [[58, "id10"], [58, "nodriver.core._contradict.ContraDict.update"]], "user_data_dir (config property)": [[58, "nodriver.Config.user_data_dir"]], "uses_custom_data_dir (config property)": [[58, "nodriver.Config.uses_custom_data_dir"]], "values() (contradict method)": [[58, "id11"], [58, "nodriver.core._contradict.ContraDict.values"]], "tab (class in nodriver)": [[59, "nodriver.Tab"]], "aclose() (tab method)": [[59, "nodriver.Tab.aclose"]], "activate() (tab method)": [[59, "nodriver.Tab.activate"]], "add_handler() (tab method)": [[59, "nodriver.Tab.add_handler"]], "aopen() (tab method)": [[59, "nodriver.Tab.aopen"]], "attached (tab attribute)": [[59, "nodriver.Tab.attached"]], "back() (tab method)": [[59, "nodriver.Tab.back"]], "bring_to_front() (tab method)": [[59, "nodriver.Tab.bring_to_front"]], "browser (tab attribute)": [[59, "nodriver.Tab.browser"]], "close() (tab method)": [[59, "nodriver.Tab.close"]], "closed (tab property)": [[59, "nodriver.Tab.closed"]], "download_file() (tab method)": [[59, "nodriver.Tab.download_file"]], "evaluate() (tab method)": [[59, "nodriver.Tab.evaluate"]], "feed_cdp() (tab method)": [[59, "nodriver.Tab.feed_cdp"]], "find() (tab method)": [[59, "nodriver.Tab.find"]], "find_all() (tab method)": [[59, "nodriver.Tab.find_all"]], "find_element_by_text() (tab method)": [[59, "nodriver.Tab.find_element_by_text"]], "find_elements_by_text() (tab method)": [[59, "nodriver.Tab.find_elements_by_text"]], "forward() (tab method)": [[59, "nodriver.Tab.forward"]], "fullscreen() (tab method)": [[59, "nodriver.Tab.fullscreen"]], "get() (tab method)": [[59, "nodriver.Tab.get"]], "get_all_linked_sources() (tab method)": [[59, "nodriver.Tab.get_all_linked_sources"]], "get_all_urls() (tab method)": [[59, "nodriver.Tab.get_all_urls"]], "get_content() (tab method)": [[59, "nodriver.Tab.get_content"]], "get_local_storage() (tab method)": [[59, "nodriver.Tab.get_local_storage"]], "get_window() (tab method)": [[59, "nodriver.Tab.get_window"]], "inspector_open() (tab method)": [[59, "nodriver.Tab.inspector_open"]], "inspector_url (tab property)": [[59, "nodriver.Tab.inspector_url"]], "js_dumps() (tab method)": [[59, "nodriver.Tab.js_dumps"]], "maximize() (tab method)": [[59, "nodriver.Tab.maximize"]], "medimize() (tab method)": [[59, "nodriver.Tab.medimize"]], "minimize() (tab method)": [[59, "nodriver.Tab.minimize"]], "open_external_inspector() (tab method)": [[59, "nodriver.Tab.open_external_inspector"]], "query_selector() (tab method)": [[59, "nodriver.Tab.query_selector"]], "query_selector_all() (tab method)": [[59, "nodriver.Tab.query_selector_all"]], "reload() (tab method)": [[59, "nodriver.Tab.reload"]], "save_screenshot() (tab method)": [[59, "nodriver.Tab.save_screenshot"]], "scroll_down() (tab method)": [[59, "nodriver.Tab.scroll_down"]], "scroll_up() (tab method)": [[59, "nodriver.Tab.scroll_up"]], "select() (tab method)": [[59, "nodriver.Tab.select"]], "select_all() (tab method)": [[59, "nodriver.Tab.select_all"]], "send() (tab method)": [[59, "nodriver.Tab.send"]], "set_download_path() (tab method)": [[59, "nodriver.Tab.set_download_path"]], "set_local_storage() (tab method)": [[59, "nodriver.Tab.set_local_storage"]], "set_window_size() (tab method)": [[59, "nodriver.Tab.set_window_size"]], "set_window_state() (tab method)": [[59, "nodriver.Tab.set_window_state"]], "sleep() (tab method)": [[59, "nodriver.Tab.sleep"]], "target (tab property)": [[59, "nodriver.Tab.target"]], "update_target() (tab method)": [[59, "nodriver.Tab.update_target"]], "verify_cf() (tab method)": [[59, "nodriver.Tab.verify_cf"]], "wait() (tab method)": [[59, "nodriver.Tab.wait"]], "wait_for() (tab method)": [[59, "nodriver.Tab.wait_for"]], "websocket (tab attribute)": [[59, "nodriver.Tab.websocket"]]}})
\ No newline at end of file
+Search.setIndex({"docnames": ["index", "nodriver/cdp", "nodriver/cdp/accessibility", "nodriver/cdp/animation", "nodriver/cdp/audits", "nodriver/cdp/autofill", "nodriver/cdp/background_service", "nodriver/cdp/bluetooth_emulation", "nodriver/cdp/browser", "nodriver/cdp/cache_storage", "nodriver/cdp/cast", "nodriver/cdp/console", "nodriver/cdp/css", "nodriver/cdp/database", "nodriver/cdp/debugger", "nodriver/cdp/device_access", "nodriver/cdp/device_orientation", "nodriver/cdp/dom", "nodriver/cdp/dom_debugger", "nodriver/cdp/dom_snapshot", "nodriver/cdp/dom_storage", "nodriver/cdp/emulation", "nodriver/cdp/event_breakpoints", "nodriver/cdp/extensions", "nodriver/cdp/fed_cm", "nodriver/cdp/fetch", "nodriver/cdp/file_system", "nodriver/cdp/headless_experimental", "nodriver/cdp/heap_profiler", "nodriver/cdp/indexed_db", "nodriver/cdp/input_", "nodriver/cdp/inspector", "nodriver/cdp/io", "nodriver/cdp/layer_tree", "nodriver/cdp/log", "nodriver/cdp/media", "nodriver/cdp/memory", "nodriver/cdp/network", "nodriver/cdp/overlay", "nodriver/cdp/page", "nodriver/cdp/performance", "nodriver/cdp/performance_timeline", "nodriver/cdp/preload", "nodriver/cdp/profiler", "nodriver/cdp/pwa", "nodriver/cdp/runtime", "nodriver/cdp/schema", "nodriver/cdp/security", "nodriver/cdp/service_worker", "nodriver/cdp/storage", "nodriver/cdp/system_info", "nodriver/cdp/target", "nodriver/cdp/tethering", "nodriver/cdp/tracing", "nodriver/cdp/web_audio", "nodriver/cdp/web_authn", "nodriver/classes/browser", "nodriver/classes/element", "nodriver/classes/others_and_helpers", "nodriver/classes/tab", "nodriver/quickstart", "readme", "style"], "filenames": ["index.rst", "nodriver/cdp.rst", "nodriver/cdp/accessibility.rst", "nodriver/cdp/animation.rst", "nodriver/cdp/audits.rst", "nodriver/cdp/autofill.rst", "nodriver/cdp/background_service.rst", "nodriver/cdp/bluetooth_emulation.rst", "nodriver/cdp/browser.rst", "nodriver/cdp/cache_storage.rst", "nodriver/cdp/cast.rst", "nodriver/cdp/console.rst", "nodriver/cdp/css.rst", "nodriver/cdp/database.rst", "nodriver/cdp/debugger.rst", "nodriver/cdp/device_access.rst", "nodriver/cdp/device_orientation.rst", "nodriver/cdp/dom.rst", "nodriver/cdp/dom_debugger.rst", "nodriver/cdp/dom_snapshot.rst", "nodriver/cdp/dom_storage.rst", "nodriver/cdp/emulation.rst", "nodriver/cdp/event_breakpoints.rst", "nodriver/cdp/extensions.rst", "nodriver/cdp/fed_cm.rst", "nodriver/cdp/fetch.rst", "nodriver/cdp/file_system.rst", "nodriver/cdp/headless_experimental.rst", "nodriver/cdp/heap_profiler.rst", "nodriver/cdp/indexed_db.rst", "nodriver/cdp/input_.rst", "nodriver/cdp/inspector.rst", "nodriver/cdp/io.rst", "nodriver/cdp/layer_tree.rst", "nodriver/cdp/log.rst", "nodriver/cdp/media.rst", "nodriver/cdp/memory.rst", "nodriver/cdp/network.rst", "nodriver/cdp/overlay.rst", "nodriver/cdp/page.rst", "nodriver/cdp/performance.rst", "nodriver/cdp/performance_timeline.rst", "nodriver/cdp/preload.rst", "nodriver/cdp/profiler.rst", "nodriver/cdp/pwa.rst", "nodriver/cdp/runtime.rst", "nodriver/cdp/schema.rst", "nodriver/cdp/security.rst", "nodriver/cdp/service_worker.rst", "nodriver/cdp/storage.rst", "nodriver/cdp/system_info.rst", "nodriver/cdp/target.rst", "nodriver/cdp/tethering.rst", "nodriver/cdp/tracing.rst", "nodriver/cdp/web_audio.rst", "nodriver/cdp/web_authn.rst", "nodriver/classes/browser.rst", "nodriver/classes/element.rst", "nodriver/classes/others_and_helpers.rst", "nodriver/classes/tab.rst", "nodriver/quickstart.rst", "readme.rst", "style.rst"], "titles": ["NODRIVER", "CDP object", "Accessibility", "Animation", "Audits", "Autofill", "BackgroundService", "BluetoothEmulation", "Browser", "CacheStorage", "Cast", "Console", "CSS", "Database", "Debugger", "DeviceAccess", "DeviceOrientation", "DOM", "DOMDebugger", "DOMSnapshot", "DOMStorage", "Emulation", "EventBreakpoints", "Extensions", "FedCm", "Fetch", "FileSystem", "HeadlessExperimental", "HeapProfiler", "IndexedDB", "Input", "Inspector", "IO", "LayerTree", "Log", "Media", "Memory", "Network", "Overlay", "Page", "Performance", "PerformanceTimeline", "Preload", "Profiler", "PWA", "Runtime", "Schema", "Security", "ServiceWorker", "Storage", "SystemInfo", "Target", "Tethering", "Tracing", "WebAudio", "WebAuthn", "Browser class", "Element class", "Other classes and Helper classes", "Tab class", "Quickstart guide", "NODRIVER", "TITLE"], "terms": {"thi": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61], "packag": [0, 58, 59, 60, 61], "provid": [0, 2, 4, 17, 18, 19, 21, 23, 25, 27, 33, 34, 37, 38, 39, 44, 45, 49, 50, 51, 53, 57, 58, 59, 61], "next": [0, 12, 14, 17, 21, 24, 29, 45, 59, 60, 61], "level": [0, 2, 4, 11, 17, 34, 35, 36, 37, 45, 47, 50, 53, 56, 59, 60, 61], "webscrap": [0, 61], "browser": [0, 1, 2, 10, 12, 21, 23, 24, 25, 35, 36, 37, 39, 44, 45, 49, 50, 51, 52, 57, 59, 60, 61], "autom": [0, 8, 17, 21, 39, 55, 61], "us": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 60, 61], "rel": [0, 17, 21, 30, 37, 39, 43, 49, 57, 59, 61], "simpl": [0, 12, 43, 59, 60, 61], "interfac": [0, 18, 42, 55, 59, 61], "i": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60], "offici": [0, 61], "successor": [0, 61], "undetect": [0, 60, 61], "chromedriv": [0, 60, 61], "python": [0, 59, 61], "No": [0, 47, 61], "more": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 57, 58, 59, 61], "webdriv": [0, 61], "selenium": [0, 56, 59, 61], "direct": [0, 3, 4, 12, 17, 21, 39, 61], "commun": [0, 51, 61], "even": [0, 24, 45, 47, 56, 58, 61], "better": [0, 37, 61], "resist": [0, 61], "against": [0, 17, 51, 61], "web": [0, 2, 6, 7, 10, 12, 21, 26, 37, 39, 41, 44, 54, 61], "applicatinon": [0, 61], "firewal": [0, 61], "waf": [0, 61], "": [0, 2, 3, 4, 5, 6, 8, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 24, 25, 28, 30, 31, 33, 34, 35, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61], "while": [0, 14, 28, 30, 32, 33, 37, 39, 40, 45, 61], "perform": [0, 1, 2, 8, 14, 17, 30, 41, 45, 59, 61], "get": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61], "massiv": [0, 61], "boost": [0, 61], "modul": [0, 2, 4, 5, 6, 7, 8, 9, 12, 14, 16, 17, 18, 19, 21, 22, 23, 24, 25, 26, 27, 29, 30, 31, 32, 36, 37, 38, 39, 42, 44, 46, 47, 48, 49, 50, 52, 53, 54, 55, 59, 61], "contrari": [0, 61], "fulli": [0, 56, 61], "asynchron": [0, 45, 56, 61], "what": [0, 2, 21, 24, 25, 28, 35, 37, 49, 59, 60], "make": [0, 8, 14, 25, 37, 39, 45, 51, 56, 57, 59, 61], "differ": [0, 4, 8, 12, 21, 25, 35, 37, 38, 39, 45, 49, 61], "from": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59, 60, 61], "other": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 60, 61], "known": [0, 14, 17, 34, 37, 50, 53, 56, 59, 61], "optim": [0, 27, 39, 43, 61], "stai": [0, 14, 54, 61], "most": [0, 9, 14, 17, 28, 29, 37, 39, 45, 59, 61], "anti": [0, 61], "bot": [0, 61], "solut": [0, 39, 61], "anoth": [0, 12, 14, 25, 32, 37, 45, 57, 59, 61], "focu": [0, 17, 21, 39, 57, 60, 61], "point": [0, 14, 17, 19, 21, 30, 33, 36, 37, 43, 44, 56, 57, 58, 61], "usabl": [0, 61], "prototyp": [0, 45, 61], "so": [0, 4, 5, 11, 12, 14, 21, 24, 34, 37, 45, 56, 57, 59, 60, 61], "expect": [0, 8, 14, 25, 36, 39, 45, 60, 61], "lot": [0, 56, 57, 59, 61], "work": [0, 17, 21, 38, 57, 58, 59, 60, 61], "method": [0, 2, 8, 9, 12, 17, 25, 30, 32, 37, 39, 40, 41, 45, 49, 50, 51, 52, 56, 57, 58, 61], "paramet": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 36, 37, 38, 39, 40, 41, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 61], "have": [0, 2, 4, 8, 12, 14, 17, 18, 19, 21, 25, 30, 35, 37, 43, 44, 45, 47, 49, 51, 53, 55, 57, 59, 61], "best": [0, 21, 59, 61], "practic": [0, 61], "default": [0, 2, 4, 8, 9, 12, 14, 17, 18, 19, 21, 25, 26, 27, 28, 29, 30, 33, 37, 38, 39, 44, 45, 47, 49, 51, 53, 55, 57, 58, 59, 61], "1": [0, 2, 4, 5, 6, 7, 8, 9, 11, 12, 14, 17, 18, 19, 21, 23, 24, 25, 27, 30, 33, 36, 37, 38, 39, 40, 42, 43, 44, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 59, 60, 61], "2": [0, 5, 19, 21, 30, 37, 47, 50, 57, 58, 60, 61], "line": [0, 4, 5, 8, 11, 12, 14, 17, 18, 28, 34, 35, 37, 38, 39, 43, 45, 50, 60, 61], "up": [0, 2, 12, 21, 24, 30, 37, 45, 55, 59, 60, 61], "run": [0, 4, 14, 21, 27, 33, 36, 37, 39, 40, 42, 43, 45, 48, 49, 50, 51, 54, 56, 59, 60, 61], "config": [0, 34, 38, 45, 56, 60, 61], "conveni": [0, 56, 59, 61], "import": [0, 4, 12, 17, 19, 37, 56, 59, 60, 61], "It": [0, 4, 14, 17, 28, 37, 39, 42, 45, 58, 59, 61], "also": [0, 4, 8, 10, 12, 14, 17, 19, 21, 27, 28, 37, 38, 39, 41, 42, 44, 45, 49, 51, 57, 58, 59, 61], "easi": [0, 39, 61], "customiz": [0, 61], "everyth": [0, 51, 61], "entir": [0, 2, 12, 17, 18, 37, 39, 57, 59, 61], "arrai": [0, 5, 7, 9, 12, 14, 17, 18, 19, 26, 28, 29, 33, 36, 37, 38, 39, 43, 45, 47, 49, 50, 51, 61], "domain": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 44, 45, 46, 48, 49, 50, 52, 54, 55, 59, 61], "event": [0, 56, 57, 59, 60, 61], "avail": [0, 8, 10, 12, 14, 17, 19, 21, 23, 25, 37, 39, 41, 45, 49, 50, 51, 55, 58, 59, 61], "A": [0, 2, 3, 4, 5, 6, 8, 9, 10, 12, 13, 14, 15, 17, 19, 21, 25, 27, 28, 29, 30, 32, 33, 35, 36, 37, 38, 39, 42, 43, 44, 45, 47, 49, 50, 51, 53, 54, 60, 61, 62], "blaze": [0, 61], "fast": [0, 21, 61], "chrome": [0, 2, 5, 8, 27, 37, 39, 44, 45, 51, 53, 56, 59, 61], "ish": [0, 61], "librari": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 61], "binari": [0, 37, 61], "depend": [0, 4, 12, 17, 30, 37, 39, 41, 49, 50, 51, 54, 61], "equal": [0, 18, 19, 30, 49, 61], "bizarr": [0, 61], "increas": [0, 12, 30, 37, 41, 43, 61], "less": [0, 35, 37, 61], "detect": [0, 36, 38, 39, 56, 59, 61], "code": [0, 4, 5, 9, 13, 14, 18, 22, 25, 30, 35, 37, 43, 45, 47, 50, 51, 60, 61], "fresh": [0, 37, 61], "profil": [0, 1, 5, 28, 33, 36, 49, 50, 51, 60, 61], "each": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 59, 60, 61], "clean": [0, 60, 61], "exit": [0, 56, 61], "save": [0, 5, 8, 39, 53, 56, 57, 59, 61], "load": [0, 2, 4, 12, 23, 25, 36, 37, 39, 42, 44, 47, 49, 56, 58, 59, 61], "cooki": [0, 4, 37, 39, 49, 60, 61], "file": [0, 8, 17, 23, 26, 30, 32, 35, 37, 39, 44, 57, 58, 59, 61], "repeat": [0, 30, 39, 61], "tediou": [0, 61], "login": [0, 59, 61], "step": [0, 14, 24, 33, 38, 57, 61], "smart": [0, 39, 61], "element": [0, 2, 3, 12, 17, 19, 21, 33, 35, 37, 38, 39, 41, 42, 45, 50, 59, 61], "lookup": [0, 37, 45, 58, 61], "selector": [0, 12, 17, 38, 57, 61], "text": [0, 2, 5, 9, 10, 11, 12, 14, 17, 19, 21, 25, 30, 34, 37, 39, 42, 45, 47, 57, 60, 61], "includ": [0, 2, 4, 12, 17, 19, 21, 28, 30, 37, 38, 39, 42, 45, 49, 51, 53, 57, 59, 61], "ifram": [0, 4, 17, 18, 19, 37, 39, 56, 59, 61], "content": [0, 2, 4, 9, 12, 14, 17, 19, 21, 25, 33, 37, 38, 39, 45, 47, 49, 51, 57, 59, 61], "could": [0, 4, 14, 37, 39, 57, 58, 59, 60, 61], "wait": [0, 37, 39, 44, 45, 56, 57, 59, 60, 61], "condit": [0, 12, 14, 17, 32, 37, 56, 59, 61], "appear": [0, 7, 15, 17, 21, 37, 38, 59, 60, 61], "sinc": [0, 8, 9, 12, 14, 17, 18, 19, 21, 27, 28, 36, 37, 38, 39, 40, 41, 43, 45, 47, 50, 51, 59, 60, 61], "retri": [0, 37, 59, 61], "durat": [0, 3, 30, 33, 40, 41, 49, 54, 57, 61], "timeout": [0, 14, 39, 45, 59, 61], "until": [0, 2, 12, 14, 25, 37, 39, 49, 59, 61], "found": [0, 4, 10, 12, 17, 37, 58, 59, 60, 61], "singl": [0, 2, 12, 14, 21, 25, 28, 42, 49, 50, 55, 59, 61], "tab": [0, 10, 39, 44, 51, 56, 57, 60, 61], "find": [0, 2, 4, 12, 17, 60, 61], "accept": [0, 12, 37, 39, 44, 52, 57, 59, 60, 61], "best_match": [0, 60, 61], "flag": [0, 4, 12, 18, 21, 23, 28, 29, 37, 39, 44, 45, 55, 59, 61], "which": [0, 2, 4, 8, 12, 14, 17, 18, 19, 20, 21, 25, 28, 30, 33, 35, 37, 39, 41, 42, 44, 45, 48, 49, 51, 56, 57, 58, 59, 60, 61], "naiv": [0, 59, 61], "return": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 61], "first": [0, 12, 14, 17, 21, 28, 33, 37, 42, 43, 51, 56, 58, 59, 61], "match": [0, 2, 12, 14, 17, 25, 37, 39, 45, 47, 51, 55, 59, 61], "candid": [0, 30, 49, 61], "closest": [0, 17, 59, 61], "length": [0, 3, 12, 14, 19, 21, 37, 49, 59, 60, 61], "descript": [0, 2, 6, 7, 12, 14, 17, 37, 39, 44, 45, 46, 47, 50, 61], "__repr__": [0, 61], "repres": [0, 3, 4, 5, 12, 14, 17, 19, 20, 25, 30, 35, 37, 38, 42, 44, 45, 47, 49, 50, 56, 57, 61], "html": [0, 5, 12, 17, 30, 37, 39, 42, 55, 57, 59, 61], "util": [0, 56, 59, 61], "function": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 59, 61], "convert": [0, 17, 49, 58, 59, 61], "undetected_chromedriv": [0, 61], "instanc": [0, 3, 5, 45, 56, 61], "contintu": [0, 61], "pack": [0, 61], "helper": [0, 61], "oper": [0, 4, 6, 12, 14, 17, 18, 22, 30, 32, 37, 49, 51, 59, 61], "quickstart": 0, "guid": [0, 8, 39, 53], "instal": [0, 23, 39, 44, 48], "usag": [0, 4, 12, 28, 39, 45, 49, 50, 57], "exampl": [0, 4, 5, 12, 27, 30, 39, 42, 43, 45, 50, 51, 57, 59], "complet": [0, 2, 14, 17, 19, 27, 37, 39], "custom": [0, 8, 12, 39], "option": [0, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 14, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 53, 54, 55, 57, 59], "altern": [0, 2, 25, 37, 45], "class": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55], "creat": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 58, 59, 60, 61], "target": [0, 1, 3, 4, 8, 12, 17, 21, 27, 31, 37, 38, 39, 41, 42, 44, 45, 47, 49, 56, 57, 59], "connect": [0, 7, 23, 31, 37, 45, 47, 52, 54, 56, 59, 61], "websocket_url": [0, 56, 59], "main_tab": [0, 56], "stop": [0, 10, 12, 14, 18, 22, 28, 34, 36, 39, 42, 43, 48, 53, 56, 57, 60, 61], "sleep": [0, 56, 59, 60, 61], "grant_all_permiss": [0, 56], "tile_window": [0, 56], "update_target": [0, 56, 59], "aclos": [0, 59], "activ": [0, 10, 12, 14, 21, 28, 30, 35, 37, 39, 42, 48, 49, 51, 56, 59], "add_handl": [0, 59, 61], "aopen": [0, 59], "attach": [0, 19, 35, 37, 39, 44, 45, 51, 59], "back": [0, 4, 14, 30, 32, 33, 39, 59], "bring_to_front": [0, 39, 59, 60, 61], "close": [0, 8, 17, 24, 32, 37, 39, 44, 51, 54, 56, 59, 60, 61], "download_fil": [0, 59], "evalu": [0, 14, 28, 37, 39, 45, 59], "find_al": [0, 59, 61], "find_element_by_text": [0, 59], "find_elements_by_text": [0, 57, 59], "forward": [0, 21, 30, 37, 39, 59], "fullscreen": [0, 8, 39, 59], "get_all_linked_sourc": [0, 59], "get_all_url": [0, 59], "get_cont": [0, 59, 60, 61], "get_window": [0, 59], "inspector_open": [0, 59], "inspector_url": [0, 59], "js_dump": [0, 59], "maxim": [0, 8, 37, 59], "medim": [0, 59], "minim": [0, 8, 28, 39, 59], "open_external_inspector": [0, 59], "query_selector": [0, 17, 57, 59], "query_selector_al": [0, 17, 57, 59], "reload": [0, 14, 31, 39, 45, 59, 60, 61], "save_screenshot": [0, 57, 59, 60, 61], "scroll_down": [0, 59, 60, 61], "scroll_up": [0, 59], "select": [0, 2, 15, 17, 19, 30, 35, 38, 39, 57, 60, 61], "select_al": [0, 60, 61], "send": [0, 4, 11, 17, 27, 28, 30, 34, 35, 37, 39, 42, 43, 49, 51, 54, 57, 60, 61], "set_download_path": [0, 59], "set_window_s": [0, 59], "set_window_st": [0, 59], "verify_cf": [0, 59], "wait_for": [0, 59], "websocket": [0, 37, 39, 59], "tag": [0, 12, 14, 19, 21, 39, 42, 48, 53, 57, 59], "tag_nam": [0, 57], "node_id": [0, 2, 12, 17, 18, 28, 38, 41, 42, 54, 57], "backend_node_id": [0, 2, 3, 17, 18, 19, 33, 38, 39, 42, 57], "node_typ": [0, 17, 19, 54, 57], "node_nam": [0, 17, 19, 57], "local_nam": [0, 17, 57], "node_valu": [0, 17, 19, 57], "parent_id": [0, 2, 17, 39, 45, 57], "child_node_count": [0, 17, 57], "attribut": [0, 2, 3, 4, 5, 6, 8, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 24, 25, 28, 30, 31, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 57, 58], "document_url": [0, 17, 19, 37, 57], "base_url": [0, 17, 19, 30, 57], "public_id": [0, 17, 19, 57], "system_id": [0, 17, 19, 57], "internal_subset": [0, 17, 57], "xml_version": [0, 17, 57], "valu": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 57, 58, 59], "pseudo_typ": [0, 12, 17, 19, 57], "pseudo_identifi": [0, 12, 17, 19, 57], "shadow_root_typ": [0, 17, 19, 57], "frame_id": [0, 2, 4, 5, 8, 12, 17, 19, 25, 37, 38, 39, 41, 49, 57], "content_docu": [0, 17, 57], "shadow_root": [0, 17, 57], "template_cont": [0, 17, 57], "pseudo_el": [0, 12, 17, 57], "imported_docu": [0, 17, 57], "distributed_nod": [0, 17, 57], "is_svg": [0, 17, 57], "compatibility_mod": [0, 17, 57], "assigned_slot": [0, 17, 57], "save_to_dom": [0, 57], "remove_from_dom": [0, 57], "updat": [0, 2, 3, 4, 6, 12, 17, 21, 27, 28, 37, 39, 42, 43, 45, 49, 55, 57, 58, 59], "node": [0, 2, 3, 5, 12, 17, 18, 19, 28, 33, 36, 38, 39, 42, 43, 54, 57, 59], "tree": [0, 2, 12, 17, 19, 28, 33, 39, 49, 57], "attr": [0, 17, 57, 61], "parent": [0, 2, 12, 17, 19, 33, 39, 45, 56, 57, 61], "children": [0, 2, 17, 18, 28, 38, 39, 43, 57, 61], "remote_object": [0, 57], "object_id": [0, 2, 14, 17, 18, 28, 32, 38, 45, 57], "click": [19, 30, 39, 44, 57, 60], "get_js_attribut": [0, 57], "appli": [0, 2, 4, 8, 12, 14, 21, 25, 33, 39, 53, 57, 61], "get_posit": [0, 57], "mouse_click": [0, 57, 60, 61], "mouse_mov": [0, 57], "mouse_drag": [0, 57], "scroll_into_view": [0, 57], "clear_input": [0, 57], "send_kei": [0, 57, 60, 61], "send_fil": [0, 57], "select_opt": [0, 57], "set_valu": [0, 57], "set_text": [0, 57], "get_html": [0, 57], "text_al": [0, 57, 61], "flash": [0, 8, 57, 60, 61], "highlight_overlai": [0, 57], "record_video": [0, 57, 61], "is_record": [0, 6, 57], "browser_arg": [0, 56, 58, 60], "user_data_dir": [0, 56, 58, 60], "uses_custom_data_dir": [0, 58], "add_extens": [0, 58], "add_argu": [0, 58], "contradict": 0, "clear": [0, 4, 6, 16, 20, 21, 23, 29, 34, 37, 39, 45, 49, 51, 55, 57, 58], "copi": [0, 17, 30, 58], "fromkei": [0, 58], "item": [0, 4, 8, 9, 12, 13, 14, 17, 19, 20, 25, 26, 27, 29, 30, 32, 33, 36, 37, 38, 39, 43, 44, 45, 49, 50, 53, 58, 59], "kei": [0, 6, 7, 9, 12, 20, 23, 26, 29, 30, 37, 39, 42, 44, 45, 47, 49, 55, 57, 58, 59, 60, 61], "pop": [0, 17, 58], "popitem": [0, 58], "setdefault": [0, 58], "cdict": [0, 58], "access": [0, 1, 4, 17, 28, 34, 38, 39, 49, 51, 58], "type": [0, 56, 57, 58, 59, 60, 61], "axnodeid": [0, 2], "axvaluetyp": [0, 2], "boolean": [0, 2, 14, 45], "tristat": [0, 2], "boolean_or_undefin": [0, 2], "idref": [0, 2], "idref_list": [0, 2], "integ": [0, 2, 17, 18, 28, 29, 45, 49], "node_list": [0, 2], "number": [0, 2, 5, 8, 9, 11, 12, 14, 17, 18, 19, 21, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 41, 43, 45, 49, 52, 53, 54, 59, 60, 61], "string": [0, 2, 4, 7, 8, 9, 12, 14, 17, 19, 21, 25, 27, 29, 30, 33, 36, 37, 39, 45, 47, 49, 50, 51, 53, 55, 57, 59, 60, 61], "computed_str": [0, 2], "token": [0, 2, 37, 39, 49], "token_list": [0, 2], "dom_rel": [0, 2], "role": [0, 2, 49, 60, 61], "internal_rol": [0, 2], "value_undefin": [0, 2], "axvaluesourcetyp": [0, 2], "implicit": [0, 2, 12, 17], "style": [0, 2, 3, 12, 17, 19, 21, 35, 38, 39, 57], "placehold": [0, 2, 17], "related_el": [0, 2], "axvaluenativesourcetyp": [0, 2], "figcapt": [0, 2], "label": [0, 2, 37, 38, 39, 45], "labelfor": [0, 2], "labelwrap": [0, 2], "legend": [0, 2], "rubyannot": [0, 2], "tablecapt": [0, 2], "titl": [0, 2, 12, 19, 24, 30, 38, 39, 40, 43, 47, 51, 60, 61], "axvaluesourc": [0, 2], "type_": [0, 2, 3, 4, 14, 18, 21, 26, 29, 30, 33, 37, 39, 41, 45, 49, 50, 51], "attribute_valu": [0, 2], "supersed": [0, 2, 21], "native_sourc": [0, 2], "native_source_valu": [0, 2], "invalid": [0, 2, 14, 17, 37], "invalid_reason": [0, 2], "axrelatednod": [0, 2], "backend_dom_node_id": [0, 2], "axproperti": [0, 2], "name": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 17, 18, 19, 21, 22, 23, 24, 25, 26, 28, 29, 30, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 58, 59, 60, 61], "axvalu": [0, 2], "related_nod": [0, 2], "sourc": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59], "axpropertynam": [0, 2], "busi": [0, 2], "disabl": [0, 2, 3, 4, 5, 6, 7, 10, 11, 12, 13, 14, 15, 17, 19, 20, 21, 22, 24, 25, 27, 28, 29, 31, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 45, 47, 48, 49, 54, 55, 61], "edit": [0, 2, 12, 14, 17, 30], "focus": [0, 2, 17, 21, 51], "hidden": [0, 2, 21, 39, 57], "hidden_root": [0, 2], "keyshortcut": [0, 2], "settabl": [0, 2], "roledescript": [0, 2], "live": [0, 2, 14], "atom": [0, 2], "relev": [0, 2, 18, 38, 42], "root": [0, 2, 12, 17, 18, 19, 28, 33, 35, 39, 43, 49, 56, 61], "autocomplet": [0, 2, 5, 58], "has_popup": [0, 2], "multiselect": [0, 2], "orient": [0, 2, 3, 16, 17, 21, 39], "multilin": [0, 2], "readonli": [0, 2], "requir": [0, 2, 8, 12, 17, 27, 29, 37, 39, 44, 57], "valuemin": [0, 2], "valuemax": [0, 2], "valuetext": [0, 2], "check": [0, 2, 4, 14, 17, 19, 44, 59], "expand": [0, 2], "modal": [0, 2], "press": [0, 2, 30, 39, 57], "activedescend": [0, 2], "control": [0, 2, 8, 30, 38, 39, 44, 45, 51, 53, 56, 59], "describedbi": [0, 2], "detail": [0, 2, 4, 8, 14, 17, 19, 25, 28, 35, 37, 39, 41, 43, 45, 47, 49, 51, 53, 59], "errormessag": [0, 2, 42], "flowto": [0, 2], "labelledbi": [0, 2], "own": [0, 2, 17, 19, 30, 33, 43, 45], "url": [0, 2, 4, 8, 9, 11, 12, 14, 17, 18, 19, 24, 25, 30, 33, 34, 37, 39, 41, 42, 43, 44, 45, 47, 49, 51, 56, 59, 61], "axnod": [0, 2], "ignor": [0, 2, 4, 12, 14, 17, 19, 30, 37, 39, 44, 47, 51, 53, 55, 59], "ignored_reason": [0, 2], "chrome_rol": [0, 2], "properti": [0, 2, 4, 12, 14, 17, 19, 35, 39, 42, 45, 54, 55, 56, 57, 58, 59], "child_id": [0, 2], "command": [0, 57], "enabl": [0, 2, 3, 4, 5, 6, 7, 8, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 27, 28, 29, 30, 31, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 51, 53, 54, 55, 57], "get_ax_node_and_ancestor": [0, 2], "get_child_ax_nod": [0, 2], "get_full_ax_tre": [0, 2], "get_partial_ax_tre": [0, 2], "get_root_ax_nod": [0, 2], "query_ax_tre": [0, 2], "loadcomplet": [0, 2], "nodesupd": [0, 2], "anim": [0, 1, 12, 27], "id_": [0, 2, 3, 5, 10, 13, 15, 23, 28, 30, 37, 39, 42, 43, 45, 49, 50], "paused_st": [0, 3], "play_stat": [0, 3], "playback_r": [0, 3], "start_tim": [0, 3, 43], "current_tim": [0, 3, 54], "css_id": [0, 3], "view_or_scroll_timelin": [0, 3], "vieworscrolltimelin": [0, 3], "axi": [0, 3, 12, 30, 38], "source_node_id": [0, 3], "start_offset": [0, 3, 12, 43], "end_offset": [0, 3, 12, 43], "subject_node_id": [0, 3], "animationeffect": [0, 3], "delai": [0, 3, 21, 24, 30, 39, 53], "end_delai": [0, 3], "iteration_start": [0, 3], "iter": [0, 3, 17, 19, 20, 33, 51, 58], "fill": [0, 3, 5, 21, 38, 47, 60, 61], "eas": [0, 3], "keyframes_rul": [0, 3], "keyframesrul": [0, 3], "keyfram": [0, 3, 12], "keyframestyl": [0, 3], "offset": [0, 3, 8, 12, 14, 19, 21, 32, 33, 39, 43, 59], "get_current_tim": [0, 3], "get_playback_r": [0, 3], "release_anim": [0, 3], "resolve_anim": [0, 3], "seek_anim": [0, 3], "set_paus": [0, 3], "set_playback_r": [0, 3], "set_tim": [0, 3], "animationcancel": [0, 3], "animationcr": [0, 3], "animationstart": [0, 3], "animationupd": [0, 3], "audit": [0, 1, 30], "affectedcooki": [0, 4], "path": [0, 4, 8, 9, 17, 23, 26, 29, 37, 39, 57, 58, 59, 60], "affectedrequest": [0, 4], "request_id": [0, 4, 25, 37, 42, 49], "affectedfram": [0, 4], "cookieexclusionreason": [0, 4], "exclude_same_site_unspecified_treated_as_lax": [0, 4], "exclude_same_site_none_insecur": [0, 4], "exclude_same_site_lax": [0, 4], "exclude_same_site_strict": [0, 4], "exclude_invalid_same_parti": [0, 4], "exclude_same_party_cross_party_context": [0, 4], "exclude_domain_non_ascii": [0, 4], "exclude_third_party_cookie_blocked_in_first_party_set": [0, 4], "exclude_third_party_phaseout": [0, 4], "cookiewarningreason": [0, 4], "warn_same_site_unspecified_cross_site_context": [0, 4], "warn_same_site_none_insecur": [0, 4], "warn_same_site_unspecified_lax_allow_unsaf": [0, 4], "warn_same_site_strict_lax_downgrade_strict": [0, 4], "warn_same_site_strict_cross_downgrade_strict": [0, 4], "warn_same_site_strict_cross_downgrade_lax": [0, 4], "warn_same_site_lax_cross_downgrade_strict": [0, 4], "warn_same_site_lax_cross_downgrade_lax": [0, 4], "warn_attribute_value_exceeds_max_s": [0, 4], "warn_domain_non_ascii": [0, 4], "warn_third_party_phaseout": [0, 4], "warn_cross_site_redirect_downgrade_changes_inclus": [0, 4], "cookieoper": [0, 4], "set_cooki": [0, 4, 37, 49, 56], "read_cooki": [0, 4], "cookieissuedetail": [0, 4], "cookie_warning_reason": [0, 4], "cookie_exclusion_reason": [0, 4], "raw_cookie_lin": [0, 4], "site_for_cooki": [0, 4], "cookie_url": [0, 4], "request": [0, 2, 4, 8, 9, 10, 12, 15, 17, 19, 21, 25, 27, 29, 34, 37, 38, 39, 45, 47, 49, 52, 53, 56, 59], "mixedcontentresolutionstatu": [0, 4], "mixed_content_block": [0, 4], "mixed_content_automatically_upgrad": [0, 4], "mixed_content_warn": [0, 4], "mixedcontentresourcetyp": [0, 4], "attribution_src": [0, 4], "audio": [0, 4, 54, 59], "beacon": [0, 4], "csp_report": [0, 4], "download": [0, 4, 8, 12, 37, 39, 42, 57, 59], "event_sourc": [0, 4, 37], "favicon": [0, 4], "font": [0, 4, 12, 37, 39], "form": [0, 4, 5, 14, 17, 37, 39, 57, 59, 61], "frame": [0, 2, 4, 5, 8, 12, 14, 17, 19, 21, 25, 27, 29, 30, 37, 38, 39, 41, 42, 45, 49, 50, 51], "imag": [0, 4, 8, 12, 17, 21, 27, 33, 37, 39, 41, 50, 57], "json": [0, 4, 7, 8, 9, 14, 25, 27, 33, 37, 39, 42, 45, 51, 53, 55, 57, 58], "manifest": [0, 4, 37, 38, 39, 44, 58], "ping": [0, 4, 37], "plugin_data": [0, 4], "plugin_resourc": [0, 4], "prefetch": [0, 4, 37, 42], "resourc": [0, 4, 8, 11, 12, 14, 18, 21, 25, 34, 37, 39, 42, 47, 56], "script": [0, 4, 12, 14, 18, 19, 21, 37, 39, 42, 43, 45, 48, 49, 57, 59, 60, 61], "service_work": [0, 4, 49], "shared_work": [0, 4, 39], "speculation_rul": [0, 4], "stylesheet": [0, 4, 12, 37], "track": [0, 4, 12, 13, 14, 17, 20, 28, 30, 37, 38, 39, 45, 47, 49], "video": [0, 4, 35, 50, 57, 59], "worker": [0, 4, 6, 14, 34, 36, 37, 39, 45, 51], "xml_http_request": [0, 4], "xslt": [0, 4], "mixedcontentissuedetail": [0, 4], "resolution_statu": [0, 4], "insecure_url": [0, 4], "main_resource_url": [0, 4], "resource_typ": [0, 4, 25, 37], "blockedbyresponsereason": [0, 4], "coep_frame_resource_needs_coep_head": [0, 4, 37], "coop_sandboxed_i_frame_cannot_navigate_to_coop_pag": [0, 4], "corp_not_same_origin": [0, 4, 37], "corp_not_same_origin_after_defaulted_to_same_origin_by_coep": [0, 4, 37], "corp_not_same_origin_after_defaulted_to_same_origin_by_dip": [0, 4, 37], "corp_not_same_origin_after_defaulted_to_same_origin_by_coep_and_dip": [0, 4, 37], "corp_not_same_sit": [0, 4, 37], "blockedbyresponseissuedetail": [0, 4], "reason": [0, 2, 4, 14, 25, 31, 33, 37, 39, 42, 43, 45, 51, 57], "parent_fram": [0, 4], "blocked_fram": [0, 4], "heavyadresolutionstatu": [0, 4], "heavy_ad_block": [0, 4], "heavy_ad_warn": [0, 4], "heavyadreason": [0, 4], "network_total_limit": [0, 4], "cpu_total_limit": [0, 4], "cpu_peak_limit": [0, 4], "heavyadissuedetail": [0, 4], "resolut": [0, 4, 50], "contentsecuritypolicyviolationtyp": [0, 4], "k_inline_viol": [0, 4], "k_eval_viol": [0, 4], "k_url_viol": [0, 4], "k_trusted_types_sink_viol": [0, 4], "k_trusted_types_policy_viol": [0, 4], "k_wasm_eval_viol": [0, 4], "sourcecodeloc": [0, 4], "line_numb": [0, 4, 14, 18, 34, 37, 39, 45, 48], "column_numb": [0, 4, 14, 18, 37, 39, 45, 48], "script_id": [0, 4, 14, 18, 39, 43, 45], "contentsecuritypolicyissuedetail": [0, 4], "violated_direct": [0, 4], "is_report_onli": [0, 4], "content_security_policy_violation_typ": [0, 4], "blocked_url": [0, 4], "frame_ancestor": [0, 4], "source_code_loc": [0, 4], "violating_node_id": [0, 4], "sharedarraybufferissuetyp": [0, 4], "transfer_issu": [0, 4], "creation_issu": [0, 4], "sharedarraybufferissuedetail": [0, 4], "is_warn": [0, 4], "lowtextcontrastissuedetail": [0, 4], "violating_node_selector": [0, 4], "contrast_ratio": [0, 4], "threshold_aa": [0, 4], "threshold_aaa": [0, 4], "font_siz": [0, 4, 39], "font_weight": [0, 4, 12], "corsissuedetail": [0, 4], "cors_error_statu": [0, 4, 37], "locat": [0, 4, 12, 14, 17, 25, 28, 30, 37, 39, 43, 44, 45, 51], "initiator_origin": [0, 4], "resource_ip_address_spac": [0, 4, 37], "client_security_st": [0, 4, 37], "attributionreportingissuetyp": [0, 4], "permission_policy_dis": [0, 4], "untrustworthy_reporting_origin": [0, 4], "insecure_context": [0, 4], "invalid_head": [0, 4], "invalid_register_trigger_head": [0, 4], "source_and_trigger_head": [0, 4], "source_ignor": [0, 4], "trigger_ignor": [0, 4], "os_source_ignor": [0, 4], "os_trigger_ignor": [0, 4], "invalid_register_os_source_head": [0, 4], "invalid_register_os_trigger_head": [0, 4], "web_and_os_head": [0, 4], "no_web_or_os_support": [0, 4], "navigation_registration_without_transient_user_activ": [0, 4], "invalid_info_head": [0, 4], "no_register_source_head": [0, 4], "no_register_trigger_head": [0, 4], "no_register_os_source_head": [0, 4], "no_register_os_trigger_head": [0, 4], "shareddictionaryerror": [0, 4], "use_error_cross_origin_no_cors_request": [0, 4], "use_error_dictionary_load_failur": [0, 4], "use_error_matching_dictionary_not_us": [0, 4], "use_error_unexpected_content_dictionary_head": [0, 4], "write_error_coss_origin_no_cors_request": [0, 4], "write_error_disallowed_by_set": [0, 4], "write_error_expired_respons": [0, 4], "write_error_feature_dis": [0, 4], "write_error_insufficient_resourc": [0, 4], "write_error_invalid_match_field": [0, 4], "write_error_invalid_structured_head": [0, 4], "write_error_navigation_request": [0, 4], "write_error_no_match_field": [0, 4], "write_error_non_list_match_dest_field": [0, 4], "write_error_non_secure_context": [0, 4], "write_error_non_string_id_field": [0, 4], "write_error_non_string_in_match_dest_list": [0, 4], "write_error_non_string_match_field": [0, 4], "write_error_non_token_type_field": [0, 4], "write_error_request_abort": [0, 4], "write_error_shutting_down": [0, 4], "write_error_too_long_id_field": [0, 4], "write_error_unsupported_typ": [0, 4], "attributionreportingissuedetail": [0, 4], "violation_typ": [0, 4, 18], "invalid_paramet": [0, 4], "quirksmodeissuedetail": [0, 4], "is_limited_quirks_mod": [0, 4], "document_node_id": [0, 4], "loader_id": [0, 4, 37, 39, 42], "navigatoruseragentissuedetail": [0, 4], "shareddictionaryissuedetail": [0, 4], "shared_dictionary_error": [0, 4], "genericissueerrortyp": [0, 4], "cross_origin_portal_post_message_error": [], "form_label_for_name_error": [0, 4], "form_duplicate_id_for_input_error": [0, 4], "form_input_with_no_label_error": [0, 4], "form_autocomplete_attribute_empty_error": [0, 4], "form_empty_id_and_name_attributes_for_input_error": [0, 4], "form_aria_labelled_by_to_non_existing_id": [0, 4], "form_input_assigned_autocomplete_value_to_id_or_name_attribute_error": [0, 4], "form_label_has_neither_for_nor_nested_input": [0, 4], "form_label_for_matches_non_existing_id_error": [0, 4], "form_input_has_wrong_but_well_intended_autocomplete_value_error": [0, 4], "response_was_blocked_by_orb": [0, 4], "genericissuedetail": [0, 4], "error_typ": [0, 4, 35, 42, 47], "violating_node_attribut": [0, 4], "deprecationissuedetail": [0, 4], "affected_fram": [0, 4], "bouncetrackingissuedetail": [0, 4], "tracking_sit": [0, 4], "cookiedeprecationmetadataissuedetail": [0, 4], "allowed_sit": [0, 4], "opt_out_percentag": [0, 4], "is_opt_out_top_level": [0, 4], "clienthintissuereason": [0, 4], "meta_tag_allow_list_invalid_origin": [0, 4], "meta_tag_modified_html": [0, 4], "federatedauthrequestissuedetail": [0, 4], "federated_auth_request_issue_reason": [0, 4], "federatedauthrequestissuereason": [0, 4], "should_embargo": [0, 4], "too_many_request": [0, 4], "well_known_http_not_found": [0, 4], "well_known_no_respons": [0, 4], "well_known_invalid_respons": [0, 4], "well_known_list_empti": [0, 4], "well_known_invalid_content_typ": [0, 4], "config_not_in_well_known": [0, 4], "well_known_too_big": [0, 4], "config_http_not_found": [0, 4], "config_no_respons": [0, 4], "config_invalid_respons": [0, 4], "config_invalid_content_typ": [0, 4], "client_metadata_http_not_found": [0, 4], "client_metadata_no_respons": [0, 4], "client_metadata_invalid_respons": [0, 4], "client_metadata_invalid_content_typ": [0, 4], "idp_not_potentially_trustworthi": [0, 4], "disabled_in_set": [0, 4], "disabled_in_flag": [0, 4], "error_fetching_signin": [0, 4], "invalid_signin_respons": [0, 4], "accounts_http_not_found": [0, 4], "accounts_no_respons": [0, 4], "accounts_invalid_respons": [0, 4], "accounts_list_empti": [0, 4], "accounts_invalid_content_typ": [0, 4], "id_token_http_not_found": [0, 4], "id_token_no_respons": [0, 4], "id_token_invalid_respons": [0, 4], "id_token_idp_error_respons": [0, 4], "id_token_cross_site_idp_error_respons": [0, 4], "id_token_invalid_request": [0, 4], "id_token_invalid_content_typ": [0, 4], "error_id_token": [0, 4], "cancel": [0, 3, 4, 8, 15, 25, 30, 37, 38, 39, 42, 45, 47, 51], "rp_page_not_vis": [0, 4], "silent_mediation_failur": [0, 4], "third_party_cookies_block": [0, 4], "not_signed_in_with_idp": [0, 4], "missing_transient_user_activ": [0, 4], "replaced_by_button_mod": [], "invalid_fields_specifi": [0, 4], "relying_party_origin_is_opaqu": [0, 4], "type_not_match": [0, 4], "federatedauthuserinforequestissuedetail": [0, 4], "federated_auth_user_info_request_issue_reason": [0, 4], "federatedauthuserinforequestissuereason": [0, 4], "not_same_origin": [0, 4], "not_ifram": [0, 4], "not_potentially_trustworthi": [0, 4], "no_api_permiss": [0, 4], "no_account_sharing_permiss": [0, 4], "invalid_config_or_well_known": [0, 4], "invalid_accounts_respons": [0, 4], "no_returning_user_from_fetched_account": [0, 4], "clienthintissuedetail": [0, 4], "client_hint_issue_reason": [0, 4], "failedrequestinfo": [0, 4], "failure_messag": [0, 4], "stylesheetloadingissuereason": [0, 4], "late_import_rul": [0, 4], "request_fail": [0, 4], "stylesheetloadingissuedetail": [0, 4], "style_sheet_loading_issue_reason": [0, 4], "failed_request_info": [0, 4], "propertyruleissuereason": [0, 4], "invalid_syntax": [0, 4], "invalid_initial_valu": [0, 4], "invalid_inherit": [0, 4], "invalid_nam": [0, 4], "propertyruleissuedetail": [0, 4], "property_rule_issue_reason": [0, 4], "property_valu": [0, 4], "inspectorissuecod": [0, 4], "cookie_issu": [0, 4], "mixed_content_issu": [0, 4], "blocked_by_response_issu": [0, 4], "heavy_ad_issu": [0, 4], "content_security_policy_issu": [0, 4], "shared_array_buffer_issu": [0, 4], "low_text_contrast_issu": [0, 4], "cors_issu": [0, 4], "attribution_reporting_issu": [0, 4], "quirks_mode_issu": [0, 4], "navigator_user_agent_issu": [0, 4], "generic_issu": [0, 4], "deprecation_issu": [0, 4], "client_hint_issu": [0, 4], "federated_auth_request_issu": [0, 4], "bounce_tracking_issu": [0, 4], "cookie_deprecation_metadata_issu": [0, 4], "stylesheet_loading_issu": [0, 4], "federated_auth_user_info_request_issu": [0, 4], "property_rule_issu": [0, 4], "shared_dictionary_issu": [0, 4], "inspectorissuedetail": [0, 4], "cookie_issue_detail": [0, 4], "mixed_content_issue_detail": [0, 4], "blocked_by_response_issue_detail": [0, 4], "heavy_ad_issue_detail": [0, 4], "content_security_policy_issue_detail": [0, 4], "shared_array_buffer_issue_detail": [0, 4], "low_text_contrast_issue_detail": [0, 4], "cors_issue_detail": [0, 4], "attribution_reporting_issue_detail": [0, 4], "quirks_mode_issue_detail": [0, 4], "navigator_user_agent_issue_detail": [0, 4], "generic_issue_detail": [0, 4], "deprecation_issue_detail": [0, 4], "client_hint_issue_detail": [0, 4], "federated_auth_request_issue_detail": [0, 4], "bounce_tracking_issue_detail": [0, 4], "cookie_deprecation_metadata_issue_detail": [0, 4], "stylesheet_loading_issue_detail": [0, 4], "property_rule_issue_detail": [0, 4], "federated_auth_user_info_request_issue_detail": [0, 4], "shared_dictionary_issue_detail": [0, 4], "issueid": [0, 4], "inspectorissu": [0, 4], "issue_id": [0, 4], "check_contrast": [0, 4], "check_forms_issu": [0, 4], "get_encoded_respons": [0, 4], "issuead": [0, 4], "issu": [0, 4, 10, 11, 12, 14, 25, 30, 34, 37, 39, 45, 47, 49, 51, 53, 59], "autofil": [0, 1, 39], "creditcard": [0, 5], "expiry_month": [0, 5], "expiry_year": [0, 5], "cvc": [0, 5], "addressfield": [0, 5], "field": [0, 4, 5, 8, 12, 25, 30, 37, 39, 41, 45, 47, 51, 54, 57, 60, 61], "address": [0, 5, 7, 36, 37], "addressui": [0, 5], "address_field": [0, 5], "fillingstrategi": [0, 5], "autocomplete_attribut": [0, 5], "autofill_inf": [0, 5], "filledfield": [0, 5], "html_type": [0, 5], "autofill_typ": [0, 5], "filling_strategi": [0, 5], "field_id": [0, 5], "set_address": [0, 5], "trigger": [0, 3, 5, 14, 24, 30, 34, 37, 38, 39, 42, 43, 47, 53, 55, 57], "addressformfil": [0, 5], "filled_field": [0, 5], "address_ui": [0, 5], "backgroundservic": [0, 1], "servicenam": [0, 6], "background_fetch": [0, 6, 8], "background_sync": [0, 6, 8], "push_messag": [0, 6], "notif": [0, 3, 5, 6, 8, 11, 17, 21, 31, 34, 36, 37, 38, 39, 45, 49, 51, 56], "payment_handl": [0, 6, 8], "periodic_background_sync": [0, 6, 8], "eventmetadata": [0, 6], "backgroundserviceev": [0, 6], "timestamp": [0, 6, 12, 21, 26, 27, 28, 30, 34, 35, 37, 39, 40, 43, 45], "origin": [0, 3, 4, 6, 8, 9, 11, 12, 18, 20, 21, 25, 29, 37, 39, 42, 45, 48, 49, 51, 61], "service_worker_registration_id": [0, 6], "servic": [0, 6, 37, 49, 51, 53], "event_nam": [0, 6, 18, 22, 37], "instance_id": [0, 6], "event_metadata": [0, 6], "storage_kei": [0, 6, 9, 20, 26, 29, 49], "clear_ev": [0, 6], "set_record": [0, 6], "start_observ": [0, 6], "stop_observ": [0, 6], "recordingstatechang": [0, 6], "backgroundserviceeventreceiv": [0, 6], "background_service_ev": [0, 6], "browsercontextid": [0, 8, 49, 51], "windowid": [0, 8], "windowst": [0, 8], "normal": [0, 8, 12, 21, 24, 30, 45, 56, 59], "bound": [0, 8, 17, 19, 29, 39, 52, 59], "left": [0, 8, 30, 32, 33, 39, 57, 59], "top": [0, 8, 14, 17, 30, 33, 37, 39, 43, 45, 56, 59], "width": [0, 8, 12, 17, 19, 21, 33, 38, 39, 50, 51, 59], "height": [0, 8, 12, 17, 19, 21, 33, 38, 39, 50, 51, 59], "window_st": [0, 8], "permissiontyp": [0, 8], "accessibility_ev": [0, 8], "audio_captur": [0, 8], "captured_surface_control": [0, 8, 39], "clipboard_read_writ": [0, 8], "clipboard_sanitized_writ": [0, 8], "display_captur": [0, 8, 39], "durable_storag": [0, 8], "geoloc": [0, 8, 21, 39, 56], "idle_detect": [0, 8, 39], "local_font": [0, 8, 39], "midi": [0, 8, 39, 56], "midi_sysex": [0, 8], "nfc": [0, 8, 55, 56], "protected_media_identifi": [0, 8], "sensor": [0, 8, 21, 39, 56], "storage_access": [0, 8, 37, 39], "speaker_select": [0, 8, 39], "top_level_storage_access": [0, 8, 37], "video_captur": [0, 8], "video_capture_pan_tilt_zoom": [0, 8], "wake_lock_screen": [0, 8], "wake_lock_system": [0, 8], "window_manag": [0, 8, 39], "permissionset": [0, 8], "grant": [0, 4, 8, 39, 51, 56], "deni": [0, 8, 39], "prompt": [0, 8, 15, 39], "permissiondescriptor": [0, 8], "sysex": [0, 8], "user_visible_onli": [0, 8], "allow_without_sanit": [0, 8], "allow_without_gestur": [0, 8], "pan_tilt_zoom": [0, 8], "browsercommandid": [0, 8], "open_tab_search": [0, 8], "close_tab_search": [0, 8], "bucket": [0, 8, 9, 26, 29, 49, 53], "low": [0, 8, 37, 50], "high": [0, 8, 37], "count": [0, 8, 9, 17, 28, 29, 30, 36, 37, 39, 43, 49], "histogram": [0, 8], "sum_": [0, 8], "add_privacy_sandbox_enrollment_overrid": [0, 8], "cancel_download": [0, 8], "crash": [0, 8, 31, 39, 51, 57, 59], "crash_gpu_process": [0, 8], "execute_browser_command": [0, 8], "get_browser_command_lin": [0, 8], "get_histogram": [0, 8], "get_vers": [0, 8], "get_window_bound": [0, 8], "get_window_for_target": [0, 8], "grant_permiss": [0, 8], "reset_permiss": [0, 8], "set_dock_til": [0, 8], "set_download_behavior": [0, 8, 39], "set_permiss": [0, 8], "set_window_bound": [0, 8], "downloadwillbegin": [0, 8, 39], "suggested_filenam": [0, 8, 39], "downloadprogress": [0, 8, 39], "total_byt": [0, 8, 39], "received_byt": [0, 8, 39], "state": [0, 2, 3, 4, 6, 7, 8, 12, 14, 17, 21, 25, 28, 37, 39, 42, 44, 45, 47, 49, 50, 55, 59], "cachestorag": [0, 1], "cacheid": [0, 9], "cachedresponsetyp": [0, 9], "basic": [0, 9, 25, 37], "cor": [0, 4, 9, 37], "error": [0, 2, 4, 5, 9, 10, 13, 14, 17, 21, 24, 25, 35, 37, 39, 40, 42, 44, 45, 47, 48, 51, 59], "opaque_respons": [0, 9], "opaque_redirect": [0, 9], "dataentri": [0, 9, 29], "request_url": [0, 9, 37, 47], "request_method": [0, 9], "request_head": [0, 9, 37], "response_tim": [0, 9, 37], "response_statu": [0, 9], "response_status_text": [0, 9, 25], "response_typ": [0, 9], "response_head": [0, 9, 25, 37], "cach": [0, 9, 36, 37, 39, 48, 49, 59], "cache_id": [0, 9], "security_origin": [0, 9, 20, 29, 39], "cache_nam": [0, 9, 49], "storage_bucket": [0, 9, 26, 29, 49], "header": [0, 4, 9, 12, 21, 25, 37, 39, 42, 45, 48], "cachedrespons": [0, 9], "bodi": [0, 4, 9, 12, 14, 25, 37, 45], "delete_cach": [0, 9], "delete_entri": [0, 9], "request_cache_nam": [0, 9], "request_cached_respons": [0, 9], "request_entri": [0, 9], "cast": [0, 1], "sink": [0, 10, 18], "session": [0, 8, 10, 17, 20, 23, 37, 49, 51, 56, 60, 61], "set_sink_to_us": [0, 10], "start_desktop_mirror": [0, 10], "start_tab_mirror": [0, 10], "stop_cast": [0, 10], "sinksupd": [0, 10], "issueupd": [0, 10], "issue_messag": [0, 10], "consol": [0, 1, 4, 17, 28, 43, 45, 59], "consolemessag": [0, 11], "column": [0, 11, 12, 14, 17, 18, 37, 38, 39, 45], "clear_messag": [0, 11], "messagead": [0, 11], "messag": [0, 4, 10, 11, 13, 17, 34, 35, 37, 38, 39, 45, 48, 51, 53], "css": [0, 1, 3, 4, 17, 21, 30, 38, 39, 59], "stylesheetid": [0, 12], "stylesheetorigin": [0, 12], "inject": [0, 12, 39, 51], "user_ag": [0, 12, 17, 21, 37], "inspector": [0, 1, 4, 12, 37, 59], "regular": [0, 12, 18, 22, 25, 57, 59], "pseudoelementmatch": [0, 12], "inheritedstyleentri": [0, 12], "matched_css_rul": [0, 12], "inline_styl": [0, 12], "inheritedpseudoelementmatch": [0, 12], "rulematch": [0, 12], "rule": [0, 3, 4, 12, 14, 37, 42, 45], "matching_selector": [0, 12], "range_": [0, 12], "specif": [0, 4, 6, 7, 8, 12, 14, 35, 37, 42, 44, 45, 49, 51, 55, 59], "b": [0, 12, 17, 39, 55, 62], "c": [0, 8, 12, 21, 35, 37, 44, 57], "selectorlist": [0, 12], "cssstylesheethead": [0, 12], "style_sheet_id": [0, 12], "source_url": [0, 12, 45, 48], "is_inlin": [0, 12], "is_mut": [0, 12], "is_construct": [0, 12], "start_lin": [0, 12, 14], "start_column": [0, 12, 14], "end_lin": [0, 12, 14], "end_column": [0, 12, 14], "source_map_url": [0, 12, 14], "owner_nod": [0, 12], "has_source_url": [0, 12, 14], "loading_fail": [0, 12], "cssrule": [0, 12], "selector_list": [0, 12], "nesting_selector": [0, 12], "media": [0, 1, 12, 21, 37, 39, 44], "container_queri": [0, 12], "support": [0, 8, 12, 14, 21, 25, 27, 30, 32, 37, 39, 41, 44, 46, 50, 51, 53, 54, 55, 57], "layer": [0, 12, 17, 25, 33, 38], "scope": [0, 12, 14, 37, 39, 44, 45, 49, 55, 60, 61], "rule_typ": [0, 12], "cssruletyp": [0, 12], "media_rul": [0, 12], "supports_rul": [0, 12], "container_rul": [0, 12], "layer_rul": [0, 12], "scope_rul": [0, 12], "style_rul": [0, 12], "ruleusag": [0, 12], "sourcerang": [0, 12], "shorthandentri": [0, 12], "csscomputedstyleproperti": [0, 12, 17], "cssstyle": [0, 12], "css_properti": [0, 12], "shorthand_entri": [0, 12], "css_text": [0, 12], "cssproperti": [0, 12], "parsed_ok": [0, 12], "longhand_properti": [0, 12], "cssmedia": [0, 12], "media_list": [0, 12], "mediaqueri": [0, 12], "express": [0, 12, 14, 45, 59], "mediaqueryexpress": [0, 12], "unit": [0, 12], "value_rang": [0, 12], "computed_length": [0, 12], "csscontainerqueri": [0, 12], "physical_ax": [0, 12, 17], "logical_ax": [0, 12, 17], "csssupport": [0, 12], "cssscope": [0, 12], "csslayer": [0, 12], "csslayerdata": [0, 12], "order": [0, 12, 19, 21, 28, 35, 38, 39, 44, 49, 58], "sub_lay": [0, 12], "platformfontusag": [0, 12], "family_nam": [0, 5, 12], "post_script_nam": [0, 12], "is_custom_font": [0, 12], "glyph_count": [0, 12], "fontvariationaxi": [0, 12], "min_valu": [0, 12, 54], "max_valu": [0, 12, 54], "default_valu": [0, 12, 54], "fontfac": [0, 12], "font_famili": [0, 12, 39], "font_styl": [0, 12], "font_vari": [0, 12], "font_stretch": [0, 12], "font_displai": [0, 12], "unicode_rang": [0, 12], "src": [0, 4, 7, 8, 12, 30, 37, 39, 51, 59, 60, 61], "platform_font_famili": [0, 12], "font_variation_ax": [0, 12], "csstryrul": [0, 12], "csspositionfallbackrul": [], "try_rul": [], "csspositiontryrul": [0, 12], "csskeyframesrul": [0, 12], "animation_nam": [0, 12], "csspropertyregistr": [0, 12], "property_nam": [0, 12], "inherit": [0, 12, 17, 45, 58], "syntax": [0, 12, 37], "initial_valu": [0, 12, 42], "cssfontpalettevaluesrul": [0, 12], "font_palette_nam": [0, 12], "csspropertyrul": [0, 12], "csskeyframerul": [0, 12], "key_text": [0, 12], "styledeclarationedit": [0, 12], "add_rul": [0, 12], "collect_class_nam": [0, 12], "create_style_sheet": [0, 12], "force_pseudo_st": [0, 12], "get_background_color": [0, 12], "get_computed_style_for_nod": [0, 12], "get_inline_styles_for_nod": [0, 12], "get_layers_for_nod": [0, 12], "get_location_for_selector": [0, 12], "get_matched_styles_for_nod": [0, 12], "get_media_queri": [0, 12], "get_platform_fonts_for_nod": [0, 12], "get_style_sheet_text": [0, 12], "set_container_query_text": [0, 12], "set_effective_property_value_for_nod": [0, 12], "set_keyframe_kei": [0, 12], "set_local_fonts_en": [0, 12], "set_media_text": [0, 12], "set_property_rule_property_nam": [0, 12], "set_rule_selector": [0, 12], "set_scope_text": [0, 12], "set_style_sheet_text": [0, 12], "set_style_text": [0, 12], "set_supports_text": [0, 12], "start_rule_usage_track": [0, 12], "stop_rule_usage_track": [0, 12], "take_computed_style_upd": [0, 12], "take_coverage_delta": [0, 12], "track_computed_style_upd": [0, 12], "fontsupd": [0, 12], "mediaqueryresultchang": [0, 12], "stylesheetad": [0, 12], "stylesheetchang": [0, 12], "stylesheetremov": [0, 12], "databas": [0, 1, 29, 49], "databaseid": [0, 13], "version": [0, 8, 13, 14, 17, 18, 19, 21, 27, 29, 37, 38, 39, 40, 46, 47, 48, 50, 51], "execute_sql": [0, 13], "get_database_table_nam": [0, 13], "adddatabas": [0, 13], "debugg": [0, 1, 22, 37, 39, 45], "breakpointid": [0, 14], "callframeid": [0, 14], "scriptposit": [0, 14], "locationrang": [0, 14], "end": [0, 3, 4, 12, 14, 17, 30, 32, 33, 37, 39, 43, 45, 49, 53, 57], "callfram": [0, 14, 28, 43, 45], "call_frame_id": [0, 14], "function_nam": [0, 14, 43, 45], "scope_chain": [0, 14], "function_loc": [0, 14], "return_valu": [0, 14], "can_be_restart": [0, 14], "object_": [0, 14, 45], "start_loc": [0, 14], "end_loc": [0, 14], "searchmatch": [0, 14, 37, 39], "line_cont": [0, 14], "breakloc": [0, 14], "wasmdisassemblychunk": [0, 14], "bytecode_offset": [0, 14], "scriptlanguag": [0, 14], "java_script": [0, 14], "web_assembli": [0, 14], "debugsymbol": [0, 14], "external_url": [0, 14], "continue_to_loc": [0, 14], "disassemble_wasm_modul": [0, 14], "evaluate_on_call_fram": [0, 14], "get_possible_breakpoint": [0, 14], "get_script_sourc": [0, 14], "get_stack_trac": [0, 14], "get_wasm_bytecod": [0, 14], "next_wasm_disassembly_chunk": [0, 14], "paus": [0, 3, 14, 21, 25, 28, 39, 45, 51, 57, 61], "pause_on_async_cal": [0, 14], "remove_breakpoint": [0, 14], "restart_fram": [0, 14], "resum": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55], "search_in_cont": [0, 14], "set_async_call_stack_depth": [0, 14, 45], "set_blackbox_pattern": [0, 14], "set_blackboxed_rang": [0, 14], "set_breakpoint": [0, 14], "set_breakpoint_by_url": [0, 14], "set_breakpoint_on_function_cal": [0, 14], "set_breakpoints_act": [0, 14], "set_instrumentation_breakpoint": [0, 14, 18, 22], "set_pause_on_except": [0, 14], "set_return_valu": [0, 14], "set_script_sourc": [0, 14], "set_skip_all_paus": [0, 14], "set_variable_valu": [0, 14], "step_into": [0, 14], "step_out": [0, 14], "step_ov": [0, 14], "breakpointresolv": [0, 14], "breakpoint_id": [0, 14], "call_fram": [0, 14, 28, 43, 45], "data": [0, 2, 5, 6, 7, 9, 12, 14, 17, 19, 21, 23, 25, 27, 29, 30, 32, 33, 35, 36, 37, 38, 39, 43, 45, 48, 49, 53, 54], "hit_breakpoint": [0, 14], "async_stack_trac": [0, 14], "async_stack_trace_id": [0, 14], "async_call_stack_trace_id": [0, 14], "scriptfailedtopars": [0, 14], "execution_context_id": [0, 14, 17, 45], "hash_": [0, 14], "execution_context_aux_data": [0, 14], "is_modul": [0, 14], "stack_trac": [0, 14, 34, 45], "code_offset": [0, 14], "script_languag": [0, 14], "embedder_nam": [0, 14], "scriptpars": [0, 14], "is_live_edit": [0, 14], "debug_symbol": [0, 14], "deviceaccess": [0, 1], "requestid": [0, 4, 15, 25, 34, 37, 42, 49], "deviceid": [0, 15], "promptdevic": [0, 15], "cancel_prompt": [0, 15], "select_prompt": [0, 15], "devicerequestprompt": [0, 15], "devic": [0, 7, 10, 15, 16, 21, 30, 38, 39, 50, 55], "deviceorient": [0, 1], "clear_device_orientation_overrid": [0, 16, 39], "set_device_orientation_overrid": [0, 16, 39], "dom": [0, 1, 2, 5, 8, 12, 14, 18, 19, 20, 30, 36, 38, 39, 41, 45, 55, 56, 57, 59], "nodeid": [0, 2, 12, 17, 18, 38], "backendnodeid": [0, 2, 3, 4, 5, 12, 17, 18, 19, 33, 38, 39, 41, 42], "backendnod": [0, 17], "pseudotyp": [0, 12, 17, 19], "first_lin": [0, 17], "first_lett": [0, 17], "befor": [0, 4, 14, 17, 21, 24, 25, 27, 28, 32, 33, 37, 39, 40, 41, 43, 49, 57, 60, 61], "after": [0, 4, 12, 14, 17, 21, 25, 30, 31, 36, 37, 38, 39, 45, 56, 59], "marker": [0, 17, 30, 53], "backdrop": [0, 17], "search_text": [0, 17], "target_text": [0, 17], "spelling_error": [0, 17], "grammar_error": [0, 17], "highlight": [0, 17, 38, 57], "first_line_inherit": [0, 17], "scroll_mark": [0, 17], "scroll_marker_group": [0, 17], "scrollbar": [0, 17, 21, 39], "scrollbar_thumb": [0, 17], "scrollbar_button": [0, 17], "scrollbar_track": [0, 17], "scrollbar_track_piec": [0, 17], "scrollbar_corn": [0, 17], "resiz": [0, 12, 17, 21, 38], "input_list_button": [0, 17], "view_transit": [0, 17], "view_transition_group": [0, 17], "view_transition_image_pair": [0, 17], "view_transition_old": [0, 17], "view_transition_new": [0, 17], "shadowroottyp": [0, 17, 19], "open_": [0, 17], "compatibilitymod": [0, 17], "quirks_mod": [0, 17], "limited_quirks_mod": [0, 17], "no_quirks_mod": [0, 17], "physicalax": [0, 12, 17], "horizont": [0, 17, 19, 21, 39], "vertic": [0, 17, 19, 21, 39], "both": [0, 17, 30, 37, 39], "logicalax": [0, 12, 17], "inlin": [0, 12, 17, 19, 39, 42, 59], "block": [0, 4, 17, 33, 37, 39, 43, 45, 50, 57, 59], "scrollorient": [0, 3, 17], "rgba": [0, 17, 21, 38], "r": [0, 17], "g": [0, 2, 4, 5, 12, 17, 21, 30, 37, 39, 45, 47, 50, 53, 55], "quad": [0, 17, 38], "boxmodel": [0, 17], "pad": [0, 17, 38], "border": [0, 17, 38], "margin": [0, 17, 38, 39], "shape_outsid": [0, 17], "shapeoutsideinfo": [0, 17], "shape": [0, 17, 38], "margin_shap": [0, 17], "rect": [0, 17, 19, 33, 38, 39, 41], "x": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 57, 58, 59], "y": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 57], "collect_class_names_from_subtre": [0, 17], "copy_to": [0, 17], "describe_nod": [0, 17], "discard_search_result": [0, 17], "get_anchor_el": [0, 17], "get_attribut": [0, 17], "get_box_model": [0, 17], "get_container_for_nod": [0, 17], "get_content_quad": [0, 17], "get_docu": [0, 17], "get_element_by_rel": [0, 17], "get_file_info": [0, 17], "get_flattened_docu": [0, 17], "get_frame_own": [0, 17], "get_node_for_loc": [0, 17], "get_node_stack_trac": [0, 17], "get_nodes_for_subtree_by_styl": [0, 17], "get_outer_html": [0, 17], "get_querying_descendants_for_contain": [0, 17], "get_relayout_boundari": [0, 17], "get_search_result": [0, 17], "get_top_layer_el": [0, 17], "hide_highlight": [0, 17, 38], "highlight_nod": [0, 17, 38], "highlight_rect": [0, 17, 38], "mark_undoable_st": [0, 17], "move_to": [0, 17], "perform_search": [0, 17], "push_node_by_path_to_frontend": [0, 17], "push_nodes_by_backend_ids_to_frontend": [0, 17], "redo": [0, 17], "remove_attribut": [0, 17], "remove_nod": [0, 17], "request_child_nod": [0, 17], "request_nod": [0, 17], "resolve_nod": [0, 17], "scroll_into_view_if_need": [0, 17], "set_attribute_valu": [0, 17], "set_attributes_as_text": [0, 17], "set_file_input_fil": [0, 17], "set_inspected_nod": [0, 17], "set_node_nam": [0, 17], "set_node_stack_traces_en": [0, 17], "set_node_valu": [0, 17], "set_outer_html": [0, 17], "undo": [0, 17], "attributemodifi": [0, 17], "attributeremov": [0, 17], "characterdatamodifi": [0, 17], "character_data": [0, 17], "childnodecountupd": [0, 17], "childnodeinsert": [0, 17], "parent_node_id": [0, 17], "previous_node_id": [0, 17], "childnoderemov": [0, 17], "distributednodesupd": [0, 17], "insertion_point_id": [0, 17], "documentupd": [0, 17], "inlinestyleinvalid": [0, 17], "pseudoelementad": [0, 17], "toplayerelementsupd": [0, 17], "pseudoelementremov": [0, 17], "pseudo_element_id": [0, 17], "setchildnod": [0, 17], "shadowrootpop": [0, 17], "host_id": [0, 17], "root_id": [0, 17], "shadowrootpush": [0, 17], "domdebugg": [0, 1], "dombreakpointtyp": [0, 18], "subtree_modifi": [0, 18], "attribute_modifi": [0, 18], "node_remov": [0, 18], "cspviolationtyp": [0, 18], "trustedtype_sink_viol": [0, 18], "trustedtype_policy_viol": [0, 18], "eventlisten": [0, 18, 19], "use_captur": [0, 18], "passiv": [0, 18], "onc": [0, 14, 17, 18, 22, 23, 37, 39, 45], "handler": [0, 18, 37, 39, 44, 45, 59], "original_handl": [0, 18], "get_event_listen": [0, 18], "remove_dom_breakpoint": [0, 18], "remove_event_listener_breakpoint": [0, 18], "remove_instrumentation_breakpoint": [0, 18, 22], "remove_xhr_breakpoint": [0, 18], "set_break_on_csp_viol": [0, 18], "set_dom_breakpoint": [0, 18], "set_event_listener_breakpoint": [0, 18], "set_xhr_breakpoint": [0, 18], "domsnapshot": [0, 1, 17], "domnod": [0, 17, 19], "text_valu": [0, 19], "input_valu": [0, 19], "input_check": [0, 19], "option_select": [0, 19], "child_node_index": [0, 19], "pseudo_element_index": [0, 19], "layout_node_index": [0, 19], "content_languag": [0, 19], "document_encod": [0, 19], "content_document_index": [0, 19], "is_click": [0, 19], "event_listen": [0, 19], "current_source_url": [0, 19], "origin_url": [0, 19], "scroll_offset_x": [0, 19, 39], "scroll_offset_i": [0, 19, 39], "inlinetextbox": [0, 19], "bounding_box": [0, 19], "start_character_index": [0, 19], "num_charact": [0, 19], "layouttreenod": [0, 19], "dom_node_index": [0, 19], "layout_text": [0, 19], "inline_text_nod": [0, 19], "style_index": [0, 19], "paint_ord": [0, 19], "is_stacking_context": [0, 19], "computedstyl": [0, 19], "namevalu": [0, 19], "stringindex": [0, 19], "arrayofstr": [0, 19], "rarestringdata": [0, 19], "index": [0, 12, 17, 19, 28, 29, 37, 39, 45], "rarebooleandata": [0, 19], "rareintegerdata": [0, 19], "rectangl": [0, 17, 19, 33, 38, 39], "documentsnapshot": [0, 19], "encoding_nam": [0, 19], "layout": [0, 4, 17, 19, 27, 30, 33, 38, 39, 41], "text_box": [0, 19], "content_width": [0, 19], "content_height": [0, 19], "nodetreesnapshot": [0, 19], "parent_index": [0, 19], "layouttreesnapshot": [0, 19], "node_index": [0, 19], "stacking_context": [0, 19], "offset_rect": [0, 19], "scroll_rect": [0, 19, 33], "client_rect": [0, 19], "blended_background_color": [0, 19], "text_color_opac": [0, 19], "textboxsnapshot": [0, 19], "layout_index": [0, 19], "capture_snapshot": [0, 19, 39], "get_snapshot": [0, 19], "domstorag": [0, 1], "serializedstoragekei": [0, 20, 26, 49], "storageid": [0, 20], "is_local_storag": [0, 20], "get_dom_storage_item": [0, 20], "remove_dom_storage_item": [0, 20], "set_dom_storage_item": [0, 20], "domstorageitemad": [0, 20], "storage_id": [0, 20], "new_valu": [0, 14, 20], "domstorageitemremov": [0, 20], "domstorageitemupd": [0, 20], "old_valu": [0, 20], "domstorageitemsclear": [0, 20], "emul": [0, 1, 30, 37, 38, 39], "screenorient": [0, 21, 39], "angl": [0, 21, 30], "displayfeatur": [0, 21], "mask_length": [0, 21], "devicepostur": [0, 21], "mediafeatur": [0, 21], "virtualtimepolici": [0, 21], "advanc": [0, 21], "pause_if_network_fetches_pend": [0, 21], "useragentbrandvers": [0, 21], "brand": [0, 21], "useragentmetadata": [0, 21, 37], "platform": [0, 6, 8, 12, 21, 30, 37, 38, 39, 41, 50, 53, 54], "platform_vers": [0, 21], "architectur": [0, 21], "model": [0, 17, 21, 39, 50], "mobil": [0, 21, 39], "full_version_list": [0, 21], "full_vers": [0, 21], "bit": [0, 21, 30, 39, 49, 55, 57], "wow64": [0, 21, 39], "sensortyp": [0, 21], "absolute_orient": [0, 21], "acceleromet": [0, 21, 39], "ambient_light": [0, 21], "graviti": [0, 21], "gyroscop": [0, 21, 39], "linear_acceler": [0, 21], "magnetomet": [0, 21, 39], "proxim": [], "relative_orient": [0, 21], "sensormetadata": [0, 21], "minimum_frequ": [0, 21], "maximum_frequ": [0, 21], "sensorreadingsingl": [0, 21], "sensorreadingxyz": [0, 21], "z": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55], "sensorreadingquaternion": [0, 21], "w": [0, 21], "sensorread": [0, 21], "xyz": [0, 21], "quaternion": [0, 21], "disabledimagetyp": [0, 21], "avif": [0, 21], "webp": [0, 21, 27, 50], "can_emul": [0, 21], "clear_device_metrics_overrid": [0, 21, 39], "clear_device_posture_overrid": [0, 21], "clear_geolocation_overrid": [0, 21, 39], "clear_idle_overrid": [0, 21], "get_overridden_sensor_inform": [0, 21], "reset_page_scale_factor": [0, 21], "set_auto_dark_mode_overrid": [0, 21], "set_automation_overrid": [0, 21], "set_cpu_throttling_r": [0, 21], "set_default_background_color_overrid": [0, 21], "set_device_metrics_overrid": [0, 21, 39], "set_device_posture_overrid": [0, 21], "set_disabled_image_typ": [0, 21], "set_document_cookie_dis": [0, 21], "set_emit_touch_events_for_mous": [0, 21], "set_emulated_media": [0, 21], "set_emulated_vision_defici": [0, 21], "set_focus_emulation_en": [0, 21], "set_geolocation_overrid": [0, 21, 39], "set_hardware_concurrency_overrid": [0, 21], "set_idle_overrid": [0, 21], "set_locale_overrid": [0, 21], "set_navigator_overrid": [0, 21], "set_page_scale_factor": [0, 21], "set_script_execution_dis": [0, 21], "set_scrollbars_hidden": [0, 21], "set_sensor_override_en": [0, 21], "set_sensor_override_read": [0, 21], "set_timezone_overrid": [0, 21], "set_touch_emulation_en": [0, 21, 39], "set_user_agent_overrid": [0, 21, 37], "set_virtual_time_polici": [0, 21], "set_visible_s": [0, 21], "virtualtimebudgetexpir": [0, 21], "eventbreakpoint": [0, 1], "extens": [0, 1, 12, 38, 39, 44, 55, 58], "load_unpack": [0, 23], "fedcm": [0, 1], "loginst": [0, 24], "sign_in": [0, 24], "sign_up": [0, 24], "dialogtyp": [0, 24, 39], "account_choos": [0, 24], "auto_reauthn": [0, 24], "confirm_idp_login": [0, 24], "dialogbutton": [0, 24], "confirm_idp_login_continu": [0, 24], "error_got_it": [0, 24], "error_more_detail": [0, 24], "accounturltyp": [0, 24], "terms_of_servic": [0, 24], "privacy_polici": [0, 24], "account": [0, 24, 39, 60, 61], "account_id": [0, 24], "email": [0, 24, 60, 61], "given_nam": [0, 5, 24], "picture_url": [0, 24], "idp_config_url": [0, 24], "idp_login_url": [0, 24], "login_st": [0, 24], "terms_of_service_url": [0, 24], "privacy_policy_url": [0, 24], "click_dialog_button": [0, 24], "dismiss_dialog": [0, 24], "open_url": [0, 24], "reset_cooldown": [0, 24], "select_account": [0, 24], "dialogshown": [0, 24], "dialog_id": [0, 24], "dialog_typ": [0, 24], "subtitl": [0, 24], "dialogclos": [0, 24], "fetch": [0, 1, 2, 9, 21, 29, 37, 39, 49, 54, 59], "requeststag": [0, 25], "respons": [0, 4, 9, 15, 17, 25, 27, 37, 39, 48, 51, 55, 59], "requestpattern": [0, 25, 37], "url_pattern": [0, 25, 37], "request_stag": [0, 25], "headerentri": [0, 25], "authchalleng": [0, 25, 37], "scheme": [0, 25, 37, 39], "realm": [0, 25, 37], "authchallengerespons": [0, 25, 37], "usernam": [0, 25, 37], "password": [0, 5, 25, 37], "continue_request": [0, 25], "continue_respons": [0, 25], "continue_with_auth": [0, 25], "fail_request": [0, 25], "fulfill_request": [0, 25], "get_response_bodi": [0, 25, 37], "take_response_body_as_stream": [0, 25], "requestpaus": [0, 25, 37, 59], "response_error_reason": [0, 25, 37], "response_status_cod": [0, 25, 37], "network_id": [0, 25], "redirected_request_id": [0, 25], "authrequir": [0, 25], "auth_challeng": [0, 25, 37], "headlessexperiment": [0, 1], "screenshotparam": [0, 27], "format_": [0, 27, 39], "qualiti": [0, 4, 27, 39], "optimize_for_spe": [0, 27, 39], "begin_fram": [0, 27], "heapprofil": [0, 1], "heapsnapshotobjectid": [0, 28], "samplingheapprofilenod": [0, 28], "self_siz": [0, 28], "samplingheapprofilesampl": [0, 28], "size": [0, 4, 8, 12, 14, 21, 26, 27, 28, 32, 36, 37, 38, 39, 41, 45, 49, 50, 53, 54, 55, 57, 59], "ordin": [0, 28], "samplingheapprofil": [0, 28], "head": [0, 28, 59], "sampl": [0, 8, 28, 36, 43, 53, 54], "add_inspected_heap_object": [0, 28], "collect_garbag": [0, 28], "get_heap_object_id": [0, 28], "get_object_by_heap_object_id": [0, 28], "get_sampling_profil": [0, 28, 36], "start_sampl": [0, 28, 36], "start_tracking_heap_object": [0, 28], "stop_sampl": [0, 28, 36], "stop_tracking_heap_object": [0, 28], "take_heap_snapshot": [0, 28], "addheapsnapshotchunk": [0, 28], "chunk": [0, 14, 28, 32, 37], "heapstatsupd": [0, 28], "stats_upd": [0, 28], "lastseenobjectid": [0, 28], "last_seen_object_id": [0, 28], "reportheapsnapshotprogress": [0, 28], "done": [0, 5, 8, 28, 39, 49, 59], "total": [0, 4, 8, 14, 17, 28, 36, 37, 39, 45, 49, 53, 59], "finish": [0, 2, 4, 28, 37, 44, 54, 60], "resetprofil": [0, 28], "indexeddb": [0, 1, 49], "databasewithobjectstor": [0, 29], "object_stor": [0, 29], "objectstor": [0, 29, 49], "key_path": [0, 29], "auto_incr": [0, 29], "objectstoreindex": [0, 29], "uniqu": [0, 2, 3, 4, 8, 9, 13, 14, 17, 25, 28, 29, 30, 33, 35, 37, 39, 42, 43, 45, 51, 54], "multi_entri": [0, 29], "date": [0, 29, 37, 39, 47, 59], "keyrang": [0, 29], "lower_open": [0, 29], "upper_open": [0, 29], "lower": [0, 29], "upper": [0, 29], "primary_kei": [0, 29], "keypath": [0, 29], "clear_object_stor": [0, 29], "delete_databas": [0, 29], "delete_object_store_entri": [0, 29], "get_metadata": [0, 29], "request_data": [0, 29], "request_databas": [0, 29], "request_database_nam": [0, 29], "input": [0, 1, 17, 19, 21, 32, 39, 44, 45, 57, 60, 61, 62], "touchpoint": [0, 30], "radius_x": [0, 30], "radius_i": [0, 30], "rotation_angl": [0, 30], "forc": [0, 12, 14, 21, 30, 33, 39, 53], "tangential_pressur": [0, 30], "tilt_x": [0, 30], "tilt_i": [0, 30], "twist": [0, 30], "gesturesourcetyp": [0, 30], "touch": [0, 21, 30, 39], "mous": [0, 19, 21, 30, 39, 57], "mousebutton": [0, 30], "none": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59], "middl": [0, 30], "right": [0, 30, 35, 39], "timesinceepoch": [0, 6, 21, 26, 30, 37, 39, 41, 47, 49], "dragdataitem": [0, 30], "mime_typ": [0, 30, 37, 39], "dragdata": [0, 30], "drag_operations_mask": [0, 30], "cancel_drag": [0, 30], "dispatch_drag_ev": [0, 30], "dispatch_key_ev": [0, 30], "dispatch_mouse_ev": [0, 30], "dispatch_touch_ev": [0, 30], "emulate_touch_from_mouse_ev": [0, 30], "ime_set_composit": [0, 30], "insert_text": [0, 30], "set_ignore_input_ev": [0, 30], "set_intercept_drag": [0, 30], "synthesize_pinch_gestur": [0, 30], "synthesize_scroll_gestur": [0, 30], "synthesize_tap_gestur": [0, 30], "dragintercept": [0, 30], "detach": [0, 17, 31, 39, 51], "targetcrash": [0, 31, 51], "targetreloadedaftercrash": [0, 31], "io": [0, 1, 8, 21, 24, 25, 37, 39, 41, 42, 49, 54, 55], "streamhandl": [0, 25, 32, 37, 39, 53], "read": [0, 9, 12, 14, 17, 21, 25, 32, 37, 39, 59], "resolve_blob": [0, 32], "layertre": [0, 1], "layerid": [0, 33], "snapshotid": [0, 33], "scrollrect": [0, 19, 33], "stickypositionconstraint": [0, 33], "sticky_box_rect": [0, 33], "containing_block_rect": [0, 33], "nearest_layer_shifting_sticky_box": [0, 33], "nearest_layer_shifting_containing_block": [0, 33], "picturetil": [0, 33], "pictur": [0, 33, 39], "layer_id": [0, 33], "offset_x": [0, 33, 39], "offset_i": [0, 33, 39], "paint_count": [0, 33], "draws_cont": [0, 33], "parent_layer_id": [0, 33], "transform": [0, 33], "anchor_x": [0, 33], "anchor_i": [0, 33], "anchor_z": [0, 33], "invis": [0, 33], "sticky_position_constraint": [0, 33], "paintprofil": [0, 33], "compositing_reason": [0, 33], "load_snapshot": [0, 33], "make_snapshot": [0, 33], "profile_snapshot": [0, 33], "release_snapshot": [0, 33], "replay_snapshot": [0, 33], "snapshot_command_log": [0, 33], "layerpaint": [0, 33], "clip": [0, 33, 39], "layertreedidchang": [0, 33], "log": [0, 1, 11, 33, 35, 37, 53, 60, 61], "logentri": [0, 34], "categori": [0, 34, 47, 53], "network_request_id": [0, 34], "worker_id": [0, 34], "arg": [0, 34, 45, 58, 60], "violationset": [0, 34], "threshold": [0, 34], "start_violations_report": [0, 34], "stop_violations_report": [0, 34], "entryad": [0, 34], "entri": [0, 7, 9, 25, 29, 34, 35, 37, 39, 45, 48, 49, 51, 56], "playerid": [0, 35], "playermessag": [0, 35], "playerproperti": [0, 35], "playerev": [0, 35], "playererrorsourceloc": [0, 35], "playererror": [0, 35], "stack": [0, 14, 17, 19, 25, 34, 35, 36, 37, 39, 43, 45, 53], "caus": [0, 2, 4, 8, 14, 25, 28, 35, 37, 38, 39, 42, 44, 51, 56, 59], "playerpropertieschang": [0, 35], "player_id": [0, 35], "playereventsad": [0, 35], "playermessageslog": [0, 35], "playererrorsrais": [0, 35], "playerscr": [0, 35], "player": [0, 35], "memori": [0, 1, 28, 39, 45, 53], "pressurelevel": [0, 36], "moder": [0, 36], "critic": [0, 21, 36, 39], "samplingprofilenod": [0, 36], "samplingprofil": [0, 36], "uuid": [0, 7, 32, 36], "base_address": [0, 36], "forcibly_purge_java_script_memori": [0, 36], "get_all_time_sampling_profil": [0, 36], "get_browser_sampling_profil": [0, 36], "get_dom_count": [0, 36], "prepare_for_leak_detect": [0, 36], "set_pressure_notifications_suppress": [0, 36], "simulate_pressure_notif": [0, 36], "network": [0, 1, 4, 12, 25, 34, 42, 45, 47, 49, 59], "resourcetyp": [0, 25, 37, 39], "document": [0, 2, 3, 4, 12, 17, 19, 21, 30, 36, 37, 39, 41, 42, 59], "text_track": [0, 37], "xhr": [0, 18, 37, 39], "web_socket": [0, 37, 39], "signed_exchang": [0, 37], "csp_violation_report": [0, 37], "preflight": [0, 37], "loaderid": [0, 4, 37, 39, 42], "interceptionid": [0, 37], "errorreason": [0, 25, 37], "fail": [0, 4, 12, 14, 25, 27, 37, 39, 44, 55], "abort": [0, 24, 37], "timed_out": [0, 37], "access_deni": [0, 37], "connection_clos": [0, 37], "connection_reset": [0, 37], "connection_refus": [0, 37], "connection_abort": [0, 37], "connection_fail": [0, 37], "name_not_resolv": [0, 37], "internet_disconnect": [0, 37], "address_unreach": [0, 37], "blocked_by_cli": [0, 37, 42], "blocked_by_respons": [0, 4, 37], "monotonictim": [0, 37, 39], "connectiontyp": [0, 37], "cellular2g": [0, 37], "cellular3g": [0, 37], "cellular4g": [0, 37], "bluetooth": [0, 7, 37, 39], "ethernet": [0, 37], "wifi": [0, 37], "wimax": [0, 37], "cookiesamesit": [0, 37], "strict": [0, 37, 49], "lax": [0, 37], "cookieprior": [0, 37], "medium": [0, 37], "cookiesourceschem": [0, 37], "unset": [0, 37, 44, 59], "non_secur": [0, 37], "secur": [0, 1, 9, 20, 29, 37, 39, 45, 49, 61], "resourcetim": [0, 37], "request_tim": [0, 37], "proxy_start": [0, 37], "proxy_end": [0, 37], "dns_start": [0, 37], "dns_end": [0, 37], "connect_start": [0, 37], "connect_end": [0, 37], "ssl_start": [0, 37], "ssl_end": [0, 37], "worker_start": [0, 37], "worker_readi": [0, 37], "worker_fetch_start": [0, 37], "worker_respond_with_settl": [0, 37], "send_start": [0, 37], "send_end": [0, 37], "push_start": [0, 37], "push_end": [0, 37], "receive_headers_start": [0, 37], "receive_headers_end": [0, 37], "worker_router_evaluation_start": [0, 37], "worker_cache_lookup_start": [0, 37], "resourceprior": [0, 37], "very_low": [0, 37], "very_high": [0, 37], "postdataentri": [0, 37], "bytes_": [0, 37], "initial_prior": [0, 37], "referrer_polici": [0, 37, 39], "url_frag": [0, 37, 39], "post_data": [0, 25, 37], "has_post_data": [0, 37], "post_data_entri": [0, 37], "mixed_content_typ": [0, 37, 47], "is_link_preload": [0, 37], "trust_token_param": [0, 37], "is_same_sit": [0, 37], "signedcertificatetimestamp": [0, 37], "statu": [0, 4, 8, 9, 14, 25, 37, 39, 42, 48, 50, 51], "log_descript": [0, 37], "log_id": [0, 37], "hash_algorithm": [0, 37], "signature_algorithm": [0, 37], "signature_data": [0, 37], "securitydetail": [0, 37], "protocol": [0, 8, 25, 37, 39, 46, 47, 51, 53, 54, 55, 59], "key_exchang": [0, 37, 47], "cipher": [0, 37, 47], "certificate_id": [0, 37], "subject_nam": [0, 37, 47], "san_list": [0, 37], "issuer": [0, 37, 47, 49], "valid_from": [0, 37, 47], "valid_to": [0, 37, 47], "signed_certificate_timestamp_list": [0, 37], "certificate_transparency_compli": [0, 37], "encrypted_client_hello": [0, 37], "key_exchange_group": [0, 37, 47], "mac": [0, 37, 47, 50], "server_signature_algorithm": [0, 37], "certificatetransparencycompli": [0, 37], "unknown": [0, 37, 39, 47, 50], "not_compli": [0, 37], "compliant": [0, 37], "blockedreason": [0, 37], "csp": [0, 4, 18, 37, 39, 45], "mixed_cont": [0, 37, 42], "subresource_filt": [0, 37], "content_typ": [0, 37], "coop_sandboxed_iframe_cannot_navigate_to_coop_pag": [0, 37], "corserror": [0, 37], "disallowed_by_mod": [0, 37], "invalid_respons": [0, 37], "wildcard_origin_not_allow": [0, 37], "missing_allow_origin_head": [0, 37], "multiple_allow_origin_valu": [0, 37], "invalid_allow_origin_valu": [0, 37], "allow_origin_mismatch": [0, 37], "invalid_allow_credenti": [0, 37], "cors_disabled_schem": [0, 37], "preflight_invalid_statu": [0, 37], "preflight_disallowed_redirect": [0, 37], "preflight_wildcard_origin_not_allow": [0, 37], "preflight_missing_allow_origin_head": [0, 37], "preflight_multiple_allow_origin_valu": [0, 37], "preflight_invalid_allow_origin_valu": [0, 37], "preflight_allow_origin_mismatch": [0, 37], "preflight_invalid_allow_credenti": [0, 37], "preflight_missing_allow_extern": [0, 37], "preflight_invalid_allow_extern": [0, 37], "preflight_missing_allow_private_network": [0, 37], "preflight_invalid_allow_private_network": [0, 37], "invalid_allow_methods_preflight_respons": [0, 37], "invalid_allow_headers_preflight_respons": [0, 37], "method_disallowed_by_preflight_respons": [0, 37], "header_disallowed_by_preflight_respons": [0, 37], "redirect_contains_credenti": [0, 37], "insecure_private_network": [0, 37], "invalid_private_network_access": [0, 37], "unexpected_private_network_access": [0, 37], "no_cors_redirect_mode_not_follow": [0, 37], "preflight_missing_private_network_access_id": [0, 37], "preflight_missing_private_network_access_nam": [0, 37], "private_network_access_permission_unavail": [0, 37], "private_network_access_permission_deni": [0, 37], "corserrorstatu": [0, 4, 37], "cors_error": [0, 37], "failed_paramet": [0, 37], "serviceworkerresponsesourc": [0, 37], "cache_storag": [0, 37, 49], "http_cach": [0, 37], "fallback_cod": [0, 37], "trusttokenparam": [0, 37], "refresh_polici": [0, 37], "trusttokenoperationtyp": [0, 37], "issuanc": [0, 37, 39], "redempt": [0, 37, 39, 49], "sign": [0, 24, 37, 44, 49, 60, 61], "alternateprotocolusag": [0, 37], "alternative_job_won_without_rac": [0, 37], "alternative_job_won_rac": [0, 37], "main_job_won_rac": [0, 37], "mapping_miss": [0, 37], "broken": [0, 37, 47], "dns_alpn_h3_job_won_without_rac": [0, 37], "dns_alpn_h3_job_won_rac": [0, 37], "unspecified_reason": [0, 37], "serviceworkerroutersourc": [0, 37], "fetch_ev": [0, 37], "race_network_and_fetch_handl": [0, 37], "serviceworkerrouterinfo": [0, 37], "rule_id_match": [0, 37], "matched_source_typ": [0, 37], "actual_source_typ": [0, 37], "status_text": [0, 37], "charset": [0, 37], "connection_reus": [0, 37], "connection_id": [0, 37, 52], "encoded_data_length": [0, 37], "security_st": [0, 37, 47], "headers_text": [0, 37], "request_headers_text": [0, 37], "remote_ip_address": [0, 37], "remote_port": [0, 37], "from_disk_cach": [0, 37], "from_service_work": [0, 37], "from_prefetch_cach": [0, 37], "from_early_hint": [0, 37], "service_worker_router_info": [0, 37], "time": [0, 2, 3, 4, 12, 14, 21, 24, 27, 28, 30, 33, 34, 35, 37, 40, 41, 43, 45, 47, 48, 49, 51, 54, 56, 57, 59], "service_worker_response_sourc": [0, 37], "cache_storage_cache_nam": [0, 37], "alternate_protocol_usag": [0, 37], "security_detail": [0, 37], "websocketrequest": [0, 37], "websocketrespons": [0, 37], "websocketfram": [0, 37], "opcod": [0, 37], "mask": [0, 21, 37, 38], "payload_data": [0, 37], "cachedresourc": [0, 37], "body_s": [0, 37], "initi": [0, 6, 14, 21, 25, 27, 37, 39, 42, 43, 44, 45, 51, 57], "cookiepartitionkei": [0, 37], "top_level_sit": [0, 37], "has_cross_site_ancestor": [0, 37], "http_onli": [0, 37], "prioriti": [0, 2, 12, 37, 47, 49], "same_parti": [0, 37], "source_schem": [0, 37], "source_port": [0, 37], "expir": [0, 37, 39, 47, 49], "same_sit": [0, 37], "partition_kei": [0, 37], "partition_key_opaqu": [0, 37], "setcookieblockedreason": [0, 37], "secure_onli": [0, 37], "same_site_strict": [0, 37], "same_site_lax": [0, 37], "same_site_unspecified_treated_as_lax": [0, 37], "same_site_none_insecur": [0, 37], "user_prefer": [0, 37], "third_party_phaseout": [0, 37], "third_party_blocked_in_first_party_set": [0, 37], "syntax_error": [0, 37], "scheme_not_support": [0, 37], "overwrite_secur": [0, 37], "invalid_domain": [0, 37], "invalid_prefix": [0, 37], "unknown_error": [0, 37], "schemeful_same_site_strict": [0, 37], "schemeful_same_site_lax": [0, 37], "schemeful_same_site_unspecified_treated_as_lax": [0, 37], "same_party_from_cross_party_context": [0, 37], "same_party_conflicts_with_other_attribut": [0, 37], "name_value_pair_exceeds_max_s": [0, 37], "disallowed_charact": [0, 37], "no_cookie_cont": [0, 37], "cookieblockedreason": [0, 37], "not_on_path": [0, 37], "domain_mismatch": [0, 37], "cookieexemptionreason": [0, 37], "user_set": [0, 37], "tpcd_metadata": [0, 37], "tpcd_deprecation_tri": [0, 37], "tpcd_heurist": [0, 37], "enterprise_polici": [0, 37], "cors_opt_in": [], "blockedsetcookiewithreason": [0, 37], "blocked_reason": [0, 37], "cookie_lin": [0, 37], "exemptedsetcookiewithreason": [0, 37], "exemption_reason": [0, 37], "associatedcooki": [0, 37], "cookieparam": [0, 37, 49], "interceptionstag": [0, 37], "headers_receiv": [0, 37], "interception_stag": [0, 37], "signedexchangesignatur": [0, 37], "signatur": [0, 37, 47, 55], "integr": [0, 35, 37, 53], "validity_url": [0, 37], "cert_url": [0, 37], "cert_sha256": [0, 37], "certif": [0, 37, 47], "signedexchangehead": [0, 37], "response_cod": [0, 25, 37], "header_integr": [0, 37], "signedexchangeerrorfield": [0, 37], "signature_sig": [0, 37], "signature_integr": [0, 37], "signature_cert_url": [0, 37], "signature_cert_sha256": [0, 37], "signature_validity_url": [0, 37], "signature_timestamp": [0, 37], "signedexchangeerror": [0, 37], "signature_index": [0, 37], "error_field": [0, 37], "signedexchangeinfo": [0, 37], "outer_respons": [0, 37], "contentencod": [0, 37], "deflat": [0, 37], "gzip": [0, 37, 53], "br": [0, 37], "zstd": [0, 37], "privatenetworkrequestpolici": [0, 37], "allow": [0, 4, 5, 7, 8, 14, 18, 21, 24, 25, 29, 30, 35, 37, 39, 42, 43, 44, 45, 47, 51, 54, 55, 59], "block_from_insecure_to_more_priv": [0, 37], "warn_from_insecure_to_more_priv": [0, 37], "preflight_block": [0, 37], "preflight_warn": [0, 37], "ipaddressspac": [0, 4, 37], "local": [0, 12, 14, 20, 21, 23, 37, 39, 44, 49, 59], "privat": [0, 37, 39, 45, 55], "public": [0, 4, 7, 37, 39], "connecttim": [0, 37], "clientsecurityst": [0, 4, 37], "initiator_is_secure_context": [0, 37], "initiator_ip_address_spac": [0, 37], "private_network_request_polici": [0, 37], "crossoriginopenerpolicyvalu": [0, 37], "same_origin": [0, 37, 39], "same_origin_allow_popup": [0, 37], "restrict_properti": [0, 37], "unsafe_non": [0, 37], "same_origin_plus_coep": [0, 37], "restrict_properties_plus_coep": [0, 37], "crossoriginopenerpolicystatu": [0, 37], "report_only_valu": [0, 37], "reporting_endpoint": [0, 37], "report_only_reporting_endpoint": [0, 37], "crossoriginembedderpolicyvalu": [0, 37], "credentialless": [0, 37], "require_corp": [0, 37], "crossoriginembedderpolicystatu": [0, 37], "contentsecuritypolicysourc": [0, 37], "http": [0, 4, 7, 8, 9, 12, 17, 21, 24, 25, 26, 27, 30, 37, 39, 41, 42, 44, 47, 49, 51, 54, 55, 59, 60, 61], "meta": [0, 21, 30, 37, 39, 45, 57, 59], "contentsecuritypolicystatu": [0, 37], "effective_direct": [0, 37], "is_enforc": [0, 37], "securityisolationstatu": [0, 37], "coop": [0, 4, 37], "coep": [0, 4, 37], "reportstatu": [0, 37], "queu": [0, 37], "pend": [0, 21, 37, 39, 42, 49, 53], "marked_for_remov": [0, 37], "success": [0, 4, 14, 37, 39, 42, 49, 53, 55], "reportid": [0, 37], "reportingapireport": [0, 37], "initiator_url": [0, 37], "destin": [0, 37, 39, 54, 57], "depth": [0, 2, 14, 17, 18, 37, 45], "completed_attempt": [0, 37], "reportingapiendpoint": [0, 37], "group_nam": [0, 37], "loadnetworkresourcepageresult": [0, 37], "net_error": [0, 37], "net_error_nam": [0, 37], "http_status_cod": [0, 37], "stream": [0, 14, 25, 32, 37, 39, 53], "loadnetworkresourceopt": [0, 37], "disable_cach": [0, 37], "include_credenti": [0, 37], "can_clear_browser_cach": [0, 37], "can_clear_browser_cooki": [0, 37], "can_emulate_network_condit": [0, 37], "clear_accepted_encodings_overrid": [0, 37], "clear_browser_cach": [0, 37], "clear_browser_cooki": [0, 37], "continue_intercepted_request": [0, 37], "delete_cooki": [0, 37, 39], "emulate_network_condit": [0, 37], "enable_reporting_api": [0, 37], "get_all_cooki": [0, 37], "get_certif": [0, 37], "get_cooki": [0, 37, 49], "get_request_post_data": [0, 37], "get_response_body_for_intercept": [0, 37], "get_security_isolation_statu": [0, 37], "load_network_resourc": [0, 37], "replay_xhr": [0, 37], "search_in_response_bodi": [0, 37], "set_accepted_encod": [0, 37], "set_attach_debug_stack": [0, 37], "set_blocked_ur_l": [0, 37], "set_bypass_service_work": [0, 37], "set_cache_dis": [0, 37], "set_extra_http_head": [0, 37], "set_request_intercept": [0, 37], "stream_resource_cont": [0, 37], "take_response_body_for_interception_as_stream": [0, 37], "datareceiv": [0, 37], "data_length": [0, 37], "eventsourcemessagereceiv": [0, 37], "event_id": [0, 37, 47, 49], "loadingfail": [0, 37, 49], "error_text": [0, 37], "loadingfinish": [0, 37, 49], "requestintercept": [0, 37], "interception_id": [0, 37], "is_navigation_request": [0, 37], "is_download": [0, 37], "redirect_url": [0, 37], "requestservedfromcach": [0, 37], "requestwillbes": [0, 25, 37, 49, 59], "wall_tim": [0, 37], "redirect_has_extra_info": [0, 37], "redirect_respons": [0, 37], "has_user_gestur": [0, 37], "resourcechangedprior": [0, 37], "new_prior": [0, 37], "signedexchangereceiv": [0, 37], "info": [0, 4, 37, 38, 47, 50], "responsereceiv": [0, 37], "has_extra_info": [0, 37], "websocketclos": [0, 37], "websocketcr": [0, 37], "websocketframeerror": [0, 37], "error_messag": [0, 37, 42, 48], "websocketframereceiv": [0, 37], "websocketframes": [0, 37], "websockethandshakeresponsereceiv": [0, 37], "websocketwillsendhandshakerequest": [0, 37], "webtransportcr": [0, 37], "transport_id": [0, 37], "webtransportconnectionestablish": [0, 37], "webtransportclos": [0, 37], "requestwillbesentextrainfo": [0, 37], "associated_cooki": [0, 37], "connect_tim": [0, 37], "site_has_cookie_in_other_partit": [0, 37], "responsereceivedextrainfo": [0, 37], "blocked_cooki": [0, 37], "status_cod": [0, 37], "cookie_partition_kei": [0, 37], "cookie_partition_key_opaqu": [0, 37], "exempted_cooki": [0, 37], "responsereceivedearlyhint": [0, 37], "trusttokenoperationdon": [0, 37], "top_level_origin": [0, 37], "issuer_origin": [0, 37, 49], "issued_token_count": [0, 37], "policyupd": [0, 37], "subresourcewebbundlemetadatareceiv": [0, 37], "subresourcewebbundlemetadataerror": [0, 37], "subresourcewebbundleinnerresponsepars": [0, 37], "inner_request_id": [0, 37], "inner_request_url": [0, 37], "bundle_request_id": [0, 37], "subresourcewebbundleinnerresponseerror": [0, 37], "reportingapireportad": [0, 37], "report": [0, 4, 11, 12, 14, 18, 21, 22, 25, 27, 28, 34, 35, 37, 39, 40, 41, 43, 45, 49, 51, 53, 59], "reportingapireportupd": [0, 37], "reportingapiendpointschangedfororigin": [0, 37], "endpoint": [0, 37, 39, 49], "overlai": [0, 1, 21, 39], "sourceorderconfig": [0, 38], "parent_outline_color": [0, 38], "child_outline_color": [0, 38], "gridhighlightconfig": [0, 38], "show_grid_extension_lin": [0, 38], "show_positive_line_numb": [0, 38], "show_negative_line_numb": [0, 38], "show_area_nam": [0, 38], "show_line_nam": [0, 38], "show_track_s": [0, 38], "grid_border_color": [0, 38], "cell_border_color": [0, 38], "row_line_color": [0, 38], "column_line_color": [0, 38], "grid_border_dash": [0, 38], "cell_border_dash": [0, 38], "row_line_dash": [0, 38], "column_line_dash": [0, 38], "row_gap_color": [0, 38], "row_hatch_color": [0, 38], "column_gap_color": [0, 38], "column_hatch_color": [0, 38], "area_border_color": [0, 38], "grid_background_color": [0, 38], "flexcontainerhighlightconfig": [0, 38], "container_bord": [0, 38], "line_separ": [0, 38], "item_separ": [0, 38], "main_distributed_spac": [0, 38], "cross_distributed_spac": [0, 38], "row_gap_spac": [0, 38], "column_gap_spac": [0, 38], "cross_align": [0, 38], "flexitemhighlightconfig": [0, 38], "base_size_box": [0, 38], "base_size_bord": [0, 38], "flexibility_arrow": [0, 38], "linestyl": [0, 38], "color": [0, 12, 17, 19, 21, 38, 39], "pattern": [0, 14, 25, 37, 38], "boxstyl": [0, 38], "fill_color": [0, 38], "hatch_color": [0, 38], "contrastalgorithm": [0, 38], "aa": [0, 38], "aaa": [0, 4, 38], "apca": [0, 38], "highlightconfig": [0, 38], "show_info": [0, 38], "show_styl": [0, 38], "show_rul": [0, 38], "show_accessibility_info": [0, 38], "show_extension_lin": [0, 38], "content_color": [0, 38], "padding_color": [0, 38], "border_color": [0, 38], "margin_color": [0, 38], "event_target_color": [0, 38], "shape_color": [0, 38], "shape_margin_color": [0, 38], "css_grid_color": [0, 38], "color_format": [0, 38], "grid_highlight_config": [0, 38], "flex_container_highlight_config": [0, 38], "flex_item_highlight_config": [0, 38], "contrast_algorithm": [0, 38], "container_query_container_highlight_config": [0, 38], "colorformat": [0, 38], "rgb": [0, 38], "hsl": [0, 38], "hwb": [0, 38], "hex_": [0, 38], "gridnodehighlightconfig": [0, 38], "flexnodehighlightconfig": [0, 38], "scrollsnapcontainerhighlightconfig": [0, 38], "snapport_bord": [0, 38], "snap_area_bord": [0, 38], "scroll_margin_color": [0, 38], "scroll_padding_color": [0, 38], "scrollsnaphighlightconfig": [0, 38], "scroll_snap_container_highlight_config": [0, 38], "hingeconfig": [0, 38], "outline_color": [0, 38], "windowcontrolsoverlayconfig": [0, 38], "show_css": [0, 38], "selected_platform": [0, 38], "theme_color": [0, 38, 39], "containerqueryhighlightconfig": [0, 38], "containerquerycontainerhighlightconfig": [0, 38], "descendant_bord": [0, 38], "isolatedelementhighlightconfig": [0, 38], "isolation_mode_highlight_config": [0, 38], "isolationmodehighlightconfig": [0, 38], "resizer_color": [0, 38], "resizer_handle_color": [0, 38], "mask_color": [0, 38], "inspectmod": [0, 38], "search_for_nod": [0, 38], "search_for_ua_shadow_dom": [0, 38], "capture_area_screenshot": [0, 38], "show_dist": [0, 38], "get_grid_highlight_objects_for_test": [0, 38], "get_highlight_object_for_test": [0, 38], "get_source_order_highlight_object_for_test": [0, 38], "highlight_fram": [0, 38], "highlight_quad": [0, 38], "highlight_source_ord": [0, 38], "set_inspect_mod": [0, 38], "set_paused_in_debugger_messag": [0, 38], "set_show_ad_highlight": [0, 38], "set_show_container_query_overlai": [0, 38], "set_show_debug_bord": [0, 38], "set_show_flex_overlai": [0, 38], "set_show_fps_count": [0, 38], "set_show_grid_overlai": [0, 38], "set_show_hing": [0, 38], "set_show_hit_test_bord": [0, 38], "set_show_isolated_el": [0, 38], "set_show_layout_shift_region": [0, 38], "set_show_paint_rect": [0, 38], "set_show_scroll_bottleneck_rect": [0, 38], "set_show_scroll_snap_overlai": [0, 38], "set_show_viewport_size_on_res": [0, 38], "set_show_web_vit": [0, 38], "set_show_window_controls_overlai": [0, 38], "inspectnoderequest": [0, 38], "nodehighlightrequest": [0, 38], "screenshotrequest": [0, 38], "viewport": [0, 12, 17, 21, 30, 38, 39, 59], "inspectmodecancel": [0, 38], "page": [0, 1, 2, 3, 4, 8, 10, 12, 14, 17, 19, 21, 25, 30, 37, 38, 44, 45, 47, 49, 51, 56, 59, 60, 61], "frameid": [0, 2, 4, 5, 8, 12, 14, 17, 19, 25, 37, 38, 39, 41, 42, 45, 49, 51], "adframetyp": [0, 39], "child": [0, 2, 5, 12, 17, 19, 28, 38, 39, 43, 49, 51], "adframeexplan": [0, 39], "parent_is_ad": [0, 39], "created_by_ad_script": [0, 39], "matched_blocking_rul": [0, 39], "adframestatu": [0, 39], "ad_frame_typ": [0, 39], "explan": [0, 39, 47], "adscriptid": [0, 39], "debugger_id": [0, 39, 45], "securecontexttyp": [0, 39], "secure_localhost": [0, 39], "insecure_schem": [0, 39], "insecure_ancestor": [0, 39], "crossoriginisolatedcontexttyp": [0, 39], "isol": [0, 4, 14, 37, 38, 39, 43, 44, 45], "not_isol": [0, 39], "not_isolated_feature_dis": [0, 39], "gatedapifeatur": [0, 39], "shared_array_buff": [0, 39], "shared_array_buffers_transfer_allow": [0, 39], "performance_measure_memori": [0, 39], "performance_profil": [0, 39], "permissionspolicyfeatur": [0, 39], "ambient_light_sensor": [0, 39], "attribution_report": [0, 39], "autoplai": [0, 39], "browsing_top": [0, 39], "camera": [0, 8, 39], "ch_dpr": [0, 39], "ch_device_memori": [0, 39], "ch_downlink": [0, 39], "ch_ect": [0, 39], "ch_prefers_color_schem": [0, 39], "ch_prefers_reduced_mot": [0, 39], "ch_prefers_reduced_transpar": [0, 39], "ch_rtt": [0, 39], "ch_save_data": [0, 39], "ch_ua": [0, 39], "ch_ua_arch": [0, 39], "ch_ua_bit": [0, 39], "ch_ua_platform": [0, 39], "ch_ua_model": [0, 39], "ch_ua_mobil": [0, 39], "ch_ua_form_factor": [0, 39], "ch_ua_full_vers": [0, 39], "ch_ua_full_version_list": [0, 39], "ch_ua_platform_vers": [0, 39], "ch_ua_wow64": [0, 39], "ch_viewport_height": [0, 39], "ch_viewport_width": [0, 39], "ch_width": [0, 39], "clipboard_read": [0, 39], "clipboard_writ": [0, 39], "compute_pressur": [0, 39], "cross_origin_isol": [0, 39], "deferred_fetch": [0, 39], "direct_socket": [0, 39], "document_domain": [0, 39], "encrypted_media": [0, 39], "execution_while_out_of_viewport": [0, 39], "execution_while_not_rend": [0, 39], "focus_without_user_activ": [0, 39], "frobul": [0, 39], "gamepad": [0, 39], "hid": [0, 39], "identity_credentials_get": [0, 39], "interest_cohort": [0, 39], "join_ad_interest_group": [0, 39], "keyboard_map": [0, 39], "microphon": [0, 39], "otp_credenti": [0, 39], "payment": [0, 39], "picture_in_pictur": [0, 39], "private_aggreg": [0, 39], "private_state_token_issu": [0, 39], "private_state_token_redempt": [0, 39], "publickey_credentials_cr": [0, 39], "publickey_credentials_get": [0, 39], "run_ad_auct": [0, 39], "screen_wake_lock": [0, 39], "serial": [0, 33, 39, 45, 49, 53], "shared_autofil": [0, 39], "shared_storag": [0, 39, 49], "shared_storage_select_url": [0, 39], "smart_card": [0, 39], "sub_app": [0, 39], "sync_xhr": [0, 39], "unload": [0, 39], "usb": [0, 7, 39, 55], "usb_unrestrict": [0, 39], "vertical_scrol": [0, 39], "web_print": [0, 39], "web_shar": [0, 39], "xr_spatial_track": [0, 39], "permissionspolicyblockreason": [0, 39], "iframe_attribut": [0, 39], "in_fenced_frame_tre": [0, 39], "in_isolated_app": [0, 39], "permissionspolicyblockloc": [0, 39], "block_reason": [0, 39], "permissionspolicyfeaturest": [0, 39], "origintrialtokenstatu": [0, 39], "not_support": [0, 39, 42], "insecur": [0, 39, 47], "wrong_origin": [0, 39], "invalid_signatur": [0, 39], "malform": [0, 4, 39], "wrong_vers": [0, 39], "feature_dis": [0, 39], "token_dis": [0, 39], "feature_disabled_for_us": [0, 39], "unknown_tri": [0, 39], "origintrialstatu": [0, 39], "valid_token_not_provid": [0, 39], "os_not_support": [0, 39], "trial_not_allow": [0, 39], "origintrialusagerestrict": [0, 39], "subset": [0, 19, 39], "origintrialtoken": [0, 39], "match_sub_domain": [0, 39], "trial_nam": [0, 39], "expiry_tim": [0, 39], "is_third_parti": [0, 39], "usage_restrict": [0, 39], "origintrialtokenwithstatu": [0, 39], "raw_token_text": [0, 39], "parsed_token": [0, 39], "origintri": [0, 39], "tokens_with_statu": [0, 39], "domain_and_registri": [0, 39], "secure_context_typ": [0, 39], "cross_origin_isolated_context_typ": [0, 39], "gated_api_featur": [0, 39], "unreachable_url": [0, 39], "ad_frame_statu": [0, 39], "frameresourc": [0, 39], "last_modifi": [0, 26, 39], "content_s": [0, 39], "frameresourcetre": [0, 39], "child_fram": [0, 39], "frametre": [0, 39], "scriptidentifi": [0, 39], "transitiontyp": [0, 39], "link": [0, 4, 12, 17, 30, 37, 39, 42, 44, 49, 59], "address_bar": [0, 39], "auto_bookmark": [0, 39], "auto_subfram": [0, 39], "manual_subfram": [0, 39], "gener": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 59], "auto_toplevel": [0, 39], "form_submit": [0, 39], "keyword": [0, 39], "keyword_gener": [0, 39], "navigationentri": [0, 39], "user_typed_url": [0, 39], "transition_typ": [0, 39], "screencastframemetadata": [0, 39], "offset_top": [0, 39], "page_scale_factor": [0, 21, 39], "device_width": [0, 39], "device_height": [0, 39], "alert": [0, 39, 57], "confirm": [0, 39], "beforeunload": [0, 39, 51], "appmanifesterror": [0, 39], "appmanifestparsedproperti": [0, 39], "layoutviewport": [0, 39], "page_x": [0, 39], "page_i": [0, 39], "client_width": [0, 39], "client_height": [0, 39], "visualviewport": [0, 39, 59], "scale": [0, 21, 30, 33, 39, 57], "zoom": [0, 30, 39], "fontfamili": [0, 39], "standard": [0, 25, 29, 39], "fix": [0, 38, 39, 47, 57], "serif": [0, 39], "sans_serif": [0, 39], "cursiv": [0, 39], "fantasi": [0, 39], "math": [0, 39], "scriptfontfamili": [0, 39], "fontsiz": [0, 39], "clientnavigationreason": [0, 39], "form_submission_get": [0, 39], "form_submission_post": [0, 39], "http_header_refresh": [0, 39], "script_initi": [0, 39], "meta_tag_refresh": [0, 39], "page_block_interstiti": [0, 39], "anchor_click": [0, 39], "clientnavigationdisposit": [0, 39], "current_tab": [0, 39], "new_tab": [0, 39, 56, 59, 60, 61], "new_window": [0, 39, 51, 56, 59, 60, 61], "installabilityerrorargu": [0, 39], "installabilityerror": [0, 39], "error_id": [0, 39], "error_argu": [0, 39], "referrerpolici": [0, 39], "no_referr": [0, 39], "no_referrer_when_downgrad": [0, 39], "origin_when_cross_origin": [0, 39], "strict_origin": [0, 39], "strict_origin_when_cross_origin": [0, 39], "unsafe_url": [0, 39], "compilationcacheparam": [0, 39], "eager": [0, 39], "filefilt": [0, 39], "filehandl": [0, 39, 44], "action": [0, 2, 8, 17, 24, 39, 42, 44, 47, 57, 58, 59], "launch_typ": [0, 39], "icon": [0, 39], "imageresourc": [0, 39], "launchhandl": [0, 39], "client_mod": [0, 39], "protocolhandl": [0, 39], "relatedappl": [0, 39], "scopeextens": [0, 39], "has_origin_wildcard": [0, 39], "screenshot": [0, 21, 27, 38, 39, 57, 59], "form_factor": [0, 39], "sharetarget": [0, 39], "enctyp": [0, 39], "shortcut": [0, 30, 39], "webappmanifest": [0, 39], "background_color": [0, 39], "dir_": [0, 39], "displai": [0, 5, 12, 15, 21, 25, 27, 37, 38, 39, 42, 57], "display_overrid": [0, 39], "file_handl": [0, 39], "lang": [0, 39, 58, 60], "launch_handl": [0, 39], "prefer_related_appl": [0, 39], "protocol_handl": [0, 39], "related_appl": [0, 39], "scope_extens": [0, 39], "share_target": [0, 39], "short_nam": [0, 39], "start_url": [0, 39], "autoresponsemod": [0, 39], "auto_accept": [0, 39], "auto_reject": [0, 39], "auto_opt_out": [0, 39], "navigationtyp": [0, 39], "navig": [0, 4, 19, 21, 37, 39, 42, 45, 49, 51, 56, 59, 60], "back_forward_cache_restor": [0, 39], "backforwardcachenotrestoredreason": [0, 39], "not_primary_main_fram": [0, 39], "back_forward_cache_dis": [0, 39], "related_active_contents_exist": [0, 39], "http_status_not_ok": [0, 39], "scheme_not_http_or_http": [0, 39], "was_granted_media_access": [0, 39], "disable_for_render_frame_host_cal": [0, 39], "domain_not_allow": [0, 39], "http_method_not_get": [0, 39], "subframe_is_navig": [0, 39], "cache_limit": [0, 39], "java_script_execut": [0, 39], "renderer_process_kil": [0, 39, 42], "renderer_process_crash": [0, 39, 42], "scheduler_tracked_feature_us": [0, 39], "conflicting_browsing_inst": [0, 39], "cache_flush": [0, 39], "service_worker_version_activ": [0, 39], "session_restor": [0, 39], "service_worker_post_messag": [0, 39], "entered_back_forward_cache_before_service_worker_host_ad": [0, 39], "render_frame_host_reused_same_sit": [0, 39], "render_frame_host_reused_cross_sit": [0, 39], "service_worker_claim": [0, 39], "ignore_event_and_evict": [0, 39], "have_inner_cont": [0, 39], "timeout_putting_in_cach": [0, 39], "back_forward_cache_disabled_by_low_memori": [0, 39], "back_forward_cache_disabled_by_command_lin": [0, 39], "network_request_datapipe_drained_as_bytes_consum": [0, 39], "network_request_redirect": [0, 39], "network_request_timeout": [0, 39], "network_exceeds_buffer_limit": [0, 39], "navigation_cancelled_while_restor": [0, 39], "not_most_recent_navigation_entri": [0, 39], "back_forward_cache_disabled_for_prerend": [0, 39], "user_agent_override_diff": [0, 39], "foreground_cache_limit": [0, 39], "browsing_instance_not_swap": [0, 39], "back_forward_cache_disabled_for_deleg": [0, 39], "unload_handler_exists_in_main_fram": [0, 39], "unload_handler_exists_in_sub_fram": [0, 39], "service_worker_unregistr": [0, 39], "cache_control_no_stor": [0, 39], "cache_control_no_store_cookie_modifi": [0, 39], "cache_control_no_store_http_only_cookie_modifi": [0, 39], "no_response_head": [0, 39], "activation_navigations_disallowed_for_bug1234857": [0, 39], "error_docu": [0, 39], "fenced_frames_embedd": [0, 39], "cookie_dis": [0, 39], "http_auth_requir": [0, 39], "cookie_flush": [0, 39], "broadcast_channel_on_messag": [0, 39], "web_view_settings_chang": [0, 39], "web_view_java_script_object_chang": [0, 39], "web_view_message_listener_inject": [0, 39], "web_view_safe_browsing_allowlist_chang": [0, 39], "web_view_document_start_javascript_chang": [0, 39], "web_transport": [0, 39], "web_rtc": [0, 39], "main_resource_has_cache_control_no_stor": [0, 39], "main_resource_has_cache_control_no_cach": [0, 39], "subresource_has_cache_control_no_stor": [0, 39], "subresource_has_cache_control_no_cach": [0, 39], "contains_plugin": [0, 39], "document_load": [0, 39], "outstanding_network_request_oth": [0, 39], "requested_midi_permiss": [0, 39], "requested_audio_capture_permiss": [0, 39], "requested_video_capture_permiss": [0, 39], "requested_back_forward_cache_blocked_sensor": [0, 39], "requested_background_work_permiss": [0, 39], "broadcast_channel": [0, 39], "web_xr": [0, 39], "web_lock": [0, 39], "web_hid": [0, 39], "requested_storage_access_gr": [0, 39], "web_nfc": [0, 39], "outstanding_network_request_fetch": [0, 39], "outstanding_network_request_xhr": [0, 39], "app_bann": [0, 39], "print": [0, 4, 35, 39, 59, 60, 61], "web_databas": [0, 39], "portal": [], "speech_recogn": [0, 39], "idle_manag": [0, 39], "payment_manag": [0, 39], "speech_synthesi": [0, 39], "keyboard_lock": [0, 39], "web_otp_servic": [0, 39], "outstanding_network_request_direct_socket": [0, 39], "injected_javascript": [0, 39], "injected_style_sheet": [0, 39], "keepalive_request": [0, 39], "indexed_db_ev": [0, 39], "dummi": [0, 39], "js_network_request_received_cache_control_no_store_resourc": [0, 39], "web_rtc_sticki": [0, 39], "web_transport_sticki": [0, 39], "web_socket_sticki": [0, 39], "live_media_stream_track": [0, 39], "unload_handl": [0, 39], "parser_abort": [0, 39], "content_security_handl": [0, 39], "content_web_authentication_api": [0, 39], "content_file_choos": [0, 39], "content_seri": [0, 39], "content_file_system_access": [0, 39], "content_media_devices_dispatcher_host": [0, 39], "content_web_bluetooth": [0, 39], "content_web_usb": [0, 39], "content_media_session_servic": [0, 39], "content_screen_read": [0, 39], "embedder_popup_blocker_tab_help": [0, 39], "embedder_safe_browsing_triggered_popup_block": [0, 39], "embedder_safe_browsing_threat_detail": [0, 39], "embedder_app_banner_manag": [0, 39], "embedder_dom_distiller_viewer_sourc": [0, 39], "embedder_dom_distiller_self_deleting_request_deleg": [0, 39], "embedder_oom_intervention_tab_help": [0, 39], "embedder_offline_pag": [0, 39], "embedder_chrome_password_manager_client_bind_credential_manag": [0, 39], "embedder_permission_request_manag": [0, 39], "embedder_modal_dialog": [0, 39], "embedder_extens": [0, 39], "embedder_extension_messag": [0, 39], "embedder_extension_messaging_for_open_port": [0, 39], "embedder_extension_sent_message_to_cached_fram": [0, 39], "requested_by_web_view_cli": [0, 39], "backforwardcachenotrestoredreasontyp": [0, 39], "support_pend": [0, 39], "page_support_need": [0, 39], "circumstanti": [0, 39], "backforwardcacheblockingdetail": [0, 39], "backforwardcachenotrestoredexplan": [0, 39], "context": [0, 2, 4, 8, 12, 14, 17, 18, 19, 24, 30, 35, 37, 39, 45, 49, 51, 54], "backforwardcachenotrestoredexplanationtre": [0, 39], "add_compilation_cach": [0, 39], "add_script_to_evaluate_on_load": [0, 39], "add_script_to_evaluate_on_new_docu": [0, 39], "capture_screenshot": [0, 39], "clear_compilation_cach": [0, 39], "create_isolated_world": [0, 39], "generate_test_report": [0, 39], "get_ad_script_id": [0, 39], "get_app_id": [0, 39], "get_app_manifest": [0, 39], "get_frame_tre": [0, 39], "get_installability_error": [0, 39], "get_layout_metr": [0, 39], "get_manifest_icon": [0, 39], "get_navigation_histori": [0, 39], "get_origin_tri": [0, 39], "get_permissions_policy_st": [0, 39], "get_resource_cont": [0, 39], "get_resource_tre": [0, 39], "handle_java_script_dialog": [0, 39], "navigate_to_history_entri": [0, 39], "print_to_pdf": [0, 39], "produce_compilation_cach": [0, 39], "remove_script_to_evaluate_on_load": [0, 39], "remove_script_to_evaluate_on_new_docu": [0, 39], "reset_navigation_histori": [0, 39], "screencast_frame_ack": [0, 39], "search_in_resourc": [0, 39], "set_ad_blocking_en": [0, 39], "set_bypass_csp": [0, 39], "set_document_cont": [0, 39], "set_font_famili": [0, 39], "set_font_s": [0, 39], "set_intercept_file_chooser_dialog": [0, 39], "set_lifecycle_events_en": [0, 39], "set_prerendering_allow": [0, 39], "set_rph_registration_mod": [0, 39], "set_spc_transaction_mod": [0, 39], "set_web_lifecycle_st": [0, 39], "start_screencast": [0, 39], "stop_load": [0, 39], "stop_screencast": [0, 39], "wait_for_debugg": [0, 39], "domcontenteventfir": [0, 39], "filechooseropen": [0, 39], "mode": [0, 3, 4, 14, 17, 21, 27, 33, 38, 39, 44, 45, 51, 53, 59], "frameattach": [0, 39], "parent_frame_id": [0, 39], "frameclearedschedulednavig": [0, 39], "framedetach": [0, 39], "framenavig": [0, 39], "documentopen": [0, 39], "frameres": [0, 39], "framerequestednavig": [0, 39], "disposit": [0, 39], "frameschedulednavig": [0, 39], "framestartedload": [0, 39], "framestoppedload": [0, 39], "interstitialhidden": [0, 39], "interstitialshown": [0, 39], "javascriptdialogclos": [0, 39], "result": [0, 12, 14, 17, 21, 23, 25, 27, 28, 33, 37, 38, 39, 43, 44, 45, 49, 53, 59], "user_input": [0, 39], "javascriptdialogopen": [0, 39], "has_browser_handl": [0, 39], "default_prompt": [0, 39], "lifecycleev": [0, 39], "backforwardcachenotus": [0, 39], "not_restored_explan": [0, 39], "not_restored_explanations_tre": [0, 39], "loadeventfir": [0, 39], "navigatedwithindocu": [0, 39], "screencastfram": [0, 39], "metadata": [0, 4, 21, 29, 39, 49], "session_id": [0, 39, 51], "screencastvisibilitychang": [0, 39], "visibl": [0, 3, 12, 17, 21, 27, 33, 39, 45, 47, 56, 57], "windowopen": [0, 39], "window_nam": [0, 39], "window_featur": [0, 39], "user_gestur": [0, 39, 45], "compilationcacheproduc": [0, 39], "metric": [0, 21, 39, 40], "get_metr": [0, 40], "set_time_domain": [0, 40], "performancetimelin": [0, 1], "largestcontentfulpaint": [0, 41], "render_tim": [0, 41], "load_tim": [0, 41], "element_id": [0, 41], "layoutshiftattribut": [0, 41], "previous_rect": [0, 41], "current_rect": [0, 41], "layoutshift": [0, 41], "had_recent_input": [0, 41], "last_input_tim": [0, 41], "timelineev": [0, 41], "lcp_detail": [0, 41], "layout_shift_detail": [0, 41], "timelineeventad": [0, 41], "preload": [0, 1, 37], "rulesetid": [0, 42], "ruleset": [0, 42], "source_text": [0, 42], "ruleseterrortyp": [0, 42], "source_is_not_json_object": [0, 42], "invalid_rules_skip": [0, 42], "speculationact": [0, 42], "prerend": [0, 39, 42, 51], "speculationtargethint": [0, 42], "blank": [0, 42, 51], "self": [0, 38, 42, 59], "preloadingattemptkei": [0, 42], "target_hint": [0, 42], "preloadingattemptsourc": [0, 42], "rule_set_id": [0, 42], "prerenderfinalstatu": [0, 42], "destroi": [0, 42, 45, 51, 54], "low_end_devic": [0, 42], "invalid_scheme_redirect": [0, 42], "invalid_scheme_navig": [0, 42], "navigation_request_blocked_by_csp": [0, 42], "main_frame_navig": [0, 42], "mojo_binder_polici": [0, 42], "trigger_destroi": [0, 42], "navigation_not_commit": [0, 42], "navigation_bad_http_statu": [0, 42], "client_cert_request": [0, 42], "navigation_request_network_error": [0, 42], "cancel_all_hosts_for_test": [0, 42], "did_fail_load": [0, 42], "ssl_certificate_error": [0, 42], "login_auth_request": [0, 42], "ua_change_requires_reload": [0, 42], "audio_output_device_request": [0, 42], "trigger_background": [0, 42], "memory_limit_exceed": [0, 42], "data_saver_en": [0, 42], "trigger_url_has_effective_url": [0, 42], "activated_before_start": [0, 42], "inactive_page_restrict": [0, 42], "start_fail": [0, 42], "timeout_background": [0, 42], "cross_site_redirect_in_initial_navig": [0, 42], "cross_site_navigation_in_initial_navig": [0, 42], "same_site_cross_origin_redirect_not_opt_in_in_initial_navig": [0, 42], "same_site_cross_origin_navigation_not_opt_in_in_initial_navig": [0, 42], "activation_navigation_parameter_mismatch": [0, 42], "activated_in_background": [0, 42], "embedder_host_disallow": [0, 42], "activation_navigation_destroyed_before_success": [0, 42], "tab_closed_by_user_gestur": [0, 42], "tab_closed_without_user_gestur": [0, 42], "primary_main_frame_renderer_process_crash": [0, 42], "primary_main_frame_renderer_process_kil": [0, 42], "activation_frame_policy_not_compat": [0, 42], "preloading_dis": [0, 42], "battery_saver_en": [0, 42], "activated_during_main_frame_navig": [0, 42], "preloading_unsupported_by_web_cont": [0, 42], "cross_site_redirect_in_main_frame_navig": [0, 42], "cross_site_navigation_in_main_frame_navig": [0, 42], "same_site_cross_origin_redirect_not_opt_in_in_main_frame_navig": [0, 42], "same_site_cross_origin_navigation_not_opt_in_in_main_frame_navig": [0, 42], "memory_pressure_on_trigg": [0, 42], "memory_pressure_after_trigg": [0, 42], "prerendering_disabled_by_dev_tool": [0, 42], "speculation_rule_remov": [0, 42], "activated_with_auxiliary_browsing_context": [0, 42], "max_num_of_running_eager_prerenders_exceed": [0, 42], "max_num_of_running_non_eager_prerenders_exceed": [0, 42], "max_num_of_running_embedder_prerenders_exceed": [0, 42], "prerendering_url_has_effective_url": [0, 42], "redirected_prerendering_url_has_effective_url": [0, 42], "activation_url_has_effective_url": [0, 42], "java_script_interface_ad": [0, 42], "java_script_interface_remov": [0, 42], "all_prerendering_cancel": [0, 42], "preloadingstatu": [0, 42], "readi": [0, 42], "failur": [0, 4, 37, 42], "prefetchstatu": [0, 42], "prefetch_allow": [0, 42], "prefetch_failed_ineligible_redirect": [0, 42], "prefetch_failed_invalid_redirect": [0, 42], "prefetch_failed_mime_not_support": [0, 42], "prefetch_failed_net_error": [0, 42], "prefetch_failed_non2_xx": [0, 42], "prefetch_failed_per_page_limit_exceed": [], "prefetch_evicted_after_candidate_remov": [0, 42], "prefetch_evicted_for_newer_prefetch": [0, 42], "prefetch_heldback": [0, 42], "prefetch_ineligible_retry_aft": [0, 42], "prefetch_is_privacy_decoi": [0, 42], "prefetch_is_stal": [0, 42], "prefetch_not_eligible_browser_context_off_the_record": [0, 42], "prefetch_not_eligible_data_saver_en": [0, 42], "prefetch_not_eligible_existing_proxi": [0, 42], "prefetch_not_eligible_host_is_non_uniqu": [0, 42], "prefetch_not_eligible_non_default_storage_partit": [0, 42], "prefetch_not_eligible_same_site_cross_origin_prefetch_required_proxi": [0, 42], "prefetch_not_eligible_scheme_is_not_http": [0, 42], "prefetch_not_eligible_user_has_cooki": [0, 42], "prefetch_not_eligible_user_has_service_work": [0, 42], "prefetch_not_eligible_battery_saver_en": [0, 42], "prefetch_not_eligible_preloading_dis": [0, 42], "prefetch_not_finished_in_tim": [0, 42], "prefetch_not_start": [0, 42], "prefetch_not_used_cookies_chang": [0, 42], "prefetch_proxy_not_avail": [0, 42], "prefetch_response_us": [0, 42], "prefetch_successful_but_not_us": [0, 42], "prefetch_not_used_probe_fail": [0, 42], "prerendermismatchedhead": [0, 42], "header_nam": [0, 42], "activation_valu": [0, 42], "rulesetupd": [0, 42], "rule_set": [0, 42], "rulesetremov": [0, 42], "preloadenabledstateupd": [0, 42], "disabled_by_prefer": [0, 42], "disabled_by_data_sav": [0, 42], "disabled_by_battery_sav": [0, 42], "disabled_by_holdback_prefetch_speculation_rul": [0, 42], "disabled_by_holdback_prerender_speculation_rul": [0, 42], "prefetchstatusupd": [0, 42], "initiating_frame_id": [0, 42], "prefetch_url": [0, 42], "prefetch_statu": [0, 42], "prerenderstatusupd": [0, 42], "prerender_statu": [0, 42], "disallowed_mojo_interfac": [0, 42], "mismatched_head": [0, 42], "preloadingattemptsourcesupd": [0, 42], "preloading_attempt_sourc": [0, 42], "profilenod": [0, 43], "hit_count": [0, 43], "deopt_reason": [0, 43], "position_tick": [0, 43], "end_tim": [0, 43], "time_delta": [0, 43], "positiontickinfo": [0, 43], "tick": [0, 37, 43], "coveragerang": [0, 43], "functioncoverag": [0, 43], "rang": [0, 12, 14, 17, 27, 29, 30, 39, 43, 53], "is_block_coverag": [0, 43], "scriptcoverag": [0, 43], "get_best_effort_coverag": [0, 43], "set_sampling_interv": [0, 43], "start_precise_coverag": [0, 43], "stop_precise_coverag": [0, 43], "take_precise_coverag": [0, 43], "consoleprofilefinish": [0, 43], "consoleprofilestart": [0, 43], "precisecoveragedeltaupd": [0, 43], "occas": [0, 43], "pwa": [0, 1, 38, 39], "filehandleraccept": [0, 44], "media_typ": [0, 44], "file_extens": [0, 44], "display_nam": [0, 44], "displaymod": [0, 44], "standalon": [0, 44], "change_app_user_set": [0, 44], "get_os_app_st": [0, 44], "launch": [0, 39, 44, 50, 56], "launch_files_in_app": [0, 44], "open_current_page_in_app": [0, 44], "uninstal": [0, 44], "runtim": [0, 1, 11, 14, 39, 51], "scriptid": [0, 4, 14, 18, 39, 43, 45], "serializationopt": [0, 45], "max_depth": [0, 14, 45], "additional_paramet": [0, 45], "deepserializedvalu": [0, 45], "weak_local_object_refer": [0, 45], "remoteobjectid": [0, 2, 14, 17, 18, 28, 32, 38, 45, 57], "unserializablevalu": [0, 45], "remoteobject": [0, 3, 14, 17, 18, 28, 29, 34, 45, 57, 59], "subtyp": [0, 2, 45, 51], "class_nam": [0, 45], "unserializable_valu": [0, 45], "deep_serialized_valu": [0, 45], "preview": [0, 14, 45], "custom_preview": [0, 45], "custompreview": [0, 45], "body_getter_id": [0, 45], "objectpreview": [0, 45], "overflow": [0, 45], "propertypreview": [0, 45], "value_preview": [0, 45], "entrypreview": [0, 45], "propertydescriptor": [0, 45], "configur": [0, 7, 21, 34, 37, 38, 39, 45, 53, 55], "enumer": [0, 12, 14, 45], "writabl": [0, 45], "set_": [0, 45], "was_thrown": [0, 45], "is_own": [0, 45], "symbol": [0, 14, 17, 28, 45], "internalpropertydescriptor": [0, 45], "privatepropertydescriptor": [0, 45], "callargu": [0, 14, 45], "executioncontextid": [0, 14, 17, 39, 45], "executioncontextdescript": [0, 39, 45], "unique_id": [0, 14, 45], "aux_data": [0, 45], "exceptiondetail": [0, 14, 45, 59], "exception_id": [0, 45], "except": [0, 4, 14, 30, 45, 59], "exception_meta_data": [0, 45], "timedelta": [0, 14, 45], "stacktrac": [0, 14, 17, 34, 37, 39, 45], "uniquedebuggerid": [0, 14, 39, 45], "stacktraceid": [0, 14, 45], "add_bind": [0, 45], "await_promis": [0, 45, 59], "call_function_on": [0, 45], "compile_script": [0, 45], "discard_console_entri": [0, 45], "get_exception_detail": [0, 45], "get_heap_usag": [0, 45], "get_isolate_id": [0, 45], "get_properti": [0, 45], "global_lexical_scope_nam": [0, 45], "query_object": [0, 45], "release_object": [0, 45], "release_object_group": [0, 45], "remove_bind": [0, 45], "run_if_waiting_for_debugg": [0, 45], "run_script": [0, 45], "set_custom_object_formatter_en": [0, 45], "set_max_call_stack_size_to_captur": [0, 45], "terminate_execut": [0, 45], "bindingcal": [0, 45], "payload": [0, 37, 45], "consoleapical": [0, 45], "exceptionrevok": [0, 45], "exceptionthrown": [0, 45], "exception_detail": [0, 45], "executioncontextcr": [0, 45], "executioncontextdestroi": [0, 45], "execution_context_unique_id": [0, 45], "executioncontextsclear": [0, 45], "inspectrequest": [0, 45], "hint": [0, 4, 21, 37, 39, 42, 45, 57], "schema": [0, 1], "get_domain": [0, 46], "certificateid": [0, 37, 47], "mixedcontenttyp": [0, 37, 47], "blockabl": [0, 47], "optionally_block": [0, 47], "securityst": [0, 37, 47], "neutral": [0, 47], "insecure_broken": [0, 47], "certificatesecurityst": [0, 47], "certificate_has_weak_signatur": [0, 47], "certificate_has_sha1_signatur": [0, 47], "modern_ssl": [0, 47], "obsolete_ssl_protocol": [0, 47], "obsolete_ssl_key_exchang": [0, 47], "obsolete_ssl_ciph": [0, 47], "obsolete_ssl_signatur": [0, 47], "certificate_network_error": [0, 47], "safetytipstatu": [0, 47], "bad_reput": [0, 47], "lookalik": [0, 47, 59], "safetytipinfo": [0, 47], "safety_tip_statu": [0, 47], "safe_url": [0, 47], "visiblesecurityst": [0, 47], "security_state_issue_id": [0, 47], "certificate_security_st": [0, 47], "safety_tip_info": [0, 47], "securitystateexplan": [0, 47], "summari": [0, 47], "recommend": [0, 39, 47, 55, 60], "insecurecontentstatu": [0, 47], "ran_mixed_cont": [0, 47], "displayed_mixed_cont": [0, 47], "contained_mixed_form": [0, 47], "ran_content_with_cert_error": [0, 47], "displayed_content_with_cert_error": [0, 47], "ran_insecure_content_styl": [0, 47], "displayed_insecure_content_styl": [0, 47], "certificateerroract": [0, 47], "continu": [0, 14, 21, 25, 37, 47, 60, 61], "handle_certificate_error": [0, 47], "set_ignore_certificate_error": [0, 47], "set_override_certificate_error": [0, 47], "certificateerror": [0, 47], "visiblesecuritystatechang": [0, 47], "visible_security_st": [0, 47], "securitystatechang": [0, 47], "scheme_is_cryptograph": [0, 47], "insecure_content_statu": [0, 47], "servicework": [0, 1, 4, 37, 59], "registrationid": [0, 6, 48], "serviceworkerregistr": [0, 48], "registration_id": [0, 48], "scope_url": [0, 48], "is_delet": [0, 48], "serviceworkerversionrunningstatu": [0, 48], "serviceworkerversionstatu": [0, 48], "new": [0, 2, 4, 6, 8, 11, 12, 14, 17, 19, 21, 27, 28, 34, 35, 37, 39, 43, 44, 45, 48, 51, 54, 56, 58, 59], "redund": [0, 48], "serviceworkervers": [0, 48], "version_id": [0, 48], "script_url": [0, 48], "running_statu": [0, 48], "script_last_modifi": [0, 48], "script_response_tim": [0, 48], "controlled_cli": [0, 48], "target_id": [0, 8, 48, 51], "router_rul": [0, 48], "serviceworkererrormessag": [0, 48], "deliver_push_messag": [0, 48], "dispatch_periodic_sync_ev": [0, 48], "dispatch_sync_ev": [0, 48], "inspect_work": [0, 48], "set_force_update_on_page_load": [0, 48], "skip_wait": [0, 48], "start_work": [0, 48], "stop_all_work": [0, 48], "stop_work": [0, 48], "unregist": [0, 48, 49], "update_registr": [0, 48], "workererrorreport": [0, 48], "workerregistrationupd": [0, 48], "registr": [0, 4, 12, 48, 49], "workerversionupd": [0, 48], "storag": [0, 1, 6, 9, 20, 23, 26, 29, 32, 37, 39, 55, 59], "storagetyp": [0, 49], "appcach": [0, 49], "file_system": [0, 49], "local_storag": [0, 49], "shader_cach": [0, 49], "websql": [0, 49], "interest_group": [0, 49], "all_": [0, 49], "usagefortyp": [0, 49], "storage_typ": [0, 49], "trusttoken": [0, 37, 49], "interestgroupauctionid": [0, 49], "interestgroupaccesstyp": [0, 49], "join": [0, 35, 39, 49, 60, 61], "leav": [0, 8, 14, 49, 60], "bid": [0, 49], "win": [0, 49], "additional_bid": [0, 49], "additional_bid_win": [0, 49], "top_level_bid": [0, 49], "top_level_additional_bid": [0, 49], "interestgroupauctioneventtyp": [0, 49], "config_resolv": [0, 49], "interestgroupauctionfetchtyp": [0, 49], "bidder_j": [0, 49], "bidder_wasm": [0, 49], "seller_j": [0, 49], "bidder_trusted_sign": [0, 49], "seller_trusted_sign": [0, 49], "sharedstorageaccesstyp": [0, 49], "document_add_modul": [0, 49], "document_select_url": [0, 49], "document_run": [0, 49], "document_set": [0, 49], "document_append": [0, 49], "document_delet": [0, 49], "document_clear": [0, 49], "document_get": [0, 49], "worklet_set": [0, 49], "worklet_append": [0, 49], "worklet_delet": [0, 49], "worklet_clear": [0, 49], "worklet_get": [0, 49], "worklet_kei": [0, 49], "worklet_entri": [0, 49], "worklet_length": [0, 49], "worklet_remaining_budget": [0, 49], "header_set": [0, 49], "header_append": [0, 49], "header_delet": [0, 49], "header_clear": [0, 49], "sharedstorageentri": [0, 49], "sharedstoragemetadata": [0, 49], "creation_tim": [0, 49], "remaining_budget": [0, 49], "bytes_us": [0, 49], "sharedstoragereportingmetadata": [0, 49], "event_typ": [0, 41, 49], "reporting_url": [0, 49], "sharedstorageurlwithmetadata": [0, 49], "reporting_metadata": [0, 49], "sharedstorageaccessparam": [0, 49], "script_source_url": [0, 49], "operation_nam": [0, 49], "serialized_data": [0, 49], "urls_with_metadata": [0, 49], "ignore_if_pres": [0, 49], "storagebucketsdur": [0, 49], "relax": [0, 49], "storagebucket": [0, 9, 29, 49], "storagebucketinfo": [0, 49], "quota": [0, 49], "persist": [0, 38, 45, 49], "durabl": [0, 49], "attributionreportingsourcetyp": [0, 49], "unsignedint64asbase10": [0, 49], "unsignedint128asbase16": [0, 49], "signedint64asbase10": [0, 49], "attributionreportingfilterdataentri": [0, 49], "attributionreportingfilterconfig": [0, 49], "filter_valu": [0, 49], "lookback_window": [0, 49], "attributionreportingfilterpair": [0, 49], "filter": [0, 17, 19, 23, 25, 37, 39, 41, 42, 49, 51, 53], "not_filt": [0, 49], "attributionreportingaggregationkeysentri": [0, 49], "attributionreportingeventreportwindow": [0, 49], "attributionreportingtriggerspec": [0, 49], "trigger_data": [0, 49], "event_report_window": [0, 49], "attributionreportingtriggerdatamatch": [0, 49], "exact": [0, 19, 37, 49], "modulu": [0, 49], "attributionreportingsourceregistr": [0, 49], "expiri": [0, 5, 49], "trigger_spec": [0, 49], "aggregatable_report_window": [0, 49], "source_origin": [0, 49], "reporting_origin": [0, 49], "destination_sit": [0, 49], "filter_data": [0, 49], "aggregation_kei": [0, 49], "trigger_data_match": [0, 49], "debug_kei": [0, 49], "attributionreportingsourceregistrationresult": [0, 49], "internal_error": [0, 49], "insufficient_source_capac": [0, 49], "insufficient_unique_destination_capac": [0, 49], "excessive_reporting_origin": [0, 49], "prohibited_by_browser_polici": [0, 49], "success_nois": [0, 49], "destination_reporting_limit_reach": [0, 49], "destination_global_limit_reach": [0, 49], "destination_both_limits_reach": [0, 49], "reporting_origins_per_site_limit_reach": [0, 49], "exceeds_max_channel_capac": [0, 49], "exceeds_max_trigger_state_cardin": [0, 49], "destination_per_day_reporting_limit_reach": [0, 49], "attributionreportingsourceregistrationtimeconfig": [0, 49], "exclud": [0, 14, 28, 39, 49, 51, 53], "attributionreportingaggregatablevaluedictentri": [0, 49], "attributionreportingaggregatablevalueentri": [0, 49], "attributionreportingeventtriggerdata": [0, 49], "dedup_kei": [0, 49], "attributionreportingaggregatabletriggerdata": [0, 49], "key_piec": [0, 49], "source_kei": [0, 49], "attributionreportingaggregatablededupkei": [0, 49], "attributionreportingtriggerregistr": [0, 49], "aggregatable_dedup_kei": [0, 49], "event_trigger_data": [0, 49], "aggregatable_trigger_data": [0, 49], "aggregatable_valu": [0, 49], "debug_report": [0, 49], "source_registration_time_config": [0, 49], "aggregation_coordinator_origin": [0, 49], "trigger_context_id": [0, 49], "attributionreportingeventlevelresult": [0, 49], "success_dropped_lower_prior": [0, 49], "no_capacity_for_attribution_destin": [0, 49], "no_matching_sourc": [0, 49], "dedupl": [0, 49], "excessive_attribut": [0, 49], "priority_too_low": [0, 49], "never_attributed_sourc": [0, 49], "no_matching_source_filter_data": [0, 49], "no_matching_configur": [0, 49], "excessive_report": [0, 49], "falsely_attributed_sourc": [0, 49], "report_window_pass": [0, 49], "not_regist": [0, 49], "report_window_not_start": [0, 49], "no_matching_trigger_data": [0, 49], "attributionreportingaggregatableresult": [0, 49], "no_histogram": [0, 49], "insufficient_budget": [0, 49], "relatedwebsiteset": [0, 49], "primary_sit": [0, 49], "associated_sit": [0, 49], "service_sit": [0, 49], "clear_cooki": [0, 49], "clear_data_for_origin": [0, 49], "clear_data_for_storage_kei": [0, 49], "clear_shared_storage_entri": [0, 49], "clear_trust_token": [0, 49], "delete_shared_storage_entri": [0, 49], "delete_storage_bucket": [0, 49], "get_interest_group_detail": [0, 49], "get_related_website_set": [0, 49], "get_shared_storage_entri": [0, 49], "get_shared_storage_metadata": [0, 49], "get_storage_key_for_fram": [0, 49], "get_trust_token": [0, 49], "get_usage_and_quota": [0, 49], "override_quota_for_origin": [0, 49], "reset_shared_storage_budget": [0, 49], "run_bounce_tracking_mitig": [0, 49], "send_pending_attribution_report": [0, 49], "set_attribution_reporting_local_testing_mod": [0, 49], "set_attribution_reporting_track": [0, 49], "set_interest_group_auction_track": [0, 49], "set_interest_group_track": [0, 49], "set_shared_storage_entri": [0, 49], "set_shared_storage_track": [0, 49], "set_storage_bucket_track": [0, 49], "track_cache_storage_for_origin": [0, 49], "track_cache_storage_for_storage_kei": [0, 49], "track_indexed_db_for_origin": [0, 49], "track_indexed_db_for_storage_kei": [0, 49], "untrack_cache_storage_for_origin": [0, 49], "untrack_cache_storage_for_storage_kei": [0, 49], "untrack_indexed_db_for_origin": [0, 49], "untrack_indexed_db_for_storage_kei": [0, 49], "cachestoragecontentupd": [0, 49], "bucket_id": [0, 49], "cachestoragelistupd": [0, 49], "indexeddbcontentupd": [0, 49], "database_nam": [0, 29, 49], "object_store_nam": [0, 29, 49], "indexeddblistupd": [0, 49], "interestgroupaccess": [0, 49], "access_tim": [0, 49], "owner_origin": [0, 49], "component_seller_origin": [0, 49], "bid_curr": [0, 49], "unique_auction_id": [0, 49], "interestgroupauctioneventoccur": [0, 49], "event_tim": [0, 49], "parent_auction_id": [0, 49], "auction_config": [0, 49], "interestgroupauctionnetworkrequestcr": [0, 49], "auction": [0, 39, 49], "sharedstorageaccess": [0, 49], "main_frame_id": [0, 49], "param": [0, 49, 54, 59], "storagebucketcreatedorupd": [0, 49], "bucket_info": [0, 49], "storagebucketdelet": [0, 49], "attributionreportingsourceregist": [0, 49], "attributionreportingtriggerregist": [0, 49], "event_level": [0, 49], "aggregat": [0, 49], "systeminfo": [0, 1], "gpudevic": [0, 50], "vendor_id": [0, 50], "device_id": [0, 15, 50], "vendor_str": [0, 50], "device_str": [0, 50], "driver_vendor": [0, 50], "driver_vers": [0, 50], "sub_sys_id": [0, 50], "revis": [0, 8, 50], "videodecodeacceleratorcap": [0, 50], "max_resolut": [0, 50], "min_resolut": [0, 50], "videoencodeacceleratorcap": [0, 50], "max_framerate_numer": [0, 50], "max_framerate_denomin": [0, 50], "subsamplingformat": [0, 50], "yuv420": [0, 50], "yuv422": [0, 50], "yuv444": [0, 50], "imagetyp": [0, 50], "jpeg": [0, 27, 39, 50, 57, 59], "imagedecodeacceleratorcap": [0, 50], "image_typ": [0, 21, 50], "max_dimens": [0, 50], "min_dimens": [0, 50], "subsampl": [0, 50], "gpuinfo": [0, 50], "driver_bug_workaround": [0, 50], "video_decod": [0, 50], "video_encod": [0, 50], "image_decod": [0, 50], "aux_attribut": [0, 50], "feature_statu": [0, 50], "processinfo": [0, 50], "cpu_tim": [0, 50], "get_feature_st": [0, 50], "get_info": [0, 50], "get_process_info": [0, 50], "targetid": [0, 8, 44, 48, 51], "sessionid": [0, 51], "targetinfo": [0, 51, 59], "can_access_open": [0, 51], "opener_id": [0, 51], "opener_frame_id": [0, 51], "browser_context_id": [0, 8, 49, 51], "filterentri": [0, 51], "targetfilt": [0, 51], "remoteloc": [0, 51], "host": [0, 8, 17, 21, 33, 37, 51, 56, 58], "port": [0, 37, 51, 52, 56, 58], "activate_target": [0, 51], "attach_to_browser_target": [0, 51], "attach_to_target": [0, 51], "auto_attach_rel": [0, 51], "close_target": [0, 51], "create_browser_context": [0, 51], "create_target": [0, 51], "detach_from_target": [0, 51], "dispose_browser_context": [0, 51], "expose_dev_tools_protocol": [0, 51], "get_browser_context": [0, 51], "get_target_info": [0, 51], "get_target": [0, 51], "send_message_to_target": [0, 51], "set_auto_attach": [0, 51], "set_discover_target": [0, 51], "set_remote_loc": [0, 51], "attachedtotarget": [0, 51], "target_info": [0, 51], "waiting_for_debugg": [0, 51], "detachedfromtarget": [0, 51], "receivedmessagefromtarget": [0, 51], "targetcr": [0, 51], "targetdestroi": [0, 51], "error_cod": [0, 51], "targetinfochang": [0, 51], "tether": [0, 1], "bind": [0, 45, 51, 52], "unbind": [0, 52], "trace": [0, 1, 14, 17, 34, 35, 37, 39, 45], "memorydumpconfig": [0, 53], "traceconfig": [0, 53], "record_mod": [0, 53], "trace_buffer_size_in_kb": [0, 53], "enable_sampl": [0, 53], "enable_systrac": [0, 53], "enable_argument_filt": [0, 53], "included_categori": [0, 53], "excluded_categori": [0, 53], "synthetic_delai": [0, 53], "memory_dump_config": [0, 53], "streamformat": [0, 53], "proto": [0, 44, 53], "streamcompress": [0, 53], "memorydumplevelofdetail": [0, 53], "background": [0, 6, 12, 19, 21, 27, 38, 39, 51, 53, 56, 59], "light": [0, 21, 39, 53], "tracingbackend": [0, 53], "auto": [0, 29, 30, 39, 51, 53, 57, 59], "system": [0, 7, 21, 30, 39, 45, 50, 53, 59], "get_categori": [0, 53], "record_clock_sync_mark": [0, 53], "request_memory_dump": [0, 53], "bufferusag": [0, 53], "percent_ful": [0, 53], "event_count": [0, 53], "datacollect": [0, 53], "tracingcomplet": [0, 53], "data_loss_occur": [0, 53], "trace_format": [0, 53], "stream_compress": [0, 53], "webaudio": [0, 1], "graphobjectid": [0, 54], "contexttyp": [0, 54], "realtim": [0, 54], "offlin": [0, 37, 54], "contextst": [0, 54], "suspend": [0, 54], "nodetyp": [0, 17, 19, 54], "channelcountmod": [0, 54], "clamped_max": [0, 54], "explicit": [0, 2, 21, 39, 54], "max_": [0, 54], "channelinterpret": [0, 54], "discret": [0, 32, 39, 54, 55], "speaker": [0, 39, 54], "paramtyp": [0, 54], "automationr": [0, 54], "a_rat": [0, 54], "k_rate": [0, 54], "contextrealtimedata": [0, 54], "render_capac": [0, 54], "callback_interval_mean": [0, 54], "callback_interval_vari": [0, 54], "baseaudiocontext": [0, 54], "context_id": [0, 45, 54], "context_typ": [0, 54], "context_st": [0, 54], "callback_buffer_s": [0, 54], "max_output_channel_count": [0, 54], "sample_r": [0, 54], "realtime_data": [0, 54], "audiolisten": [0, 54], "listener_id": [0, 54], "audionod": [0, 54], "number_of_input": [0, 54], "number_of_output": [0, 54], "channel_count": [0, 54], "channel_count_mod": [0, 54], "channel_interpret": [0, 54], "audioparam": [0, 54], "param_id": [0, 54], "param_typ": [0, 54], "rate": [0, 3, 21, 54], "get_realtime_data": [0, 54], "contextcr": [0, 54], "contextwillbedestroi": [0, 54], "contextchang": [0, 54], "audiolistenercr": [0, 54], "listen": [0, 18, 19, 54, 59], "audiolistenerwillbedestroi": [0, 54], "audionodecr": [0, 54], "audionodewillbedestroi": [0, 54], "audioparamcr": [0, 54], "audioparamwillbedestroi": [0, 54], "nodesconnect": [0, 54], "source_id": [0, 54], "destination_id": [0, 54], "source_output_index": [0, 54], "destination_input_index": [0, 54], "nodesdisconnect": [0, 54], "nodeparamconnect": [0, 54], "nodeparamdisconnect": [0, 54], "webauthn": [0, 1], "authenticatorid": [0, 55], "authenticatorprotocol": [0, 55], "u2f": [0, 55], "ctap2": [0, 55], "ctap2vers": [0, 55], "ctap2_0": [0, 55], "ctap2_1": [0, 55], "authenticatortransport": [0, 55], "ble": [0, 55], "cabl": [0, 55], "intern": [0, 3, 28, 36, 39, 45, 47, 55, 57, 59], "virtualauthenticatoropt": [0, 55], "transport": [0, 37, 47, 55], "ctap2_vers": [0, 55], "has_resident_kei": [0, 55], "has_user_verif": [0, 55], "has_large_blob": [0, 55], "has_cred_blob": [0, 55], "has_min_pin_length": [0, 55], "has_prf": [0, 55], "automatic_presence_simul": [0, 55], "is_user_verifi": [0, 55], "default_backup_elig": [0, 55], "default_backup_st": [0, 55], "credenti": [0, 39, 55], "credential_id": [0, 55], "is_resident_credenti": [0, 55], "private_kei": [0, 55], "sign_count": [0, 55], "rp_id": [0, 55], "user_handl": [0, 55], "large_blob": [0, 55], "backup_elig": [0, 55], "backup_st": [0, 55], "add_credenti": [0, 55], "add_virtual_authent": [0, 55], "clear_credenti": [0, 55], "get_credenti": [0, 55], "remove_credenti": [0, 55], "remove_virtual_authent": [0, 55], "set_automatic_presence_simul": [0, 55], "set_credential_properti": [0, 55], "set_response_override_bit": [0, 55], "set_user_verifi": [0, 55], "credentialad": [0, 55], "authenticator_id": [0, 55], "credentialassert": [0, 55], "cdp": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 61], "experiment": [2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 33, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 52, 53, 54, 55, 57], "you": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61], "do": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 57, 59], "need": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 57, 60, 61], "instanti": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56], "yourself": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55], "instead": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 57, 58, 59, 60, 61], "api": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 59], "object": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 58, 59], "can": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 56, 57, 59, 60, 61], "those": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 54, 55, 57, 59], "argument": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 61], "identifi": [2, 4, 5, 6, 7, 8, 9, 12, 13, 14, 17, 18, 19, 20, 21, 25, 28, 30, 33, 34, 37, 38, 39, 41, 42, 43, 44, 45, 49, 51], "qualnam": [2, 4, 5, 6, 7, 8, 9, 12, 14, 17, 18, 21, 23, 24, 25, 30, 36, 37, 38, 39, 42, 44, 47, 48, 49, 50, 53, 54, 55], "start": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 61], "boundari": [2, 4, 5, 6, 7, 8, 9, 12, 14, 17, 18, 21, 23, 24, 25, 30, 33, 36, 37, 38, 39, 42, 44, 45, 47, 48, 49, 50, 53, 54, 55], "enum": [2, 4, 12, 14, 19, 21, 35, 39, 49, 54], "possibl": [2, 4, 14, 39, 42, 49, 51, 59], "booleanorundefin": 2, "idreflist": 2, "nodelist": 2, "computedstr": 2, "tokenlist": 2, "domrel": 2, "internalrol": 2, "valueundefin": 2, "relatedel": 2, "nativ": [2, 18, 22, 30, 36, 39, 57, 58], "particular": [2, 3, 14, 18, 22, 45, 49], "comput": [2, 12, 17, 19, 21, 39], "ax": [2, 12, 17], "The": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 60, 61], "str": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 57, 58, 59, 60, 61], "ani": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 57, 59], "bool": [2, 3, 4, 6, 8, 12, 14, 17, 18, 19, 20, 21, 24, 25, 27, 28, 29, 30, 32, 33, 36, 37, 38, 39, 41, 42, 43, 44, 45, 47, 48, 49, 50, 51, 53, 55, 56, 57, 58, 59], "whether": [2, 4, 5, 8, 12, 14, 17, 18, 19, 20, 21, 24, 27, 30, 33, 37, 38, 39, 43, 45, 47, 49, 51, 53, 55, 59], "higher": [2, 12], "markup": [2, 17, 30, 39], "e": [2, 3, 4, 5, 12, 14, 21, 24, 27, 30, 37, 39, 42, 45, 47, 50, 51, 53, 55, 58], "list": [2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 13, 14, 15, 17, 18, 19, 20, 21, 23, 24, 25, 26, 28, 29, 30, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 53, 55, 56, 57, 58, 59], "being": [2, 4, 7, 8, 11, 13, 14, 20, 21, 22, 24, 28, 33, 34, 35, 37, 39, 41, 42, 43, 47, 49, 60, 61], "relat": [2, 4, 5, 6, 12, 17, 19, 21, 30, 37, 38, 39, 41, 49, 50, 51], "current": [2, 3, 4, 8, 10, 12, 14, 17, 19, 21, 27, 28, 29, 30, 35, 36, 37, 39, 40, 41, 42, 43, 44, 45, 49, 51, 54, 56, 57, 59], "One": [2, 4, 30, 49], "applic": [2, 12, 28, 37, 41, 47], "contribut": [2, 28, 47], "everi": [2, 4, 6, 12, 37, 39, 45], "region": [2, 38, 39], "widget": 2, "relationship": 2, "between": [2, 12, 17, 19, 27, 28, 30, 36, 38, 43, 51, 56], "than": [2, 17, 18, 21, 33, 37, 39, 45, 51, 58, 59], "sibl": [2, 17], "hiddenroot": 2, "haspopup": 2, "collect": [2, 4, 11, 12, 14, 17, 19, 28, 34, 36, 39, 40, 43, 45, 53], "why": [2, 4, 14, 31, 33, 37, 39, 45], "raw": [2, 4, 28, 37], "all": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61], "id": [2, 3, 4, 5, 6, 8, 9, 12, 13, 14, 15, 17, 18, 19, 23, 25, 28, 32, 33, 35, 37, 38, 39, 41, 42, 43, 44, 45, 47, 49, 50, 51, 52, 53, 54, 55], "backend": [2, 12, 14, 17, 21, 28, 29, 33, 37, 38, 39, 43, 45, 53], "associ": [2, 6, 8, 12, 14, 17, 19, 30, 33, 34, 37, 39, 42, 45, 49, 50, 55], "indic": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55], "yield": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55], "must": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 59], "an": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61], "In": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 58], "ar": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61], "same": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 57, 59], "should": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 59], "pai": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55], "attent": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55], "For": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 59], "inform": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55], "see": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 59, 60, 61], "dict": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 58, 59, 61], "remain": [2, 49], "consist": [2, 5, 12, 36, 39, 51, 53], "call": [2, 4, 6, 8, 12, 14, 17, 21, 24, 25, 33, 34, 35, 36, 37, 38, 39, 40, 43, 44, 45, 49, 51, 57, 59], "turn": [2, 21, 51, 53], "impact": [2, 44], "ancestor": [2, 12, 17, 37], "been": [2, 3, 4, 6, 7, 11, 12, 14, 17, 19, 21, 23, 24, 28, 30, 31, 37, 39, 43, 47, 49, 51, 53, 54], "previous": [2, 12, 14, 21, 39, 41, 47], "javascript": [2, 14, 17, 18, 19, 21, 22, 34, 37, 38, 39, 43, 45, 53, 57, 59], "wrapper": [2, 14, 17, 32, 38], "whose": [2, 3, 12, 49], "resid": 2, "If": [2, 4, 5, 8, 9, 12, 14, 17, 18, 21, 23, 25, 27, 28, 29, 35, 36, 37, 39, 42, 44, 45, 47, 49, 51, 53, 55, 58], "omit": [2, 4, 8, 12, 14, 17, 21, 25, 37, 38, 39, 42, 45, 47, 51], "int": [2, 4, 7, 8, 9, 11, 12, 13, 14, 17, 18, 19, 21, 24, 25, 27, 28, 29, 30, 32, 33, 34, 35, 36, 37, 38, 39, 43, 44, 45, 47, 48, 49, 50, 51, 52, 55, 56, 57, 59], "maximum": [2, 8, 12, 14, 17, 18, 21, 32, 33, 39, 45, 50, 55, 59], "descend": [2, 17, 38], "retriev": [2, 8, 12, 17, 18, 19, 21, 23, 26, 28, 36, 40, 45, 51, 55, 56, 57, 59], "full": [2, 12, 19, 21, 35, 39, 45, 47, 54, 57, 59], "fetch_rel": 2, "partial": 2, "exist": [2, 3, 4, 6, 12, 14, 17, 21, 23, 24, 37, 39, 44, 45, 49, 51, 54, 60], "true": [2, 4, 8, 12, 14, 17, 19, 21, 25, 27, 28, 29, 30, 36, 37, 38, 39, 45, 47, 49, 51, 53, 55, 56, 57, 58, 60, 61, 62], "plu": 2, "its": [2, 12, 14, 17, 20, 25, 30, 33, 37, 39, 43, 44, 45, 49, 50, 53, 59], "accessible_nam": 2, "queri": [2, 8, 12, 13, 14, 17, 20, 21, 30, 37, 38, 39, 49, 50, 51, 57], "subtre": [2, 17, 18, 39], "specifi": [2, 4, 5, 8, 9, 12, 14, 17, 19, 21, 23, 25, 29, 32, 33, 37, 38, 39, 41, 42, 43, 45, 49, 50, 51, 52, 53, 55, 58, 59, 60], "doe": [2, 3, 4, 5, 11, 12, 14, 17, 21, 25, 37, 39, 44, 45, 47, 57, 58, 60, 61], "neither": [2, 45], "accessiblenam": 2, "mirror": [2, 10, 17, 45], "sent": [2, 7, 13, 14, 17, 20, 21, 25, 28, 37, 39, 41, 43, 45, 47, 49, 53, 59], "assist": 2, "technologi": [2, 37], "when": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 17, 18, 19, 24, 25, 27, 28, 30, 31, 33, 34, 35, 37, 38, 39, 41, 42, 43, 45, 47, 49, 51, 53, 55, 56, 57, 59, 60, 61], "ha": [2, 3, 4, 6, 7, 8, 11, 12, 14, 17, 19, 21, 23, 24, 25, 28, 29, 30, 31, 33, 37, 38, 39, 42, 43, 44, 47, 49, 51, 54, 57, 58, 59], "chang": [2, 10, 12, 14, 17, 19, 21, 28, 30, 37, 39, 43, 44, 45, 47, 49, 51, 54, 60], "plai": [3, 57], "float": [3, 4, 8, 9, 12, 14, 16, 17, 19, 21, 26, 27, 28, 29, 30, 33, 34, 36, 37, 39, 40, 41, 43, 45, 48, 49, 50, 53, 54, 56, 57, 59], "playback": [3, 10, 39], "millisecond": [3, 14, 21, 27, 30, 37, 45, 53], "base": [3, 11, 12, 14, 17, 18, 19, 21, 30, 35, 36, 37, 38, 39, 43, 45, 56, 58, 59], "percentag": [3, 59], "0": [3, 4, 12, 14, 17, 18, 19, 21, 25, 27, 30, 35, 37, 39, 45, 50, 53, 56, 57, 59, 60, 61], "100": [3, 12, 27, 37, 39, 54, 57], "scroll": [3, 12, 17, 19, 30, 33, 38, 39, 57, 59], "driven": 3, "transit": [3, 17, 39], "view": [3, 17, 21, 39, 57, 58, 59], "timelin": [3, 41], "contain": [3, 4, 5, 8, 9, 12, 14, 17, 19, 21, 25, 30, 31, 33, 37, 38, 39, 43, 45, 53, 56, 58, 59], "posit": [3, 4, 8, 12, 14, 17, 19, 21, 25, 30, 33, 37, 38, 39, 43, 57, 59], "pixel": [3, 8, 17, 21, 30, 38, 39, 41, 50, 59], "princip": 3, "box": [3, 17, 19, 25, 33, 37, 38], "scrollport": 3, "defin": [3, 5, 6, 8, 12, 14, 17, 19, 23, 30, 37, 38, 39, 44, 47, 50, 52], "progress": [3, 8, 39], "scrolltimelin": 3, "releas": [3, 14, 17, 28, 30, 33, 43, 45], "set": [3, 4, 5, 6, 8, 10, 12, 14, 17, 18, 19, 21, 22, 23, 24, 25, 27, 29, 30, 32, 33, 34, 35, 37, 38, 39, 40, 42, 44, 45, 47, 49, 51, 53, 55, 57, 58, 59, 60, 61], "longer": [3, 17, 38, 39, 47], "manipul": [3, 14], "seek": [3, 32], "animation_id": 3, "remot": [3, 10, 23, 28, 31, 32, 37, 45, 51], "correspond": [3, 14, 17, 19, 24, 25, 28, 35, 37, 39, 42, 44, 45, 49, 58], "within": [3, 12, 14, 17, 30, 33, 35, 37, 41], "wa": [3, 4, 5, 12, 14, 18, 19, 21, 24, 25, 27, 30, 33, 34, 35, 37, 39, 42, 43, 44, 45, 47, 48, 49, 51, 52, 56], "investig": 4, "violat": [4, 18, 34], "improv": 4, "about": [4, 5, 8, 12, 17, 27, 28, 31, 33, 37, 39, 42, 45, 47, 49, 50, 51, 57], "affect": [4, 19, 21, 25, 37], "follow": [4, 5, 8, 9, 12, 13, 14, 17, 19, 21, 25, 27, 29, 32, 33, 36, 37, 39, 43, 44, 45, 49, 50, 51, 53, 57, 58, 59], "three": 4, "excludesamesiteunspecifiedtreatedaslax": 4, "excludesamesitenoneinsecur": 4, "excludesamesitelax": 4, "excludesamesitestrict": 4, "excludeinvalidsameparti": 4, "excludesamepartycrosspartycontext": 4, "excludedomainnonascii": 4, "excludethirdpartycookieblockedinfirstpartyset": 4, "excludethirdpartyphaseout": 4, "warnsamesiteunspecifiedcrosssitecontext": 4, "warnsamesitenoneinsecur": 4, "warnsamesiteunspecifiedlaxallowunsaf": 4, "warnsamesitestrictlaxdowngradestrict": 4, "warnsamesitestrictcrossdowngradestrict": 4, "warnsamesitestrictcrossdowngradelax": 4, "warnsamesitelaxcrossdowngradestrict": 4, "warnsamesitelaxcrossdowngradelax": 4, "warnattributevalueexceedsmaxs": 4, "warndomainnonascii": 4, "warnthirdpartyphaseout": 4, "warncrosssiteredirectdowngradechangesinclus": 4, "setcooki": 4, "readcooki": 4, "necessari": [4, 42], "front": [4, 12, 17, 39], "difficult": 4, "With": 4, "we": [4, 12, 14, 33, 35, 37, 42, 51, 59, 60, 61], "convei": 4, "without": [4, 8, 14, 28, 37, 39, 44, 49, 51, 59, 61], "site": [4, 8, 37, 39, 44, 49, 57], "mai": [4, 8, 12, 14, 17, 19, 21, 25, 27, 28, 32, 37, 38, 39, 41, 43, 44, 45, 49, 51, 54, 59, 60, 61], "addit": [4, 6, 12, 14, 17, 30, 37, 50, 51, 56], "rawcookielin": 4, "problem": [4, 14, 57], "where": [4, 5, 9, 12, 14, 17, 32, 33, 35, 36, 37, 39, 42, 43, 45, 57], "syntact": 4, "semant": [4, 37], "wai": [4, 25, 37, 44, 45, 56, 59], "valid": [4, 8, 12, 14, 17, 19, 29, 30, 37, 39, 42, 47, 48], "mixedcontentblock": 4, "mixedcontentautomaticallyupgrad": 4, "mixedcontentwarn": 4, "attributionsrc": 4, "cspreport": 4, "eventsourc": [4, 37], "plugindata": 4, "pluginresourc": 4, "sharedwork": [4, 39], "speculationrul": 4, "xmlhttprequest": [4, 18, 37], "mix": [4, 37, 47], "resolv": [4, 12, 14, 17, 37, 45, 55, 57], "unsaf": [4, 23, 45], "j": [4, 24, 35, 57, 59], "mark": [4, 17, 37, 43], "becaus": [4, 35, 37, 39, 49, 51, 53, 57, 60, 61], "map": [4, 12, 14, 37, 39, 45, 55], "blink": [4, 8, 30, 37, 39], "mojom": [4, 42, 53], "requestcontexttyp": 4, "replac": [4, 12, 14, 17, 21, 30, 37, 42, 58], "requestdestin": 4, "alwai": [4, 14, 17, 21, 35, 37, 39, 47, 51, 59, 60, 61], "submiss": [4, 39], "necessarili": 4, "These": [4, 24, 30, 49], "refin": [4, 37], "net": [4, 25, 37], "coepframeresourceneedscoephead": 4, "coopsandboxediframecannotnavigatetocooppag": 4, "corpnotsameorigin": 4, "corpnotsameoriginafterdefaultedtosameoriginbycoep": 4, "corpnotsameoriginafterdefaultedtosameoriginbydip": 4, "corpnotsameoriginafterdefaultedtosameoriginbycoepanddip": 4, "corpnotsamesit": 4, "onli": [4, 8, 9, 10, 12, 14, 17, 19, 21, 24, 25, 27, 28, 30, 32, 33, 37, 39, 42, 43, 45, 47, 49, 50, 51, 53, 56, 57, 59], "extend": [4, 25, 37, 44], "some": [4, 12, 17, 25, 32, 37, 38, 44, 45, 49, 51, 53, 54, 57, 60], "futur": [4, 27, 37, 45], "heavyadblock": 4, "heavyadwarn": 4, "networktotallimit": 4, "cputotallimit": 4, "cpupeaklimit": 4, "either": [4, 14, 17, 21, 24, 25, 32, 37, 38, 39, 42, 43, 44, 45, 53, 58, 59], "warn": [4, 45, 47], "ad": [4, 10, 11, 12, 17, 18, 34, 37, 38, 39, 41, 42, 45, 49, 51, 55, 59], "cpu": [0, 4, 21, 43, 50], "peak": 4, "kinlineviol": 4, "kevalviol": 4, "kurlviol": 4, "ktrustedtypessinkviol": 4, "ktrustedtypespolicyviol": 4, "kwasmevalviol": 4, "transferissu": 4, "creationissu": 4, "aris": 4, "sab": 4, "transfer": [4, 39, 53], "cross": [4, 37, 38, 39, 45, 51], "rfc1918": 4, "enforc": 4, "permissionpolicydis": 4, "untrustworthyreportingorigin": 4, "insecurecontext": 4, "invalidhead": 4, "invalidregistertriggerhead": 4, "sourceandtriggerhead": 4, "sourceignor": 4, "triggerignor": 4, "ossourceignor": 4, "ostriggerignor": 4, "invalidregisterossourcehead": 4, "invalidregisterostriggerhead": 4, "webandoshead": 4, "noweborossupport": 4, "navigationregistrationwithouttransientuseractiv": 4, "invalidinfohead": 4, "noregistersourcehead": 4, "noregistertriggerhead": 4, "noregisterossourcehead": 4, "noregisterostriggerhead": 4, "useerrorcrossoriginnocorsrequest": 4, "useerrordictionaryloadfailur": 4, "useerrormatchingdictionarynotus": 4, "useerrorunexpectedcontentdictionaryhead": 4, "writeerrorcossoriginnocorsrequest": 4, "writeerrordisallowedbyset": 4, "writeerrorexpiredrespons": 4, "writeerrorfeaturedis": 4, "writeerrorinsufficientresourc": 4, "writeerrorinvalidmatchfield": 4, "writeerrorinvalidstructuredhead": 4, "writeerrornavigationrequest": 4, "writeerrornomatchfield": 4, "writeerrornonlistmatchdestfield": 4, "writeerrornonsecurecontext": 4, "writeerrornonstringidfield": 4, "writeerrornonstringinmatchdestlist": 4, "writeerrornonstringmatchfield": 4, "writeerrornontokentypefield": 4, "writeerrorrequestabort": 4, "writeerrorshuttingdown": 4, "writeerrortoolongidfield": 4, "writeerrorunsupportedtyp": 4, "around": [4, 30, 38, 53], "explain": [4, 39, 47], "github": [4, 8, 21, 24, 37, 39, 41, 42, 49, 54, 55, 60, 61], "com": [4, 17, 39, 41, 42, 44, 45, 51, 59, 60, 61], "wicg": [4, 21, 37, 39, 41, 42, 49], "quirk": 4, "limit": [0, 4, 14, 37, 49], "fals": [4, 8, 12, 14, 17, 18, 19, 27, 30, 37, 38, 39, 47, 49, 51, 55, 56, 57, 58, 59, 60, 62], "mean": [4, 11, 17, 25, 28, 30, 34, 37, 38, 39, 45, 47, 54], "crossoriginportalpostmessageerror": [], "formlabelfornameerror": 4, "formduplicateidforinputerror": 4, "forminputwithnolabelerror": 4, "formautocompleteattributeemptyerror": 4, "formemptyidandnameattributesforinputerror": 4, "formarialabelledbytononexistingid": 4, "forminputassignedautocompletevaluetoidornameattributeerror": 4, "formlabelhasneitherfornornestedinput": 4, "formlabelformatchesnonexistingiderror": 4, "forminputhaswrongbutwellintendedautocompletevalueerror": 4, "responsewasblockedbyorb": 4, "concret": [4, 60, 61], "errortyp": [4, 42], "aggreg": [4, 37, 39], "frontend": [4, 39], "deprec": [4, 11, 14, 17, 18, 19, 21, 27, 28, 37, 38, 39, 40, 45, 46, 47, 51, 53], "chromium": [4, 8, 21, 30, 35, 37, 39, 51, 56], "org": [4, 7, 8, 12, 17, 21, 26, 30, 37, 39, 44, 47, 51, 55], "main": [4, 7, 8, 30, 33, 37, 38, 39, 42, 48, 50, 51, 59, 60, 61], "third_parti": [4, 8, 30, 37, 39], "render": [4, 5, 8, 12, 17, 19, 21, 27, 30, 36, 37, 39, 54], "core": [4, 30, 37, 39, 58, 59], "readm": 4, "md": [4, 39, 42], "json5": [4, 39], "redirect": [4, 25, 37], "chain": [4, 12, 14, 45, 47], "tracker": [4, 49], "thei": [4, 6, 12, 35, 37, 44, 45, 55, 59], "don": [4, 43, 56, 60, 61], "t": [4, 14, 25, 30, 37, 38, 39, 42, 43, 45, 49, 56, 58, 59, 60, 61], "receiv": [4, 5, 7, 8, 12, 14, 17, 25, 35, 37, 39, 48, 49, 51, 57, 59], "user": [4, 8, 12, 15, 17, 21, 24, 30, 37, 38, 39, 42, 44, 45, 47, 55, 57, 59, 61], "interact": [4, 10, 17, 24, 30, 44, 59, 60, 61], "note": [4, 8, 14, 17, 19, 21, 25, 27, 35, 36, 37, 39, 40, 41, 42, 44, 45, 47, 49, 53, 56, 57, 59], "etld": 4, "test": [4, 7, 17, 24, 38, 39, 55], "80": 4, "bounc": [4, 49], "would": [4, 19, 21, 24, 30, 37, 39, 41, 45, 53, 57, 59], "third": [4, 28], "parti": [4, 37, 55], "permit": [4, 22], "due": [4, 25, 37, 38, 39, 43, 45, 60, 61], "global": [4, 8, 14, 19, 39, 45, 49, 53], "web_pag": 4, "metatagallowlistinvalidorigin": 4, "metatagmodifiedhtml": 4, "feder": 4, "authent": [4, 25, 37, 55], "alongsid": 4, "requestidtokenstatu": 4, "devtool": [4, 8, 12, 32, 47, 49, 51, 57, 59], "inspector_issu": 4, "case": [4, 12, 14, 17, 27, 37, 39, 42, 45, 49, 57, 58, 59], "shouldembargo": 4, "toomanyrequest": 4, "wellknownhttpnotfound": 4, "wellknownnorespons": 4, "wellknowninvalidrespons": 4, "wellknownlistempti": 4, "wellknowninvalidcontenttyp": 4, "confignotinwellknown": 4, "wellknowntoobig": 4, "confighttpnotfound": 4, "confignorespons": 4, "configinvalidrespons": 4, "configinvalidcontenttyp": 4, "clientmetadatahttpnotfound": 4, "clientmetadatanorespons": 4, "clientmetadatainvalidrespons": 4, "clientmetadatainvalidcontenttyp": 4, "idpnotpotentiallytrustworthi": 4, "disabledinset": 4, "disabledinflag": 4, "errorfetchingsignin": 4, "invalidsigninrespons": 4, "accountshttpnotfound": 4, "accountsnorespons": 4, "accountsinvalidrespons": 4, "accountslistempti": 4, "accountsinvalidcontenttyp": 4, "idtokenhttpnotfound": 4, "idtokennorespons": 4, "idtokeninvalidrespons": 4, "idtokenidperrorrespons": 4, "idtokencrosssiteidperrorrespons": 4, "idtokeninvalidrequest": 4, "idtokeninvalidcontenttyp": 4, "erroridtoken": 4, "rppagenotvis": 4, "silentmediationfailur": 4, "thirdpartycookiesblock": 4, "notsignedinwithidp": 4, "missingtransientuseractiv": 4, "replacedbybuttonmod": [], "invalidfieldsspecifi": 4, "relyingpartyoriginisopaqu": 4, "typenotmatch": 4, "getuserinfo": 4, "federatedauthuserinforequestresult": 4, "notsameorigin": 4, "notifram": 4, "notpotentiallytrustworthi": 4, "noapipermiss": 4, "noaccountsharingpermiss": 4, "invalidconfigorwellknown": 4, "invalidaccountsrespons": 4, "noreturninguserfromfetchedaccount": 4, "client": [4, 11, 12, 13, 14, 17, 19, 20, 21, 23, 25, 34, 36, 37, 38, 39, 42, 45, 47, 51, 55], "old": [4, 14, 17], "featur": [4, 6, 8, 12, 21, 37, 39, 50], "encourag": 4, "ones": [4, 14, 37, 42, 44], "guidanc": 4, "lateimportrul": 4, "requestfail": 4, "referenc": [4, 14, 45], "couldn": 4, "invalidsyntax": 4, "invalidinitialvalu": 4, "invalidinherit": 4, "invalidnam": 4, "lead": [4, 59], "discard": [4, 17, 28, 32, 45], "pars": [4, 12, 14, 17, 37, 39], "one": [4, 9, 12, 14, 17, 21, 24, 25, 27, 28, 29, 30, 33, 35, 37, 39, 44, 45, 47, 51, 53, 55, 59, 60, 61], "kind": [4, 12], "cookieissu": 4, "mixedcontentissu": 4, "blockedbyresponseissu": 4, "heavyadissu": 4, "contentsecuritypolicyissu": 4, "sharedarraybufferissu": 4, "lowtextcontrastissu": 4, "corsissu": 4, "attributionreportingissu": 4, "quirksmodeissu": 4, "navigatoruseragentissu": 4, "genericissu": 4, "deprecationissu": 4, "clienthintissu": 4, "federatedauthrequestissu": 4, "bouncetrackingissu": 4, "cookiedeprecationmetadataissu": 4, "stylesheetloadingissu": 4, "federatedauthuserinforequestissu": 4, "propertyruleissu": 4, "shareddictionaryissu": 4, "struct": [4, 49], "hold": [4, 12, 14, 17, 28, 37, 39, 43, 53, 57], "pleas": [4, 37, 38, 39, 59], "add": [4, 38, 45, 49, 51, 55, 58, 59], "entiti": [4, 50], "etc": [4, 5, 14, 17, 21, 30, 35, 36, 37, 39, 45, 50, 58], "refer": [4, 14, 17, 19, 28, 30, 39, 45, 56, 59], "report_aaa": 4, "contrast": [4, 14, 38], "wcag": 4, "prevent": [4, 11, 13, 20, 21, 30, 34, 37, 39, 43, 45, 59], "further": [4, 11, 14, 34, 45, 60, 61], "far": [4, 11, 34, 37], "encod": [4, 7, 8, 9, 14, 19, 25, 27, 32, 33, 36, 37, 39, 50, 53, 55], "size_onli": 4, "were": [4, 5, 12, 17, 28, 30, 32, 37, 45, 48, 49, 53], "re": [4, 17, 35, 45, 59, 60, 61], "tupl": [4, 8, 9, 12, 13, 14, 17, 19, 25, 27, 29, 32, 33, 36, 37, 39, 43, 44, 45, 49, 50, 53, 57, 58, 59], "base64": [4, 7, 8, 9, 14, 25, 27, 32, 33, 37, 39, 53, 55], "sizeonli": 4, "pass": [4, 6, 7, 8, 9, 12, 14, 17, 19, 25, 26, 27, 28, 33, 35, 37, 39, 41, 43, 51, 53, 55], "over": [4, 7, 8, 9, 14, 25, 27, 30, 33, 37, 38, 39, 47, 51, 53, 55], "originals": 4, "encodeds": 4, "16": [5, 19, 27, 30], "digit": [5, 39], "credit": 5, "card": [5, 39], "owner": [5, 12, 17, 19, 38], "month": [5, 60, 61], "4": [5, 24, 30, 39, 50, 57, 61], "year": [5, 60, 61], "3": [5, 14, 17, 18, 19, 21, 27, 37, 38, 39, 40, 47, 51, 60, 61], "verif": [5, 55, 60, 61], "jon": 5, "how": [5, 25, 33, 37, 53, 59], "like": [5, 14, 25, 37, 43, 45, 57, 58, 59, 60], "ui": [5, 35, 45, 47, 55], "two": [5, 24, 37, 54], "dimension": 5, "inner": 5, "surfac": [5, 10, 39], "give_nam": 5, "citi": 5, "munich": 5, "zip": 5, "81456": 5, "dimens": [5, 21, 39, 50], "represent": [5, 12, 25, 35, 37, 45], "heurist": [5, 39], "autocompleteattribut": 5, "autofillinf": 5, "actual": [5, 8, 12, 14, 17, 37, 39, 47, 49, 56, 59, 60, 61], "strategi": 5, "belong": [5, 6, 12, 17, 39, 45, 51], "develop": [5, 7, 26, 37, 42], "verifi": [5, 24], "implement": [5, 12, 17, 35, 45, 60, 61], "fieldid": 5, "cannot": [5, 8, 14, 37, 38, 44, 45], "serv": [5, 37, 39, 45], "anchor": [5, 17, 19, 33, 39], "out": [5, 14, 21, 30, 39, 42, 45, 51, 58, 60, 61], "emit": [5, 8, 30, 37, 39, 42], "2d": 5, "independ": [6, 38, 39], "share": [6, 19, 39, 42, 49], "backgroundfetch": [6, 8, 56], "backgroundsync": [6, 8, 56], "pushmessag": 6, "paymenthandl": [6, 8, 56], "periodicbackgroundsync": [6, 8, 56], "pair": [6, 17, 19, 25, 37, 49, 58], "along": [6, 21, 25, 30, 33, 37, 39, 45, 49], "second": [6, 9, 12, 27, 28, 30, 33, 37, 39, 41, 42, 43, 49, 50, 54, 56, 57, 59, 60, 61], "group": [6, 14, 17, 28, 37, 39, 45, 47, 49], "togeth": [6, 19, 45], "store": [6, 7, 9, 29, 30, 37, 49, 53, 55, 57], "should_record": 6, "record": [6, 9, 12, 28, 29, 37, 41, 43, 49, 53, 57], "afterward": 6, "manag": [0, 8, 23, 39], "window": [8, 12, 21, 30, 38, 39, 42, 44, 50, 51, 56, 59], "edg": 8, "screen": [8, 21, 38, 39, 56, 59], "accessibilityev": [8, 56], "audiocaptur": [8, 56], "capturedsurfacecontrol": 8, "clipboardreadwrit": [8, 56], "clipboardsanitizedwrit": [8, 56], "displaycaptur": [8, 56], "durablestorag": [8, 56], "idledetect": [8, 56], "localfont": [8, 56], "midisysex": [8, 56], "protectedmediaidentifi": [8, 56], "storageaccess": [8, 37, 56], "speakerselect": 8, "toplevelstorageaccess": [8, 37, 56], "videocaptur": [8, 56], "videocapturepantiltzoom": [8, 56], "wakelockscreen": [8, 56], "wakelocksystem": [8, 56], "windowmanag": [8, 56], "definit": [8, 39, 44, 57], "permiss": [8, 39, 56], "w3c": [8, 21, 39, 41, 55], "permission_descriptor": 8, "idl": [8, 21, 37, 39, 41, 59], "push": [8, 12, 17, 37], "uservisibleonli": 8, "clipboard": [8, 39], "allowwithoutsanit": 8, "allowwithoutgestur": 8, "pantiltzoom": 8, "executebrowsercommand": 8, "opentabsearch": 8, "closetabsearch": 8, "minimum": [8, 12, 21, 33, 37, 39, 50], "inclus": [8, 12], "exclus": [8, 12, 14, 25, 45, 51], "sum": 8, "privaci": 8, "sandbox": [8, 37, 56, 58], "enrol": 8, "browsercontext": [8, 51], "gracefulli": 8, "thread": [8, 33, 39, 50], "gpu": [8, 50], "process": [8, 21, 30, 36, 37, 38, 39, 44, 45, 47, 50, 56, 60, 61], "command_id": 8, "invok": [8, 22, 49], "telemetri": [8, 21], "switch": [8, 21], "commandlin": [8, 50], "delta": [8, 30, 43], "last": [8, 12, 14, 17, 28, 32, 33, 36, 39, 43, 48, 49, 58], "substr": [8, 9, 18, 19], "extract": [8, 39], "empti": [8, 9, 10, 12, 14, 21, 25, 29, 30, 37, 38, 39, 41, 45, 47, 50, 51, 55, 58], "absent": [0, 7, 8, 12, 17, 25, 33, 37], "protocolvers": 8, "product": 8, "userag": 8, "agent": [8, 12, 17, 19, 21, 32, 35, 37, 45, 53], "jsversion": 8, "v8": [8, 14, 36, 45], "window_id": 8, "restor": [8, 21, 30, 35, 39], "part": [8, 25, 37, 39, 51, 60, 61], "given": [8, 12, 14, 17, 18, 19, 21, 23, 25, 28, 29, 30, 33, 37, 38, 39, 44, 45, 49, 50, 51, 55, 56, 57, 58, 59], "reject": [8, 24, 45], "overrid": [8, 14, 16, 21, 25, 35, 37, 39, 41, 44, 45, 47, 49, 55], "reset": [8, 21, 24, 39, 43, 44, 49, 55], "badge_label": 8, "dock": 8, "tile": [8, 33], "png": [8, 27, 39, 57, 59], "behavior": [8, 14, 25, 30, 37, 39], "download_path": [8, 39], "events_en": 8, "otherwis": [8, 14, 21, 25, 27, 37, 39, 49, 50, 53, 55, 57, 58], "allowandnam": 8, "accord": [8, 17, 19, 39, 44, 49], "descriptor": [8, 12, 38, 45], "combin": 8, "unspecifi": [8, 37], "unchang": 8, "fire": [8, 10, 12, 14, 17, 21, 25, 31, 37, 38, 39, 42, 47, 56, 57, 59], "begin": [8, 12, 14, 19, 25, 37, 39], "suggest": [8, 37, 39, 47], "disk": [8, 37, 39], "byte": [7, 8, 14, 26, 28, 32, 36, 37, 39, 45, 49, 55], "opaquerespons": 9, "opaqueredirect": 9, "epoch": [9, 37, 41, 45], "opaqu": [9, 37, 55], "delet": [9, 29, 37, 39, 45, 49, 51, 55], "spec": [9, 39, 49, 54, 55], "At": [9, 29], "least": [9, 29, 30, 53], "securityorigin": [9, 29], "storagekei": [9, 29, 49], "skip_count": [9, 29], "page_s": [9, 29], "path_filt": 9, "skip": [9, 14, 17, 29, 59], "present": [9, 10, 12, 14, 17, 19, 25, 33, 37, 39, 41, 49, 51, 55, 58], "cachedataentri": 9, "returncount": 9, "pathfilt": 9, "There": [7, 9, 12, 16, 18, 19, 22, 23, 26, 27, 29, 31, 32, 36, 44, 46, 47, 50, 52], "describ": [7, 10, 14, 17, 21, 28, 30, 45, 47, 50], "observ": [10, 21, 25, 37], "presentation_url": 10, "compat": [10, 14, 17], "presentationurl": 10, "well": [10, 17, 19, 51, 57, 59, 60, 61], "remov": [10, 12, 14, 17, 18, 22, 23, 27, 35, 37, 39, 45, 49, 55, 57, 58], "sink_nam": 10, "choos": [10, 53], "via": [10, 12, 14, 17, 19, 21, 28, 30, 37, 39, 42, 44, 45, 51, 53, 60], "sdk": 10, "desktop": 10, "whenev": [10, 12, 35, 37, 59], "softwar": 10, "outstand": 10, "issuemessag": 10, "sever": [11, 14, 17, 34, 47], "noth": [11, 21, 58, 59], "expos": [12, 14, 17, 28, 37, 41, 45, 53], "write": [12, 17, 39], "subsequ": [12, 14, 25, 51], "structur": [12, 17, 39, 42], "interchang": 12, "fornod": 12, "keep": [12, 17, 35, 53, 56, 59, 60, 61], "getstylesheet": 12, "pseudo": [12, 17, 19], "ident": [12, 33, 37, 39, 44], "delimit": 12, "comma": [12, 49], "underli": [12, 37], "draft": [12, 37], "csswg": 12, "compon": [12, 17, 26, 37, 58], "metainform": 12, "construct": [12, 54], "cssstylesheet": 12, "non": [12, 14, 17, 25, 36, 38, 39, 41, 45, 49, 51, 53], "denot": [12, 14], "parser": [12, 17, 37], "written": 12, "mutabl": 12, "becom": [12, 17, 29, 33, 37, 57], "modifi": [12, 14, 17, 18, 20, 25, 30, 37, 39, 48, 49, 57], "cssom": 12, "them": [12, 17, 21, 25, 35, 39, 45, 49, 51, 56, 57], "immedi": [12, 17, 21, 39, 43, 44, 45, 49, 55], "creation": [12, 14, 17, 37, 39, 45, 51], "through": [12, 14, 22, 35, 42, 51, 55, 57], "zero": [12, 25, 37, 53, 55], "charact": [12, 19, 25, 37], "sourceurl": [12, 14], "come": [12, 21, 30, 42, 45, 58], "comment": [12, 25, 44], "sheet": 12, "declar": [12, 45, 53, 57], "came": 12, "sort": [12, 14], "distanc": [12, 30, 38], "involv": [12, 49], "innermost": 12, "go": [12, 35, 39, 59, 60, 61], "outward": 12, "cascad": 12, "hierarchi": [12, 39, 56], "dure": [12, 14, 27, 37, 39, 42, 45, 49, 59], "mediarul": 12, "supportsrul": 12, "containerrul": 12, "layerrul": 12, "scoperul": 12, "stylerul": 12, "coverag": [12, 43], "shorthand": 12, "annot": 12, "impli": [12, 39, 45], "enclos": 12, "understood": [12, 37], "longhand": 12, "importrul": 12, "linkedsheet": 12, "inlinesheet": 12, "satisfi": 12, "physic": [12, 17, 21, 30, 37], "logic": [12, 14, 17], "determin": [12, 19, 25, 28, 37, 38, 39, 41, 45, 51], "sub": [12, 17, 39, 49, 50], "amount": [12, 49, 59], "glyph": 12, "famili": [12, 39], "postscript": 12, "variat": 12, "variabl": [12, 14, 45], "k": [12, 54, 58, 60, 61], "human": [12, 45], "readabl": [12, 45], "languag": [12, 14, 19, 21, 37, 60], "en": [12, 26, 58, 60], "www": [12, 17, 37, 39, 44, 47, 59, 60, 61], "w3": [12, 17, 37, 47], "tr": [12, 17, 37, 47], "2008": 12, "rec": 12, "css2": 12, "20080411": 12, "platformfontfamili": 12, "fontvariationax": 12, "variant": [12, 14, 59], "weight": 12, "stretch": 12, "unicod": 12, "try": [12, 14, 59], "fallback": [12, 37], "prelud": 12, "dash": [12, 38], "registerproperti": 12, "palett": 12, "mutat": [12, 14], "rule_text": 12, "node_for_property_syntax_valid": 12, "insert": [12, 17, 29, 30, 58], "ruletext": 12, "regist": [12, 39, 44, 49, 54], "static": [12, 37, 60, 61], "produc": [12, 21, 25, 32, 39, 41, 45], "incorrect": 12, "var": 12, "newli": [12, 45], "special": 12, "assum": [12, 14, 37, 39, 51], "forced_pseudo_class": 12, "ensur": [12, 59, 61], "backgroundcolor": 12, "behind": 12, "undefin": [12, 17, 25, 45], "flat": [12, 17, 51], "simpli": 12, "gradient": 12, "anyth": [12, 45], "complic": 12, "had": [12, 19, 25, 37, 42], "computedfonts": 12, "12px": 12, "computedfontweight": 12, "explicitli": [12, 45, 53], "implicitli": [12, 17], "inlinestyl": 12, "attributesstyl": 12, "20": [12, 51], "engin": [12, 37], "getlayersfornod": 12, "nearest": [12, 17, 33], "shadow": [12, 17, 18, 19, 39, 61], "selector_text": 12, "getlocationforselector": 12, "matchedcssrul": 12, "pseudoel": 12, "inheritedpseudoel": 12, "parentlayoutnodeid": 12, "textnod": 12, "statist": [12, 28, 43], "emploi": 12, "textual": [12, 25], "modif": [12, 17, 37], "takecoveragedelta": 12, "instrument": [12, 14, 18, 22, 37], "poll": [12, 43], "batch": [12, 17, 35], "obtain": [12, 19, 32, 37], "becam": 12, "monoton": [12, 37, 41, 43], "properties_to_track": 12, "takecomputedstyleupd": 12, "occur": [12, 22, 30, 32, 37, 42, 47, 49, 51, 54, 60, 61], "successfulli": [12, 17, 27, 52], "consid": [12, 14, 37, 51, 59], "metainfo": 12, "now": [13, 14, 17, 20, 21, 35, 37, 39, 47, 60, 61], "deliv": [13, 20, 21, 35, 37, 39, 53], "database_id": 13, "columnnam": 13, "sqlerror": 13, "debug": [14, 18, 23, 31, 37, 38, 51, 55, 59], "capabl": [14, 39, 50], "breakpoint": [14, 18, 22, 45], "execut": [14, 17, 18, 21, 36, 37, 39, 40, 43, 45], "explor": 14, "virtual": [7, 14, 21, 30, 55], "machin": [14, 50], "favor": [14, 28, 39, 45], "vm": 14, "restart": 14, "here": [14, 37, 45, 57, 60], "guarante": [14, 37, 39, 44, 45, 59], "restartfram": 14, "veri": [14, 33, 57, 59], "rest": [14, 17, 60, 61], "artifici": [14, 28], "transient": 14, "search": [14, 17, 37, 39, 59, 61], "disassembl": 14, "bytecod": 14, "webassembli": 14, "wasm": 14, "extern": [7, 14, 39, 42], "target_call_fram": 14, "reach": [14, 54], "streamid": 14, "larg": [14, 28, 49, 55], "disassembli": 14, "totalnumberoflin": 14, "functionbodyoffset": 14, "format": [14, 17, 27, 38, 39, 50, 53, 55, 57, 59], "start1": 14, "end1": 14, "start2": 14, "end2": 14, "max_scripts_cache_s": 14, "heap": [14, 28, 36, 45], "put": 14, "object_group": [14, 17, 28, 45], "include_command_line_api": [14, 39, 45], "silent": [14, 45], "return_by_valu": [14, 45, 57, 59], "generate_preview": [14, 45], "throw_on_side_effect": [14, 45], "rapid": 14, "handl": [14, 25, 30, 32, 37, 38, 39, 44, 45, 47, 53, 56, 59, 60, 61], "releaseobjectgroup": 14, "thrown": [14, 39, 45], "setpauseonexcept": [14, 45], "throw": [14, 45], "side": [14, 27, 30, 45], "effect": [14, 27, 38, 45, 49, 51, 57], "termin": [14, 31, 36, 45, 51], "restrict_to_funct": 14, "nest": [14, 26, 45], "scriptsourc": 14, "stack_trace_id": 14, "getscriptsourc": 14, "stream_id": 14, "statement": 14, "parent_stack_trace_id": 14, "async": [14, 37, 45, 56, 57, 59, 60, 61], "schedul": [14, 21, 39, 49], "immediatli": 14, "To": [14, 21, 37, 57], "ward": 14, "miss": [14, 17, 21, 39], "variou": [7, 14, 38], "stepinto": 14, "asyncstacktrac": 14, "asyncstacktraceid": 14, "terminate_on_resum": 14, "upon": [14, 17, 18, 21, 32, 34, 37, 38, 39, 59], "terminateexecut": 14, "case_sensit": [14, 37, 39], "is_regex": [14, 37, 39], "sensit": [14, 28, 37, 39], "treat": [14, 37, 39, 45, 57], "regex": [14, 37, 39], "previou": [12, 14, 17, 21, 30, 41, 51], "blackbox": 14, "final": [14, 19, 30, 42, 49], "resort": 14, "unsuccess": 14, "regexp": 14, "blacklist": 14, "interv": [14, 27, 28, 36, 43, 53, 54], "isn": [14, 37, 42, 45, 59], "actualloc": 14, "url_regex": 14, "script_hash": 14, "surviv": [14, 39, 45], "urlregex": 14, "hash": [14, 37], "deactiv": 14, "uncaught": 14, "caught": 14, "break": [14, 61], "script_sourc": [14, 39], "dry_run": 14, "allow_top_frame_edit": 14, "automat": [14, 21, 45, 51, 59, 60], "dry": 14, "long": [14, 28, 29, 37, 60, 61], "happen": [14, 17, 24, 25, 33, 38, 39, 45, 49, 51, 57, 59], "stackchang": 14, "ok": 14, "compileerror": 14, "interrupt": [0, 14, 54], "scope_numb": 14, "variable_nam": 14, "manual": [14, 38, 39, 59], "closur": 14, "catch": 14, "break_on_async_cal": 14, "skip_list": 14, "task": [14, 21, 59], "skiplist": 14, "criteria": 14, "auxiliari": [14, 45], "hit": [14, 17, 22, 37, 38], "never": [14, 17, 60, 61], "sha": 14, "256": [14, 55], "embedd": [14, 39, 43, 45, 55], "isdefault": [14, 45], "es6": 14, "section": [14, 37, 59], "suppli": [14, 25], "uncollect": 14, "open": [15, 17, 29, 39, 44, 45, 51, 56, 59, 60, 61], "respond": [15, 19, 25], "selectprompt": 15, "cancelprompt": 15, "overridden": [16, 21, 25, 37, 39, 47, 49], "alpha": [16, 17, 39], "beta": [16, 39], "gamma": [16, 39], "mock": [16, 21, 37, 39], "twice": 17, "friendli": [17, 39, 45], "nodenam": [17, 19], "letter": 17, "spell": 17, "grammar": 17, "thumb": 17, "button": [17, 24, 30, 57, 59, 60, 61], "piec": 17, "corner": [17, 58, 59], "quirksmod": 17, "limitedquirksmod": 17, "noquirksmod": 17, "containerselector": 17, "term": [17, 39], "awar": 17, "localnam": 17, "nodevalu": [17, 19], "name1": 17, "value1": 17, "name2": 17, "value2": 17, "frameown": [17, 19], "documenttyp": [17, 19], "publicid": [17, 19], "systemid": [17, 19], "internalsubset": 17, "xml": 17, "fragment": [17, 28, 33, 37, 39], "templat": [17, 19, 39], "crbug": [17, 39, 42, 44, 45, 51], "937746": 17, "htmlimport": 17, "distribut": [17, 28, 38], "svg": 17, "red": [17, 57], "255": 17, "green": 17, "blue": 17, "clock": [17, 53], "wise": 17, "outsid": [17, 38, 60, 61], "coordin": [17, 19, 30, 33, 38, 57], "target_node_id": 17, "insert_before_node_id": 17, "deep": [17, 37, 45], "place": [17, 49], "drop": [17, 30, 36, 37], "targetnodeid": 17, "clone": 17, "pierc": [17, 18], "larger": [17, 18], "travers": [17, 18], "search_id": 17, "getsearchresult": 17, "include_whitespac": 17, "whitespac": [17, 58], "anchor_specifi": 17, "interleav": 17, "container_nam": 17, "containernam": 17, "null": [17, 35, 38, 42, 54], "might": [17, 19, 35, 37, 38, 45, 57, 59], "multipl": [17, 28, 29, 35, 37, 38, 42, 45, 49, 51, 57, 59], "caller": [17, 24], "certain": [17, 43, 59], "design": [17, 27], "capturesnapshot": [17, 19], "include_user_agent_shadow_dom": 17, "ignore_pointer_events_non": 17, "ua": [17, 19, 21, 37, 39], "pointer": [17, 30], "As": 17, "computed_styl": [17, 19], "outer": [17, 37, 45], "relayout": 17, "from_index": 17, "to_index": 17, "fromindex": 17, "toindex": 17, "therefor": [17, 57, 59], "hide": [17, 38], "undoabl": 17, "move": [17, 30, 35, 57], "cancelsearch": 17, "plain": 17, "xpath": 17, "searchid": 17, "resultcount": 17, "fixm": 17, "proprietari": 17, "queryselector": [17, 57], "queryselectoral": [17, 57, 59], "undon": 17, "down": [17, 57, 59], "seri": [17, 25, 53], "alreadi": [7, 17, 37, 49, 57], "exactli": [17, 25, 37, 45], "objectid": [17, 38, 45], "center": 17, "similar": [17, 23, 44, 51, 59], "scrollintoview": 17, "Will": [17, 45, 50], "deriv": [17, 44], "captur": [17, 27, 33, 38, 39, 45, 57, 59], "getnodestacktrac": 17, "outer_html": 17, "ttribut": 17, "domcharacterdatamodifi": 17, "domnodeinsert": 17, "domnoderemov": 17, "want": [17, 33, 57, 59, 60, 61], "popul": [17, 37, 45], "trustedtyp": [18, 59], "polici": [18, 21, 37, 39, 45], "usecaptur": 18, "setdombreakpoint": 18, "target_nam": 18, "eventtarget": 18, "facilit": 19, "snapshot": [19, 28, 33, 39], "textarea": 19, "radio": 19, "checkbox": 19, "getsnapshot": 19, "natur": [19, 57], "srcset": 19, "post": [19, 25, 37], "regard": 19, "stabl": 19, "textbox": 19, "surrog": 19, "utf": [19, 37], "layoutobject": 19, "layouttext": 19, "paint": [19, 33, 38, 39, 41], "includepaintord": 19, "whitelist": 19, "tabl": 19, "rare": 19, "flatten": [19, 51], "absolut": [19, 21, 23, 38, 49, 59], "includedomrect": 19, "blend": 19, "overlap": 19, "opac": 19, "include_paint_ord": 19, "include_dom_rect": 19, "include_blended_background_color": 19, "include_text_color_opac": 19, "white": 19, "offsetrect": 19, "clientrect": 19, "achiev": 19, "computed_style_whitelist": 19, "include_event_listen": 19, "include_user_agent_shadow_tre": 19, "cachedstoragearea": 20, "environ": [21, 45], "area": [21, 23, 30, 38, 39, 42], "split": 21, "postur": 21, "pauseifnetworkfetchespend": 21, "sec": [21, 37, 41], "ch": [21, 37, 39], "ambient": [21, 39], "linear": 21, "acceler": [21, 30, 50], "tell": [21, 37, 45], "setdevicemetricsoverrid": 21, "setdevicepostureoverrid": 21, "again": [21, 35, 44, 57, 59, 60, 61], "factor": [21, 30, 39, 47], "dark": [21, 38], "theme": [21, 38], "throttl": [12, 21, 37], "slow": 21, "slowdown": 21, "2x": 21, "device_scale_factor": [21, 39], "screen_width": [21, 39], "screen_height": [21, 39], "position_x": [21, 39], "position_i": [21, 39], "dont_set_visible_s": [21, 39], "screen_orient": [21, 39], "display_featur": 21, "device_postur": 21, "innerwidth": [21, 39], "innerheight": [21, 39], "10000000": [21, 39], "autos": [21, 39], "reli": [21, 39, 55], "setvisibles": [21, 39], "multi": [21, 45], "segment": 21, "off": [7, 21, 51, 60, 61], "foldabl": 21, "coooki": 21, "gestur": [21, 30, 37, 39], "vision": 21, "defici": 21, "effort": 21, "physiolog": 21, "accur": [21, 43], "medic": 21, "recogn": 21, "simul": [7, 21, 36], "latitud": [21, 39], "longitud": [21, 39], "accuraci": [21, 39], "unavail": [21, 39], "hardware_concurr": 21, "hardwar": [21, 54], "concurr": 21, "is_user_act": 21, "is_screen_unlock": 21, "isuseract": 21, "isscreenunlock": 21, "icu": 21, "en_u": 21, "rather": [21, 33, 39, 56], "real": [21, 54, 55], "attempt": [21, 37, 42, 59], "setsensoroverrideen": 21, "timezone_id": 21, "timezon": 21, "dep": 21, "git": 21, "faee8bc70570192d82d2978a71e2a615788597d1": 21, "misc": 21, "metazon": 21, "txt": 21, "max_touch_point": 21, "accept_languag": [21, 37], "user_agent_metadata": [21, 37], "useragentdata": [21, 37], "budget": [0, 21, 49], "max_virtual_time_task_starvation_count": 21, "initial_virtual_tim": 21, "synthet": 21, "mani": [21, 33, 37, 57, 58, 59], "elaps": 21, "deadlock": 21, "Not": [21, 26, 30, 37, 39], "android": 21, "dip": [21, 30, 37, 38, 39, 51], "similarli": [22, 25], "pipe": 23, "unpack": [23, 60, 61], "filesystem": [0, 1, 23], "cli": 23, "dialog": [24, 25, 37, 39], "ever": [24, 57, 59], "rp": 24, "signin": 24, "signup": 24, "accountchoos": 24, "autoreauthn": 24, "confirmidplogin": 24, "confirmidplogincontinu": 24, "errorgotit": 24, "errormoredetail": 24, "termsofservic": 24, "privacypolici": 24, "identityrequestaccount": 24, "dialog_button": 24, "trigger_cooldown": 24, "disable_rejection_delai": 24, "promis": [24, 37, 45], "unimport": 24, "fedidcg": 24, "account_index": 24, "account_url_typ": 24, "cooldown": 24, "show": [24, 28, 38, 39, 45, 59, 60, 61], "recent": [24, 59], "dismiss": [24, 39], "primarili": 24, "appropri": [24, 30, 49], "below": [24, 39, 45], "let": [25, 35, 45, 59, 60, 61], "substitut": 25, "stage": [25, 27, 37], "intercept": [25, 37, 39, 55], "wildcard": [25, 37], "escap": [25, 37], "backslash": [25, 37], "equival": [25, 37, 55, 59], "author": [25, 37], "challeng": [25, 37], "401": [25, 37], "407": [25, 37], "digest": [25, 37], "decis": [25, 37], "defer": [25, 37, 39], "popup": [25, 37], "possibli": [25, 37], "providecredenti": [25, 37], "intercept_respons": 25, "hop": 25, "response_phras": 25, "binary_response_head": 25, "responsecod": 25, "phrase": [25, 47], "separ": [25, 35, 37, 38, 47, 49], "prefer": [25, 30, 39, 44, 59], "abov": [25, 39, 59], "unless": [25, 45, 59], "utf8": 25, "transmit": [25, 37], "auth_challenge_respons": [25, 37], "handle_auth_request": 25, "failrequest": [25, 37], "fulfillrequest": [25, 37], "continuerequest": [25, 37], "continuewithauth": 25, "fetchrequest": 25, "error_reason": [25, 37], "server": [25, 37, 39, 48, 49, 51], "mutual": [25, 45], "takeresponsebodyforinterceptionasstream": 25, "_redirect": 25, "received_": 25, "differenti": 25, "presenc": [25, 49, 55], "base64encod": [25, 32, 37, 39], "headersreceiv": [25, 37], "sequenti": [25, 32, 37, 51], "getresponsebodi": 25, "responseerrorreason": 25, "responsestatuscod": 25, "distinguish": [25, 37, 43], "301": 25, "302": 25, "303": 25, "307": 25, "308": 25, "redirectedrequestid": 25, "networkid": 25, "handleauthrequest": 25, "encount": [25, 37, 39], "headless": [27, 51, 56, 58, 59, 60], "compress": [27, 37, 39, 53], "speed": [27, 30, 39, 60, 61], "frame_time_tick": 27, "no_display_upd": 27, "beginfram": [27, 51], "beginframecontrol": 27, "compositor": 27, "draw": [27, 38], "goo": 27, "gle": 27, "timetick": 27, "uptim": 27, "60": 27, "666": 27, "commit": [27, 30, 39], "drawn": 27, "onto": 27, "visual": [27, 39, 60, 61], "hasdamag": 27, "damag": 27, "thu": [27, 37, 59], "diagnost": 27, "screenshotdata": 27, "taken": [27, 28, 43], "rtype": [27, 39, 57, 59], "callsit": [28, 43], "alloc": [28, 36, 45], "across": [28, 36, 45, 50], "startsampl": [28, 36], "stopsampl": 28, "heap_object_id": 28, "sampling_interv": [28, 36], "include_objects_collected_by_major_gc": 28, "include_objects_collected_by_minor_gc": 28, "averag": [28, 36], "poisson": 28, "32768": 28, "By": 28, "still": [28, 37, 39, 42, 59], "aliv": 28, "getsamplingprofil": 28, "steadi": 28, "instruct": 28, "major": [28, 30], "gc": 28, "temporari": [28, 32, 37], "minor": 28, "tune": 28, "latenc": [28, 37], "track_alloc": 28, "report_progress": 28, "treat_global_objects_as_root": 28, "capture_numeric_valu": 28, "expose_intern": 28, "exposeintern": 28, "numer": [28, 35, 50], "triplet": 28, "regularli": 28, "seen": 28, "unsign": 29, "increment": [29, 41, 55], "primari": [29, 49, 50], "key_rang": 29, "entriescount": 29, "keygeneratorvalu": 29, "autoincr": 29, "index_nam": 29, "objectstoredataentri": 29, "hasmor": 29, "proce": [30, 32], "toward": 30, "bottom": [30, 39], "radiu": 30, "rotat": 30, "tangenti": 30, "pressur": [21, 30, 36, 39], "plane": 30, "stylu": 30, "degre": 30, "90": 30, "tiltx": 30, "tilti": 30, "clockwis": 30, "pen": 30, "359": 30, "utc": [30, 37], "januari": [30, 37, 60, 61], "1970": [30, 37], "mime": 30, "drag": [30, 57], "mimetyp": [30, 37, 39, 44], "uri": [30, 37], "filenam": [30, 57, 59], "dispatch": 30, "alt": [30, 57], "ctrl": [30, 57], "shift": [30, 33, 38, 39, 41, 57], "8": [30, 37, 39, 55, 57, 60, 61], "unmodified_text": 30, "key_identifi": 30, "windows_virtual_key_cod": 30, "native_virtual_key_cod": 30, "auto_repeat": 30, "is_keypad": 30, "is_system_kei": 30, "keyboard": [30, 39], "keyup": 30, "rawkeydown": 30, "u": [26, 30, 35, 38, 58, 59, 60], "0041": 30, "keya": 30, "altgr": 30, "keypad": 30, "selectal": 30, "execcommand": 30, "nsstandardkeybindingrespond": 30, "editor_command_nam": 30, "h": [30, 35, 37, 53], "click_count": 30, "delta_x": 30, "delta_i": 30, "pointer_typ": 30, "wheel": 30, "touch_point": 30, "touchend": 30, "touchcancel": 30, "touchstart": 30, "touchmov": 30, "per": [30, 33, 35, 37, 39, 45, 47, 49, 50, 51, 60, 61], "compar": [30, 45, 59], "sequenc": [30, 53, 55], "selection_start": 30, "selection_end": 30, "replacement_start": 30, "replacement_end": 30, "im": 30, "imecommitcomposit": 30, "imesetcomposit": 30, "composit": [30, 33], "doesn": [30, 38, 49], "emoji": 30, "directli": [26, 30, 57, 58], "dispatchdragev": 30, "scale_factor": 30, "relative_spe": 30, "gesture_source_typ": 30, "synthes": [30, 53], "pinch": 30, "period": 30, "800": 30, "x_distanc": 30, "y_distanc": 30, "x_overscrol": 30, "y_overscrol": 30, "prevent_fl": 30, "repeat_count": 30, "repeat_delay_m": 30, "interaction_marker_nam": 30, "fling": 30, "swipe": 30, "250": 30, "tap_count": 30, "tap": 30, "touchdown": 30, "touchup": 30, "m": [30, 37], "50": [30, 57, 59], "doubl": [30, 57], "setinterceptdrag": 30, "output": [32, 54, 62], "blob": [32, 39, 42, 55], "eof": 32, "itself": [33, 37, 45, 57], "sticki": 33, "constraint": 33, "purpos": [33, 37, 55], "matrix": 33, "compositingreason": 33, "compositingreasonid": 33, "inspect": [33, 35, 38, 39, 45, 51, 54, 61], "compos": [33, 59], "snapshot_id": 33, "min_repeat_count": 33, "min_dur": 33, "clip_rect": 33, "replai": [33, 37], "from_step": 33, "to_step": 33, "bitmap": 33, "till": 33, "canva": 33, "medialogrecord": 35, "kmessag": 35, "sync": [0, 23, 35, 39, 53], "medialogmessagelevel": 35, "thing": [35, 59], "dvlog": 35, "pipelinestatu": 35, "soon": [35, 53], "howev": [35, 37, 57, 59], "awai": 35, "introduc": 35, "hopefulli": 35, "kmediapropertychang": 35, "kmediaeventtrigg": 35, "kmediaerror": 35, "pipelinestatuscod": 35, "pipeline_statu": 35, "potenti": [35, 37, 39, 49], "ie": [35, 59], "decodererror": 35, "windowserror": 35, "extra": [35, 37, 39, 56], "hresult": 35, "codec": [35, 50], "propvalu": 35, "congest": 35, "chronolog": 35, "decim": 36, "hexadecim": 36, "0x": 36, "prefix": 36, "oomintervent": 36, "purg": 36, "startup": 36, "jseventlisten": 36, "suppress": [36, 49], "suppress_random": 36, "random": [36, 60, 61], "perceiv": 37, "texttrack": 37, "signedexchang": 37, "cspviolationreport": 37, "loader": [37, 39], "timedout": 37, "accessdeni": 37, "connectionclos": 37, "connectionreset": 37, "connectionrefus": 37, "connectionabort": 37, "connectionfail": 37, "namenotresolv": 37, "internetdisconnect": 37, "addressunreach": 37, "blockedbycli": [37, 42], "blockedbyrespons": 37, "arbitrari": 37, "past": [37, 60, 61], "supposedli": 37, "samesit": 37, "tool": 37, "ietf": 37, "west": 37, "00": 37, "legaci": [37, 53], "abil": 37, "nonsecur": 37, "requesttim": 37, "baselin": 37, "proxi": [37, 51], "dn": 37, "ssl": [37, 47], "handshak": 37, "settl": 37, "respondwith": 37, "rout": 37, "verylow": 37, "veryhigh": 37, "referr": [37, 39], "postdata": 37, "too": [37, 51, 58], "individu": [25, 37, 39], "sct": 37, "unlik": [37, 39, 44, 45], "algorithm": [37, 38, 47], "tl": [37, 47], "quic": [37, 47], "exchang": [37, 47], "subject": [37, 47], "san": 37, "ip": 37, "ca": [37, 47], "compli": 37, "transpar": [37, 38, 39], "encrypt": [37, 39], "clienthello": 37, "ec": [37, 47], "dh": [37, 47], "aead": [37, 47], "signatureschem": 37, "subresourc": 37, "corp": 37, "disallowedbymod": 37, "invalidrespons": 37, "wildcardoriginnotallow": 37, "missingalloworiginhead": 37, "multiplealloworiginvalu": 37, "invalidalloworiginvalu": 37, "alloworiginmismatch": 37, "invalidallowcredenti": 37, "corsdisabledschem": 37, "preflightinvalidstatu": 37, "preflightdisallowedredirect": 37, "preflightwildcardoriginnotallow": 37, "preflightmissingalloworiginhead": 37, "preflightmultiplealloworiginvalu": 37, "preflightinvalidalloworiginvalu": 37, "preflightalloworiginmismatch": 37, "preflightinvalidallowcredenti": 37, "preflightmissingallowextern": 37, "preflightinvalidallowextern": 37, "preflightmissingallowprivatenetwork": 37, "preflightinvalidallowprivatenetwork": 37, "invalidallowmethodspreflightrespons": 37, "invalidallowheaderspreflightrespons": 37, "methoddisallowedbypreflightrespons": 37, "headerdisallowedbypreflightrespons": 37, "redirectcontainscredenti": 37, "insecureprivatenetwork": 37, "invalidprivatenetworkaccess": 37, "unexpectedprivatenetworkaccess": 37, "nocorsredirectmodenotfollow": 37, "preflightmissingprivatenetworkaccessid": 37, "preflightmissingprivatenetworkaccessnam": 37, "privatenetworkaccesspermissionunavail": 37, "privatenetworkaccesspermissiondeni": 37, "trust": [37, 49], "trust_token": 37, "srr": 37, "whom": 37, "alternativejobwonwithoutrac": 37, "alternativejobwonrac": 37, "mainjobwonrac": 37, "mappingmiss": 37, "dnsalpnh3jobwonwithoutrac": 37, "dnsalpnh3jobwonrac": 37, "unspecifiedreason": 37, "router": 37, "race": [37, 39], "reus": [37, 45], "matchedsourcetyp": 37, "matchedsourc": 37, "just": [37, 57, 58, 59, 60, 61], "payloaddata": 37, "visit": 37, "toplevelsit": 37, "sameparti": 37, "65535": 37, "unix": 37, "partit": 37, "secureonli": 37, "samesitestrict": 37, "samesitelax": 37, "samesiteunspecifiedtreatedaslax": 37, "samesitenoneinsecur": 37, "userprefer": 37, "thirdpartyphaseout": 37, "thirdpartyblockedinfirstpartyset": 37, "syntaxerror": 37, "schemenotsupport": 37, "overwritesecur": 37, "invaliddomain": 37, "invalidprefix": 37, "unknownerror": 37, "schemefulsamesitestrict": 37, "schemefulsamesitelax": 37, "schemefulsamesiteunspecifiedtreatedaslax": 37, "samepartyfromcrosspartycontext": 37, "samepartyconflictswithotherattribut": 37, "namevaluepairexceedsmaxs": 37, "disallowedcharact": 37, "nocookiecont": 37, "notonpath": 37, "domainmismatch": 37, "3pcd": 37, "exempt": 37, "userset": 37, "tpcdmetadata": 37, "tpcddeprecationtri": 37, "tpcdheurist": 37, "enterprisepolici": 37, "corsoptin": [], "sometim": [37, 56, 60, 61], "webpackag": 37, "yasskin": 37, "httpbi": 37, "impl": 37, "rfc": 37, "hex": [37, 38], "cert": 37, "sha256": 37, "cbor": 37, "signaturesig": 37, "signatureintegr": 37, "signaturecerturl": 37, "signaturecertsha256": 37, "signaturevalidityurl": 37, "signaturetimestamp": 37, "blockfrominsecuretomorepriv": 37, "warnfrominsecuretomorepriv": 37, "preflightblock": 37, "preflightwarn": 37, "sameorigin": [37, 39], "sameoriginallowpopup": 37, "restrictproperti": 37, "unsafenon": 37, "sameoriginpluscoep": 37, "restrictpropertiespluscoep": 37, "requirecorp": 37, "markedforremov": 37, "upload": [37, 57], "deliveri": 37, "made": [37, 45, 59], "later": [37, 45], "corb": 37, "setacceptedencod": 37, "raw_respons": 37, "isnavigationrequest": 37, "partitionkei": 37, "download_throughput": 37, "upload_throughput": 37, "connection_typ": 37, "packet_loss": 37, "packet_queue_length": 37, "packet_reord": 37, "internet": 37, "disconnect": [37, 51, 54], "throughput": 37, "webrtc": [37, 39], "packet": [7, 37], "loss": 37, "percent": 37, "queue": [12, 37], "packetreord": 37, "max_total_buffer_s": 37, "max_resource_buffer_s": 37, "max_post_data_s": 37, "buffer": [37, 41, 53, 54], "preserv": 37, "longest": 37, "getcooki": 37, "der": 37, "subfram": 37, "multipart": 37, "mandatori": 37, "withcredenti": 37, "bypass": [37, 39, 45, 51], "toggl": [37, 39], "cache_dis": 37, "overwrit": [37, 58], "continueinterceptedrequest": 37, "datalength": 37, "net_error_list": 37, "likewis": 37, "auth": 37, "redirectrespons": 37, "webtransport": [37, 39], "dispos": [37, 51], "latter": 37, "wire": 37, "proper": [37, 59], "space": [37, 38], "establish": 37, "correct": [37, 59], "200": [37, 53, 57, 60, 61], "304": 37, "serializ": [37, 45, 58, 59], "103": 37, "earli": 37, "common": 37, "succeed": [37, 53], "alreadyexist": 37, "signifi": 37, "und": 37, "preemptiv": 37, "wbn": 37, "bundl": [37, 44, 49], "webpag": [37, 39, 59], "webbundl": 37, "And": 37, "enablereportingapi": 37, "atop": 38, "outlin": [38, 39], "grid": 38, "cell": 38, "ruler": 38, "shown": [38, 39, 47, 60, 61], "neg": 38, "rowlinecolor": 38, "columnlinecolor": 38, "row": 38, "rowlinedash": 38, "columnlinedash": 38, "gap": 38, "hatch": 38, "flex": 38, "justifi": 38, "align": 38, "arrow": [17, 38, 57], "grew": 38, "shrank": 38, "solid": 38, "tooltip": 38, "a11i": 38, "ratio": [38, 39], "snapport": 38, "snap": 38, "dual": 38, "hing": 38, "bar": [38, 39], "app": [38, 39, 44], "cover": [38, 43], "searchfornod": 38, "searchforuashadowdom": 38, "captureareascreenshot": 38, "showdist": 38, "include_dist": 38, "include_styl": 38, "viewer": 38, "content_outline_color": 38, "reliabl": [38, 45], "highlightnod": 38, "highlight_config": 38, "respect": [38, 45, 49], "source_order_config": 38, "enter": [38, 39], "hover": [38, 57], "container_query_highlight_config": 38, "flex_node_highlight_config": 38, "fp": [38, 50], "counter": [36, 38, 43, 55], "grid_node_highlight_config": 38, "hinge_config": 38, "hidehing": 38, "isolated_element_highlight_config": 38, "bottleneck": 38, "scroll_snap_highlight_config": 38, "vital": [], "window_controls_overlay_config": 38, "setinspectmod": 38, "ask": [38, 60, 61], "parentisad": 39, "createdbyadscript": 39, "matchedblockingrul": 39, "securelocalhost": 39, "insecureschem": 39, "insecureancestor": 39, "notisol": 39, "notisolatedfeaturedis": 39, "sharedarraybuff": 39, "sharedarraybufferstransferallow": 39, "performancemeasurememori": 39, "performanceprofil": 39, "permissions_polici": 39, "permissions_policy_featur": 39, "brows": [39, 49, 57, 59], "topic": 39, "dpr": 39, "downlink": 39, "ect": 39, "reduc": 39, "motion": 39, "rtt": 39, "arch": 39, "socket": 39, "interest": [39, 49], "cohort": 39, "otp": 39, "publickei": 39, "wake": 39, "lock": 39, "unrestrict": 39, "xr": 39, "spatial": 39, "iframeattribut": 39, "infencedframetre": 39, "inisolatedapp": 39, "trial": [39, 61], "notsupport": [39, 42], "wrongorigin": 39, "invalidsignatur": 39, "wrongvers": 39, "featuredis": 39, "tokendis": 39, "featuredisabledforus": 39, "unknowntri": 39, "validtokennotprovid": 39, "osnotsupport": 39, "trialnotallow": 39, "parsedtoken": 39, "parsabl": 39, "take": [39, 45, 47, 49, 59], "suffix": 39, "googl": 39, "co": 39, "uk": 39, "gate": 39, "histori": [39, 59], "screencast": 39, "swap": 39, "pare": 39, "recover": 39, "ideal": 39, "sansserif": 39, "formsubmissionget": 39, "formsubmissionpost": 39, "httpheaderrefresh": 39, "scriptiniti": 39, "metatagrefresh": 39, "pageblockinterstiti": 39, "anchorclick": 39, "currenttab": 39, "newtab": 39, "newwindow": 39, "64": [39, 55], "suitabl": [39, 59], "noreferr": 39, "noreferrerwhendowngrad": 39, "originwhencrossorigin": 39, "strictorigin": 39, "strictoriginwhencrossorigin": 39, "unsafeurl": 39, "compil": [39, 45], "producecompilationcach": 39, "won": [39, 58, 59, 60], "comparison": 39, "mimic": 39, "understand": 39, "emb": 39, "sharetargetparam": 39, "experi": [39, 55, 59], "todo": [39, 42, 44, 60], "1231886": 39, "incub": 39, "gh": 39, "autoaccept": 39, "autoreject": 39, "autooptout": 39, "backforwardcacherestor": 39, "notprimarymainfram": 39, "backforwardcachedis": 39, "relatedactivecontentsexist": 39, "httpstatusnotok": 39, "schemenothttporhttp": 39, "wasgrantedmediaaccess": 39, "disableforrenderframehostcal": 39, "domainnotallow": 39, "httpmethodnotget": 39, "subframeisnavig": 39, "cachelimit": 39, "javascriptexecut": 39, "rendererprocesskil": [39, 42], "rendererprocesscrash": [39, 42], "schedulertrackedfeatureus": 39, "conflictingbrowsinginst": 39, "cacheflush": 39, "serviceworkerversionactiv": 39, "sessionrestor": 39, "serviceworkerpostmessag": 39, "enteredbackforwardcachebeforeserviceworkerhostad": 39, "renderframehostreused_samesit": 39, "renderframehostreused_crosssit": 39, "serviceworkerclaim": 39, "ignoreeventandevict": 39, "haveinnercont": 39, "timeoutputtingincach": 39, "backforwardcachedisabledbylowmemori": 39, "backforwardcachedisabledbycommandlin": 39, "networkrequestdatapipedrainedasbytesconsum": 39, "networkrequestredirect": 39, "networkrequesttimeout": 39, "networkexceedsbufferlimit": 39, "navigationcancelledwhilerestor": 39, "notmostrecentnavigationentri": 39, "backforwardcachedisabledforprerend": 39, "useragentoverridediff": 39, "foregroundcachelimit": 39, "browsinginstancenotswap": 39, "backforwardcachedisabledfordeleg": 39, "unloadhandlerexistsinmainfram": 39, "unloadhandlerexistsinsubfram": 39, "serviceworkerunregistr": 39, "cachecontrolnostor": 39, "cachecontrolnostorecookiemodifi": 39, "cachecontrolnostorehttponlycookiemodifi": 39, "noresponsehead": 39, "activationnavigationsdisallowedforbug1234857": 39, "errordocu": 39, "fencedframesembedd": 39, "cookiedis": 39, "httpauthrequir": 39, "cookieflush": 39, "broadcastchannelonmessag": 39, "webviewsettingschang": 39, "webviewjavascriptobjectchang": 39, "webviewmessagelistenerinject": 39, "webviewsafebrowsingallowlistchang": 39, "webviewdocumentstartjavascriptchang": 39, "mainresourcehascachecontrolnostor": 39, "mainresourcehascachecontrolnocach": 39, "subresourcehascachecontrolnostor": 39, "subresourcehascachecontrolnocach": 39, "containsplugin": 39, "documentload": 39, "outstandingnetworkrequestoth": 39, "requestedmidipermiss": 39, "requestedaudiocapturepermiss": 39, "requestedvideocapturepermiss": 39, "requestedbackforwardcacheblockedsensor": 39, "requestedbackgroundworkpermiss": 39, "broadcastchannel": 39, "webxr": 39, "weblock": 39, "webhid": 39, "webshar": 39, "requestedstorageaccessgr": 39, "webnfc": 39, "outstandingnetworkrequestfetch": 39, "outstandingnetworkrequestxhr": 39, "appbann": 39, "webdatabas": 39, "pictureinpictur": 39, "speechrecogn": 39, "idlemanag": 39, "paymentmanag": 39, "speechsynthesi": 39, "keyboardlock": 39, "webotpservic": 39, "outstandingnetworkrequestdirectsocket": 39, "injectedjavascript": 39, "injectedstylesheet": 39, "keepaliverequest": 39, "indexeddbev": 39, "jsnetworkrequestreceivedcachecontrolnostoreresourc": 39, "webrtcsticki": 39, "webtransportsticki": 39, "websocketsticki": 39, "smartcard": 39, "livemediastreamtrack": 39, "unloadhandl": 39, "parserabort": 39, "contentsecurityhandl": 39, "contentwebauthenticationapi": 39, "contentfilechoos": 39, "contentseri": 39, "contentfilesystemaccess": 39, "contentmediadevicesdispatcherhost": 39, "contentwebbluetooth": 39, "contentwebusb": 39, "contentmediasessionservic": 39, "contentscreenread": 39, "embedderpopupblockertabhelp": 39, "embeddersafebrowsingtriggeredpopupblock": 39, "embeddersafebrowsingthreatdetail": 39, "embedderappbannermanag": 39, "embedderdomdistillerviewersourc": 39, "embedderdomdistillerselfdeletingrequestdeleg": 39, "embedderoominterventiontabhelp": 39, "embedderofflinepag": 39, "embedderchromepasswordmanagerclientbindcredentialmanag": 39, "embedderpermissionrequestmanag": 39, "embeddermodaldialog": 39, "embedderextens": 39, "embedderextensionmessag": 39, "embedderextensionmessagingforopenport": 39, "embedderextensionsentmessagetocachedfram": 39, "requestedbywebviewcli": 39, "supportpend": 39, "pagesupportneed": 39, "blockag": 39, "anonym": [39, 45], "seed": 39, "addscripttoevaluateonnewdocu": [39, 45], "world_nam": 39, "run_immedi": 39, "world": [39, 45], "bring": 39, "from_surfac": 39, "capture_beyond_viewport": 39, "beyond": [39, 43], "mhtml": 39, "tri": [39, 45], "hook": [39, 51], "minidump": 39, "grant_univeral_access": 39, "univers": 39, "power": [7, 39, 59], "caution": 39, "cookie_nam": 39, "cook": 39, "webappenablemanifestid": 39, "appid": 39, "recommendedid": 39, "manifest_id": [39, 44], "manifestid": [39, 44], "csslayoutviewport": 39, "cssvisualviewport": 39, "contents": 39, "scrollabl": [17, 39], "dp": 39, "csscontents": 39, "fact": 39, "currentindex": 39, "prompt_text": 39, "onbeforeunload": 39, "intend": [39, 45], "errortext": 39, "entry_id": 39, "landscap": 39, "display_header_foot": 39, "print_background": 39, "paper_width": 39, "paper_height": 39, "margin_top": 39, "margin_bottom": 39, "margin_left": 39, "margin_right": 39, "page_rang": 39, "header_templ": 39, "footer_templ": 39, "prefer_css_page_s": 39, "transfer_mod": [39, 53], "generate_tagged_pdf": 39, "generate_document_outlin": 39, "pdf": 39, "paper": 39, "footer": 39, "graphic": [39, 50], "inch": 39, "5": [39, 57], "11": [39, 60, 61], "1cm": 39, "13": 39, "quietli": 39, "cap": 39, "greater": 39, "pagenumb": 39, "totalpag": 39, "span": [39, 59], "headertempl": 39, "fit": [39, 45], "choic": [39, 60, 61], "returnasstream": [39, 53], "append": 39, "ignore_cach": [39, 59], "script_to_evaluate_on_load": [39, 59], "refresh": 39, "dataurl": 39, "accident": [39, 45], "unintend": 39, "removescripttoevaluateonnewdocu": 39, "acknowledg": 39, "for_script": 39, "chooser": 39, "lifecycl": 39, "is_allow": 39, "short": [39, 47, 57, 60, 61], "1440085": 39, "doc": [26, 39], "d": [39, 58, 59], "12hvmfxyj5jc": 39, "ejr5omwsa2bqtjsbgglki6ziyx0_wpa": 39, "puppet": 39, "whatwg": 39, "multipag": 39, "rph": 39, "transact": 39, "sctn": [39, 55], "spc": 39, "max_width": 39, "max_height": 39, "every_nth_fram": 39, "n": [39, 57], "th": 39, "runifwaitingfordebugg": [39, 51], "interceptfilechoos": 39, "interstiti": 39, "iff": [39, 42, 45, 53], "act": [39, 59], "engag": 39, "stall": 39, "handlejavascriptdialog": 39, "bfcach": 39, "backforwardcach": 39, "startscreencast": 39, "setgeneratecompilationcach": 39, "time_domain": 40, "performanceobserv": 41, "largest_contentful_paint": 41, "trim": 41, "instabl": 41, "layout_shift": 41, "score": 41, "performanceentri": 41, "entrytyp": 41, "lifetim": [41, 54], "reportperformancetimelin": 41, "speculationruleset": 42, "textcont": 42, "nav": 42, "specul": 42, "1425354": 42, "sourceisnotjsonobject": 42, "invalidrulesskip": 42, "although": [42, 59], "prefetchwithsubresourc": 42, "href": [42, 59, 61], "finalstatu": 42, "prerender2": 42, "lowenddevic": 42, "invalidschemeredirect": 42, "invalidschemenavig": 42, "navigationrequestblockedbycsp": 42, "mainframenavig": 42, "mojobinderpolici": 42, "triggerdestroi": 42, "navigationnotcommit": 42, "navigationbadhttpstatu": 42, "clientcertrequest": 42, "navigationrequestnetworkerror": 42, "cancelallhostsfortest": 42, "didfailload": 42, "sslcertificateerror": 42, "loginauthrequest": 42, "uachangerequiresreload": 42, "audiooutputdevicerequest": 42, "mixedcont": 42, "triggerbackground": 42, "memorylimitexceed": 42, "datasaveren": 42, "triggerurlhaseffectiveurl": 42, "activatedbeforestart": 42, "inactivepagerestrict": 42, "startfail": 42, "timeoutbackground": 42, "crosssiteredirectininitialnavig": 42, "crosssitenavigationininitialnavig": 42, "samesitecrossoriginredirectnotoptinininitialnavig": 42, "samesitecrossoriginnavigationnotoptinininitialnavig": 42, "activationnavigationparametermismatch": 42, "activatedinbackground": 42, "embedderhostdisallow": 42, "activationnavigationdestroyedbeforesuccess": 42, "tabclosedbyusergestur": 42, "tabclosedwithoutusergestur": 42, "primarymainframerendererprocesscrash": 42, "primarymainframerendererprocesskil": 42, "activationframepolicynotcompat": 42, "preloadingdis": 42, "batterysaveren": 42, "activatedduringmainframenavig": 42, "preloadingunsupportedbywebcont": 42, "crosssiteredirectinmainframenavig": 42, "crosssitenavigationinmainframenavig": 42, "samesitecrossoriginredirectnotoptininmainframenavig": 42, "samesitecrossoriginnavigationnotoptininmainframenavig": 42, "memorypressureontrigg": 42, "memorypressureaftertrigg": 42, "prerenderingdisabledbydevtool": 42, "speculationruleremov": 42, "activatedwithauxiliarybrowsingcontext": 42, "maxnumofrunningeagerprerendersexceed": 42, "maxnumofrunningnoneagerprerendersexceed": 42, "maxnumofrunningembedderprerendersexceed": 42, "prerenderingurlhaseffectiveurl": 42, "redirectedprerenderingurlhaseffectiveurl": 42, "activationurlhaseffectiveurl": 42, "javascriptinterfacead": 42, "javascriptinterfaceremov": 42, "allprerenderingcancel": 42, "preloadingtriggeringoutcom": 42, "1384419": 42, "revisit": 42, "aren": 42, "prefetchallow": 42, "prefetchfailedineligibleredirect": 42, "prefetchfailedinvalidredirect": 42, "prefetchfailedmimenotsupport": 42, "prefetchfailedneterror": 42, "prefetchfailednon2xx": 42, "prefetchfailedperpagelimitexceed": [], "prefetchevictedaftercandidateremov": 42, "prefetchevictedfornewerprefetch": 42, "prefetchheldback": 42, "prefetchineligibleretryaft": 42, "prefetchisprivacydecoi": 42, "prefetchisstal": 42, "prefetchnoteligiblebrowsercontextofftherecord": 42, "prefetchnoteligibledatasaveren": 42, "prefetchnoteligibleexistingproxi": 42, "prefetchnoteligiblehostisnonuniqu": 42, "prefetchnoteligiblenondefaultstoragepartit": 42, "prefetchnoteligiblesamesitecrossoriginprefetchrequiredproxi": 42, "prefetchnoteligibleschemeisnothttp": 42, "prefetchnoteligibleuserhascooki": 42, "prefetchnoteligibleuserhasservicework": 42, "prefetchnoteligiblebatterysaveren": 42, "prefetchnoteligiblepreloadingdis": 42, "prefetchnotfinishedintim": 42, "prefetchnotstart": 42, "prefetchnotusedcookieschang": 42, "prefetchproxynotavail": 42, "prefetchresponseus": 42, "prefetchsuccessfulbutnotus": 42, "prefetchnotusedprobefail": 42, "mismatch": 42, "upsert": 42, "give": 42, "mojo": 42, "incompat": 42, "deoptim": 43, "microsecond": 43, "adjac": 43, "starttim": 43, "insid": 43, "granular": 43, "incomplet": 43, "garbag": [36, 43, 53], "call_count": 43, "allow_triggered_upd": 43, "precis": 43, "unnecessari": 43, "profileend": 43, "takeprecisecoverag": 43, "trig": 43, "replica": 44, "crsrc": 44, "web_appl": 44, "web_app_os_integration_st": 44, "drc": 44, "9910d3be894c8f142c977ba1023f30a656bc13fc": 44, "l": 44, "67": 44, "iana": 44, "assign": [44, 51, 58, 60, 61], "xhtml": 44, "link_captur": 44, "display_mod": 44, "unrecogn": 44, "desktoppwaslinkcapturingwithscopeextens": 44, "webappenablescopeextens": 44, "linkcaptur": 44, "339453269": 44, "chromeo": 44, "yet": [44, 51], "o": [44, 50, 53, 58], "webapp": 44, "commonli": 44, "dev": 44, "learn": 44, "badgecount": 44, "install_url_or_bundle_url": 44, "install_url": 44, "iwa": 44, "337872319": 44, "meet": 44, "swbn": 44, "regardless": [44, 49], "allowlist": 44, "attachtotarget": [44, 51], "339454034": 44, "maintain": [45, 49], "generatepreview": 45, "returnbyvalu": 45, "maxnodedepth": 45, "includeshadowtre": 45, "met": 45, "primit": 45, "stringifi": [45, 57], "nan": 45, "infin": 45, "bigint": 45, "liter": [45, 59], "sure": [45, 56, 57], "constructor": 45, "abbrevi": 45, "formatt": 45, "ml": 45, "hasbodi": 45, "bodygetterid": 45, "did": [45, 47], "accessor": 45, "getter": 45, "setter": 45, "convent": 45, "unserializ": 45, "dictionari": [45, 50, 58], "assert": [45, 55], "preced": 45, "debuggerid": 45, "execution_context_nam": 45, "executioncontextnam": 45, "unclear": 45, "bug": [45, 50], "1169639": 45, "executioncontext": 45, "worldnam": 45, "promise_object_id": 45, "strace": 45, "function_declar": 45, "unique_context_id": 45, "serialization_opt": 45, "overriden": 45, "await": [45, 56, 57, 60, 61], "objectgroup": 45, "contextid": 45, "persist_script": 45, "disable_break": 45, "repl_mod": 45, "allow_unsafe_eval_blocked_by_csp": 45, "uniquecontextid": 45, "offer": 45, "disablebreak": 45, "replmod": 45, "themselv": 45, "eval": 45, "settimeout": 45, "setinterv": 45, "callabl": [45, 59], "error_object_id": 45, "portion": 45, "useds": 45, "totals": 45, "own_properti": 45, "accessor_properties_onli": 45, "non_indexed_properties_onli": 45, "internalproperti": 45, "privateproperti": 45, "const": 45, "prototype_object_id": 45, "unsubscrib": 45, "getstacktrac": 45, "parentid": 45, "logger": 45, "unnam": 45, "unhandl": 45, "revok": 45, "weak": 47, "sha1": 47, "modern": 47, "obsolet": 47, "highest": 47, "badreput": 47, "safeti": 47, "tip": 47, "reput": 47, "answer": 47, "handlecertificateerror": 47, "cryptograph": 47, "last_chanc": 48, "force_update_on_page_load": 48, "protect": 49, "audienc": 49, "additionalbid": 49, "additionalbidwin": 49, "toplevelbid": 49, "topleveladditionalbid": 49, "configresolv": 49, "bidderj": 49, "bidderwasm": 49, "sellerj": 49, "biddertrustedsign": 49, "sellertrustedsign": 49, "documentaddmodul": 49, "documentselecturl": 49, "documentrun": 49, "documentset": 49, "documentappend": 49, "documentdelet": 49, "documentclear": 49, "documentget": 49, "workletset": 49, "workletappend": 49, "workletdelet": 49, "workletclear": 49, "workletget": 49, "workletkei": 49, "workletentri": 49, "workletlength": 49, "workletremainingbudget": 49, "headerset": 49, "headerappend": 49, "headerdelet": 49, "headerclear": 49, "entropi": 49, "selecturl": 49, "absenc": 49, "vari": 49, "uint32": 49, "internalerror": 49, "insufficientsourcecapac": 49, "insufficientuniquedestinationcapac": 49, "excessivereportingorigin": 49, "prohibitedbybrowserpolici": 49, "successnois": 49, "destinationreportinglimitreach": 49, "destinationgloballimitreach": 49, "destinationbothlimitsreach": 49, "reportingoriginspersitelimitreach": 49, "exceedsmaxchannelcapac": 49, "exceedsmaxtriggerstatecardin": 49, "destinationperdayreportinglimitreach": 49, "successdroppedlowerprior": 49, "nocapacityforattributiondestin": 49, "nomatchingsourc": 49, "excessiveattribut": 49, "prioritytoolow": 49, "neverattributedsourc": 49, "nomatchingsourcefilterdata": 49, "nomatchingconfigur": 49, "excessivereport": 49, "falselyattributedsourc": 49, "reportwindowpass": 49, "notregist": 49, "reportwindownotstart": 49, "nomatchingtriggerdata": 49, "nohistogram": 49, "insufficientbudget": 49, "websit": 49, "cctld": 49, "issuerorigin": 49, "intact": 49, "turtledov": 49, "dictdef": 49, "generatebidinterestgroup": 49, "expirationtim": 49, "lifetimem": 49, "joiningorigin": 49, "overrideact": 49, "usagebreakdown": 49, "quota_s": 49, "quotas": 49, "ownerorigin": 49, "withdraw": 49, "nois": 49, "ignoreifpres": 49, "notifi": [49, 51, 54], "somethingbid": 49, "interestgroupauctionev": 49, "worklet": 49, "signal": [49, 53], "care": [49, 59], "wrap": [49, 53], "processor": 50, "pci": 50, "vendor": 50, "driver": [50, 60, 61], "sy": 50, "decod": 50, "vp9": 50, "framer": 50, "h264": 50, "fraction": [50, 53], "denomin": 50, "24": 50, "24000": 50, "1001": 50, "yuv": 50, "workaround": 50, "cumul": 50, "feature_st": 50, "modelnam": 50, "On": 50, "macbookpro": 50, "modelvers": 50, "10": [50, 59, 60, 61], "discoveri": 51, "devtools_agent_host_impl": 51, "cc": 51, "ss": 51, "q": 51, "f": [51, 58], "22": 51, "ktypetab": 51, "5b": 51, "5d": 51, "plan": 51, "eventu": [21, 51], "retir": 51, "991325": 51, "wait_for_debugger_on_start": 51, "filter_": 51, "monitor": 51, "setautoattach": 51, "dispose_on_detach": 51, "proxy_serv": 51, "proxy_bypass_list": 51, "origins_with_universal_network_access": 51, "incognito": 51, "unlimit": 51, "constitut": 51, "enable_begin_frame_control": 51, "for_tab": 51, "maco": 51, "foreground": 51, "binding_nam": 51, "channel": [51, 54], "bindingnam": 51, "onmessag": 51, "handlemessag": 51, "callback": [51, 54, 59, 61], "createbrowsercontext": 51, "auto_attach": 51, "autoattachrel": 51, "watch": 51, "discov": 51, "setdiscovertarget": 51, "detachfromtarget": 51, "got": 52, "dump": [53, 58, 59], "infra": 53, "kilobyt": 53, "mb": 53, "memory_dump_request_arg": 53, "memory_instrument": 53, "perfetto": 53, "perfettoconfig": 53, "sync_id": 53, "determinist": 53, "level_of_detail": 53, "dumpguid": 53, "buffer_usage_reporting_interv": 53, "stream_format": 53, "trace_config": 53, "perfetto_config": 53, "tracing_backend": 53, "reportev": 53, "protobuf": 53, "approxim": 53, "flush": 53, "lost": 53, "ring": 53, "graph": 54, "audiocontext": 54, "audiocontextst": 54, "clamp": 54, "max": [54, 59], "spent": 54, "divid": 54, "quantum": 54, "multipli": 54, "capac": 54, "glitch": 54, "varianc": 54, "outgo": 54, "largeblob": 55, "credblob": 55, "fidoalli": 55, "fido": 55, "v2": 55, "rd": 55, "20201208": 55, "minpinlength": 55, "p": [55, 60, 61], "20210615": 55, "prf": 55, "succe": 55, "backup": 55, "elig": 55, "BE": 55, "ecdsa": 55, "pkc": 55, "defaultbackupelig": 55, "defaultbackupst": 55, "enable_ui": 55, "demo": 55, "closer": 55, "is_bogus_signatur": 55, "is_bad_uv": 55, "is_bad_up": 55, "isbogussignatur": 55, "isbaduv": 55, "isbadup": 55, "uv": 55, "filepath": 56, "dat": 56, "export": 56, "requests_style_cooki": 56, "get_al": 56, "requests_cookie_format": 56, "kwarg": [56, 58, 59], "usual": [56, 57], "nodriv": [56, 58, 59, 60], "besid": 56, "your": [56, 59, 61], "under": [26, 56, 59], "know": 56, "__init__": 56, "stubborn": 56, "correctli": 56, "kill": 56, "classmethod": 56, "browser_executable_path": [56, 58, 60], "cookiejar": 56, "especi": [56, 59], "union": [56, 57, 58, 59], "alia": [56, 59], "welcom": [56, 59], "safest": [56, 59], "max_column": 56, "word": 57, "_node": [57, 59], "opbject": 57, "seper": [57, 60], "quit": [57, 59], "expens": [57, 59], "advis": 57, "bunch": [57, 59], "js_function": 57, "eg": [57, 59], "elem": [57, 60, 61], "blabla": 57, "consolelog": 57, "myfunct": 57, "ab": 57, "_until_ev": 57, "atm": 57, "mouseov": 57, "cours": 57, "100px": 57, "200px": 57, "look": 57, "slower": [57, 59], "smooth": 57, "stuck": [57, 59], "py": 57, "meth": 57, "keystrok": 57, "rn": 57, "spacebar": 57, "wonder": 57, "file_path": 57, "needl": 57, "sai": [57, 60, 61], "fileinputel": 57, "temp": 57, "myuser": 57, "lol": 57, "gif": 57, "often": 57, "concaten": 57, "runtimeerror": 57, "rais": [57, 58, 59], "pathlik": [57, 59], "half": [57, 59], "dot": [57, 58], "coord": 57, "folder": [57, 58, 59, 60, 61], "desir": [57, 59], "html5": 57, "videoel": 57, "extension_path": 58, "crx": 58, "built": 58, "_contradict": 58, "AND": 58, "notat": 58, "obj": 58, "snake_cas": 58, "hyphen": 58, "underscor": 58, "_": 58, "recurs": 58, "shallow": 58, "els": 58, "v": 58, "keyerror": 58, "lifo": 58, "lack": 58, "factori": 58, "mechan": 59, "much": 59, "someth": [59, 62], "ll": [59, 60], "yoururlher": 59, "build": 59, "combo": 59, "consum": 59, "luckili": 59, "whole": 59, "pick": 59, "help": 59, "probabl": 59, "thousand": 59, "stuff": 59, "hood": 59, "breath": 59, "oftentim": 59, "faster": 59, "easili": 59, "craft": 59, "THE": 59, "realli": 59, "namespac": 59, "event_type_or_domain": 59, "traffic": 59, "coroutin": 59, "lamba": 59, "lambda": [59, 60, 61], "crazi": 59, "moduletyp": 59, "kw": 59, "return_enclosing_el": 59, "tremend": 59, "tag_hint": 59, "narrow": 59, "div": 59, "img": 59, "obj_nam": 59, "complex": 59, "thruth": 59, "returnvalu": 59, "pageyoffset": 59, "screenx": 59, "screeni": 59, "outerwidth": 59, "1050": 59, "outerheight": 59, "832": 59, "devicepixelratio": 59, "screenleft": 59, "screentop": 59, "stylemedia": 59, "onsearch": 59, "issecurecontext": 59, "timeorigin": 59, "1707823094767": 59, "9": 59, "connectstart": 59, "navigationstart": 59, "1707823094768": 59, "handi": 59, "w3school": 59, "cssref": 59, "css_selector": 59, "php": 59, "haven": 59, "full_pag": 59, "25": 59, "mayb": 59, "quarter": 59, "1000": 59, "10x": 59, "include_fram": 59, "cdp_obj": 59, "_is_upd": 59, "infinit": 59, "loop": [59, 60, 61], "register": 59, "1280": 59, "1024": 59, "720": 59, "min": 59, "mini": 59, "mi": 59, "ma": 59, "maxi": 59, "fu": 59, "nor": 59, "timespan": 59, "matter": 59, "timeouterror": 59, "asyncio": [59, 60, 61], "websocketclientprotocol": 59, "goe": 60, "pip": [60, 61], "Or": 60, "aim": [60, 61], "project": [60, 61], "somewher": [60, 61], "ago": [60, 61], "quickli": [60, 61], "editor": [60, 61], "few": [60, 61], "uc": [60, 61], "def": [60, 61], "nowsecur": [60, 61], "nl": [60, 61], "__name__": [60, 61], "__main__": [60, 61], "me": [60, 61], "run_until_complet": [60, 61], "150": [60, 61], "page2": [60, 61], "twitter": [60, 61], "page3": [60, 61], "ultrafunkamsterdam": [60, 61], "boilerpl": 60, "iso": 60, "somewebsit": 60, "basicconfig": [60, 61], "30": [60, 61], "februari": [60, 61], "march": [60, 61], "april": [60, 61], "june": [60, 61], "juli": [60, 61], "august": [60, 61], "septemb": [60, 61], "octob": [60, 61], "novemb": [60, 61], "decemb": [60, 61], "create_account": [60, 61], "phone": [60, 61], "small": [60, 61], "use_mail_instead": [60, 61], "randstr": [60, 61], "ascii_lett": [60, 61], "dai": [60, 61], "sel_month": [60, 61], "sel_dai": [60, 61], "sel_year": [60, 61], "randint": [60, 61], "bother": [60, 61], "leap": [60, 61], "28": [60, 61], "ag": [60, 61], "restrict": [60, 61], "1980": [60, 61], "2005": [60, 61], "nag": [60, 61], "cookie_bar_accept": [60, 61], "next_btn": [60, 61], "btn": [60, 61], "revers": [60, 61], "sign_up_btn": [60, 61], "mail": [60, 61], "quick": 61, "02": 57, "08": 57, "2024": 57, "programatt": 57, "get_local_storag": [0, 59, 61], "set_local_storag": [0, 59, 61], "deseri": 59, "feed_cdp": [0, 59], "mostli": 59, "expert": [58, 61], "shadow_children": [0, 57], "exclude_port_mismatch": [0, 4], "exclude_scheme_mismatch": [0, 4], "warn_deprecation_trial_metadata": [0, 4], "warn_third_party_cookie_heurist": [0, 4], "navigation_registration_unique_scope_already_set": [0, 4], "replaced_by_active_mod": [0, 4], "bluetoothemul": [0, 1], "centralst": [0, 7], "powered_off": [0, 7], "powered_on": [0, 7], "manufacturerdata": [0, 7], "scanrecord": [0, 7], "tx_power": [0, 7], "manufacturer_data": [0, 7], "scanentri": [0, 7], "device_address": [0, 7], "rssi": [0, 7], "scan_record": [0, 7], "simulate_advertis": [0, 7], "simulate_preconnected_peripher": [0, 7], "web_app_instal": [0, 8, 39], "starting_styl": [0, 12], "starting_style_rul": [0, 12], "queries_scroll_st": [0, 12, 17], "cssstartingstyl": [0, 12], "track_computed_style_updates_for_nod": [0, 12], "computedstyleupd": [0, 12], "set_blackbox_execution_context": [0, 14], "select_arrow": [0, 17], "scroll_next_button": [0, 17], "scroll_prev_button": [0, 17], "file_selector_button": [0, 17], "details_cont": [0, 17], "picker": [0, 17], "is_scrol": [0, 17], "detachedelementinfo": [0, 17], "tree_nod": [0, 17], "retained_node_id": [0, 17], "get_detached_dom_nod": [0, 17], "scrollableflagupd": [0, 17], "pressuresourc": [0, 21], "pressurest": [0, 21], "nomin": [0, 21], "fair": [0, 21], "seriou": [0, 21], "pressuremetadata": [0, 21], "set_pressure_source_override_en": [0, 21], "set_pressure_state_overrid": [0, 21], "storagearea": [0, 23], "clear_storage_item": [0, 23], "get_storage_item": [0, 23], "remove_storage_item": [0, 23], "set_storage_item": [0, 23], "directori": [0, 26], "nested_directori": [0, 26], "nested_fil": [0, 26], "bucketfilesystemloc": [0, 26], "path_compon": [0, 26], "bucket_nam": [0, 26], "get_directori": [0, 26], "domcount": [0, 36], "get_dom_counters_for_leak_detect": [0, 36], "port_mismatch": [0, 37], "scheme_mismatch": [0, 37], "top_level_tpcd_deprecation_tri": [0, 37], "noopener_allow_popup": [0, 37], "all_screens_captur": [0, 39], "controlled_fram": [0, 39], "deferred_fetch_minim": [0, 39], "digital_credentials_get": [0, 39], "direct_sockets_priv": [0, 39], "fenced_unpartitioned_storage_read": [0, 39], "media_playback_while_not_vis": [0, 39], "popin": [0, 39], "initial_frame_navig": [0, 39], "content_discard": [0, 39], "post_message_by_web_view_cli": [0, 39], "framesubtreewillbedetach": [0, 39], "navigation_typ": [0, 39], "window_clos": [0, 42], "slow_network": [0, 42], "other_prerendered_page_activ": [0, 42], "v8_optimizer_dis": [0, 42], "prerender_failed_during_prefetch": [0, 42], "attributionreportingaggregatabledebugreportingdata": [0, 49], "attributionreportingaggregatabledebugreportingconfig": [0, 49], "debug_data": [0, 49], "attributionscopesdata": [0, 49], "max_event_st": [0, 49], "destination_limit_prior": [0, 49], "aggregatable_debug_reporting_config": [0, 49], "max_event_level_report": [0, 49], "scopes_data": [0, 49], "exceeds_max_scopes_channel_capac": [0, 49], "exceeds_max_event_states_limit": [0, 49], "filtering_id": [0, 49], "aggregatable_filtering_id_max_byt": [0, 49], "insufficient_named_budget": [0, 49], "user_nam": [0, 55], "user_display_nam": [0, 55], "credentialdelet": [0, 55], "credentialupd": [0, 55], "excludeportmismatch": 4, "excludeschememismatch": 4, "warndeprecationtrialmetadata": 4, "warnthirdpartycookieheurist": 4, "navigationregistrationuniquescopealreadyset": 4, "replacedbyactivemod": 4, "central": 7, "manufactur": 7, "compani": 7, "bitbucket": 7, "sig": 7, "assigned_numb": 7, "company_identifi": 7, "yaml": 7, "advertis": 7, "transmiss": 7, "broadcast": 7, "known_service_uuid": 7, "peripher": 7, "knownserviceuuid": 7, "webappinstal": 8, "startingstylerul": 12, "activepositionfallbackindex": 12, "skip_anonym": 14, "prev": 17, "retain": 17, "queriesscrollst": 17, "pressureobserv": 21, "setpressurestateoverrid": 21, "setpressuresourceoverrideen": 21, "storage_area": 23, "merg": 23, "mozilla": 26, "storage_api": 26, "bucketnam": 26, "bucket_file_system_loc": 26, "presum": 36, "volatil": 36, "retrun": 36, "prepar": 36, "leak": 36, "spellcheck": 36, "essenti": 36, "portmismatch": 37, "schememismatch": 37, "topleveltpcddeprecationtri": 37, "noopenerallowpopup": 37, "fenc": 39, "unpartit": 39, "initialframenavig": 39, "contentdiscard": 39, "postmessagebywebviewcli": 39, "windowclos": 42, "slownetwork": 42, "otherprerenderedpageactiv": 42, "v8optimizerdis": 42, "prerenderfailedduringprefetch": 42, "exceedsmaxscopeschannelcapac": 49, "exceedsmaxeventstateslimit": 49, "insufficientnamedbudget": 49, "publickeycredentialent": 55, "displaynam": 55, "publickeycredentialuserent": 55, "publickeycredenti": 55, "signalunknowncredenti": 55, "signalcurrentuserdetail": 55, "open_external_debugg": 61, "localstorag": 61, "someev": 61, "hack": 61, "experienc": 61, "anchor_elem": 61, "someotherth": 61, "html5video_el": 61, "el": 61, "currenttim": 61, "tab_win": 61, "all_result": 61, "first_submit_button": 61, "submit": 61, "inputs_in_form": 61}, "objects": {"nodriver": [[56, 0, 1, "", "Browser"], [58, 0, 1, "", "Config"], [57, 0, 1, "", "Element"], [59, 0, 1, "", "Tab"]], "nodriver.Browser": [[56, 1, 1, "", "config"], [56, 1, 1, "", "connection"], [56, 2, 1, "", "cookies"], [56, 3, 1, "", "create"], [56, 3, 1, "", "get"], [56, 3, 1, "", "grant_all_permissions"], [56, 2, 1, "", "main_tab"], [56, 3, 1, "", "sleep"], [56, 3, 1, "", "start"], [56, 3, 1, "", "stop"], [56, 2, 1, "", "stopped"], [56, 2, 1, "", "tabs"], [56, 1, 1, "", "targets"], [56, 3, 1, "", "tile_windows"], [56, 3, 1, "", "update_targets"], [56, 3, 1, "", "wait"], [56, 2, 1, "", "websocket_url"]], "nodriver.Config": [[58, 3, 1, "", "add_argument"], [58, 3, 1, "", "add_extension"], [58, 2, 1, "", "browser_args"], [58, 2, 1, "", "user_data_dir"], [58, 2, 1, "", "uses_custom_data_dir"]], "nodriver.Element": [[57, 3, 1, "", "apply"], [57, 2, 1, "", "assigned_slot"], [57, 2, 1, "", "attributes"], [57, 2, 1, "", "attrs"], [57, 2, 1, "", "backend_node_id"], [57, 2, 1, "", "base_url"], [57, 2, 1, "", "child_node_count"], [57, 2, 1, "", "children"], [57, 3, 1, "", "clear_input"], [57, 3, 1, "", "click"], [57, 2, 1, "", "compatibility_mode"], [57, 2, 1, "", "content_document"], [57, 2, 1, "", "distributed_nodes"], [57, 2, 1, "", "document_url"], [57, 3, 1, "", "flash"], [57, 3, 1, "", "focus"], [57, 2, 1, "", "frame_id"], [57, 3, 1, "", "get_html"], [57, 3, 1, "", "get_js_attributes"], [57, 3, 1, "", "get_position"], [57, 3, 1, "", "highlight_overlay"], [57, 2, 1, "", "imported_document"], [57, 2, 1, "", "internal_subset"], [57, 3, 1, "", "is_recording"], [57, 2, 1, "", "is_svg"], [57, 2, 1, "", "local_name"], [57, 3, 1, "", "mouse_click"], [57, 3, 1, "", "mouse_drag"], [57, 3, 1, "", "mouse_move"], [57, 2, 1, "", "node"], [57, 2, 1, "", "node_id"], [57, 2, 1, "", "node_name"], [57, 2, 1, "", "node_type"], [57, 2, 1, "", "node_value"], [57, 2, 1, "", "object_id"], [57, 2, 1, "", "parent"], [57, 2, 1, "", "parent_id"], [57, 2, 1, "", "pseudo_elements"], [57, 2, 1, "", "pseudo_identifier"], [57, 2, 1, "", "pseudo_type"], [57, 2, 1, "", "public_id"], [57, 3, 1, "", "query_selector"], [57, 3, 1, "", "query_selector_all"], [57, 3, 1, "", "record_video"], [57, 2, 1, "", "remote_object"], [57, 3, 1, "", "remove_from_dom"], [57, 3, 1, "", "save_screenshot"], [57, 3, 1, "", "save_to_dom"], [57, 3, 1, "", "scroll_into_view"], [57, 3, 1, "", "select_option"], [57, 3, 1, "", "send_file"], [57, 3, 1, "", "send_keys"], [57, 3, 1, "", "set_text"], [57, 3, 1, "", "set_value"], [57, 2, 1, "", "shadow_children"], [57, 2, 1, "", "shadow_root_type"], [57, 2, 1, "", "shadow_roots"], [57, 2, 1, "", "system_id"], [57, 2, 1, "", "tab"], [57, 2, 1, "", "tag"], [57, 2, 1, "", "tag_name"], [57, 2, 1, "", "template_content"], [57, 2, 1, "", "text"], [57, 2, 1, "", "text_all"], [57, 2, 1, "", "tree"], [57, 3, 1, "", "update"], [57, 2, 1, "", "value"], [57, 2, 1, "", "xml_version"]], "nodriver.Tab": [[59, 3, 1, "", "aclose"], [59, 3, 1, "", "activate"], [59, 3, 1, "", "add_handler"], [59, 3, 1, "", "aopen"], [59, 1, 1, "", "attached"], [59, 3, 1, "", "back"], [59, 3, 1, "", "bring_to_front"], [59, 1, 1, "", "browser"], [59, 3, 1, "", "close"], [59, 2, 1, "", "closed"], [59, 3, 1, "", "download_file"], [59, 3, 1, "", "evaluate"], [59, 3, 1, "", "feed_cdp"], [59, 3, 1, "", "find"], [59, 3, 1, "", "find_all"], [59, 3, 1, "", "find_element_by_text"], [59, 3, 1, "", "find_elements_by_text"], [59, 3, 1, "", "forward"], [59, 3, 1, "", "fullscreen"], [59, 3, 1, "", "get"], [59, 3, 1, "", "get_all_linked_sources"], [59, 3, 1, "", "get_all_urls"], [59, 3, 1, "", "get_content"], [59, 3, 1, "", "get_local_storage"], [59, 3, 1, "", "get_window"], [59, 3, 1, "", "inspector_open"], [59, 2, 1, "", "inspector_url"], [59, 3, 1, "", "js_dumps"], [59, 3, 1, "", "maximize"], [59, 3, 1, "", "medimize"], [59, 3, 1, "", "minimize"], [59, 3, 1, "", "open_external_inspector"], [59, 3, 1, "", "query_selector"], [59, 3, 1, "", "query_selector_all"], [59, 3, 1, "", "reload"], [59, 3, 1, "", "save_screenshot"], [59, 3, 1, "", "scroll_down"], [59, 3, 1, "", "scroll_up"], [59, 3, 1, "", "select"], [59, 3, 1, "", "select_all"], [59, 3, 1, "", "send"], [59, 3, 1, "", "set_download_path"], [59, 3, 1, "", "set_local_storage"], [59, 3, 1, "", "set_window_size"], [59, 3, 1, "", "set_window_state"], [59, 3, 1, "", "sleep"], [59, 2, 1, "", "target"], [59, 3, 1, "", "update_target"], [59, 3, 1, "", "verify_cf"], [59, 3, 1, "", "wait"], [59, 3, 1, "", "wait_for"], [59, 1, 1, "", "websocket"]], "nodriver.cdp": [[2, 4, 0, "-", "accessibility"], [3, 4, 0, "-", "animation"], [4, 4, 0, "-", "audits"], [5, 4, 0, "-", "autofill"], [6, 4, 0, "-", "background_service"], [7, 4, 0, "-", "bluetooth_emulation"], [8, 4, 0, "-", "browser"], [9, 4, 0, "-", "cache_storage"], [10, 4, 0, "-", "cast"], [11, 4, 0, "-", "console"], [12, 4, 0, "-", "css"], [13, 4, 0, "-", "database"], [14, 4, 0, "-", "debugger"], [15, 4, 0, "-", "device_access"], [16, 4, 0, "-", "device_orientation"], [17, 4, 0, "-", "dom"], [18, 4, 0, "-", "dom_debugger"], [19, 4, 0, "-", "dom_snapshot"], [20, 4, 0, "-", "dom_storage"], [21, 4, 0, "-", "emulation"], [22, 4, 0, "-", "event_breakpoints"], [23, 4, 0, "-", "extensions"], [24, 4, 0, "-", "fed_cm"], [25, 4, 0, "-", "fetch"], [26, 4, 0, "-", "file_system"], [27, 4, 0, "-", "headless_experimental"], [28, 4, 0, "-", "heap_profiler"], [29, 4, 0, "-", "indexed_db"], [30, 4, 0, "-", "input_"], [31, 4, 0, "-", "inspector"], [32, 4, 0, "-", "io"], [33, 4, 0, "-", "layer_tree"], [34, 4, 0, "-", "log"], [35, 4, 0, "-", "media"], [36, 4, 0, "-", "memory"], [37, 4, 0, "-", "network"], [38, 4, 0, "-", "overlay"], [39, 4, 0, "-", "page"], [40, 4, 0, "-", "performance"], [41, 4, 0, "-", "performance_timeline"], [42, 4, 0, "-", "preload"], [43, 4, 0, "-", "profiler"], [44, 4, 0, "-", "pwa"], [45, 4, 0, "-", "runtime"], [46, 4, 0, "-", "schema"], [47, 4, 0, "-", "security"], [48, 4, 0, "-", "service_worker"], [49, 4, 0, "-", "storage"], [50, 4, 0, "-", "system_info"], [51, 4, 0, "-", "target"], [52, 4, 0, "-", "tethering"], [53, 4, 0, "-", "tracing"], [54, 4, 0, "-", "web_audio"], [55, 4, 0, "-", "web_authn"]], "nodriver.cdp.accessibility": [[2, 0, 1, "", "AXNode"], [2, 0, 1, "", "AXNodeId"], [2, 0, 1, "", "AXProperty"], [2, 0, 1, "", "AXPropertyName"], [2, 0, 1, "", "AXRelatedNode"], [2, 0, 1, "", "AXValue"], [2, 0, 1, "", "AXValueNativeSourceType"], [2, 0, 1, "", "AXValueSource"], [2, 0, 1, "", "AXValueSourceType"], [2, 0, 1, "", "AXValueType"], [2, 0, 1, "", "LoadComplete"], [2, 0, 1, "", "NodesUpdated"], [2, 5, 1, "", "disable"], [2, 5, 1, "", "enable"], [2, 5, 1, "", "get_ax_node_and_ancestors"], [2, 5, 1, "", "get_child_ax_nodes"], [2, 5, 1, "", "get_full_ax_tree"], [2, 5, 1, "", "get_partial_ax_tree"], [2, 5, 1, "", "get_root_ax_node"], [2, 5, 1, "", "query_ax_tree"]], "nodriver.cdp.accessibility.AXNode": [[2, 1, 1, "", "backend_dom_node_id"], [2, 1, 1, "", "child_ids"], [2, 1, 1, "", "chrome_role"], [2, 1, 1, "", "description"], [2, 1, 1, "", "frame_id"], [2, 1, 1, "", "ignored"], [2, 1, 1, "", "ignored_reasons"], [2, 1, 1, "", "name"], [2, 1, 1, "", "node_id"], [2, 1, 1, "", "parent_id"], [2, 1, 1, "", "properties"], [2, 1, 1, "", "role"], [2, 1, 1, "", "value"]], "nodriver.cdp.accessibility.AXProperty": [[2, 1, 1, "", "name"], [2, 1, 1, "", "value"]], "nodriver.cdp.accessibility.AXPropertyName": [[2, 1, 1, "", "ACTIONS"], [2, 1, 1, "", "ACTIVEDESCENDANT"], [2, 1, 1, "", "ATOMIC"], [2, 1, 1, "", "AUTOCOMPLETE"], [2, 1, 1, "", "BUSY"], [2, 1, 1, "", "CHECKED"], [2, 1, 1, "", "CONTROLS"], [2, 1, 1, "", "DESCRIBEDBY"], [2, 1, 1, "", "DETAILS"], [2, 1, 1, "", "DISABLED"], [2, 1, 1, "", "EDITABLE"], [2, 1, 1, "", "ERRORMESSAGE"], [2, 1, 1, "", "EXPANDED"], [2, 1, 1, "", "FLOWTO"], [2, 1, 1, "", "FOCUSABLE"], [2, 1, 1, "", "FOCUSED"], [2, 1, 1, "", "HAS_POPUP"], [2, 1, 1, "", "HIDDEN"], [2, 1, 1, "", "HIDDEN_ROOT"], [2, 1, 1, "", "INVALID"], [2, 1, 1, "", "KEYSHORTCUTS"], [2, 1, 1, "", "LABELLEDBY"], [2, 1, 1, "", "LEVEL"], [2, 1, 1, "", "LIVE"], [2, 1, 1, "", "MODAL"], [2, 1, 1, "", "MULTILINE"], [2, 1, 1, "", "MULTISELECTABLE"], [2, 1, 1, "", "ORIENTATION"], [2, 1, 1, "", "OWNS"], [2, 1, 1, "", "PRESSED"], [2, 1, 1, "", "READONLY"], [2, 1, 1, "", "RELEVANT"], [2, 1, 1, "", "REQUIRED"], [2, 1, 1, "", "ROLEDESCRIPTION"], [2, 1, 1, "", "ROOT"], [2, 1, 1, "", "SELECTED"], [2, 1, 1, "", "SETTABLE"], [2, 1, 1, "", "URL"], [2, 1, 1, "", "VALUEMAX"], [2, 1, 1, "", "VALUEMIN"], [2, 1, 1, "", "VALUETEXT"]], "nodriver.cdp.accessibility.AXRelatedNode": [[2, 1, 1, "", "backend_dom_node_id"], [2, 1, 1, "", "idref"], [2, 1, 1, "", "text"]], "nodriver.cdp.accessibility.AXValue": [[2, 1, 1, "", "related_nodes"], [2, 1, 1, "", "sources"], [2, 1, 1, "", "type_"], [2, 1, 1, "", "value"]], "nodriver.cdp.accessibility.AXValueNativeSourceType": [[2, 1, 1, "", "DESCRIPTION"], [2, 1, 1, "", "FIGCAPTION"], [2, 1, 1, "", "LABEL"], [2, 1, 1, "", "LABELFOR"], [2, 1, 1, "", "LABELWRAPPED"], [2, 1, 1, "", "LEGEND"], [2, 1, 1, "", "OTHER"], [2, 1, 1, "", "RUBYANNOTATION"], [2, 1, 1, "", "TABLECAPTION"], [2, 1, 1, "", "TITLE"]], "nodriver.cdp.accessibility.AXValueSource": [[2, 1, 1, "", "attribute"], [2, 1, 1, "", "attribute_value"], [2, 1, 1, "", "invalid"], [2, 1, 1, "", "invalid_reason"], [2, 1, 1, "", "native_source"], [2, 1, 1, "", "native_source_value"], [2, 1, 1, "", "superseded"], [2, 1, 1, "", "type_"], [2, 1, 1, "", "value"]], "nodriver.cdp.accessibility.AXValueSourceType": [[2, 1, 1, "", "ATTRIBUTE"], [2, 1, 1, "", "CONTENTS"], [2, 1, 1, "", "IMPLICIT"], [2, 1, 1, "", "PLACEHOLDER"], [2, 1, 1, "", "RELATED_ELEMENT"], [2, 1, 1, "", "STYLE"]], "nodriver.cdp.accessibility.AXValueType": [[2, 1, 1, "", "BOOLEAN"], [2, 1, 1, "", "BOOLEAN_OR_UNDEFINED"], [2, 1, 1, "", "COMPUTED_STRING"], [2, 1, 1, "", "DOM_RELATION"], [2, 1, 1, "", "IDREF"], [2, 1, 1, "", "IDREF_LIST"], [2, 1, 1, "", "INTEGER"], [2, 1, 1, "", "INTERNAL_ROLE"], [2, 1, 1, "", "NODE"], [2, 1, 1, "", "NODE_LIST"], [2, 1, 1, "", "NUMBER"], [2, 1, 1, "", "ROLE"], [2, 1, 1, "", "STRING"], [2, 1, 1, "", "TOKEN"], [2, 1, 1, "", "TOKEN_LIST"], [2, 1, 1, "", "TRISTATE"], [2, 1, 1, "", "VALUE_UNDEFINED"]], "nodriver.cdp.accessibility.LoadComplete": [[2, 1, 1, "", "root"]], "nodriver.cdp.accessibility.NodesUpdated": [[2, 1, 1, "", "nodes"]], "nodriver.cdp.animation": [[3, 0, 1, "", "Animation"], [3, 0, 1, "", "AnimationCanceled"], [3, 0, 1, "", "AnimationCreated"], [3, 0, 1, "", "AnimationEffect"], [3, 0, 1, "", "AnimationStarted"], [3, 0, 1, "", "AnimationUpdated"], [3, 0, 1, "", "KeyframeStyle"], [3, 0, 1, "", "KeyframesRule"], [3, 0, 1, "", "ViewOrScrollTimeline"], [3, 5, 1, "", "disable"], [3, 5, 1, "", "enable"], [3, 5, 1, "", "get_current_time"], [3, 5, 1, "", "get_playback_rate"], [3, 5, 1, "", "release_animations"], [3, 5, 1, "", "resolve_animation"], [3, 5, 1, "", "seek_animations"], [3, 5, 1, "", "set_paused"], [3, 5, 1, "", "set_playback_rate"], [3, 5, 1, "", "set_timing"]], "nodriver.cdp.animation.Animation": [[3, 1, 1, "", "css_id"], [3, 1, 1, "", "current_time"], [3, 1, 1, "", "id_"], [3, 1, 1, "", "name"], [3, 1, 1, "", "paused_state"], [3, 1, 1, "", "play_state"], [3, 1, 1, "", "playback_rate"], [3, 1, 1, "", "source"], [3, 1, 1, "", "start_time"], [3, 1, 1, "", "type_"], [3, 1, 1, "", "view_or_scroll_timeline"]], "nodriver.cdp.animation.AnimationCanceled": [[3, 1, 1, "", "id_"]], "nodriver.cdp.animation.AnimationCreated": [[3, 1, 1, "", "id_"]], "nodriver.cdp.animation.AnimationEffect": [[3, 1, 1, "", "backend_node_id"], [3, 1, 1, "", "delay"], [3, 1, 1, "", "direction"], [3, 1, 1, "", "duration"], [3, 1, 1, "", "easing"], [3, 1, 1, "", "end_delay"], [3, 1, 1, "", "fill"], [3, 1, 1, "", "iteration_start"], [3, 1, 1, "", "iterations"], [3, 1, 1, "", "keyframes_rule"]], "nodriver.cdp.animation.AnimationStarted": [[3, 1, 1, "", "animation"]], "nodriver.cdp.animation.AnimationUpdated": [[3, 1, 1, "", "animation"]], "nodriver.cdp.animation.KeyframeStyle": [[3, 1, 1, "", "easing"], [3, 1, 1, "", "offset"]], "nodriver.cdp.animation.KeyframesRule": [[3, 1, 1, "", "keyframes"], [3, 1, 1, "", "name"]], "nodriver.cdp.animation.ViewOrScrollTimeline": [[3, 1, 1, "", "axis"], [3, 1, 1, "", "end_offset"], [3, 1, 1, "", "source_node_id"], [3, 1, 1, "", "start_offset"], [3, 1, 1, "", "subject_node_id"]], "nodriver.cdp.audits": [[4, 0, 1, "", "AffectedCookie"], [4, 0, 1, "", "AffectedFrame"], [4, 0, 1, "", "AffectedRequest"], [4, 0, 1, "", "AttributionReportingIssueDetails"], [4, 0, 1, "", "AttributionReportingIssueType"], [4, 0, 1, "", "BlockedByResponseIssueDetails"], [4, 0, 1, "", "BlockedByResponseReason"], [4, 0, 1, "", "BounceTrackingIssueDetails"], [4, 0, 1, "", "ClientHintIssueDetails"], [4, 0, 1, "", "ClientHintIssueReason"], [4, 0, 1, "", "ContentSecurityPolicyIssueDetails"], [4, 0, 1, "", "ContentSecurityPolicyViolationType"], [4, 0, 1, "", "CookieDeprecationMetadataIssueDetails"], [4, 0, 1, "", "CookieExclusionReason"], [4, 0, 1, "", "CookieIssueDetails"], [4, 0, 1, "", "CookieOperation"], [4, 0, 1, "", "CookieWarningReason"], [4, 0, 1, "", "CorsIssueDetails"], [4, 0, 1, "", "DeprecationIssueDetails"], [4, 0, 1, "", "FailedRequestInfo"], [4, 0, 1, "", "FederatedAuthRequestIssueDetails"], [4, 0, 1, "", "FederatedAuthRequestIssueReason"], [4, 0, 1, "", "FederatedAuthUserInfoRequestIssueDetails"], [4, 0, 1, "", "FederatedAuthUserInfoRequestIssueReason"], [4, 0, 1, "", "GenericIssueDetails"], [4, 0, 1, "", "GenericIssueErrorType"], [4, 0, 1, "", "HeavyAdIssueDetails"], [4, 0, 1, "", "HeavyAdReason"], [4, 0, 1, "", "HeavyAdResolutionStatus"], [4, 0, 1, "", "InspectorIssue"], [4, 0, 1, "", "InspectorIssueCode"], [4, 0, 1, "", "InspectorIssueDetails"], [4, 0, 1, "", "IssueAdded"], [4, 0, 1, "", "IssueId"], [4, 0, 1, "", "LowTextContrastIssueDetails"], [4, 0, 1, "", "MixedContentIssueDetails"], [4, 0, 1, "", "MixedContentResolutionStatus"], [4, 0, 1, "", "MixedContentResourceType"], [4, 0, 1, "", "NavigatorUserAgentIssueDetails"], [4, 0, 1, "", "PropertyRuleIssueDetails"], [4, 0, 1, "", "PropertyRuleIssueReason"], [4, 0, 1, "", "QuirksModeIssueDetails"], [4, 0, 1, "", "SharedArrayBufferIssueDetails"], [4, 0, 1, "", "SharedArrayBufferIssueType"], [4, 0, 1, "", "SharedDictionaryError"], [4, 0, 1, "", "SharedDictionaryIssueDetails"], [4, 0, 1, "", "SourceCodeLocation"], [4, 0, 1, "", "StyleSheetLoadingIssueReason"], [4, 0, 1, "", "StylesheetLoadingIssueDetails"], [4, 5, 1, "", "check_contrast"], [4, 5, 1, "", "check_forms_issues"], [4, 5, 1, "", "disable"], [4, 5, 1, "", "enable"], [4, 5, 1, "", "get_encoded_response"]], "nodriver.cdp.audits.AffectedCookie": [[4, 1, 1, "", "domain"], [4, 1, 1, "", "name"], [4, 1, 1, "", "path"]], "nodriver.cdp.audits.AffectedFrame": [[4, 1, 1, "", "frame_id"]], "nodriver.cdp.audits.AffectedRequest": [[4, 1, 1, "", "request_id"], [4, 1, 1, "", "url"]], "nodriver.cdp.audits.AttributionReportingIssueDetails": [[4, 1, 1, "", "invalid_parameter"], [4, 1, 1, "", "request"], [4, 1, 1, "", "violating_node_id"], [4, 1, 1, "", "violation_type"]], "nodriver.cdp.audits.AttributionReportingIssueType": [[4, 1, 1, "", "INSECURE_CONTEXT"], [4, 1, 1, "", "INVALID_HEADER"], [4, 1, 1, "", "INVALID_INFO_HEADER"], [4, 1, 1, "", "INVALID_REGISTER_OS_SOURCE_HEADER"], [4, 1, 1, "", "INVALID_REGISTER_OS_TRIGGER_HEADER"], [4, 1, 1, "", "INVALID_REGISTER_TRIGGER_HEADER"], [4, 1, 1, "", "NAVIGATION_REGISTRATION_UNIQUE_SCOPE_ALREADY_SET"], [4, 1, 1, "", "NAVIGATION_REGISTRATION_WITHOUT_TRANSIENT_USER_ACTIVATION"], [4, 1, 1, "", "NO_REGISTER_OS_SOURCE_HEADER"], [4, 1, 1, "", "NO_REGISTER_OS_TRIGGER_HEADER"], [4, 1, 1, "", "NO_REGISTER_SOURCE_HEADER"], [4, 1, 1, "", "NO_REGISTER_TRIGGER_HEADER"], [4, 1, 1, "", "NO_WEB_OR_OS_SUPPORT"], [4, 1, 1, "", "OS_SOURCE_IGNORED"], [4, 1, 1, "", "OS_TRIGGER_IGNORED"], [4, 1, 1, "", "PERMISSION_POLICY_DISABLED"], [4, 1, 1, "", "SOURCE_AND_TRIGGER_HEADERS"], [4, 1, 1, "", "SOURCE_IGNORED"], [4, 1, 1, "", "TRIGGER_IGNORED"], [4, 1, 1, "", "UNTRUSTWORTHY_REPORTING_ORIGIN"], [4, 1, 1, "", "WEB_AND_OS_HEADERS"]], "nodriver.cdp.audits.BlockedByResponseIssueDetails": [[4, 1, 1, "", "blocked_frame"], [4, 1, 1, "", "parent_frame"], [4, 1, 1, "", "reason"], [4, 1, 1, "", "request"]], "nodriver.cdp.audits.BlockedByResponseReason": [[4, 1, 1, "", "COEP_FRAME_RESOURCE_NEEDS_COEP_HEADER"], [4, 1, 1, "", "COOP_SANDBOXED_I_FRAME_CANNOT_NAVIGATE_TO_COOP_PAGE"], [4, 1, 1, "", "CORP_NOT_SAME_ORIGIN"], [4, 1, 1, "", "CORP_NOT_SAME_ORIGIN_AFTER_DEFAULTED_TO_SAME_ORIGIN_BY_COEP"], [4, 1, 1, "", "CORP_NOT_SAME_ORIGIN_AFTER_DEFAULTED_TO_SAME_ORIGIN_BY_COEP_AND_DIP"], [4, 1, 1, "", "CORP_NOT_SAME_ORIGIN_AFTER_DEFAULTED_TO_SAME_ORIGIN_BY_DIP"], [4, 1, 1, "", "CORP_NOT_SAME_SITE"]], "nodriver.cdp.audits.BounceTrackingIssueDetails": [[4, 1, 1, "", "tracking_sites"]], "nodriver.cdp.audits.ClientHintIssueDetails": [[4, 1, 1, "", "client_hint_issue_reason"], [4, 1, 1, "", "source_code_location"]], "nodriver.cdp.audits.ClientHintIssueReason": [[4, 1, 1, "", "META_TAG_ALLOW_LIST_INVALID_ORIGIN"], [4, 1, 1, "", "META_TAG_MODIFIED_HTML"]], "nodriver.cdp.audits.ContentSecurityPolicyIssueDetails": [[4, 1, 1, "", "blocked_url"], [4, 1, 1, "", "content_security_policy_violation_type"], [4, 1, 1, "", "frame_ancestor"], [4, 1, 1, "", "is_report_only"], [4, 1, 1, "", "source_code_location"], [4, 1, 1, "", "violated_directive"], [4, 1, 1, "", "violating_node_id"]], "nodriver.cdp.audits.ContentSecurityPolicyViolationType": [[4, 1, 1, "", "K_EVAL_VIOLATION"], [4, 1, 1, "", "K_INLINE_VIOLATION"], [4, 1, 1, "", "K_TRUSTED_TYPES_POLICY_VIOLATION"], [4, 1, 1, "", "K_TRUSTED_TYPES_SINK_VIOLATION"], [4, 1, 1, "", "K_URL_VIOLATION"], [4, 1, 1, "", "K_WASM_EVAL_VIOLATION"]], "nodriver.cdp.audits.CookieDeprecationMetadataIssueDetails": [[4, 1, 1, "", "allowed_sites"], [4, 1, 1, "", "is_opt_out_top_level"], [4, 1, 1, "", "operation"], [4, 1, 1, "", "opt_out_percentage"]], "nodriver.cdp.audits.CookieExclusionReason": [[4, 1, 1, "", "EXCLUDE_DOMAIN_NON_ASCII"], [4, 1, 1, "", "EXCLUDE_INVALID_SAME_PARTY"], [4, 1, 1, "", "EXCLUDE_PORT_MISMATCH"], [4, 1, 1, "", "EXCLUDE_SAME_PARTY_CROSS_PARTY_CONTEXT"], [4, 1, 1, "", "EXCLUDE_SAME_SITE_LAX"], [4, 1, 1, "", "EXCLUDE_SAME_SITE_NONE_INSECURE"], [4, 1, 1, "", "EXCLUDE_SAME_SITE_STRICT"], [4, 1, 1, "", "EXCLUDE_SAME_SITE_UNSPECIFIED_TREATED_AS_LAX"], [4, 1, 1, "", "EXCLUDE_SCHEME_MISMATCH"], [4, 1, 1, "", "EXCLUDE_THIRD_PARTY_COOKIE_BLOCKED_IN_FIRST_PARTY_SET"], [4, 1, 1, "", "EXCLUDE_THIRD_PARTY_PHASEOUT"]], "nodriver.cdp.audits.CookieIssueDetails": [[4, 1, 1, "", "cookie"], [4, 1, 1, "", "cookie_exclusion_reasons"], [4, 1, 1, "", "cookie_url"], [4, 1, 1, "", "cookie_warning_reasons"], [4, 1, 1, "", "operation"], [4, 1, 1, "", "raw_cookie_line"], [4, 1, 1, "", "request"], [4, 1, 1, "", "site_for_cookies"]], "nodriver.cdp.audits.CookieOperation": [[4, 1, 1, "", "READ_COOKIE"], [4, 1, 1, "", "SET_COOKIE"]], "nodriver.cdp.audits.CookieWarningReason": [[4, 1, 1, "", "WARN_ATTRIBUTE_VALUE_EXCEEDS_MAX_SIZE"], [4, 1, 1, "", "WARN_CROSS_SITE_REDIRECT_DOWNGRADE_CHANGES_INCLUSION"], [4, 1, 1, "", "WARN_DEPRECATION_TRIAL_METADATA"], [4, 1, 1, "", "WARN_DOMAIN_NON_ASCII"], [4, 1, 1, "", "WARN_SAME_SITE_LAX_CROSS_DOWNGRADE_LAX"], [4, 1, 1, "", "WARN_SAME_SITE_LAX_CROSS_DOWNGRADE_STRICT"], [4, 1, 1, "", "WARN_SAME_SITE_NONE_INSECURE"], [4, 1, 1, "", "WARN_SAME_SITE_STRICT_CROSS_DOWNGRADE_LAX"], [4, 1, 1, "", "WARN_SAME_SITE_STRICT_CROSS_DOWNGRADE_STRICT"], [4, 1, 1, "", "WARN_SAME_SITE_STRICT_LAX_DOWNGRADE_STRICT"], [4, 1, 1, "", "WARN_SAME_SITE_UNSPECIFIED_CROSS_SITE_CONTEXT"], [4, 1, 1, "", "WARN_SAME_SITE_UNSPECIFIED_LAX_ALLOW_UNSAFE"], [4, 1, 1, "", "WARN_THIRD_PARTY_COOKIE_HEURISTIC"], [4, 1, 1, "", "WARN_THIRD_PARTY_PHASEOUT"]], "nodriver.cdp.audits.CorsIssueDetails": [[4, 1, 1, "", "client_security_state"], [4, 1, 1, "", "cors_error_status"], [4, 1, 1, "", "initiator_origin"], [4, 1, 1, "", "is_warning"], [4, 1, 1, "", "location"], [4, 1, 1, "", "request"], [4, 1, 1, "", "resource_ip_address_space"]], "nodriver.cdp.audits.DeprecationIssueDetails": [[4, 1, 1, "", "affected_frame"], [4, 1, 1, "", "source_code_location"], [4, 1, 1, "", "type_"]], "nodriver.cdp.audits.FailedRequestInfo": [[4, 1, 1, "", "failure_message"], [4, 1, 1, "", "request_id"], [4, 1, 1, "", "url"]], "nodriver.cdp.audits.FederatedAuthRequestIssueDetails": [[4, 1, 1, "", "federated_auth_request_issue_reason"]], "nodriver.cdp.audits.FederatedAuthRequestIssueReason": [[4, 1, 1, "", "ACCOUNTS_HTTP_NOT_FOUND"], [4, 1, 1, "", "ACCOUNTS_INVALID_CONTENT_TYPE"], [4, 1, 1, "", "ACCOUNTS_INVALID_RESPONSE"], [4, 1, 1, "", "ACCOUNTS_LIST_EMPTY"], [4, 1, 1, "", "ACCOUNTS_NO_RESPONSE"], [4, 1, 1, "", "CANCELED"], [4, 1, 1, "", "CLIENT_METADATA_HTTP_NOT_FOUND"], [4, 1, 1, "", "CLIENT_METADATA_INVALID_CONTENT_TYPE"], [4, 1, 1, "", "CLIENT_METADATA_INVALID_RESPONSE"], [4, 1, 1, "", "CLIENT_METADATA_NO_RESPONSE"], [4, 1, 1, "", "CONFIG_HTTP_NOT_FOUND"], [4, 1, 1, "", "CONFIG_INVALID_CONTENT_TYPE"], [4, 1, 1, "", "CONFIG_INVALID_RESPONSE"], [4, 1, 1, "", "CONFIG_NOT_IN_WELL_KNOWN"], [4, 1, 1, "", "CONFIG_NO_RESPONSE"], [4, 1, 1, "", "DISABLED_IN_FLAGS"], [4, 1, 1, "", "DISABLED_IN_SETTINGS"], [4, 1, 1, "", "ERROR_FETCHING_SIGNIN"], [4, 1, 1, "", "ERROR_ID_TOKEN"], [4, 1, 1, "", "IDP_NOT_POTENTIALLY_TRUSTWORTHY"], [4, 1, 1, "", "ID_TOKEN_CROSS_SITE_IDP_ERROR_RESPONSE"], [4, 1, 1, "", "ID_TOKEN_HTTP_NOT_FOUND"], [4, 1, 1, "", "ID_TOKEN_IDP_ERROR_RESPONSE"], [4, 1, 1, "", "ID_TOKEN_INVALID_CONTENT_TYPE"], [4, 1, 1, "", "ID_TOKEN_INVALID_REQUEST"], [4, 1, 1, "", "ID_TOKEN_INVALID_RESPONSE"], [4, 1, 1, "", "ID_TOKEN_NO_RESPONSE"], [4, 1, 1, "", "INVALID_FIELDS_SPECIFIED"], [4, 1, 1, "", "INVALID_SIGNIN_RESPONSE"], [4, 1, 1, "", "MISSING_TRANSIENT_USER_ACTIVATION"], [4, 1, 1, "", "NOT_SIGNED_IN_WITH_IDP"], [4, 1, 1, "", "RELYING_PARTY_ORIGIN_IS_OPAQUE"], [4, 1, 1, "", "REPLACED_BY_ACTIVE_MODE"], [4, 1, 1, "", "RP_PAGE_NOT_VISIBLE"], [4, 1, 1, "", "SHOULD_EMBARGO"], [4, 1, 1, "", "SILENT_MEDIATION_FAILURE"], [4, 1, 1, "", "THIRD_PARTY_COOKIES_BLOCKED"], [4, 1, 1, "", "TOO_MANY_REQUESTS"], [4, 1, 1, "", "TYPE_NOT_MATCHING"], [4, 1, 1, "", "WELL_KNOWN_HTTP_NOT_FOUND"], [4, 1, 1, "", "WELL_KNOWN_INVALID_CONTENT_TYPE"], [4, 1, 1, "", "WELL_KNOWN_INVALID_RESPONSE"], [4, 1, 1, "", "WELL_KNOWN_LIST_EMPTY"], [4, 1, 1, "", "WELL_KNOWN_NO_RESPONSE"], [4, 1, 1, "", "WELL_KNOWN_TOO_BIG"]], "nodriver.cdp.audits.FederatedAuthUserInfoRequestIssueDetails": [[4, 1, 1, "", "federated_auth_user_info_request_issue_reason"]], "nodriver.cdp.audits.FederatedAuthUserInfoRequestIssueReason": [[4, 1, 1, "", "INVALID_ACCOUNTS_RESPONSE"], [4, 1, 1, "", "INVALID_CONFIG_OR_WELL_KNOWN"], [4, 1, 1, "", "NOT_IFRAME"], [4, 1, 1, "", "NOT_POTENTIALLY_TRUSTWORTHY"], [4, 1, 1, "", "NOT_SAME_ORIGIN"], [4, 1, 1, "", "NOT_SIGNED_IN_WITH_IDP"], [4, 1, 1, "", "NO_ACCOUNT_SHARING_PERMISSION"], [4, 1, 1, "", "NO_API_PERMISSION"], [4, 1, 1, "", "NO_RETURNING_USER_FROM_FETCHED_ACCOUNTS"]], "nodriver.cdp.audits.GenericIssueDetails": [[4, 1, 1, "", "error_type"], [4, 1, 1, "", "frame_id"], [4, 1, 1, "", "request"], [4, 1, 1, "", "violating_node_attribute"], [4, 1, 1, "", "violating_node_id"]], "nodriver.cdp.audits.GenericIssueErrorType": [[4, 1, 1, "", "FORM_ARIA_LABELLED_BY_TO_NON_EXISTING_ID"], [4, 1, 1, "", "FORM_AUTOCOMPLETE_ATTRIBUTE_EMPTY_ERROR"], [4, 1, 1, "", "FORM_DUPLICATE_ID_FOR_INPUT_ERROR"], [4, 1, 1, "", "FORM_EMPTY_ID_AND_NAME_ATTRIBUTES_FOR_INPUT_ERROR"], [4, 1, 1, "", "FORM_INPUT_ASSIGNED_AUTOCOMPLETE_VALUE_TO_ID_OR_NAME_ATTRIBUTE_ERROR"], [4, 1, 1, "", "FORM_INPUT_HAS_WRONG_BUT_WELL_INTENDED_AUTOCOMPLETE_VALUE_ERROR"], [4, 1, 1, "", "FORM_INPUT_WITH_NO_LABEL_ERROR"], [4, 1, 1, "", "FORM_LABEL_FOR_MATCHES_NON_EXISTING_ID_ERROR"], [4, 1, 1, "", "FORM_LABEL_FOR_NAME_ERROR"], [4, 1, 1, "", "FORM_LABEL_HAS_NEITHER_FOR_NOR_NESTED_INPUT"], [4, 1, 1, "", "RESPONSE_WAS_BLOCKED_BY_ORB"]], "nodriver.cdp.audits.HeavyAdIssueDetails": [[4, 1, 1, "", "frame"], [4, 1, 1, "", "reason"], [4, 1, 1, "", "resolution"]], "nodriver.cdp.audits.HeavyAdReason": [[4, 1, 1, "", "CPU_PEAK_LIMIT"], [4, 1, 1, "", "CPU_TOTAL_LIMIT"], [4, 1, 1, "", "NETWORK_TOTAL_LIMIT"]], "nodriver.cdp.audits.HeavyAdResolutionStatus": [[4, 1, 1, "", "HEAVY_AD_BLOCKED"], [4, 1, 1, "", "HEAVY_AD_WARNING"]], "nodriver.cdp.audits.InspectorIssue": [[4, 1, 1, "", "code"], [4, 1, 1, "", "details"], [4, 1, 1, "", "issue_id"]], "nodriver.cdp.audits.InspectorIssueCode": [[4, 1, 1, "", "ATTRIBUTION_REPORTING_ISSUE"], [4, 1, 1, "", "BLOCKED_BY_RESPONSE_ISSUE"], [4, 1, 1, "", "BOUNCE_TRACKING_ISSUE"], [4, 1, 1, "", "CLIENT_HINT_ISSUE"], [4, 1, 1, "", "CONTENT_SECURITY_POLICY_ISSUE"], [4, 1, 1, "", "COOKIE_DEPRECATION_METADATA_ISSUE"], [4, 1, 1, "", "COOKIE_ISSUE"], [4, 1, 1, "", "CORS_ISSUE"], [4, 1, 1, "", "DEPRECATION_ISSUE"], [4, 1, 1, "", "FEDERATED_AUTH_REQUEST_ISSUE"], [4, 1, 1, "", "FEDERATED_AUTH_USER_INFO_REQUEST_ISSUE"], [4, 1, 1, "", "GENERIC_ISSUE"], [4, 1, 1, "", "HEAVY_AD_ISSUE"], [4, 1, 1, "", "LOW_TEXT_CONTRAST_ISSUE"], [4, 1, 1, "", "MIXED_CONTENT_ISSUE"], [4, 1, 1, "", "NAVIGATOR_USER_AGENT_ISSUE"], [4, 1, 1, "", "PROPERTY_RULE_ISSUE"], [4, 1, 1, "", "QUIRKS_MODE_ISSUE"], [4, 1, 1, "", "SHARED_ARRAY_BUFFER_ISSUE"], [4, 1, 1, "", "SHARED_DICTIONARY_ISSUE"], [4, 1, 1, "", "STYLESHEET_LOADING_ISSUE"]], "nodriver.cdp.audits.InspectorIssueDetails": [[4, 1, 1, "", "attribution_reporting_issue_details"], [4, 1, 1, "", "blocked_by_response_issue_details"], [4, 1, 1, "", "bounce_tracking_issue_details"], [4, 1, 1, "", "client_hint_issue_details"], [4, 1, 1, "", "content_security_policy_issue_details"], [4, 1, 1, "", "cookie_deprecation_metadata_issue_details"], [4, 1, 1, "", "cookie_issue_details"], [4, 1, 1, "", "cors_issue_details"], [4, 1, 1, "", "deprecation_issue_details"], [4, 1, 1, "", "federated_auth_request_issue_details"], [4, 1, 1, "", "federated_auth_user_info_request_issue_details"], [4, 1, 1, "", "generic_issue_details"], [4, 1, 1, "", "heavy_ad_issue_details"], [4, 1, 1, "", "low_text_contrast_issue_details"], [4, 1, 1, "", "mixed_content_issue_details"], [4, 1, 1, "", "navigator_user_agent_issue_details"], [4, 1, 1, "", "property_rule_issue_details"], [4, 1, 1, "", "quirks_mode_issue_details"], [4, 1, 1, "", "shared_array_buffer_issue_details"], [4, 1, 1, "", "shared_dictionary_issue_details"], [4, 1, 1, "", "stylesheet_loading_issue_details"]], "nodriver.cdp.audits.IssueAdded": [[4, 1, 1, "", "issue"]], "nodriver.cdp.audits.LowTextContrastIssueDetails": [[4, 1, 1, "", "contrast_ratio"], [4, 1, 1, "", "font_size"], [4, 1, 1, "", "font_weight"], [4, 1, 1, "", "threshold_aa"], [4, 1, 1, "", "threshold_aaa"], [4, 1, 1, "", "violating_node_id"], [4, 1, 1, "", "violating_node_selector"]], "nodriver.cdp.audits.MixedContentIssueDetails": [[4, 1, 1, "", "frame"], [4, 1, 1, "", "insecure_url"], [4, 1, 1, "", "main_resource_url"], [4, 1, 1, "", "request"], [4, 1, 1, "", "resolution_status"], [4, 1, 1, "", "resource_type"]], "nodriver.cdp.audits.MixedContentResolutionStatus": [[4, 1, 1, "", "MIXED_CONTENT_AUTOMATICALLY_UPGRADED"], [4, 1, 1, "", "MIXED_CONTENT_BLOCKED"], [4, 1, 1, "", "MIXED_CONTENT_WARNING"]], "nodriver.cdp.audits.MixedContentResourceType": [[4, 1, 1, "", "ATTRIBUTION_SRC"], [4, 1, 1, "", "AUDIO"], [4, 1, 1, "", "BEACON"], [4, 1, 1, "", "CSP_REPORT"], [4, 1, 1, "", "DOWNLOAD"], [4, 1, 1, "", "EVENT_SOURCE"], [4, 1, 1, "", "FAVICON"], [4, 1, 1, "", "FONT"], [4, 1, 1, "", "FORM"], [4, 1, 1, "", "FRAME"], [4, 1, 1, "", "IMAGE"], [4, 1, 1, "", "IMPORT"], [4, 1, 1, "", "JSON"], [4, 1, 1, "", "MANIFEST"], [4, 1, 1, "", "PING"], [4, 1, 1, "", "PLUGIN_DATA"], [4, 1, 1, "", "PLUGIN_RESOURCE"], [4, 1, 1, "", "PREFETCH"], [4, 1, 1, "", "RESOURCE"], [4, 1, 1, "", "SCRIPT"], [4, 1, 1, "", "SERVICE_WORKER"], [4, 1, 1, "", "SHARED_WORKER"], [4, 1, 1, "", "SPECULATION_RULES"], [4, 1, 1, "", "STYLESHEET"], [4, 1, 1, "", "TRACK"], [4, 1, 1, "", "VIDEO"], [4, 1, 1, "", "WORKER"], [4, 1, 1, "", "XML_HTTP_REQUEST"], [4, 1, 1, "", "XSLT"]], "nodriver.cdp.audits.NavigatorUserAgentIssueDetails": [[4, 1, 1, "", "location"], [4, 1, 1, "", "url"]], "nodriver.cdp.audits.PropertyRuleIssueDetails": [[4, 1, 1, "", "property_rule_issue_reason"], [4, 1, 1, "", "property_value"], [4, 1, 1, "", "source_code_location"]], "nodriver.cdp.audits.PropertyRuleIssueReason": [[4, 1, 1, "", "INVALID_INHERITS"], [4, 1, 1, "", "INVALID_INITIAL_VALUE"], [4, 1, 1, "", "INVALID_NAME"], [4, 1, 1, "", "INVALID_SYNTAX"]], "nodriver.cdp.audits.QuirksModeIssueDetails": [[4, 1, 1, "", "document_node_id"], [4, 1, 1, "", "frame_id"], [4, 1, 1, "", "is_limited_quirks_mode"], [4, 1, 1, "", "loader_id"], [4, 1, 1, "", "url"]], "nodriver.cdp.audits.SharedArrayBufferIssueDetails": [[4, 1, 1, "", "is_warning"], [4, 1, 1, "", "source_code_location"], [4, 1, 1, "", "type_"]], "nodriver.cdp.audits.SharedArrayBufferIssueType": [[4, 1, 1, "", "CREATION_ISSUE"], [4, 1, 1, "", "TRANSFER_ISSUE"]], "nodriver.cdp.audits.SharedDictionaryError": [[4, 1, 1, "", "USE_ERROR_CROSS_ORIGIN_NO_CORS_REQUEST"], [4, 1, 1, "", "USE_ERROR_DICTIONARY_LOAD_FAILURE"], [4, 1, 1, "", "USE_ERROR_MATCHING_DICTIONARY_NOT_USED"], [4, 1, 1, "", "USE_ERROR_UNEXPECTED_CONTENT_DICTIONARY_HEADER"], [4, 1, 1, "", "WRITE_ERROR_COSS_ORIGIN_NO_CORS_REQUEST"], [4, 1, 1, "", "WRITE_ERROR_DISALLOWED_BY_SETTINGS"], [4, 1, 1, "", "WRITE_ERROR_EXPIRED_RESPONSE"], [4, 1, 1, "", "WRITE_ERROR_FEATURE_DISABLED"], [4, 1, 1, "", "WRITE_ERROR_INSUFFICIENT_RESOURCES"], [4, 1, 1, "", "WRITE_ERROR_INVALID_MATCH_FIELD"], [4, 1, 1, "", "WRITE_ERROR_INVALID_STRUCTURED_HEADER"], [4, 1, 1, "", "WRITE_ERROR_NAVIGATION_REQUEST"], [4, 1, 1, "", "WRITE_ERROR_NON_LIST_MATCH_DEST_FIELD"], [4, 1, 1, "", "WRITE_ERROR_NON_SECURE_CONTEXT"], [4, 1, 1, "", "WRITE_ERROR_NON_STRING_ID_FIELD"], [4, 1, 1, "", "WRITE_ERROR_NON_STRING_IN_MATCH_DEST_LIST"], [4, 1, 1, "", "WRITE_ERROR_NON_STRING_MATCH_FIELD"], [4, 1, 1, "", "WRITE_ERROR_NON_TOKEN_TYPE_FIELD"], [4, 1, 1, "", "WRITE_ERROR_NO_MATCH_FIELD"], [4, 1, 1, "", "WRITE_ERROR_REQUEST_ABORTED"], [4, 1, 1, "", "WRITE_ERROR_SHUTTING_DOWN"], [4, 1, 1, "", "WRITE_ERROR_TOO_LONG_ID_FIELD"], [4, 1, 1, "", "WRITE_ERROR_UNSUPPORTED_TYPE"]], "nodriver.cdp.audits.SharedDictionaryIssueDetails": [[4, 1, 1, "", "request"], [4, 1, 1, "", "shared_dictionary_error"]], "nodriver.cdp.audits.SourceCodeLocation": [[4, 1, 1, "", "column_number"], [4, 1, 1, "", "line_number"], [4, 1, 1, "", "script_id"], [4, 1, 1, "", "url"]], "nodriver.cdp.audits.StyleSheetLoadingIssueReason": [[4, 1, 1, "", "LATE_IMPORT_RULE"], [4, 1, 1, "", "REQUEST_FAILED"]], "nodriver.cdp.audits.StylesheetLoadingIssueDetails": [[4, 1, 1, "", "failed_request_info"], [4, 1, 1, "", "source_code_location"], [4, 1, 1, "", "style_sheet_loading_issue_reason"]], "nodriver.cdp.autofill": [[5, 0, 1, "", "Address"], [5, 0, 1, "", "AddressField"], [5, 0, 1, "", "AddressFields"], [5, 0, 1, "", "AddressFormFilled"], [5, 0, 1, "", "AddressUI"], [5, 0, 1, "", "CreditCard"], [5, 0, 1, "", "FilledField"], [5, 0, 1, "", "FillingStrategy"], [5, 5, 1, "", "disable"], [5, 5, 1, "", "enable"], [5, 5, 1, "", "set_addresses"], [5, 5, 1, "", "trigger"]], "nodriver.cdp.autofill.Address": [[5, 1, 1, "", "fields"]], "nodriver.cdp.autofill.AddressField": [[5, 1, 1, "", "name"], [5, 1, 1, "", "value"]], "nodriver.cdp.autofill.AddressFields": [[5, 1, 1, "", "fields"]], "nodriver.cdp.autofill.AddressFormFilled": [[5, 1, 1, "", "address_ui"], [5, 1, 1, "", "filled_fields"]], "nodriver.cdp.autofill.AddressUI": [[5, 1, 1, "", "address_fields"]], "nodriver.cdp.autofill.CreditCard": [[5, 1, 1, "", "cvc"], [5, 1, 1, "", "expiry_month"], [5, 1, 1, "", "expiry_year"], [5, 1, 1, "", "name"], [5, 1, 1, "", "number"]], "nodriver.cdp.autofill.FilledField": [[5, 1, 1, "", "autofill_type"], [5, 1, 1, "", "field_id"], [5, 1, 1, "", "filling_strategy"], [5, 1, 1, "", "frame_id"], [5, 1, 1, "", "html_type"], [5, 1, 1, "", "id_"], [5, 1, 1, "", "name"], [5, 1, 1, "", "value"]], "nodriver.cdp.autofill.FillingStrategy": [[5, 1, 1, "", "AUTOCOMPLETE_ATTRIBUTE"], [5, 1, 1, "", "AUTOFILL_INFERRED"]], "nodriver.cdp.background_service": [[6, 0, 1, "", "BackgroundServiceEvent"], [6, 0, 1, "", "BackgroundServiceEventReceived"], [6, 0, 1, "", "EventMetadata"], [6, 0, 1, "", "RecordingStateChanged"], [6, 0, 1, "", "ServiceName"], [6, 5, 1, "", "clear_events"], [6, 5, 1, "", "set_recording"], [6, 5, 1, "", "start_observing"], [6, 5, 1, "", "stop_observing"]], "nodriver.cdp.background_service.BackgroundServiceEvent": [[6, 1, 1, "", "event_metadata"], [6, 1, 1, "", "event_name"], [6, 1, 1, "", "instance_id"], [6, 1, 1, "", "origin"], [6, 1, 1, "", "service"], [6, 1, 1, "", "service_worker_registration_id"], [6, 1, 1, "", "storage_key"], [6, 1, 1, "", "timestamp"]], "nodriver.cdp.background_service.BackgroundServiceEventReceived": [[6, 1, 1, "", "background_service_event"]], "nodriver.cdp.background_service.EventMetadata": [[6, 1, 1, "", "key"], [6, 1, 1, "", "value"]], "nodriver.cdp.background_service.RecordingStateChanged": [[6, 1, 1, "", "is_recording"], [6, 1, 1, "", "service"]], "nodriver.cdp.background_service.ServiceName": [[6, 1, 1, "", "BACKGROUND_FETCH"], [6, 1, 1, "", "BACKGROUND_SYNC"], [6, 1, 1, "", "NOTIFICATIONS"], [6, 1, 1, "", "PAYMENT_HANDLER"], [6, 1, 1, "", "PERIODIC_BACKGROUND_SYNC"], [6, 1, 1, "", "PUSH_MESSAGING"]], "nodriver.cdp.bluetooth_emulation": [[7, 0, 1, "", "CentralState"], [7, 0, 1, "", "ManufacturerData"], [7, 0, 1, "", "ScanEntry"], [7, 0, 1, "", "ScanRecord"], [7, 5, 1, "", "disable"], [7, 5, 1, "", "enable"], [7, 5, 1, "", "simulate_advertisement"], [7, 5, 1, "", "simulate_preconnected_peripheral"]], "nodriver.cdp.bluetooth_emulation.CentralState": [[7, 1, 1, "", "ABSENT"], [7, 1, 1, "", "POWERED_OFF"], [7, 1, 1, "", "POWERED_ON"]], "nodriver.cdp.bluetooth_emulation.ManufacturerData": [[7, 1, 1, "", "data"], [7, 1, 1, "", "key"]], "nodriver.cdp.bluetooth_emulation.ScanEntry": [[7, 1, 1, "", "device_address"], [7, 1, 1, "", "rssi"], [7, 1, 1, "", "scan_record"]], "nodriver.cdp.bluetooth_emulation.ScanRecord": [[7, 1, 1, "", "appearance"], [7, 1, 1, "", "manufacturer_data"], [7, 1, 1, "", "name"], [7, 1, 1, "", "tx_power"], [7, 1, 1, "", "uuids"]], "nodriver.cdp.browser": [[8, 0, 1, "", "Bounds"], [8, 0, 1, "", "BrowserCommandId"], [8, 0, 1, "", "BrowserContextID"], [8, 0, 1, "", "Bucket"], [8, 0, 1, "", "DownloadProgress"], [8, 0, 1, "", "DownloadWillBegin"], [8, 0, 1, "", "Histogram"], [8, 0, 1, "", "PermissionDescriptor"], [8, 0, 1, "", "PermissionSetting"], [8, 0, 1, "", "PermissionType"], [8, 0, 1, "", "WindowID"], [8, 0, 1, "", "WindowState"], [8, 5, 1, "", "add_privacy_sandbox_enrollment_override"], [8, 5, 1, "", "cancel_download"], [8, 5, 1, "", "close"], [8, 5, 1, "", "crash"], [8, 5, 1, "", "crash_gpu_process"], [8, 5, 1, "", "execute_browser_command"], [8, 5, 1, "", "get_browser_command_line"], [8, 5, 1, "", "get_histogram"], [8, 5, 1, "", "get_histograms"], [8, 5, 1, "", "get_version"], [8, 5, 1, "", "get_window_bounds"], [8, 5, 1, "", "get_window_for_target"], [8, 5, 1, "", "grant_permissions"], [8, 5, 1, "", "reset_permissions"], [8, 5, 1, "", "set_dock_tile"], [8, 5, 1, "", "set_download_behavior"], [8, 5, 1, "", "set_permission"], [8, 5, 1, "", "set_window_bounds"]], "nodriver.cdp.browser.Bounds": [[8, 1, 1, "", "height"], [8, 1, 1, "", "left"], [8, 1, 1, "", "top"], [8, 1, 1, "", "width"], [8, 1, 1, "", "window_state"]], "nodriver.cdp.browser.BrowserCommandId": [[8, 1, 1, "", "CLOSE_TAB_SEARCH"], [8, 1, 1, "", "OPEN_TAB_SEARCH"]], "nodriver.cdp.browser.Bucket": [[8, 1, 1, "", "count"], [8, 1, 1, "", "high"], [8, 1, 1, "", "low"]], "nodriver.cdp.browser.DownloadProgress": [[8, 1, 1, "", "guid"], [8, 1, 1, "", "received_bytes"], [8, 1, 1, "", "state"], [8, 1, 1, "", "total_bytes"]], "nodriver.cdp.browser.DownloadWillBegin": [[8, 1, 1, "", "frame_id"], [8, 1, 1, "", "guid"], [8, 1, 1, "", "suggested_filename"], [8, 1, 1, "", "url"]], "nodriver.cdp.browser.Histogram": [[8, 1, 1, "", "buckets"], [8, 1, 1, "", "count"], [8, 1, 1, "", "name"], [8, 1, 1, "", "sum_"]], "nodriver.cdp.browser.PermissionDescriptor": [[8, 1, 1, "", "allow_without_gesture"], [8, 1, 1, "", "allow_without_sanitization"], [8, 1, 1, "", "name"], [8, 1, 1, "", "pan_tilt_zoom"], [8, 1, 1, "", "sysex"], [8, 1, 1, "", "user_visible_only"]], "nodriver.cdp.browser.PermissionSetting": [[8, 1, 1, "", "DENIED"], [8, 1, 1, "", "GRANTED"], [8, 1, 1, "", "PROMPT"]], "nodriver.cdp.browser.PermissionType": [[8, 1, 1, "", "ACCESSIBILITY_EVENTS"], [8, 1, 1, "", "AUDIO_CAPTURE"], [8, 1, 1, "", "BACKGROUND_FETCH"], [8, 1, 1, "", "BACKGROUND_SYNC"], [8, 1, 1, "", "CAPTURED_SURFACE_CONTROL"], [8, 1, 1, "", "CLIPBOARD_READ_WRITE"], [8, 1, 1, "", "CLIPBOARD_SANITIZED_WRITE"], [8, 1, 1, "", "DISPLAY_CAPTURE"], [8, 1, 1, "", "DURABLE_STORAGE"], [8, 1, 1, "", "FLASH"], [8, 1, 1, "", "GEOLOCATION"], [8, 1, 1, "", "IDLE_DETECTION"], [8, 1, 1, "", "LOCAL_FONTS"], [8, 1, 1, "", "MIDI"], [8, 1, 1, "", "MIDI_SYSEX"], [8, 1, 1, "", "NFC"], [8, 1, 1, "", "NOTIFICATIONS"], [8, 1, 1, "", "PAYMENT_HANDLER"], [8, 1, 1, "", "PERIODIC_BACKGROUND_SYNC"], [8, 1, 1, "", "PROTECTED_MEDIA_IDENTIFIER"], [8, 1, 1, "", "SENSORS"], [8, 1, 1, "", "SPEAKER_SELECTION"], [8, 1, 1, "", "STORAGE_ACCESS"], [8, 1, 1, "", "TOP_LEVEL_STORAGE_ACCESS"], [8, 1, 1, "", "VIDEO_CAPTURE"], [8, 1, 1, "", "VIDEO_CAPTURE_PAN_TILT_ZOOM"], [8, 1, 1, "", "WAKE_LOCK_SCREEN"], [8, 1, 1, "", "WAKE_LOCK_SYSTEM"], [8, 1, 1, "", "WEB_APP_INSTALLATION"], [8, 1, 1, "", "WINDOW_MANAGEMENT"]], "nodriver.cdp.browser.WindowState": [[8, 1, 1, "", "FULLSCREEN"], [8, 1, 1, "", "MAXIMIZED"], [8, 1, 1, "", "MINIMIZED"], [8, 1, 1, "", "NORMAL"]], "nodriver.cdp.cache_storage": [[9, 0, 1, "", "Cache"], [9, 0, 1, "", "CacheId"], [9, 0, 1, "", "CachedResponse"], [9, 0, 1, "", "CachedResponseType"], [9, 0, 1, "", "DataEntry"], [9, 0, 1, "", "Header"], [9, 5, 1, "", "delete_cache"], [9, 5, 1, "", "delete_entry"], [9, 5, 1, "", "request_cache_names"], [9, 5, 1, "", "request_cached_response"], [9, 5, 1, "", "request_entries"]], "nodriver.cdp.cache_storage.Cache": [[9, 1, 1, "", "cache_id"], [9, 1, 1, "", "cache_name"], [9, 1, 1, "", "security_origin"], [9, 1, 1, "", "storage_bucket"], [9, 1, 1, "", "storage_key"]], "nodriver.cdp.cache_storage.CachedResponse": [[9, 1, 1, "", "body"]], "nodriver.cdp.cache_storage.CachedResponseType": [[9, 1, 1, "", "BASIC"], [9, 1, 1, "", "CORS"], [9, 1, 1, "", "DEFAULT"], [9, 1, 1, "", "ERROR"], [9, 1, 1, "", "OPAQUE_REDIRECT"], [9, 1, 1, "", "OPAQUE_RESPONSE"]], "nodriver.cdp.cache_storage.DataEntry": [[9, 1, 1, "", "request_headers"], [9, 1, 1, "", "request_method"], [9, 1, 1, "", "request_url"], [9, 1, 1, "", "response_headers"], [9, 1, 1, "", "response_status"], [9, 1, 1, "", "response_status_text"], [9, 1, 1, "", "response_time"], [9, 1, 1, "", "response_type"]], "nodriver.cdp.cache_storage.Header": [[9, 1, 1, "", "name"], [9, 1, 1, "", "value"]], "nodriver.cdp.cast": [[10, 0, 1, "", "IssueUpdated"], [10, 0, 1, "", "Sink"], [10, 0, 1, "", "SinksUpdated"], [10, 5, 1, "", "disable"], [10, 5, 1, "", "enable"], [10, 5, 1, "", "set_sink_to_use"], [10, 5, 1, "", "start_desktop_mirroring"], [10, 5, 1, "", "start_tab_mirroring"], [10, 5, 1, "", "stop_casting"]], "nodriver.cdp.cast.IssueUpdated": [[10, 1, 1, "", "issue_message"]], "nodriver.cdp.cast.Sink": [[10, 1, 1, "", "id_"], [10, 1, 1, "", "name"], [10, 1, 1, "", "session"]], "nodriver.cdp.cast.SinksUpdated": [[10, 1, 1, "", "sinks"]], "nodriver.cdp.console": [[11, 0, 1, "", "ConsoleMessage"], [11, 0, 1, "", "MessageAdded"], [11, 5, 1, "", "clear_messages"], [11, 5, 1, "", "disable"], [11, 5, 1, "", "enable"]], "nodriver.cdp.console.ConsoleMessage": [[11, 1, 1, "", "column"], [11, 1, 1, "", "level"], [11, 1, 1, "", "line"], [11, 1, 1, "", "source"], [11, 1, 1, "", "text"], [11, 1, 1, "", "url"]], "nodriver.cdp.console.MessageAdded": [[11, 1, 1, "", "message"]], "nodriver.cdp.css": [[12, 0, 1, "", "CSSComputedStyleProperty"], [12, 0, 1, "", "CSSContainerQuery"], [12, 0, 1, "", "CSSFontPaletteValuesRule"], [12, 0, 1, "", "CSSKeyframeRule"], [12, 0, 1, "", "CSSKeyframesRule"], [12, 0, 1, "", "CSSLayer"], [12, 0, 1, "", "CSSLayerData"], [12, 0, 1, "", "CSSMedia"], [12, 0, 1, "", "CSSPositionTryRule"], [12, 0, 1, "", "CSSProperty"], [12, 0, 1, "", "CSSPropertyRegistration"], [12, 0, 1, "", "CSSPropertyRule"], [12, 0, 1, "", "CSSRule"], [12, 0, 1, "", "CSSRuleType"], [12, 0, 1, "", "CSSScope"], [12, 0, 1, "", "CSSStartingStyle"], [12, 0, 1, "", "CSSStyle"], [12, 0, 1, "", "CSSStyleSheetHeader"], [12, 0, 1, "", "CSSSupports"], [12, 0, 1, "", "CSSTryRule"], [12, 0, 1, "", "ComputedStyleUpdated"], [12, 0, 1, "", "FontFace"], [12, 0, 1, "", "FontVariationAxis"], [12, 0, 1, "", "FontsUpdated"], [12, 0, 1, "", "InheritedPseudoElementMatches"], [12, 0, 1, "", "InheritedStyleEntry"], [12, 0, 1, "", "MediaQuery"], [12, 0, 1, "", "MediaQueryExpression"], [12, 0, 1, "", "MediaQueryResultChanged"], [12, 0, 1, "", "PlatformFontUsage"], [12, 0, 1, "", "PseudoElementMatches"], [12, 0, 1, "", "RuleMatch"], [12, 0, 1, "", "RuleUsage"], [12, 0, 1, "", "SelectorList"], [12, 0, 1, "", "ShorthandEntry"], [12, 0, 1, "", "SourceRange"], [12, 0, 1, "", "Specificity"], [12, 0, 1, "", "StyleDeclarationEdit"], [12, 0, 1, "", "StyleSheetAdded"], [12, 0, 1, "", "StyleSheetChanged"], [12, 0, 1, "", "StyleSheetId"], [12, 0, 1, "", "StyleSheetOrigin"], [12, 0, 1, "", "StyleSheetRemoved"], [12, 0, 1, "", "Value"], [12, 5, 1, "", "add_rule"], [12, 5, 1, "", "collect_class_names"], [12, 5, 1, "", "create_style_sheet"], [12, 5, 1, "", "disable"], [12, 5, 1, "", "enable"], [12, 5, 1, "", "force_pseudo_state"], [12, 5, 1, "", "get_background_colors"], [12, 5, 1, "", "get_computed_style_for_node"], [12, 5, 1, "", "get_inline_styles_for_node"], [12, 5, 1, "", "get_layers_for_node"], [12, 5, 1, "", "get_location_for_selector"], [12, 5, 1, "", "get_matched_styles_for_node"], [12, 5, 1, "", "get_media_queries"], [12, 5, 1, "", "get_platform_fonts_for_node"], [12, 5, 1, "", "get_style_sheet_text"], [12, 5, 1, "", "set_container_query_text"], [12, 5, 1, "", "set_effective_property_value_for_node"], [12, 5, 1, "", "set_keyframe_key"], [12, 5, 1, "", "set_local_fonts_enabled"], [12, 5, 1, "", "set_media_text"], [12, 5, 1, "", "set_property_rule_property_name"], [12, 5, 1, "", "set_rule_selector"], [12, 5, 1, "", "set_scope_text"], [12, 5, 1, "", "set_style_sheet_text"], [12, 5, 1, "", "set_style_texts"], [12, 5, 1, "", "set_supports_text"], [12, 5, 1, "", "start_rule_usage_tracking"], [12, 5, 1, "", "stop_rule_usage_tracking"], [12, 5, 1, "", "take_computed_style_updates"], [12, 5, 1, "", "take_coverage_delta"], [12, 5, 1, "", "track_computed_style_updates"], [12, 5, 1, "", "track_computed_style_updates_for_node"]], "nodriver.cdp.css.CSSComputedStyleProperty": [[12, 1, 1, "", "name"], [12, 1, 1, "", "value"]], "nodriver.cdp.css.CSSContainerQuery": [[12, 1, 1, "", "logical_axes"], [12, 1, 1, "", "name"], [12, 1, 1, "", "physical_axes"], [12, 1, 1, "", "queries_scroll_state"], [12, 1, 1, "", "range_"], [12, 1, 1, "", "style_sheet_id"], [12, 1, 1, "", "text"]], "nodriver.cdp.css.CSSFontPaletteValuesRule": [[12, 1, 1, "", "font_palette_name"], [12, 1, 1, "", "origin"], [12, 1, 1, "", "style"], [12, 1, 1, "", "style_sheet_id"]], "nodriver.cdp.css.CSSKeyframeRule": [[12, 1, 1, "", "key_text"], [12, 1, 1, "", "origin"], [12, 1, 1, "", "style"], [12, 1, 1, "", "style_sheet_id"]], "nodriver.cdp.css.CSSKeyframesRule": [[12, 1, 1, "", "animation_name"], [12, 1, 1, "", "keyframes"]], "nodriver.cdp.css.CSSLayer": [[12, 1, 1, "", "range_"], [12, 1, 1, "", "style_sheet_id"], [12, 1, 1, "", "text"]], "nodriver.cdp.css.CSSLayerData": [[12, 1, 1, "", "name"], [12, 1, 1, "", "order"], [12, 1, 1, "", "sub_layers"]], "nodriver.cdp.css.CSSMedia": [[12, 1, 1, "", "media_list"], [12, 1, 1, "", "range_"], [12, 1, 1, "", "source"], [12, 1, 1, "", "source_url"], [12, 1, 1, "", "style_sheet_id"], [12, 1, 1, "", "text"]], "nodriver.cdp.css.CSSPositionTryRule": [[12, 1, 1, "", "active"], [12, 1, 1, "", "name"], [12, 1, 1, "", "origin"], [12, 1, 1, "", "style"], [12, 1, 1, "", "style_sheet_id"]], "nodriver.cdp.css.CSSProperty": [[12, 1, 1, "", "disabled"], [12, 1, 1, "", "implicit"], [12, 1, 1, "", "important"], [12, 1, 1, "", "longhand_properties"], [12, 1, 1, "", "name"], [12, 1, 1, "", "parsed_ok"], [12, 1, 1, "", "range_"], [12, 1, 1, "", "text"], [12, 1, 1, "", "value"]], "nodriver.cdp.css.CSSPropertyRegistration": [[12, 1, 1, "", "inherits"], [12, 1, 1, "", "initial_value"], [12, 1, 1, "", "property_name"], [12, 1, 1, "", "syntax"]], "nodriver.cdp.css.CSSPropertyRule": [[12, 1, 1, "", "origin"], [12, 1, 1, "", "property_name"], [12, 1, 1, "", "style"], [12, 1, 1, "", "style_sheet_id"]], "nodriver.cdp.css.CSSRule": [[12, 1, 1, "", "container_queries"], [12, 1, 1, "", "layers"], [12, 1, 1, "", "media"], [12, 1, 1, "", "nesting_selectors"], [12, 1, 1, "", "origin"], [12, 1, 1, "", "rule_types"], [12, 1, 1, "", "scopes"], [12, 1, 1, "", "selector_list"], [12, 1, 1, "", "starting_styles"], [12, 1, 1, "", "style"], [12, 1, 1, "", "style_sheet_id"], [12, 1, 1, "", "supports"]], "nodriver.cdp.css.CSSRuleType": [[12, 1, 1, "", "CONTAINER_RULE"], [12, 1, 1, "", "LAYER_RULE"], [12, 1, 1, "", "MEDIA_RULE"], [12, 1, 1, "", "SCOPE_RULE"], [12, 1, 1, "", "STARTING_STYLE_RULE"], [12, 1, 1, "", "STYLE_RULE"], [12, 1, 1, "", "SUPPORTS_RULE"]], "nodriver.cdp.css.CSSScope": [[12, 1, 1, "", "range_"], [12, 1, 1, "", "style_sheet_id"], [12, 1, 1, "", "text"]], "nodriver.cdp.css.CSSStartingStyle": [[12, 1, 1, "", "range_"], [12, 1, 1, "", "style_sheet_id"]], "nodriver.cdp.css.CSSStyle": [[12, 1, 1, "", "css_properties"], [12, 1, 1, "", "css_text"], [12, 1, 1, "", "range_"], [12, 1, 1, "", "shorthand_entries"], [12, 1, 1, "", "style_sheet_id"]], "nodriver.cdp.css.CSSStyleSheetHeader": [[12, 1, 1, "", "disabled"], [12, 1, 1, "", "end_column"], [12, 1, 1, "", "end_line"], [12, 1, 1, "", "frame_id"], [12, 1, 1, "", "has_source_url"], [12, 1, 1, "", "is_constructed"], [12, 1, 1, "", "is_inline"], [12, 1, 1, "", "is_mutable"], [12, 1, 1, "", "length"], [12, 1, 1, "", "loading_failed"], [12, 1, 1, "", "origin"], [12, 1, 1, "", "owner_node"], [12, 1, 1, "", "source_map_url"], [12, 1, 1, "", "source_url"], [12, 1, 1, "", "start_column"], [12, 1, 1, "", "start_line"], [12, 1, 1, "", "style_sheet_id"], [12, 1, 1, "", "title"]], "nodriver.cdp.css.CSSSupports": [[12, 1, 1, "", "active"], [12, 1, 1, "", "range_"], [12, 1, 1, "", "style_sheet_id"], [12, 1, 1, "", "text"]], "nodriver.cdp.css.CSSTryRule": [[12, 1, 1, "", "origin"], [12, 1, 1, "", "style"], [12, 1, 1, "", "style_sheet_id"]], "nodriver.cdp.css.ComputedStyleUpdated": [[12, 1, 1, "", "node_id"]], "nodriver.cdp.css.FontFace": [[12, 1, 1, "", "font_display"], [12, 1, 1, "", "font_family"], [12, 1, 1, "", "font_stretch"], [12, 1, 1, "", "font_style"], [12, 1, 1, "", "font_variant"], [12, 1, 1, "", "font_variation_axes"], [12, 1, 1, "", "font_weight"], [12, 1, 1, "", "platform_font_family"], [12, 1, 1, "", "src"], [12, 1, 1, "", "unicode_range"]], "nodriver.cdp.css.FontVariationAxis": [[12, 1, 1, "", "default_value"], [12, 1, 1, "", "max_value"], [12, 1, 1, "", "min_value"], [12, 1, 1, "", "name"], [12, 1, 1, "", "tag"]], "nodriver.cdp.css.FontsUpdated": [[12, 1, 1, "", "font"]], "nodriver.cdp.css.InheritedPseudoElementMatches": [[12, 1, 1, "", "pseudo_elements"]], "nodriver.cdp.css.InheritedStyleEntry": [[12, 1, 1, "", "inline_style"], [12, 1, 1, "", "matched_css_rules"]], "nodriver.cdp.css.MediaQuery": [[12, 1, 1, "", "active"], [12, 1, 1, "", "expressions"]], "nodriver.cdp.css.MediaQueryExpression": [[12, 1, 1, "", "computed_length"], [12, 1, 1, "", "feature"], [12, 1, 1, "", "unit"], [12, 1, 1, "", "value"], [12, 1, 1, "", "value_range"]], "nodriver.cdp.css.PlatformFontUsage": [[12, 1, 1, "", "family_name"], [12, 1, 1, "", "glyph_count"], [12, 1, 1, "", "is_custom_font"], [12, 1, 1, "", "post_script_name"]], "nodriver.cdp.css.PseudoElementMatches": [[12, 1, 1, "", "matches"], [12, 1, 1, "", "pseudo_identifier"], [12, 1, 1, "", "pseudo_type"]], "nodriver.cdp.css.RuleMatch": [[12, 1, 1, "", "matching_selectors"], [12, 1, 1, "", "rule"]], "nodriver.cdp.css.RuleUsage": [[12, 1, 1, "", "end_offset"], [12, 1, 1, "", "start_offset"], [12, 1, 1, "", "style_sheet_id"], [12, 1, 1, "", "used"]], "nodriver.cdp.css.SelectorList": [[12, 1, 1, "", "selectors"], [12, 1, 1, "", "text"]], "nodriver.cdp.css.ShorthandEntry": [[12, 1, 1, "", "important"], [12, 1, 1, "", "name"], [12, 1, 1, "", "value"]], "nodriver.cdp.css.SourceRange": [[12, 1, 1, "", "end_column"], [12, 1, 1, "", "end_line"], [12, 1, 1, "", "start_column"], [12, 1, 1, "", "start_line"]], "nodriver.cdp.css.Specificity": [[12, 1, 1, "", "a"], [12, 1, 1, "", "b"], [12, 1, 1, "", "c"]], "nodriver.cdp.css.StyleDeclarationEdit": [[12, 1, 1, "", "range_"], [12, 1, 1, "", "style_sheet_id"], [12, 1, 1, "", "text"]], "nodriver.cdp.css.StyleSheetAdded": [[12, 1, 1, "", "header"]], "nodriver.cdp.css.StyleSheetChanged": [[12, 1, 1, "", "style_sheet_id"]], "nodriver.cdp.css.StyleSheetOrigin": [[12, 1, 1, "", "INJECTED"], [12, 1, 1, "", "INSPECTOR"], [12, 1, 1, "", "REGULAR"], [12, 1, 1, "", "USER_AGENT"]], "nodriver.cdp.css.StyleSheetRemoved": [[12, 1, 1, "", "style_sheet_id"]], "nodriver.cdp.css.Value": [[12, 1, 1, "", "range_"], [12, 1, 1, "", "specificity"], [12, 1, 1, "", "text"]], "nodriver.cdp.database": [[13, 0, 1, "", "AddDatabase"], [13, 0, 1, "", "Database"], [13, 0, 1, "", "DatabaseId"], [13, 0, 1, "", "Error"], [13, 5, 1, "", "disable"], [13, 5, 1, "", "enable"], [13, 5, 1, "", "execute_sql"], [13, 5, 1, "", "get_database_table_names"]], "nodriver.cdp.database.AddDatabase": [[13, 1, 1, "", "database"]], "nodriver.cdp.database.Database": [[13, 1, 1, "", "domain"], [13, 1, 1, "", "id_"], [13, 1, 1, "", "name"], [13, 1, 1, "", "version"]], "nodriver.cdp.database.Error": [[13, 1, 1, "", "code"], [13, 1, 1, "", "message"]], "nodriver.cdp.debugger": [[14, 0, 1, "", "BreakLocation"], [14, 0, 1, "", "BreakpointId"], [14, 0, 1, "", "BreakpointResolved"], [14, 0, 1, "", "CallFrame"], [14, 0, 1, "", "CallFrameId"], [14, 0, 1, "", "DebugSymbols"], [14, 0, 1, "", "Location"], [14, 0, 1, "", "LocationRange"], [14, 0, 1, "", "Paused"], [14, 0, 1, "", "Resumed"], [14, 0, 1, "", "Scope"], [14, 0, 1, "", "ScriptFailedToParse"], [14, 0, 1, "", "ScriptLanguage"], [14, 0, 1, "", "ScriptParsed"], [14, 0, 1, "", "ScriptPosition"], [14, 0, 1, "", "SearchMatch"], [14, 0, 1, "", "WasmDisassemblyChunk"], [14, 5, 1, "", "continue_to_location"], [14, 5, 1, "", "disable"], [14, 5, 1, "", "disassemble_wasm_module"], [14, 5, 1, "", "enable"], [14, 5, 1, "", "evaluate_on_call_frame"], [14, 5, 1, "", "get_possible_breakpoints"], [14, 5, 1, "", "get_script_source"], [14, 5, 1, "", "get_stack_trace"], [14, 5, 1, "", "get_wasm_bytecode"], [14, 5, 1, "", "next_wasm_disassembly_chunk"], [14, 5, 1, "", "pause"], [14, 5, 1, "", "pause_on_async_call"], [14, 5, 1, "", "remove_breakpoint"], [14, 5, 1, "", "restart_frame"], [14, 5, 1, "", "resume"], [14, 5, 1, "", "search_in_content"], [14, 5, 1, "", "set_async_call_stack_depth"], [14, 5, 1, "", "set_blackbox_execution_contexts"], [14, 5, 1, "", "set_blackbox_patterns"], [14, 5, 1, "", "set_blackboxed_ranges"], [14, 5, 1, "", "set_breakpoint"], [14, 5, 1, "", "set_breakpoint_by_url"], [14, 5, 1, "", "set_breakpoint_on_function_call"], [14, 5, 1, "", "set_breakpoints_active"], [14, 5, 1, "", "set_instrumentation_breakpoint"], [14, 5, 1, "", "set_pause_on_exceptions"], [14, 5, 1, "", "set_return_value"], [14, 5, 1, "", "set_script_source"], [14, 5, 1, "", "set_skip_all_pauses"], [14, 5, 1, "", "set_variable_value"], [14, 5, 1, "", "step_into"], [14, 5, 1, "", "step_out"], [14, 5, 1, "", "step_over"]], "nodriver.cdp.debugger.BreakLocation": [[14, 1, 1, "", "column_number"], [14, 1, 1, "", "line_number"], [14, 1, 1, "", "script_id"], [14, 1, 1, "", "type_"]], "nodriver.cdp.debugger.BreakpointResolved": [[14, 1, 1, "", "breakpoint_id"], [14, 1, 1, "", "location"]], "nodriver.cdp.debugger.CallFrame": [[14, 1, 1, "", "call_frame_id"], [14, 1, 1, "", "can_be_restarted"], [14, 1, 1, "", "function_location"], [14, 1, 1, "", "function_name"], [14, 1, 1, "", "location"], [14, 1, 1, "", "return_value"], [14, 1, 1, "", "scope_chain"], [14, 1, 1, "", "this"], [14, 1, 1, "", "url"]], "nodriver.cdp.debugger.DebugSymbols": [[14, 1, 1, "", "external_url"], [14, 1, 1, "", "type_"]], "nodriver.cdp.debugger.Location": [[14, 1, 1, "", "column_number"], [14, 1, 1, "", "line_number"], [14, 1, 1, "", "script_id"]], "nodriver.cdp.debugger.LocationRange": [[14, 1, 1, "", "end"], [14, 1, 1, "", "script_id"], [14, 1, 1, "", "start"]], "nodriver.cdp.debugger.Paused": [[14, 1, 1, "", "async_call_stack_trace_id"], [14, 1, 1, "", "async_stack_trace"], [14, 1, 1, "", "async_stack_trace_id"], [14, 1, 1, "", "call_frames"], [14, 1, 1, "", "data"], [14, 1, 1, "", "hit_breakpoints"], [14, 1, 1, "", "reason"]], "nodriver.cdp.debugger.Scope": [[14, 1, 1, "", "end_location"], [14, 1, 1, "", "name"], [14, 1, 1, "", "object_"], [14, 1, 1, "", "start_location"], [14, 1, 1, "", "type_"]], "nodriver.cdp.debugger.ScriptFailedToParse": [[14, 1, 1, "", "code_offset"], [14, 1, 1, "", "embedder_name"], [14, 1, 1, "", "end_column"], [14, 1, 1, "", "end_line"], [14, 1, 1, "", "execution_context_aux_data"], [14, 1, 1, "", "execution_context_id"], [14, 1, 1, "", "has_source_url"], [14, 1, 1, "", "hash_"], [14, 1, 1, "", "is_module"], [14, 1, 1, "", "length"], [14, 1, 1, "", "script_id"], [14, 1, 1, "", "script_language"], [14, 1, 1, "", "source_map_url"], [14, 1, 1, "", "stack_trace"], [14, 1, 1, "", "start_column"], [14, 1, 1, "", "start_line"], [14, 1, 1, "", "url"]], "nodriver.cdp.debugger.ScriptLanguage": [[14, 1, 1, "", "JAVA_SCRIPT"], [14, 1, 1, "", "WEB_ASSEMBLY"]], "nodriver.cdp.debugger.ScriptParsed": [[14, 1, 1, "", "code_offset"], [14, 1, 1, "", "debug_symbols"], [14, 1, 1, "", "embedder_name"], [14, 1, 1, "", "end_column"], [14, 1, 1, "", "end_line"], [14, 1, 1, "", "execution_context_aux_data"], [14, 1, 1, "", "execution_context_id"], [14, 1, 1, "", "has_source_url"], [14, 1, 1, "", "hash_"], [14, 1, 1, "", "is_live_edit"], [14, 1, 1, "", "is_module"], [14, 1, 1, "", "length"], [14, 1, 1, "", "script_id"], [14, 1, 1, "", "script_language"], [14, 1, 1, "", "source_map_url"], [14, 1, 1, "", "stack_trace"], [14, 1, 1, "", "start_column"], [14, 1, 1, "", "start_line"], [14, 1, 1, "", "url"]], "nodriver.cdp.debugger.ScriptPosition": [[14, 1, 1, "", "column_number"], [14, 1, 1, "", "line_number"]], "nodriver.cdp.debugger.SearchMatch": [[14, 1, 1, "", "line_content"], [14, 1, 1, "", "line_number"]], "nodriver.cdp.debugger.WasmDisassemblyChunk": [[14, 1, 1, "", "bytecode_offsets"], [14, 1, 1, "", "lines"]], "nodriver.cdp.device_access": [[15, 0, 1, "", "DeviceId"], [15, 0, 1, "", "DeviceRequestPrompted"], [15, 0, 1, "", "PromptDevice"], [15, 0, 1, "", "RequestId"], [15, 5, 1, "", "cancel_prompt"], [15, 5, 1, "", "disable"], [15, 5, 1, "", "enable"], [15, 5, 1, "", "select_prompt"]], "nodriver.cdp.device_access.DeviceRequestPrompted": [[15, 1, 1, "", "devices"], [15, 1, 1, "", "id_"]], "nodriver.cdp.device_access.PromptDevice": [[15, 1, 1, "", "id_"], [15, 1, 1, "", "name"]], "nodriver.cdp.device_orientation": [[16, 5, 1, "", "clear_device_orientation_override"], [16, 5, 1, "", "set_device_orientation_override"]], "nodriver.cdp.dom": [[17, 0, 1, "", "AttributeModified"], [17, 0, 1, "", "AttributeRemoved"], [17, 0, 1, "", "BackendNode"], [17, 0, 1, "", "BackendNodeId"], [17, 0, 1, "", "BoxModel"], [17, 0, 1, "", "CSSComputedStyleProperty"], [17, 0, 1, "", "CharacterDataModified"], [17, 0, 1, "", "ChildNodeCountUpdated"], [17, 0, 1, "", "ChildNodeInserted"], [17, 0, 1, "", "ChildNodeRemoved"], [17, 0, 1, "", "CompatibilityMode"], [17, 0, 1, "", "DetachedElementInfo"], [17, 0, 1, "", "DistributedNodesUpdated"], [17, 0, 1, "", "DocumentUpdated"], [17, 0, 1, "", "InlineStyleInvalidated"], [17, 0, 1, "", "LogicalAxes"], [17, 0, 1, "", "Node"], [17, 0, 1, "", "NodeId"], [17, 0, 1, "", "PhysicalAxes"], [17, 0, 1, "", "PseudoElementAdded"], [17, 0, 1, "", "PseudoElementRemoved"], [17, 0, 1, "", "PseudoType"], [17, 0, 1, "", "Quad"], [17, 0, 1, "", "RGBA"], [17, 0, 1, "", "Rect"], [17, 0, 1, "", "ScrollOrientation"], [17, 0, 1, "", "ScrollableFlagUpdated"], [17, 0, 1, "", "SetChildNodes"], [17, 0, 1, "", "ShadowRootPopped"], [17, 0, 1, "", "ShadowRootPushed"], [17, 0, 1, "", "ShadowRootType"], [17, 0, 1, "", "ShapeOutsideInfo"], [17, 0, 1, "", "TopLayerElementsUpdated"], [17, 5, 1, "", "collect_class_names_from_subtree"], [17, 5, 1, "", "copy_to"], [17, 5, 1, "", "describe_node"], [17, 5, 1, "", "disable"], [17, 5, 1, "", "discard_search_results"], [17, 5, 1, "", "enable"], [17, 5, 1, "", "focus"], [17, 5, 1, "", "get_anchor_element"], [17, 5, 1, "", "get_attributes"], [17, 5, 1, "", "get_box_model"], [17, 5, 1, "", "get_container_for_node"], [17, 5, 1, "", "get_content_quads"], [17, 5, 1, "", "get_detached_dom_nodes"], [17, 5, 1, "", "get_document"], [17, 5, 1, "", "get_element_by_relation"], [17, 5, 1, "", "get_file_info"], [17, 5, 1, "", "get_flattened_document"], [17, 5, 1, "", "get_frame_owner"], [17, 5, 1, "", "get_node_for_location"], [17, 5, 1, "", "get_node_stack_traces"], [17, 5, 1, "", "get_nodes_for_subtree_by_style"], [17, 5, 1, "", "get_outer_html"], [17, 5, 1, "", "get_querying_descendants_for_container"], [17, 5, 1, "", "get_relayout_boundary"], [17, 5, 1, "", "get_search_results"], [17, 5, 1, "", "get_top_layer_elements"], [17, 5, 1, "", "hide_highlight"], [17, 5, 1, "", "highlight_node"], [17, 5, 1, "", "highlight_rect"], [17, 5, 1, "", "mark_undoable_state"], [17, 5, 1, "", "move_to"], [17, 5, 1, "", "perform_search"], [17, 5, 1, "", "push_node_by_path_to_frontend"], [17, 5, 1, "", "push_nodes_by_backend_ids_to_frontend"], [17, 5, 1, "", "query_selector"], [17, 5, 1, "", "query_selector_all"], [17, 5, 1, "", "redo"], [17, 5, 1, "", "remove_attribute"], [17, 5, 1, "", "remove_node"], [17, 5, 1, "", "request_child_nodes"], [17, 5, 1, "", "request_node"], [17, 5, 1, "", "resolve_node"], [17, 5, 1, "", "scroll_into_view_if_needed"], [17, 5, 1, "", "set_attribute_value"], [17, 5, 1, "", "set_attributes_as_text"], [17, 5, 1, "", "set_file_input_files"], [17, 5, 1, "", "set_inspected_node"], [17, 5, 1, "", "set_node_name"], [17, 5, 1, "", "set_node_stack_traces_enabled"], [17, 5, 1, "", "set_node_value"], [17, 5, 1, "", "set_outer_html"], [17, 5, 1, "", "undo"]], "nodriver.cdp.dom.AttributeModified": [[17, 1, 1, "", "name"], [17, 1, 1, "", "node_id"], [17, 1, 1, "", "value"]], "nodriver.cdp.dom.AttributeRemoved": [[17, 1, 1, "", "name"], [17, 1, 1, "", "node_id"]], "nodriver.cdp.dom.BackendNode": [[17, 1, 1, "", "backend_node_id"], [17, 1, 1, "", "node_name"], [17, 1, 1, "", "node_type"]], "nodriver.cdp.dom.BoxModel": [[17, 1, 1, "", "border"], [17, 1, 1, "", "content"], [17, 1, 1, "", "height"], [17, 1, 1, "", "margin"], [17, 1, 1, "", "padding"], [17, 1, 1, "", "shape_outside"], [17, 1, 1, "", "width"]], "nodriver.cdp.dom.CSSComputedStyleProperty": [[17, 1, 1, "", "name"], [17, 1, 1, "", "value"]], "nodriver.cdp.dom.CharacterDataModified": [[17, 1, 1, "", "character_data"], [17, 1, 1, "", "node_id"]], "nodriver.cdp.dom.ChildNodeCountUpdated": [[17, 1, 1, "", "child_node_count"], [17, 1, 1, "", "node_id"]], "nodriver.cdp.dom.ChildNodeInserted": [[17, 1, 1, "", "node"], [17, 1, 1, "", "parent_node_id"], [17, 1, 1, "", "previous_node_id"]], "nodriver.cdp.dom.ChildNodeRemoved": [[17, 1, 1, "", "node_id"], [17, 1, 1, "", "parent_node_id"]], "nodriver.cdp.dom.CompatibilityMode": [[17, 1, 1, "", "LIMITED_QUIRKS_MODE"], [17, 1, 1, "", "NO_QUIRKS_MODE"], [17, 1, 1, "", "QUIRKS_MODE"]], "nodriver.cdp.dom.DetachedElementInfo": [[17, 1, 1, "", "retained_node_ids"], [17, 1, 1, "", "tree_node"]], "nodriver.cdp.dom.DistributedNodesUpdated": [[17, 1, 1, "", "distributed_nodes"], [17, 1, 1, "", "insertion_point_id"]], "nodriver.cdp.dom.InlineStyleInvalidated": [[17, 1, 1, "", "node_ids"]], "nodriver.cdp.dom.LogicalAxes": [[17, 1, 1, "", "BLOCK"], [17, 1, 1, "", "BOTH"], [17, 1, 1, "", "INLINE"]], "nodriver.cdp.dom.Node": [[17, 1, 1, "", "assigned_slot"], [17, 1, 1, "", "attributes"], [17, 1, 1, "", "backend_node_id"], [17, 1, 1, "", "base_url"], [17, 1, 1, "", "child_node_count"], [17, 1, 1, "", "children"], [17, 1, 1, "", "compatibility_mode"], [17, 1, 1, "", "content_document"], [17, 1, 1, "", "distributed_nodes"], [17, 1, 1, "", "document_url"], [17, 1, 1, "", "frame_id"], [17, 1, 1, "", "imported_document"], [17, 1, 1, "", "internal_subset"], [17, 1, 1, "", "is_scrollable"], [17, 1, 1, "", "is_svg"], [17, 1, 1, "", "local_name"], [17, 1, 1, "", "name"], [17, 1, 1, "", "node_id"], [17, 1, 1, "", "node_name"], [17, 1, 1, "", "node_type"], [17, 1, 1, "", "node_value"], [17, 1, 1, "", "parent_id"], [17, 1, 1, "", "pseudo_elements"], [17, 1, 1, "", "pseudo_identifier"], [17, 1, 1, "", "pseudo_type"], [17, 1, 1, "", "public_id"], [17, 1, 1, "", "shadow_root_type"], [17, 1, 1, "", "shadow_roots"], [17, 1, 1, "", "system_id"], [17, 1, 1, "", "template_content"], [17, 1, 1, "", "value"], [17, 1, 1, "", "xml_version"]], "nodriver.cdp.dom.PhysicalAxes": [[17, 1, 1, "", "BOTH"], [17, 1, 1, "", "HORIZONTAL"], [17, 1, 1, "", "VERTICAL"]], "nodriver.cdp.dom.PseudoElementAdded": [[17, 1, 1, "", "parent_id"], [17, 1, 1, "", "pseudo_element"]], "nodriver.cdp.dom.PseudoElementRemoved": [[17, 1, 1, "", "parent_id"], [17, 1, 1, "", "pseudo_element_id"]], "nodriver.cdp.dom.PseudoType": [[17, 1, 1, "", "AFTER"], [17, 1, 1, "", "BACKDROP"], [17, 1, 1, "", "BEFORE"], [17, 1, 1, "", "CHECK"], [17, 1, 1, "", "COLUMN"], [17, 1, 1, "", "DETAILS_CONTENT"], [17, 1, 1, "", "FILE_SELECTOR_BUTTON"], [17, 1, 1, "", "FIRST_LETTER"], [17, 1, 1, "", "FIRST_LINE"], [17, 1, 1, "", "FIRST_LINE_INHERITED"], [17, 1, 1, "", "GRAMMAR_ERROR"], [17, 1, 1, "", "HIGHLIGHT"], [17, 1, 1, "", "INPUT_LIST_BUTTON"], [17, 1, 1, "", "MARKER"], [17, 1, 1, "", "PICKER"], [17, 1, 1, "", "PLACEHOLDER"], [17, 1, 1, "", "RESIZER"], [17, 1, 1, "", "SCROLLBAR"], [17, 1, 1, "", "SCROLLBAR_BUTTON"], [17, 1, 1, "", "SCROLLBAR_CORNER"], [17, 1, 1, "", "SCROLLBAR_THUMB"], [17, 1, 1, "", "SCROLLBAR_TRACK"], [17, 1, 1, "", "SCROLLBAR_TRACK_PIECE"], [17, 1, 1, "", "SCROLL_MARKER"], [17, 1, 1, "", "SCROLL_MARKER_GROUP"], [17, 1, 1, "", "SCROLL_NEXT_BUTTON"], [17, 1, 1, "", "SCROLL_PREV_BUTTON"], [17, 1, 1, "", "SEARCH_TEXT"], [17, 1, 1, "", "SELECTION"], [17, 1, 1, "", "SELECT_ARROW"], [17, 1, 1, "", "SPELLING_ERROR"], [17, 1, 1, "", "TARGET_TEXT"], [17, 1, 1, "", "VIEW_TRANSITION"], [17, 1, 1, "", "VIEW_TRANSITION_GROUP"], [17, 1, 1, "", "VIEW_TRANSITION_IMAGE_PAIR"], [17, 1, 1, "", "VIEW_TRANSITION_NEW"], [17, 1, 1, "", "VIEW_TRANSITION_OLD"]], "nodriver.cdp.dom.RGBA": [[17, 1, 1, "", "a"], [17, 1, 1, "", "b"], [17, 1, 1, "", "g"], [17, 1, 1, "", "r"]], "nodriver.cdp.dom.Rect": [[17, 1, 1, "", "height"], [17, 1, 1, "", "width"], [17, 1, 1, "", "x"], [17, 1, 1, "", "y"]], "nodriver.cdp.dom.ScrollOrientation": [[17, 1, 1, "", "HORIZONTAL"], [17, 1, 1, "", "VERTICAL"]], "nodriver.cdp.dom.ScrollableFlagUpdated": [[17, 1, 1, "", "is_scrollable"], [17, 1, 1, "", "node_id"]], "nodriver.cdp.dom.SetChildNodes": [[17, 1, 1, "", "nodes"], [17, 1, 1, "", "parent_id"]], "nodriver.cdp.dom.ShadowRootPopped": [[17, 1, 1, "", "host_id"], [17, 1, 1, "", "root_id"]], "nodriver.cdp.dom.ShadowRootPushed": [[17, 1, 1, "", "host_id"], [17, 1, 1, "", "root"]], "nodriver.cdp.dom.ShadowRootType": [[17, 1, 1, "", "CLOSED"], [17, 1, 1, "", "OPEN_"], [17, 1, 1, "", "USER_AGENT"]], "nodriver.cdp.dom.ShapeOutsideInfo": [[17, 1, 1, "", "bounds"], [17, 1, 1, "", "margin_shape"], [17, 1, 1, "", "shape"]], "nodriver.cdp.dom_debugger": [[18, 0, 1, "", "CSPViolationType"], [18, 0, 1, "", "DOMBreakpointType"], [18, 0, 1, "", "EventListener"], [18, 5, 1, "", "get_event_listeners"], [18, 5, 1, "", "remove_dom_breakpoint"], [18, 5, 1, "", "remove_event_listener_breakpoint"], [18, 5, 1, "", "remove_instrumentation_breakpoint"], [18, 5, 1, "", "remove_xhr_breakpoint"], [18, 5, 1, "", "set_break_on_csp_violation"], [18, 5, 1, "", "set_dom_breakpoint"], [18, 5, 1, "", "set_event_listener_breakpoint"], [18, 5, 1, "", "set_instrumentation_breakpoint"], [18, 5, 1, "", "set_xhr_breakpoint"]], "nodriver.cdp.dom_debugger.CSPViolationType": [[18, 1, 1, "", "TRUSTEDTYPE_POLICY_VIOLATION"], [18, 1, 1, "", "TRUSTEDTYPE_SINK_VIOLATION"]], "nodriver.cdp.dom_debugger.DOMBreakpointType": [[18, 1, 1, "", "ATTRIBUTE_MODIFIED"], [18, 1, 1, "", "NODE_REMOVED"], [18, 1, 1, "", "SUBTREE_MODIFIED"]], "nodriver.cdp.dom_debugger.EventListener": [[18, 1, 1, "", "backend_node_id"], [18, 1, 1, "", "column_number"], [18, 1, 1, "", "handler"], [18, 1, 1, "", "line_number"], [18, 1, 1, "", "once"], [18, 1, 1, "", "original_handler"], [18, 1, 1, "", "passive"], [18, 1, 1, "", "script_id"], [18, 1, 1, "", "type_"], [18, 1, 1, "", "use_capture"]], "nodriver.cdp.dom_snapshot": [[19, 0, 1, "", "ArrayOfStrings"], [19, 0, 1, "", "ComputedStyle"], [19, 0, 1, "", "DOMNode"], [19, 0, 1, "", "DocumentSnapshot"], [19, 0, 1, "", "InlineTextBox"], [19, 0, 1, "", "LayoutTreeNode"], [19, 0, 1, "", "LayoutTreeSnapshot"], [19, 0, 1, "", "NameValue"], [19, 0, 1, "", "NodeTreeSnapshot"], [19, 0, 1, "", "RareBooleanData"], [19, 0, 1, "", "RareIntegerData"], [19, 0, 1, "", "RareStringData"], [19, 0, 1, "", "Rectangle"], [19, 0, 1, "", "StringIndex"], [19, 0, 1, "", "TextBoxSnapshot"], [19, 5, 1, "", "capture_snapshot"], [19, 5, 1, "", "disable"], [19, 5, 1, "", "enable"], [19, 5, 1, "", "get_snapshot"]], "nodriver.cdp.dom_snapshot.ComputedStyle": [[19, 1, 1, "", "properties"]], "nodriver.cdp.dom_snapshot.DOMNode": [[19, 1, 1, "", "attributes"], [19, 1, 1, "", "backend_node_id"], [19, 1, 1, "", "base_url"], [19, 1, 1, "", "child_node_indexes"], [19, 1, 1, "", "content_document_index"], [19, 1, 1, "", "content_language"], [19, 1, 1, "", "current_source_url"], [19, 1, 1, "", "document_encoding"], [19, 1, 1, "", "document_url"], [19, 1, 1, "", "event_listeners"], [19, 1, 1, "", "frame_id"], [19, 1, 1, "", "input_checked"], [19, 1, 1, "", "input_value"], [19, 1, 1, "", "is_clickable"], [19, 1, 1, "", "layout_node_index"], [19, 1, 1, "", "node_name"], [19, 1, 1, "", "node_type"], [19, 1, 1, "", "node_value"], [19, 1, 1, "", "option_selected"], [19, 1, 1, "", "origin_url"], [19, 1, 1, "", "pseudo_element_indexes"], [19, 1, 1, "", "pseudo_type"], [19, 1, 1, "", "public_id"], [19, 1, 1, "", "scroll_offset_x"], [19, 1, 1, "", "scroll_offset_y"], [19, 1, 1, "", "shadow_root_type"], [19, 1, 1, "", "system_id"], [19, 1, 1, "", "text_value"]], "nodriver.cdp.dom_snapshot.DocumentSnapshot": [[19, 1, 1, "", "base_url"], [19, 1, 1, "", "content_height"], [19, 1, 1, "", "content_language"], [19, 1, 1, "", "content_width"], [19, 1, 1, "", "document_url"], [19, 1, 1, "", "encoding_name"], [19, 1, 1, "", "frame_id"], [19, 1, 1, "", "layout"], [19, 1, 1, "", "nodes"], [19, 1, 1, "", "public_id"], [19, 1, 1, "", "scroll_offset_x"], [19, 1, 1, "", "scroll_offset_y"], [19, 1, 1, "", "system_id"], [19, 1, 1, "", "text_boxes"], [19, 1, 1, "", "title"]], "nodriver.cdp.dom_snapshot.InlineTextBox": [[19, 1, 1, "", "bounding_box"], [19, 1, 1, "", "num_characters"], [19, 1, 1, "", "start_character_index"]], "nodriver.cdp.dom_snapshot.LayoutTreeNode": [[19, 1, 1, "", "bounding_box"], [19, 1, 1, "", "dom_node_index"], [19, 1, 1, "", "inline_text_nodes"], [19, 1, 1, "", "is_stacking_context"], [19, 1, 1, "", "layout_text"], [19, 1, 1, "", "paint_order"], [19, 1, 1, "", "style_index"]], "nodriver.cdp.dom_snapshot.LayoutTreeSnapshot": [[19, 1, 1, "", "blended_background_colors"], [19, 1, 1, "", "bounds"], [19, 1, 1, "", "client_rects"], [19, 1, 1, "", "node_index"], [19, 1, 1, "", "offset_rects"], [19, 1, 1, "", "paint_orders"], [19, 1, 1, "", "scroll_rects"], [19, 1, 1, "", "stacking_contexts"], [19, 1, 1, "", "styles"], [19, 1, 1, "", "text"], [19, 1, 1, "", "text_color_opacities"]], "nodriver.cdp.dom_snapshot.NameValue": [[19, 1, 1, "", "name"], [19, 1, 1, "", "value"]], "nodriver.cdp.dom_snapshot.NodeTreeSnapshot": [[19, 1, 1, "", "attributes"], [19, 1, 1, "", "backend_node_id"], [19, 1, 1, "", "content_document_index"], [19, 1, 1, "", "current_source_url"], [19, 1, 1, "", "input_checked"], [19, 1, 1, "", "input_value"], [19, 1, 1, "", "is_clickable"], [19, 1, 1, "", "node_name"], [19, 1, 1, "", "node_type"], [19, 1, 1, "", "node_value"], [19, 1, 1, "", "option_selected"], [19, 1, 1, "", "origin_url"], [19, 1, 1, "", "parent_index"], [19, 1, 1, "", "pseudo_identifier"], [19, 1, 1, "", "pseudo_type"], [19, 1, 1, "", "shadow_root_type"], [19, 1, 1, "", "text_value"]], "nodriver.cdp.dom_snapshot.RareBooleanData": [[19, 1, 1, "", "index"]], "nodriver.cdp.dom_snapshot.RareIntegerData": [[19, 1, 1, "", "index"], [19, 1, 1, "", "value"]], "nodriver.cdp.dom_snapshot.RareStringData": [[19, 1, 1, "", "index"], [19, 1, 1, "", "value"]], "nodriver.cdp.dom_snapshot.TextBoxSnapshot": [[19, 1, 1, "", "bounds"], [19, 1, 1, "", "layout_index"], [19, 1, 1, "", "length"], [19, 1, 1, "", "start"]], "nodriver.cdp.dom_storage": [[20, 0, 1, "", "DomStorageItemAdded"], [20, 0, 1, "", "DomStorageItemRemoved"], [20, 0, 1, "", "DomStorageItemUpdated"], [20, 0, 1, "", "DomStorageItemsCleared"], [20, 0, 1, "", "Item"], [20, 0, 1, "", "SerializedStorageKey"], [20, 0, 1, "", "StorageId"], [20, 5, 1, "", "clear"], [20, 5, 1, "", "disable"], [20, 5, 1, "", "enable"], [20, 5, 1, "", "get_dom_storage_items"], [20, 5, 1, "", "remove_dom_storage_item"], [20, 5, 1, "", "set_dom_storage_item"]], "nodriver.cdp.dom_storage.DomStorageItemAdded": [[20, 1, 1, "", "key"], [20, 1, 1, "", "new_value"], [20, 1, 1, "", "storage_id"]], "nodriver.cdp.dom_storage.DomStorageItemRemoved": [[20, 1, 1, "", "key"], [20, 1, 1, "", "storage_id"]], "nodriver.cdp.dom_storage.DomStorageItemUpdated": [[20, 1, 1, "", "key"], [20, 1, 1, "", "new_value"], [20, 1, 1, "", "old_value"], [20, 1, 1, "", "storage_id"]], "nodriver.cdp.dom_storage.DomStorageItemsCleared": [[20, 1, 1, "", "storage_id"]], "nodriver.cdp.dom_storage.StorageId": [[20, 1, 1, "", "is_local_storage"], [20, 1, 1, "", "security_origin"], [20, 1, 1, "", "storage_key"]], "nodriver.cdp.emulation": [[21, 0, 1, "", "DevicePosture"], [21, 0, 1, "", "DisabledImageType"], [21, 0, 1, "", "DisplayFeature"], [21, 0, 1, "", "MediaFeature"], [21, 0, 1, "", "PressureMetadata"], [21, 0, 1, "", "PressureSource"], [21, 0, 1, "", "PressureState"], [21, 0, 1, "", "ScreenOrientation"], [21, 0, 1, "", "SensorMetadata"], [21, 0, 1, "", "SensorReading"], [21, 0, 1, "", "SensorReadingQuaternion"], [21, 0, 1, "", "SensorReadingSingle"], [21, 0, 1, "", "SensorReadingXYZ"], [21, 0, 1, "", "SensorType"], [21, 0, 1, "", "UserAgentBrandVersion"], [21, 0, 1, "", "UserAgentMetadata"], [21, 0, 1, "", "VirtualTimeBudgetExpired"], [21, 0, 1, "", "VirtualTimePolicy"], [21, 5, 1, "", "can_emulate"], [21, 5, 1, "", "clear_device_metrics_override"], [21, 5, 1, "", "clear_device_posture_override"], [21, 5, 1, "", "clear_geolocation_override"], [21, 5, 1, "", "clear_idle_override"], [21, 5, 1, "", "get_overridden_sensor_information"], [21, 5, 1, "", "reset_page_scale_factor"], [21, 5, 1, "", "set_auto_dark_mode_override"], [21, 5, 1, "", "set_automation_override"], [21, 5, 1, "", "set_cpu_throttling_rate"], [21, 5, 1, "", "set_default_background_color_override"], [21, 5, 1, "", "set_device_metrics_override"], [21, 5, 1, "", "set_device_posture_override"], [21, 5, 1, "", "set_disabled_image_types"], [21, 5, 1, "", "set_document_cookie_disabled"], [21, 5, 1, "", "set_emit_touch_events_for_mouse"], [21, 5, 1, "", "set_emulated_media"], [21, 5, 1, "", "set_emulated_vision_deficiency"], [21, 5, 1, "", "set_focus_emulation_enabled"], [21, 5, 1, "", "set_geolocation_override"], [21, 5, 1, "", "set_hardware_concurrency_override"], [21, 5, 1, "", "set_idle_override"], [21, 5, 1, "", "set_locale_override"], [21, 5, 1, "", "set_navigator_overrides"], [21, 5, 1, "", "set_page_scale_factor"], [21, 5, 1, "", "set_pressure_source_override_enabled"], [21, 5, 1, "", "set_pressure_state_override"], [21, 5, 1, "", "set_script_execution_disabled"], [21, 5, 1, "", "set_scrollbars_hidden"], [21, 5, 1, "", "set_sensor_override_enabled"], [21, 5, 1, "", "set_sensor_override_readings"], [21, 5, 1, "", "set_timezone_override"], [21, 5, 1, "", "set_touch_emulation_enabled"], [21, 5, 1, "", "set_user_agent_override"], [21, 5, 1, "", "set_virtual_time_policy"], [21, 5, 1, "", "set_visible_size"]], "nodriver.cdp.emulation.DevicePosture": [[21, 1, 1, "", "type_"]], "nodriver.cdp.emulation.DisabledImageType": [[21, 1, 1, "", "AVIF"], [21, 1, 1, "", "WEBP"]], "nodriver.cdp.emulation.DisplayFeature": [[21, 1, 1, "", "mask_length"], [21, 1, 1, "", "offset"], [21, 1, 1, "", "orientation"]], "nodriver.cdp.emulation.MediaFeature": [[21, 1, 1, "", "name"], [21, 1, 1, "", "value"]], "nodriver.cdp.emulation.PressureMetadata": [[21, 1, 1, "", "available"]], "nodriver.cdp.emulation.PressureSource": [[21, 1, 1, "", "CPU"]], "nodriver.cdp.emulation.PressureState": [[21, 1, 1, "", "CRITICAL"], [21, 1, 1, "", "FAIR"], [21, 1, 1, "", "NOMINAL"], [21, 1, 1, "", "SERIOUS"]], "nodriver.cdp.emulation.ScreenOrientation": [[21, 1, 1, "", "angle"], [21, 1, 1, "", "type_"]], "nodriver.cdp.emulation.SensorMetadata": [[21, 1, 1, "", "available"], [21, 1, 1, "", "maximum_frequency"], [21, 1, 1, "", "minimum_frequency"]], "nodriver.cdp.emulation.SensorReading": [[21, 1, 1, "", "quaternion"], [21, 1, 1, "", "single"], [21, 1, 1, "", "xyz"]], "nodriver.cdp.emulation.SensorReadingQuaternion": [[21, 1, 1, "", "w"], [21, 1, 1, "", "x"], [21, 1, 1, "", "y"], [21, 1, 1, "", "z"]], "nodriver.cdp.emulation.SensorReadingSingle": [[21, 1, 1, "", "value"]], "nodriver.cdp.emulation.SensorReadingXYZ": [[21, 1, 1, "", "x"], [21, 1, 1, "", "y"], [21, 1, 1, "", "z"]], "nodriver.cdp.emulation.SensorType": [[21, 1, 1, "", "ABSOLUTE_ORIENTATION"], [21, 1, 1, "", "ACCELEROMETER"], [21, 1, 1, "", "AMBIENT_LIGHT"], [21, 1, 1, "", "GRAVITY"], [21, 1, 1, "", "GYROSCOPE"], [21, 1, 1, "", "LINEAR_ACCELERATION"], [21, 1, 1, "", "MAGNETOMETER"], [21, 1, 1, "", "RELATIVE_ORIENTATION"]], "nodriver.cdp.emulation.UserAgentBrandVersion": [[21, 1, 1, "", "brand"], [21, 1, 1, "", "version"]], "nodriver.cdp.emulation.UserAgentMetadata": [[21, 1, 1, "", "architecture"], [21, 1, 1, "", "bitness"], [21, 1, 1, "", "brands"], [21, 1, 1, "", "full_version"], [21, 1, 1, "", "full_version_list"], [21, 1, 1, "", "mobile"], [21, 1, 1, "", "model"], [21, 1, 1, "", "platform"], [21, 1, 1, "", "platform_version"], [21, 1, 1, "", "wow64"]], "nodriver.cdp.emulation.VirtualTimePolicy": [[21, 1, 1, "", "ADVANCE"], [21, 1, 1, "", "PAUSE"], [21, 1, 1, "", "PAUSE_IF_NETWORK_FETCHES_PENDING"]], "nodriver.cdp.event_breakpoints": [[22, 5, 1, "", "disable"], [22, 5, 1, "", "remove_instrumentation_breakpoint"], [22, 5, 1, "", "set_instrumentation_breakpoint"]], "nodriver.cdp.extensions": [[23, 0, 1, "", "StorageArea"], [23, 5, 1, "", "clear_storage_items"], [23, 5, 1, "", "get_storage_items"], [23, 5, 1, "", "load_unpacked"], [23, 5, 1, "", "remove_storage_items"], [23, 5, 1, "", "set_storage_items"]], "nodriver.cdp.extensions.StorageArea": [[23, 1, 1, "", "LOCAL"], [23, 1, 1, "", "MANAGED"], [23, 1, 1, "", "SESSION"], [23, 1, 1, "", "SYNC"]], "nodriver.cdp.fed_cm": [[24, 0, 1, "", "Account"], [24, 0, 1, "", "AccountUrlType"], [24, 0, 1, "", "DialogButton"], [24, 0, 1, "", "DialogClosed"], [24, 0, 1, "", "DialogShown"], [24, 0, 1, "", "DialogType"], [24, 0, 1, "", "LoginState"], [24, 5, 1, "", "click_dialog_button"], [24, 5, 1, "", "disable"], [24, 5, 1, "", "dismiss_dialog"], [24, 5, 1, "", "enable"], [24, 5, 1, "", "open_url"], [24, 5, 1, "", "reset_cooldown"], [24, 5, 1, "", "select_account"]], "nodriver.cdp.fed_cm.Account": [[24, 1, 1, "", "account_id"], [24, 1, 1, "", "email"], [24, 1, 1, "", "given_name"], [24, 1, 1, "", "idp_config_url"], [24, 1, 1, "", "idp_login_url"], [24, 1, 1, "", "login_state"], [24, 1, 1, "", "name"], [24, 1, 1, "", "picture_url"], [24, 1, 1, "", "privacy_policy_url"], [24, 1, 1, "", "terms_of_service_url"]], "nodriver.cdp.fed_cm.AccountUrlType": [[24, 1, 1, "", "PRIVACY_POLICY"], [24, 1, 1, "", "TERMS_OF_SERVICE"]], "nodriver.cdp.fed_cm.DialogButton": [[24, 1, 1, "", "CONFIRM_IDP_LOGIN_CONTINUE"], [24, 1, 1, "", "ERROR_GOT_IT"], [24, 1, 1, "", "ERROR_MORE_DETAILS"]], "nodriver.cdp.fed_cm.DialogClosed": [[24, 1, 1, "", "dialog_id"]], "nodriver.cdp.fed_cm.DialogShown": [[24, 1, 1, "", "accounts"], [24, 1, 1, "", "dialog_id"], [24, 1, 1, "", "dialog_type"], [24, 1, 1, "", "subtitle"], [24, 1, 1, "", "title"]], "nodriver.cdp.fed_cm.DialogType": [[24, 1, 1, "", "ACCOUNT_CHOOSER"], [24, 1, 1, "", "AUTO_REAUTHN"], [24, 1, 1, "", "CONFIRM_IDP_LOGIN"], [24, 1, 1, "", "ERROR"]], "nodriver.cdp.fed_cm.LoginState": [[24, 1, 1, "", "SIGN_IN"], [24, 1, 1, "", "SIGN_UP"]], "nodriver.cdp.fetch": [[25, 0, 1, "", "AuthChallenge"], [25, 0, 1, "", "AuthChallengeResponse"], [25, 0, 1, "", "AuthRequired"], [25, 0, 1, "", "HeaderEntry"], [25, 0, 1, "", "RequestId"], [25, 0, 1, "", "RequestPattern"], [25, 0, 1, "", "RequestPaused"], [25, 0, 1, "", "RequestStage"], [25, 5, 1, "", "continue_request"], [25, 5, 1, "", "continue_response"], [25, 5, 1, "", "continue_with_auth"], [25, 5, 1, "", "disable"], [25, 5, 1, "", "enable"], [25, 5, 1, "", "fail_request"], [25, 5, 1, "", "fulfill_request"], [25, 5, 1, "", "get_response_body"], [25, 5, 1, "", "take_response_body_as_stream"]], "nodriver.cdp.fetch.AuthChallenge": [[25, 1, 1, "", "origin"], [25, 1, 1, "", "realm"], [25, 1, 1, "", "scheme"], [25, 1, 1, "", "source"]], "nodriver.cdp.fetch.AuthChallengeResponse": [[25, 1, 1, "", "password"], [25, 1, 1, "", "response"], [25, 1, 1, "", "username"]], "nodriver.cdp.fetch.AuthRequired": [[25, 1, 1, "", "auth_challenge"], [25, 1, 1, "", "frame_id"], [25, 1, 1, "", "request"], [25, 1, 1, "", "request_id"], [25, 1, 1, "", "resource_type"]], "nodriver.cdp.fetch.HeaderEntry": [[25, 1, 1, "", "name"], [25, 1, 1, "", "value"]], "nodriver.cdp.fetch.RequestPattern": [[25, 1, 1, "", "request_stage"], [25, 1, 1, "", "resource_type"], [25, 1, 1, "", "url_pattern"]], "nodriver.cdp.fetch.RequestPaused": [[25, 1, 1, "", "frame_id"], [25, 1, 1, "", "network_id"], [25, 1, 1, "", "redirected_request_id"], [25, 1, 1, "", "request"], [25, 1, 1, "", "request_id"], [25, 1, 1, "", "resource_type"], [25, 1, 1, "", "response_error_reason"], [25, 1, 1, "", "response_headers"], [25, 1, 1, "", "response_status_code"], [25, 1, 1, "", "response_status_text"]], "nodriver.cdp.fetch.RequestStage": [[25, 1, 1, "", "REQUEST"], [25, 1, 1, "", "RESPONSE"]], "nodriver.cdp.file_system": [[26, 0, 1, "", "BucketFileSystemLocator"], [26, 0, 1, "", "Directory"], [26, 0, 1, "", "File"], [26, 5, 1, "", "get_directory"]], "nodriver.cdp.file_system.BucketFileSystemLocator": [[26, 1, 1, "", "bucket_name"], [26, 1, 1, "", "path_components"], [26, 1, 1, "", "storage_key"]], "nodriver.cdp.file_system.Directory": [[26, 1, 1, "", "name"], [26, 1, 1, "", "nested_directories"], [26, 1, 1, "", "nested_files"]], "nodriver.cdp.file_system.File": [[26, 1, 1, "", "last_modified"], [26, 1, 1, "", "name"], [26, 1, 1, "", "size"], [26, 1, 1, "", "type_"]], "nodriver.cdp.headless_experimental": [[27, 0, 1, "", "ScreenshotParams"], [27, 5, 1, "", "begin_frame"], [27, 5, 1, "", "disable"], [27, 5, 1, "", "enable"]], "nodriver.cdp.headless_experimental.ScreenshotParams": [[27, 1, 1, "", "format_"], [27, 1, 1, "", "optimize_for_speed"], [27, 1, 1, "", "quality"]], "nodriver.cdp.heap_profiler": [[28, 0, 1, "", "AddHeapSnapshotChunk"], [28, 0, 1, "", "HeapSnapshotObjectId"], [28, 0, 1, "", "HeapStatsUpdate"], [28, 0, 1, "", "LastSeenObjectId"], [28, 0, 1, "", "ReportHeapSnapshotProgress"], [28, 0, 1, "", "ResetProfiles"], [28, 0, 1, "", "SamplingHeapProfile"], [28, 0, 1, "", "SamplingHeapProfileNode"], [28, 0, 1, "", "SamplingHeapProfileSample"], [28, 5, 1, "", "add_inspected_heap_object"], [28, 5, 1, "", "collect_garbage"], [28, 5, 1, "", "disable"], [28, 5, 1, "", "enable"], [28, 5, 1, "", "get_heap_object_id"], [28, 5, 1, "", "get_object_by_heap_object_id"], [28, 5, 1, "", "get_sampling_profile"], [28, 5, 1, "", "start_sampling"], [28, 5, 1, "", "start_tracking_heap_objects"], [28, 5, 1, "", "stop_sampling"], [28, 5, 1, "", "stop_tracking_heap_objects"], [28, 5, 1, "", "take_heap_snapshot"]], "nodriver.cdp.heap_profiler.AddHeapSnapshotChunk": [[28, 1, 1, "", "chunk"]], "nodriver.cdp.heap_profiler.HeapStatsUpdate": [[28, 1, 1, "", "stats_update"]], "nodriver.cdp.heap_profiler.LastSeenObjectId": [[28, 1, 1, "", "last_seen_object_id"], [28, 1, 1, "", "timestamp"]], "nodriver.cdp.heap_profiler.ReportHeapSnapshotProgress": [[28, 1, 1, "", "done"], [28, 1, 1, "", "finished"], [28, 1, 1, "", "total"]], "nodriver.cdp.heap_profiler.SamplingHeapProfile": [[28, 1, 1, "", "head"], [28, 1, 1, "", "samples"]], "nodriver.cdp.heap_profiler.SamplingHeapProfileNode": [[28, 1, 1, "", "call_frame"], [28, 1, 1, "", "children"], [28, 1, 1, "", "id_"], [28, 1, 1, "", "self_size"]], "nodriver.cdp.heap_profiler.SamplingHeapProfileSample": [[28, 1, 1, "", "node_id"], [28, 1, 1, "", "ordinal"], [28, 1, 1, "", "size"]], "nodriver.cdp.indexed_db": [[29, 0, 1, "", "DataEntry"], [29, 0, 1, "", "DatabaseWithObjectStores"], [29, 0, 1, "", "Key"], [29, 0, 1, "", "KeyPath"], [29, 0, 1, "", "KeyRange"], [29, 0, 1, "", "ObjectStore"], [29, 0, 1, "", "ObjectStoreIndex"], [29, 5, 1, "", "clear_object_store"], [29, 5, 1, "", "delete_database"], [29, 5, 1, "", "delete_object_store_entries"], [29, 5, 1, "", "disable"], [29, 5, 1, "", "enable"], [29, 5, 1, "", "get_metadata"], [29, 5, 1, "", "request_data"], [29, 5, 1, "", "request_database"], [29, 5, 1, "", "request_database_names"]], "nodriver.cdp.indexed_db.DataEntry": [[29, 1, 1, "", "key"], [29, 1, 1, "", "primary_key"], [29, 1, 1, "", "value"]], "nodriver.cdp.indexed_db.DatabaseWithObjectStores": [[29, 1, 1, "", "name"], [29, 1, 1, "", "object_stores"], [29, 1, 1, "", "version"]], "nodriver.cdp.indexed_db.Key": [[29, 1, 1, "", "array"], [29, 1, 1, "", "date"], [29, 1, 1, "", "number"], [29, 1, 1, "", "string"], [29, 1, 1, "", "type_"]], "nodriver.cdp.indexed_db.KeyPath": [[29, 1, 1, "", "array"], [29, 1, 1, "", "string"], [29, 1, 1, "", "type_"]], "nodriver.cdp.indexed_db.KeyRange": [[29, 1, 1, "", "lower"], [29, 1, 1, "", "lower_open"], [29, 1, 1, "", "upper"], [29, 1, 1, "", "upper_open"]], "nodriver.cdp.indexed_db.ObjectStore": [[29, 1, 1, "", "auto_increment"], [29, 1, 1, "", "indexes"], [29, 1, 1, "", "key_path"], [29, 1, 1, "", "name"]], "nodriver.cdp.indexed_db.ObjectStoreIndex": [[29, 1, 1, "", "key_path"], [29, 1, 1, "", "multi_entry"], [29, 1, 1, "", "name"], [29, 1, 1, "", "unique"]], "nodriver.cdp.input_": [[30, 0, 1, "", "DragData"], [30, 0, 1, "", "DragDataItem"], [30, 0, 1, "", "DragIntercepted"], [30, 0, 1, "", "GestureSourceType"], [30, 0, 1, "", "MouseButton"], [30, 0, 1, "", "TimeSinceEpoch"], [30, 0, 1, "", "TouchPoint"], [30, 5, 1, "", "cancel_dragging"], [30, 5, 1, "", "dispatch_drag_event"], [30, 5, 1, "", "dispatch_key_event"], [30, 5, 1, "", "dispatch_mouse_event"], [30, 5, 1, "", "dispatch_touch_event"], [30, 5, 1, "", "emulate_touch_from_mouse_event"], [30, 5, 1, "", "ime_set_composition"], [30, 5, 1, "", "insert_text"], [30, 5, 1, "", "set_ignore_input_events"], [30, 5, 1, "", "set_intercept_drags"], [30, 5, 1, "", "synthesize_pinch_gesture"], [30, 5, 1, "", "synthesize_scroll_gesture"], [30, 5, 1, "", "synthesize_tap_gesture"]], "nodriver.cdp.input_.DragData": [[30, 1, 1, "", "drag_operations_mask"], [30, 1, 1, "", "files"], [30, 1, 1, "", "items"]], "nodriver.cdp.input_.DragDataItem": [[30, 1, 1, "", "base_url"], [30, 1, 1, "", "data"], [30, 1, 1, "", "mime_type"], [30, 1, 1, "", "title"]], "nodriver.cdp.input_.DragIntercepted": [[30, 1, 1, "", "data"]], "nodriver.cdp.input_.GestureSourceType": [[30, 1, 1, "", "DEFAULT"], [30, 1, 1, "", "MOUSE"], [30, 1, 1, "", "TOUCH"]], "nodriver.cdp.input_.MouseButton": [[30, 1, 1, "", "BACK"], [30, 1, 1, "", "FORWARD"], [30, 1, 1, "", "LEFT"], [30, 1, 1, "", "MIDDLE"], [30, 1, 1, "", "NONE"], [30, 1, 1, "", "RIGHT"]], "nodriver.cdp.input_.TouchPoint": [[30, 1, 1, "", "force"], [30, 1, 1, "", "id_"], [30, 1, 1, "", "radius_x"], [30, 1, 1, "", "radius_y"], [30, 1, 1, "", "rotation_angle"], [30, 1, 1, "", "tangential_pressure"], [30, 1, 1, "", "tilt_x"], [30, 1, 1, "", "tilt_y"], [30, 1, 1, "", "twist"], [30, 1, 1, "", "x"], [30, 1, 1, "", "y"]], "nodriver.cdp.inspector": [[31, 0, 1, "", "Detached"], [31, 0, 1, "", "TargetCrashed"], [31, 0, 1, "", "TargetReloadedAfterCrash"], [31, 5, 1, "", "disable"], [31, 5, 1, "", "enable"]], "nodriver.cdp.inspector.Detached": [[31, 1, 1, "", "reason"]], "nodriver.cdp.io": [[32, 0, 1, "", "StreamHandle"], [32, 5, 1, "", "close"], [32, 5, 1, "", "read"], [32, 5, 1, "", "resolve_blob"]], "nodriver.cdp.layer_tree": [[33, 0, 1, "", "Layer"], [33, 0, 1, "", "LayerId"], [33, 0, 1, "", "LayerPainted"], [33, 0, 1, "", "LayerTreeDidChange"], [33, 0, 1, "", "PaintProfile"], [33, 0, 1, "", "PictureTile"], [33, 0, 1, "", "ScrollRect"], [33, 0, 1, "", "SnapshotId"], [33, 0, 1, "", "StickyPositionConstraint"], [33, 5, 1, "", "compositing_reasons"], [33, 5, 1, "", "disable"], [33, 5, 1, "", "enable"], [33, 5, 1, "", "load_snapshot"], [33, 5, 1, "", "make_snapshot"], [33, 5, 1, "", "profile_snapshot"], [33, 5, 1, "", "release_snapshot"], [33, 5, 1, "", "replay_snapshot"], [33, 5, 1, "", "snapshot_command_log"]], "nodriver.cdp.layer_tree.Layer": [[33, 1, 1, "", "anchor_x"], [33, 1, 1, "", "anchor_y"], [33, 1, 1, "", "anchor_z"], [33, 1, 1, "", "backend_node_id"], [33, 1, 1, "", "draws_content"], [33, 1, 1, "", "height"], [33, 1, 1, "", "invisible"], [33, 1, 1, "", "layer_id"], [33, 1, 1, "", "offset_x"], [33, 1, 1, "", "offset_y"], [33, 1, 1, "", "paint_count"], [33, 1, 1, "", "parent_layer_id"], [33, 1, 1, "", "scroll_rects"], [33, 1, 1, "", "sticky_position_constraint"], [33, 1, 1, "", "transform"], [33, 1, 1, "", "width"]], "nodriver.cdp.layer_tree.LayerPainted": [[33, 1, 1, "", "clip"], [33, 1, 1, "", "layer_id"]], "nodriver.cdp.layer_tree.LayerTreeDidChange": [[33, 1, 1, "", "layers"]], "nodriver.cdp.layer_tree.PictureTile": [[33, 1, 1, "", "picture"], [33, 1, 1, "", "x"], [33, 1, 1, "", "y"]], "nodriver.cdp.layer_tree.ScrollRect": [[33, 1, 1, "", "rect"], [33, 1, 1, "", "type_"]], "nodriver.cdp.layer_tree.StickyPositionConstraint": [[33, 1, 1, "", "containing_block_rect"], [33, 1, 1, "", "nearest_layer_shifting_containing_block"], [33, 1, 1, "", "nearest_layer_shifting_sticky_box"], [33, 1, 1, "", "sticky_box_rect"]], "nodriver.cdp.log": [[34, 0, 1, "", "EntryAdded"], [34, 0, 1, "", "LogEntry"], [34, 0, 1, "", "ViolationSetting"], [34, 5, 1, "", "clear"], [34, 5, 1, "", "disable"], [34, 5, 1, "", "enable"], [34, 5, 1, "", "start_violations_report"], [34, 5, 1, "", "stop_violations_report"]], "nodriver.cdp.log.EntryAdded": [[34, 1, 1, "", "entry"]], "nodriver.cdp.log.LogEntry": [[34, 1, 1, "", "args"], [34, 1, 1, "", "category"], [34, 1, 1, "", "level"], [34, 1, 1, "", "line_number"], [34, 1, 1, "", "network_request_id"], [34, 1, 1, "", "source"], [34, 1, 1, "", "stack_trace"], [34, 1, 1, "", "text"], [34, 1, 1, "", "timestamp"], [34, 1, 1, "", "url"], [34, 1, 1, "", "worker_id"]], "nodriver.cdp.log.ViolationSetting": [[34, 1, 1, "", "name"], [34, 1, 1, "", "threshold"]], "nodriver.cdp.media": [[35, 0, 1, "", "PlayerError"], [35, 0, 1, "", "PlayerErrorSourceLocation"], [35, 0, 1, "", "PlayerErrorsRaised"], [35, 0, 1, "", "PlayerEvent"], [35, 0, 1, "", "PlayerEventsAdded"], [35, 0, 1, "", "PlayerId"], [35, 0, 1, "", "PlayerMessage"], [35, 0, 1, "", "PlayerMessagesLogged"], [35, 0, 1, "", "PlayerPropertiesChanged"], [35, 0, 1, "", "PlayerProperty"], [35, 0, 1, "", "PlayersCreated"], [35, 0, 1, "", "Timestamp"], [35, 5, 1, "", "disable"], [35, 5, 1, "", "enable"]], "nodriver.cdp.media.PlayerError": [[35, 1, 1, "", "cause"], [35, 1, 1, "", "code"], [35, 1, 1, "", "data"], [35, 1, 1, "", "error_type"], [35, 1, 1, "", "stack"]], "nodriver.cdp.media.PlayerErrorSourceLocation": [[35, 1, 1, "", "file"], [35, 1, 1, "", "line"]], "nodriver.cdp.media.PlayerErrorsRaised": [[35, 1, 1, "", "errors"], [35, 1, 1, "", "player_id"]], "nodriver.cdp.media.PlayerEvent": [[35, 1, 1, "", "timestamp"], [35, 1, 1, "", "value"]], "nodriver.cdp.media.PlayerEventsAdded": [[35, 1, 1, "", "events"], [35, 1, 1, "", "player_id"]], "nodriver.cdp.media.PlayerMessage": [[35, 1, 1, "", "level"], [35, 1, 1, "", "message"]], "nodriver.cdp.media.PlayerMessagesLogged": [[35, 1, 1, "", "messages"], [35, 1, 1, "", "player_id"]], "nodriver.cdp.media.PlayerPropertiesChanged": [[35, 1, 1, "", "player_id"], [35, 1, 1, "", "properties"]], "nodriver.cdp.media.PlayerProperty": [[35, 1, 1, "", "name"], [35, 1, 1, "", "value"]], "nodriver.cdp.media.PlayersCreated": [[35, 1, 1, "", "players"]], "nodriver.cdp.memory": [[36, 0, 1, "", "DOMCounter"], [36, 0, 1, "", "Module"], [36, 0, 1, "", "PressureLevel"], [36, 0, 1, "", "SamplingProfile"], [36, 0, 1, "", "SamplingProfileNode"], [36, 5, 1, "", "forcibly_purge_java_script_memory"], [36, 5, 1, "", "get_all_time_sampling_profile"], [36, 5, 1, "", "get_browser_sampling_profile"], [36, 5, 1, "", "get_dom_counters"], [36, 5, 1, "", "get_dom_counters_for_leak_detection"], [36, 5, 1, "", "get_sampling_profile"], [36, 5, 1, "", "prepare_for_leak_detection"], [36, 5, 1, "", "set_pressure_notifications_suppressed"], [36, 5, 1, "", "simulate_pressure_notification"], [36, 5, 1, "", "start_sampling"], [36, 5, 1, "", "stop_sampling"]], "nodriver.cdp.memory.DOMCounter": [[36, 1, 1, "", "count"], [36, 1, 1, "", "name"]], "nodriver.cdp.memory.Module": [[36, 1, 1, "", "base_address"], [36, 1, 1, "", "name"], [36, 1, 1, "", "size"], [36, 1, 1, "", "uuid"]], "nodriver.cdp.memory.PressureLevel": [[36, 1, 1, "", "CRITICAL"], [36, 1, 1, "", "MODERATE"]], "nodriver.cdp.memory.SamplingProfile": [[36, 1, 1, "", "modules"], [36, 1, 1, "", "samples"]], "nodriver.cdp.memory.SamplingProfileNode": [[36, 1, 1, "", "size"], [36, 1, 1, "", "stack"], [36, 1, 1, "", "total"]], "nodriver.cdp.network": [[37, 0, 1, "", "AlternateProtocolUsage"], [37, 0, 1, "", "AssociatedCookie"], [37, 0, 1, "", "AuthChallenge"], [37, 0, 1, "", "AuthChallengeResponse"], [37, 0, 1, "", "BlockedReason"], [37, 0, 1, "", "BlockedSetCookieWithReason"], [37, 0, 1, "", "CachedResource"], [37, 0, 1, "", "CertificateTransparencyCompliance"], [37, 0, 1, "", "ClientSecurityState"], [37, 0, 1, "", "ConnectTiming"], [37, 0, 1, "", "ConnectionType"], [37, 0, 1, "", "ContentEncoding"], [37, 0, 1, "", "ContentSecurityPolicySource"], [37, 0, 1, "", "ContentSecurityPolicyStatus"], [37, 0, 1, "", "Cookie"], [37, 0, 1, "", "CookieBlockedReason"], [37, 0, 1, "", "CookieExemptionReason"], [37, 0, 1, "", "CookieParam"], [37, 0, 1, "", "CookiePartitionKey"], [37, 0, 1, "", "CookiePriority"], [37, 0, 1, "", "CookieSameSite"], [37, 0, 1, "", "CookieSourceScheme"], [37, 0, 1, "", "CorsError"], [37, 0, 1, "", "CorsErrorStatus"], [37, 0, 1, "", "CrossOriginEmbedderPolicyStatus"], [37, 0, 1, "", "CrossOriginEmbedderPolicyValue"], [37, 0, 1, "", "CrossOriginOpenerPolicyStatus"], [37, 0, 1, "", "CrossOriginOpenerPolicyValue"], [37, 0, 1, "", "DataReceived"], [37, 0, 1, "", "ErrorReason"], [37, 0, 1, "", "EventSourceMessageReceived"], [37, 0, 1, "", "ExemptedSetCookieWithReason"], [37, 0, 1, "", "Headers"], [37, 0, 1, "", "IPAddressSpace"], [37, 0, 1, "", "Initiator"], [37, 0, 1, "", "InterceptionId"], [37, 0, 1, "", "InterceptionStage"], [37, 0, 1, "", "LoadNetworkResourceOptions"], [37, 0, 1, "", "LoadNetworkResourcePageResult"], [37, 0, 1, "", "LoaderId"], [37, 0, 1, "", "LoadingFailed"], [37, 0, 1, "", "LoadingFinished"], [37, 0, 1, "", "MonotonicTime"], [37, 0, 1, "", "PolicyUpdated"], [37, 0, 1, "", "PostDataEntry"], [37, 0, 1, "", "PrivateNetworkRequestPolicy"], [37, 0, 1, "", "ReportId"], [37, 0, 1, "", "ReportStatus"], [37, 0, 1, "", "ReportingApiEndpoint"], [37, 0, 1, "", "ReportingApiEndpointsChangedForOrigin"], [37, 0, 1, "", "ReportingApiReport"], [37, 0, 1, "", "ReportingApiReportAdded"], [37, 0, 1, "", "ReportingApiReportUpdated"], [37, 0, 1, "", "Request"], [37, 0, 1, "", "RequestId"], [37, 0, 1, "", "RequestIntercepted"], [37, 0, 1, "", "RequestPattern"], [37, 0, 1, "", "RequestServedFromCache"], [37, 0, 1, "", "RequestWillBeSent"], [37, 0, 1, "", "RequestWillBeSentExtraInfo"], [37, 0, 1, "", "ResourceChangedPriority"], [37, 0, 1, "", "ResourcePriority"], [37, 0, 1, "", "ResourceTiming"], [37, 0, 1, "", "ResourceType"], [37, 0, 1, "", "Response"], [37, 0, 1, "", "ResponseReceived"], [37, 0, 1, "", "ResponseReceivedEarlyHints"], [37, 0, 1, "", "ResponseReceivedExtraInfo"], [37, 0, 1, "", "SecurityDetails"], [37, 0, 1, "", "SecurityIsolationStatus"], [37, 0, 1, "", "ServiceWorkerResponseSource"], [37, 0, 1, "", "ServiceWorkerRouterInfo"], [37, 0, 1, "", "ServiceWorkerRouterSource"], [37, 0, 1, "", "SetCookieBlockedReason"], [37, 0, 1, "", "SignedCertificateTimestamp"], [37, 0, 1, "", "SignedExchangeError"], [37, 0, 1, "", "SignedExchangeErrorField"], [37, 0, 1, "", "SignedExchangeHeader"], [37, 0, 1, "", "SignedExchangeInfo"], [37, 0, 1, "", "SignedExchangeReceived"], [37, 0, 1, "", "SignedExchangeSignature"], [37, 0, 1, "", "SubresourceWebBundleInnerResponseError"], [37, 0, 1, "", "SubresourceWebBundleInnerResponseParsed"], [37, 0, 1, "", "SubresourceWebBundleMetadataError"], [37, 0, 1, "", "SubresourceWebBundleMetadataReceived"], [37, 0, 1, "", "TimeSinceEpoch"], [37, 0, 1, "", "TrustTokenOperationDone"], [37, 0, 1, "", "TrustTokenOperationType"], [37, 0, 1, "", "TrustTokenParams"], [37, 0, 1, "", "WebSocketClosed"], [37, 0, 1, "", "WebSocketCreated"], [37, 0, 1, "", "WebSocketFrame"], [37, 0, 1, "", "WebSocketFrameError"], [37, 0, 1, "", "WebSocketFrameReceived"], [37, 0, 1, "", "WebSocketFrameSent"], [37, 0, 1, "", "WebSocketHandshakeResponseReceived"], [37, 0, 1, "", "WebSocketRequest"], [37, 0, 1, "", "WebSocketResponse"], [37, 0, 1, "", "WebSocketWillSendHandshakeRequest"], [37, 0, 1, "", "WebTransportClosed"], [37, 0, 1, "", "WebTransportConnectionEstablished"], [37, 0, 1, "", "WebTransportCreated"], [37, 5, 1, "", "can_clear_browser_cache"], [37, 5, 1, "", "can_clear_browser_cookies"], [37, 5, 1, "", "can_emulate_network_conditions"], [37, 5, 1, "", "clear_accepted_encodings_override"], [37, 5, 1, "", "clear_browser_cache"], [37, 5, 1, "", "clear_browser_cookies"], [37, 5, 1, "", "continue_intercepted_request"], [37, 5, 1, "", "delete_cookies"], [37, 5, 1, "", "disable"], [37, 5, 1, "", "emulate_network_conditions"], [37, 5, 1, "", "enable"], [37, 5, 1, "", "enable_reporting_api"], [37, 5, 1, "", "get_all_cookies"], [37, 5, 1, "", "get_certificate"], [37, 5, 1, "", "get_cookies"], [37, 5, 1, "", "get_request_post_data"], [37, 5, 1, "", "get_response_body"], [37, 5, 1, "", "get_response_body_for_interception"], [37, 5, 1, "", "get_security_isolation_status"], [37, 5, 1, "", "load_network_resource"], [37, 5, 1, "", "replay_xhr"], [37, 5, 1, "", "search_in_response_body"], [37, 5, 1, "", "set_accepted_encodings"], [37, 5, 1, "", "set_attach_debug_stack"], [37, 5, 1, "", "set_blocked_ur_ls"], [37, 5, 1, "", "set_bypass_service_worker"], [37, 5, 1, "", "set_cache_disabled"], [37, 5, 1, "", "set_cookie"], [37, 5, 1, "", "set_cookies"], [37, 5, 1, "", "set_extra_http_headers"], [37, 5, 1, "", "set_request_interception"], [37, 5, 1, "", "set_user_agent_override"], [37, 5, 1, "", "stream_resource_content"], [37, 5, 1, "", "take_response_body_for_interception_as_stream"]], "nodriver.cdp.network.AlternateProtocolUsage": [[37, 1, 1, "", "ALTERNATIVE_JOB_WON_RACE"], [37, 1, 1, "", "ALTERNATIVE_JOB_WON_WITHOUT_RACE"], [37, 1, 1, "", "BROKEN"], [37, 1, 1, "", "DNS_ALPN_H3_JOB_WON_RACE"], [37, 1, 1, "", "DNS_ALPN_H3_JOB_WON_WITHOUT_RACE"], [37, 1, 1, "", "MAIN_JOB_WON_RACE"], [37, 1, 1, "", "MAPPING_MISSING"], [37, 1, 1, "", "UNSPECIFIED_REASON"]], "nodriver.cdp.network.AssociatedCookie": [[37, 1, 1, "", "blocked_reasons"], [37, 1, 1, "", "cookie"], [37, 1, 1, "", "exemption_reason"]], "nodriver.cdp.network.AuthChallenge": [[37, 1, 1, "", "origin"], [37, 1, 1, "", "realm"], [37, 1, 1, "", "scheme"], [37, 1, 1, "", "source"]], "nodriver.cdp.network.AuthChallengeResponse": [[37, 1, 1, "", "password"], [37, 1, 1, "", "response"], [37, 1, 1, "", "username"]], "nodriver.cdp.network.BlockedReason": [[37, 1, 1, "", "COEP_FRAME_RESOURCE_NEEDS_COEP_HEADER"], [37, 1, 1, "", "CONTENT_TYPE"], [37, 1, 1, "", "COOP_SANDBOXED_IFRAME_CANNOT_NAVIGATE_TO_COOP_PAGE"], [37, 1, 1, "", "CORP_NOT_SAME_ORIGIN"], [37, 1, 1, "", "CORP_NOT_SAME_ORIGIN_AFTER_DEFAULTED_TO_SAME_ORIGIN_BY_COEP"], [37, 1, 1, "", "CORP_NOT_SAME_ORIGIN_AFTER_DEFAULTED_TO_SAME_ORIGIN_BY_COEP_AND_DIP"], [37, 1, 1, "", "CORP_NOT_SAME_ORIGIN_AFTER_DEFAULTED_TO_SAME_ORIGIN_BY_DIP"], [37, 1, 1, "", "CORP_NOT_SAME_SITE"], [37, 1, 1, "", "CSP"], [37, 1, 1, "", "INSPECTOR"], [37, 1, 1, "", "MIXED_CONTENT"], [37, 1, 1, "", "ORIGIN"], [37, 1, 1, "", "OTHER"], [37, 1, 1, "", "SUBRESOURCE_FILTER"]], "nodriver.cdp.network.BlockedSetCookieWithReason": [[37, 1, 1, "", "blocked_reasons"], [37, 1, 1, "", "cookie"], [37, 1, 1, "", "cookie_line"]], "nodriver.cdp.network.CachedResource": [[37, 1, 1, "", "body_size"], [37, 1, 1, "", "response"], [37, 1, 1, "", "type_"], [37, 1, 1, "", "url"]], "nodriver.cdp.network.CertificateTransparencyCompliance": [[37, 1, 1, "", "COMPLIANT"], [37, 1, 1, "", "NOT_COMPLIANT"], [37, 1, 1, "", "UNKNOWN"]], "nodriver.cdp.network.ClientSecurityState": [[37, 1, 1, "", "initiator_ip_address_space"], [37, 1, 1, "", "initiator_is_secure_context"], [37, 1, 1, "", "private_network_request_policy"]], "nodriver.cdp.network.ConnectTiming": [[37, 1, 1, "", "request_time"]], "nodriver.cdp.network.ConnectionType": [[37, 1, 1, "", "BLUETOOTH"], [37, 1, 1, "", "CELLULAR2G"], [37, 1, 1, "", "CELLULAR3G"], [37, 1, 1, "", "CELLULAR4G"], [37, 1, 1, "", "ETHERNET"], [37, 1, 1, "", "NONE"], [37, 1, 1, "", "OTHER"], [37, 1, 1, "", "WIFI"], [37, 1, 1, "", "WIMAX"]], "nodriver.cdp.network.ContentEncoding": [[37, 1, 1, "", "BR"], [37, 1, 1, "", "DEFLATE"], [37, 1, 1, "", "GZIP"], [37, 1, 1, "", "ZSTD"]], "nodriver.cdp.network.ContentSecurityPolicySource": [[37, 1, 1, "", "HTTP"], [37, 1, 1, "", "META"]], "nodriver.cdp.network.ContentSecurityPolicyStatus": [[37, 1, 1, "", "effective_directives"], [37, 1, 1, "", "is_enforced"], [37, 1, 1, "", "source"]], "nodriver.cdp.network.Cookie": [[37, 1, 1, "", "domain"], [37, 1, 1, "", "expires"], [37, 1, 1, "", "http_only"], [37, 1, 1, "", "name"], [37, 1, 1, "", "partition_key"], [37, 1, 1, "", "partition_key_opaque"], [37, 1, 1, "", "path"], [37, 1, 1, "", "priority"], [37, 1, 1, "", "same_party"], [37, 1, 1, "", "same_site"], [37, 1, 1, "", "secure"], [37, 1, 1, "", "session"], [37, 1, 1, "", "size"], [37, 1, 1, "", "source_port"], [37, 1, 1, "", "source_scheme"], [37, 1, 1, "", "value"]], "nodriver.cdp.network.CookieBlockedReason": [[37, 1, 1, "", "DOMAIN_MISMATCH"], [37, 1, 1, "", "NAME_VALUE_PAIR_EXCEEDS_MAX_SIZE"], [37, 1, 1, "", "NOT_ON_PATH"], [37, 1, 1, "", "PORT_MISMATCH"], [37, 1, 1, "", "SAME_PARTY_FROM_CROSS_PARTY_CONTEXT"], [37, 1, 1, "", "SAME_SITE_LAX"], [37, 1, 1, "", "SAME_SITE_NONE_INSECURE"], [37, 1, 1, "", "SAME_SITE_STRICT"], [37, 1, 1, "", "SAME_SITE_UNSPECIFIED_TREATED_AS_LAX"], [37, 1, 1, "", "SCHEMEFUL_SAME_SITE_LAX"], [37, 1, 1, "", "SCHEMEFUL_SAME_SITE_STRICT"], [37, 1, 1, "", "SCHEMEFUL_SAME_SITE_UNSPECIFIED_TREATED_AS_LAX"], [37, 1, 1, "", "SCHEME_MISMATCH"], [37, 1, 1, "", "SECURE_ONLY"], [37, 1, 1, "", "THIRD_PARTY_BLOCKED_IN_FIRST_PARTY_SET"], [37, 1, 1, "", "THIRD_PARTY_PHASEOUT"], [37, 1, 1, "", "UNKNOWN_ERROR"], [37, 1, 1, "", "USER_PREFERENCES"]], "nodriver.cdp.network.CookieExemptionReason": [[37, 1, 1, "", "ENTERPRISE_POLICY"], [37, 1, 1, "", "NONE"], [37, 1, 1, "", "SCHEME"], [37, 1, 1, "", "STORAGE_ACCESS"], [37, 1, 1, "", "TOP_LEVEL_STORAGE_ACCESS"], [37, 1, 1, "", "TOP_LEVEL_TPCD_DEPRECATION_TRIAL"], [37, 1, 1, "", "TPCD_DEPRECATION_TRIAL"], [37, 1, 1, "", "TPCD_HEURISTICS"], [37, 1, 1, "", "TPCD_METADATA"], [37, 1, 1, "", "USER_SETTING"]], "nodriver.cdp.network.CookieParam": [[37, 1, 1, "", "domain"], [37, 1, 1, "", "expires"], [37, 1, 1, "", "http_only"], [37, 1, 1, "", "name"], [37, 1, 1, "", "partition_key"], [37, 1, 1, "", "path"], [37, 1, 1, "", "priority"], [37, 1, 1, "", "same_party"], [37, 1, 1, "", "same_site"], [37, 1, 1, "", "secure"], [37, 1, 1, "", "source_port"], [37, 1, 1, "", "source_scheme"], [37, 1, 1, "", "url"], [37, 1, 1, "", "value"]], "nodriver.cdp.network.CookiePartitionKey": [[37, 1, 1, "", "has_cross_site_ancestor"], [37, 1, 1, "", "top_level_site"]], "nodriver.cdp.network.CookiePriority": [[37, 1, 1, "", "HIGH"], [37, 1, 1, "", "LOW"], [37, 1, 1, "", "MEDIUM"]], "nodriver.cdp.network.CookieSameSite": [[37, 1, 1, "", "LAX"], [37, 1, 1, "", "NONE"], [37, 1, 1, "", "STRICT"]], "nodriver.cdp.network.CookieSourceScheme": [[37, 1, 1, "", "NON_SECURE"], [37, 1, 1, "", "SECURE"], [37, 1, 1, "", "UNSET"]], "nodriver.cdp.network.CorsError": [[37, 1, 1, "", "ALLOW_ORIGIN_MISMATCH"], [37, 1, 1, "", "CORS_DISABLED_SCHEME"], [37, 1, 1, "", "DISALLOWED_BY_MODE"], [37, 1, 1, "", "HEADER_DISALLOWED_BY_PREFLIGHT_RESPONSE"], [37, 1, 1, "", "INSECURE_PRIVATE_NETWORK"], [37, 1, 1, "", "INVALID_ALLOW_CREDENTIALS"], [37, 1, 1, "", "INVALID_ALLOW_HEADERS_PREFLIGHT_RESPONSE"], [37, 1, 1, "", "INVALID_ALLOW_METHODS_PREFLIGHT_RESPONSE"], [37, 1, 1, "", "INVALID_ALLOW_ORIGIN_VALUE"], [37, 1, 1, "", "INVALID_PRIVATE_NETWORK_ACCESS"], [37, 1, 1, "", "INVALID_RESPONSE"], [37, 1, 1, "", "METHOD_DISALLOWED_BY_PREFLIGHT_RESPONSE"], [37, 1, 1, "", "MISSING_ALLOW_ORIGIN_HEADER"], [37, 1, 1, "", "MULTIPLE_ALLOW_ORIGIN_VALUES"], [37, 1, 1, "", "NO_CORS_REDIRECT_MODE_NOT_FOLLOW"], [37, 1, 1, "", "PREFLIGHT_ALLOW_ORIGIN_MISMATCH"], [37, 1, 1, "", "PREFLIGHT_DISALLOWED_REDIRECT"], [37, 1, 1, "", "PREFLIGHT_INVALID_ALLOW_CREDENTIALS"], [37, 1, 1, "", "PREFLIGHT_INVALID_ALLOW_EXTERNAL"], [37, 1, 1, "", "PREFLIGHT_INVALID_ALLOW_ORIGIN_VALUE"], [37, 1, 1, "", "PREFLIGHT_INVALID_ALLOW_PRIVATE_NETWORK"], [37, 1, 1, "", "PREFLIGHT_INVALID_STATUS"], [37, 1, 1, "", "PREFLIGHT_MISSING_ALLOW_EXTERNAL"], [37, 1, 1, "", "PREFLIGHT_MISSING_ALLOW_ORIGIN_HEADER"], [37, 1, 1, "", "PREFLIGHT_MISSING_ALLOW_PRIVATE_NETWORK"], [37, 1, 1, "", "PREFLIGHT_MISSING_PRIVATE_NETWORK_ACCESS_ID"], [37, 1, 1, "", "PREFLIGHT_MISSING_PRIVATE_NETWORK_ACCESS_NAME"], [37, 1, 1, "", "PREFLIGHT_MULTIPLE_ALLOW_ORIGIN_VALUES"], [37, 1, 1, "", "PREFLIGHT_WILDCARD_ORIGIN_NOT_ALLOWED"], [37, 1, 1, "", "PRIVATE_NETWORK_ACCESS_PERMISSION_DENIED"], [37, 1, 1, "", "PRIVATE_NETWORK_ACCESS_PERMISSION_UNAVAILABLE"], [37, 1, 1, "", "REDIRECT_CONTAINS_CREDENTIALS"], [37, 1, 1, "", "UNEXPECTED_PRIVATE_NETWORK_ACCESS"], [37, 1, 1, "", "WILDCARD_ORIGIN_NOT_ALLOWED"]], "nodriver.cdp.network.CorsErrorStatus": [[37, 1, 1, "", "cors_error"], [37, 1, 1, "", "failed_parameter"]], "nodriver.cdp.network.CrossOriginEmbedderPolicyStatus": [[37, 1, 1, "", "report_only_reporting_endpoint"], [37, 1, 1, "", "report_only_value"], [37, 1, 1, "", "reporting_endpoint"], [37, 1, 1, "", "value"]], "nodriver.cdp.network.CrossOriginEmbedderPolicyValue": [[37, 1, 1, "", "CREDENTIALLESS"], [37, 1, 1, "", "NONE"], [37, 1, 1, "", "REQUIRE_CORP"]], "nodriver.cdp.network.CrossOriginOpenerPolicyStatus": [[37, 1, 1, "", "report_only_reporting_endpoint"], [37, 1, 1, "", "report_only_value"], [37, 1, 1, "", "reporting_endpoint"], [37, 1, 1, "", "value"]], "nodriver.cdp.network.CrossOriginOpenerPolicyValue": [[37, 1, 1, "", "NOOPENER_ALLOW_POPUPS"], [37, 1, 1, "", "RESTRICT_PROPERTIES"], [37, 1, 1, "", "RESTRICT_PROPERTIES_PLUS_COEP"], [37, 1, 1, "", "SAME_ORIGIN"], [37, 1, 1, "", "SAME_ORIGIN_ALLOW_POPUPS"], [37, 1, 1, "", "SAME_ORIGIN_PLUS_COEP"], [37, 1, 1, "", "UNSAFE_NONE"]], "nodriver.cdp.network.DataReceived": [[37, 1, 1, "", "data"], [37, 1, 1, "", "data_length"], [37, 1, 1, "", "encoded_data_length"], [37, 1, 1, "", "request_id"], [37, 1, 1, "", "timestamp"]], "nodriver.cdp.network.ErrorReason": [[37, 1, 1, "", "ABORTED"], [37, 1, 1, "", "ACCESS_DENIED"], [37, 1, 1, "", "ADDRESS_UNREACHABLE"], [37, 1, 1, "", "BLOCKED_BY_CLIENT"], [37, 1, 1, "", "BLOCKED_BY_RESPONSE"], [37, 1, 1, "", "CONNECTION_ABORTED"], [37, 1, 1, "", "CONNECTION_CLOSED"], [37, 1, 1, "", "CONNECTION_FAILED"], [37, 1, 1, "", "CONNECTION_REFUSED"], [37, 1, 1, "", "CONNECTION_RESET"], [37, 1, 1, "", "FAILED"], [37, 1, 1, "", "INTERNET_DISCONNECTED"], [37, 1, 1, "", "NAME_NOT_RESOLVED"], [37, 1, 1, "", "TIMED_OUT"]], "nodriver.cdp.network.EventSourceMessageReceived": [[37, 1, 1, "", "data"], [37, 1, 1, "", "event_id"], [37, 1, 1, "", "event_name"], [37, 1, 1, "", "request_id"], [37, 1, 1, "", "timestamp"]], "nodriver.cdp.network.ExemptedSetCookieWithReason": [[37, 1, 1, "", "cookie"], [37, 1, 1, "", "cookie_line"], [37, 1, 1, "", "exemption_reason"]], "nodriver.cdp.network.IPAddressSpace": [[37, 1, 1, "", "LOCAL"], [37, 1, 1, "", "PRIVATE"], [37, 1, 1, "", "PUBLIC"], [37, 1, 1, "", "UNKNOWN"]], "nodriver.cdp.network.Initiator": [[37, 1, 1, "", "column_number"], [37, 1, 1, "", "line_number"], [37, 1, 1, "", "request_id"], [37, 1, 1, "", "stack"], [37, 1, 1, "", "type_"], [37, 1, 1, "", "url"]], "nodriver.cdp.network.InterceptionStage": [[37, 1, 1, "", "HEADERS_RECEIVED"], [37, 1, 1, "", "REQUEST"]], "nodriver.cdp.network.LoadNetworkResourceOptions": [[37, 1, 1, "", "disable_cache"], [37, 1, 1, "", "include_credentials"]], "nodriver.cdp.network.LoadNetworkResourcePageResult": [[37, 1, 1, "", "headers"], [37, 1, 1, "", "http_status_code"], [37, 1, 1, "", "net_error"], [37, 1, 1, "", "net_error_name"], [37, 1, 1, "", "stream"], [37, 1, 1, "", "success"]], "nodriver.cdp.network.LoadingFailed": [[37, 1, 1, "", "blocked_reason"], [37, 1, 1, "", "canceled"], [37, 1, 1, "", "cors_error_status"], [37, 1, 1, "", "error_text"], [37, 1, 1, "", "request_id"], [37, 1, 1, "", "timestamp"], [37, 1, 1, "", "type_"]], "nodriver.cdp.network.LoadingFinished": [[37, 1, 1, "", "encoded_data_length"], [37, 1, 1, "", "request_id"], [37, 1, 1, "", "timestamp"]], "nodriver.cdp.network.PostDataEntry": [[37, 1, 1, "", "bytes_"]], "nodriver.cdp.network.PrivateNetworkRequestPolicy": [[37, 1, 1, "", "ALLOW"], [37, 1, 1, "", "BLOCK_FROM_INSECURE_TO_MORE_PRIVATE"], [37, 1, 1, "", "PREFLIGHT_BLOCK"], [37, 1, 1, "", "PREFLIGHT_WARN"], [37, 1, 1, "", "WARN_FROM_INSECURE_TO_MORE_PRIVATE"]], "nodriver.cdp.network.ReportStatus": [[37, 1, 1, "", "MARKED_FOR_REMOVAL"], [37, 1, 1, "", "PENDING"], [37, 1, 1, "", "QUEUED"], [37, 1, 1, "", "SUCCESS"]], "nodriver.cdp.network.ReportingApiEndpoint": [[37, 1, 1, "", "group_name"], [37, 1, 1, "", "url"]], "nodriver.cdp.network.ReportingApiEndpointsChangedForOrigin": [[37, 1, 1, "", "endpoints"], [37, 1, 1, "", "origin"]], "nodriver.cdp.network.ReportingApiReport": [[37, 1, 1, "", "body"], [37, 1, 1, "", "completed_attempts"], [37, 1, 1, "", "depth"], [37, 1, 1, "", "destination"], [37, 1, 1, "", "id_"], [37, 1, 1, "", "initiator_url"], [37, 1, 1, "", "status"], [37, 1, 1, "", "timestamp"], [37, 1, 1, "", "type_"]], "nodriver.cdp.network.ReportingApiReportAdded": [[37, 1, 1, "", "report"]], "nodriver.cdp.network.ReportingApiReportUpdated": [[37, 1, 1, "", "report"]], "nodriver.cdp.network.Request": [[37, 1, 1, "", "has_post_data"], [37, 1, 1, "", "headers"], [37, 1, 1, "", "initial_priority"], [37, 1, 1, "", "is_link_preload"], [37, 1, 1, "", "is_same_site"], [37, 1, 1, "", "method"], [37, 1, 1, "", "mixed_content_type"], [37, 1, 1, "", "post_data"], [37, 1, 1, "", "post_data_entries"], [37, 1, 1, "", "referrer_policy"], [37, 1, 1, "", "trust_token_params"], [37, 1, 1, "", "url"], [37, 1, 1, "", "url_fragment"]], "nodriver.cdp.network.RequestIntercepted": [[37, 1, 1, "", "auth_challenge"], [37, 1, 1, "", "frame_id"], [37, 1, 1, "", "interception_id"], [37, 1, 1, "", "is_download"], [37, 1, 1, "", "is_navigation_request"], [37, 1, 1, "", "redirect_url"], [37, 1, 1, "", "request"], [37, 1, 1, "", "request_id"], [37, 1, 1, "", "resource_type"], [37, 1, 1, "", "response_error_reason"], [37, 1, 1, "", "response_headers"], [37, 1, 1, "", "response_status_code"]], "nodriver.cdp.network.RequestPattern": [[37, 1, 1, "", "interception_stage"], [37, 1, 1, "", "resource_type"], [37, 1, 1, "", "url_pattern"]], "nodriver.cdp.network.RequestServedFromCache": [[37, 1, 1, "", "request_id"]], "nodriver.cdp.network.RequestWillBeSent": [[37, 1, 1, "", "document_url"], [37, 1, 1, "", "frame_id"], [37, 1, 1, "", "has_user_gesture"], [37, 1, 1, "", "initiator"], [37, 1, 1, "", "loader_id"], [37, 1, 1, "", "redirect_has_extra_info"], [37, 1, 1, "", "redirect_response"], [37, 1, 1, "", "request"], [37, 1, 1, "", "request_id"], [37, 1, 1, "", "timestamp"], [37, 1, 1, "", "type_"], [37, 1, 1, "", "wall_time"]], "nodriver.cdp.network.RequestWillBeSentExtraInfo": [[37, 1, 1, "", "associated_cookies"], [37, 1, 1, "", "client_security_state"], [37, 1, 1, "", "connect_timing"], [37, 1, 1, "", "headers"], [37, 1, 1, "", "request_id"], [37, 1, 1, "", "site_has_cookie_in_other_partition"]], "nodriver.cdp.network.ResourceChangedPriority": [[37, 1, 1, "", "new_priority"], [37, 1, 1, "", "request_id"], [37, 1, 1, "", "timestamp"]], "nodriver.cdp.network.ResourcePriority": [[37, 1, 1, "", "HIGH"], [37, 1, 1, "", "LOW"], [37, 1, 1, "", "MEDIUM"], [37, 1, 1, "", "VERY_HIGH"], [37, 1, 1, "", "VERY_LOW"]], "nodriver.cdp.network.ResourceTiming": [[37, 1, 1, "", "connect_end"], [37, 1, 1, "", "connect_start"], [37, 1, 1, "", "dns_end"], [37, 1, 1, "", "dns_start"], [37, 1, 1, "", "proxy_end"], [37, 1, 1, "", "proxy_start"], [37, 1, 1, "", "push_end"], [37, 1, 1, "", "push_start"], [37, 1, 1, "", "receive_headers_end"], [37, 1, 1, "", "receive_headers_start"], [37, 1, 1, "", "request_time"], [37, 1, 1, "", "send_end"], [37, 1, 1, "", "send_start"], [37, 1, 1, "", "ssl_end"], [37, 1, 1, "", "ssl_start"], [37, 1, 1, "", "worker_cache_lookup_start"], [37, 1, 1, "", "worker_fetch_start"], [37, 1, 1, "", "worker_ready"], [37, 1, 1, "", "worker_respond_with_settled"], [37, 1, 1, "", "worker_router_evaluation_start"], [37, 1, 1, "", "worker_start"]], "nodriver.cdp.network.ResourceType": [[37, 1, 1, "", "CSP_VIOLATION_REPORT"], [37, 1, 1, "", "DOCUMENT"], [37, 1, 1, "", "EVENT_SOURCE"], [37, 1, 1, "", "FETCH"], [37, 1, 1, "", "FONT"], [37, 1, 1, "", "IMAGE"], [37, 1, 1, "", "MANIFEST"], [37, 1, 1, "", "MEDIA"], [37, 1, 1, "", "OTHER"], [37, 1, 1, "", "PING"], [37, 1, 1, "", "PREFETCH"], [37, 1, 1, "", "PREFLIGHT"], [37, 1, 1, "", "SCRIPT"], [37, 1, 1, "", "SIGNED_EXCHANGE"], [37, 1, 1, "", "STYLESHEET"], [37, 1, 1, "", "TEXT_TRACK"], [37, 1, 1, "", "WEB_SOCKET"], [37, 1, 1, "", "XHR"]], "nodriver.cdp.network.Response": [[37, 1, 1, "", "alternate_protocol_usage"], [37, 1, 1, "", "cache_storage_cache_name"], [37, 1, 1, "", "charset"], [37, 1, 1, "", "connection_id"], [37, 1, 1, "", "connection_reused"], [37, 1, 1, "", "encoded_data_length"], [37, 1, 1, "", "from_disk_cache"], [37, 1, 1, "", "from_early_hints"], [37, 1, 1, "", "from_prefetch_cache"], [37, 1, 1, "", "from_service_worker"], [37, 1, 1, "", "headers"], [37, 1, 1, "", "headers_text"], [37, 1, 1, "", "mime_type"], [37, 1, 1, "", "protocol"], [37, 1, 1, "", "remote_ip_address"], [37, 1, 1, "", "remote_port"], [37, 1, 1, "", "request_headers"], [37, 1, 1, "", "request_headers_text"], [37, 1, 1, "", "response_time"], [37, 1, 1, "", "security_details"], [37, 1, 1, "", "security_state"], [37, 1, 1, "", "service_worker_response_source"], [37, 1, 1, "", "service_worker_router_info"], [37, 1, 1, "", "status"], [37, 1, 1, "", "status_text"], [37, 1, 1, "", "timing"], [37, 1, 1, "", "url"]], "nodriver.cdp.network.ResponseReceived": [[37, 1, 1, "", "frame_id"], [37, 1, 1, "", "has_extra_info"], [37, 1, 1, "", "loader_id"], [37, 1, 1, "", "request_id"], [37, 1, 1, "", "response"], [37, 1, 1, "", "timestamp"], [37, 1, 1, "", "type_"]], "nodriver.cdp.network.ResponseReceivedEarlyHints": [[37, 1, 1, "", "headers"], [37, 1, 1, "", "request_id"]], "nodriver.cdp.network.ResponseReceivedExtraInfo": [[37, 1, 1, "", "blocked_cookies"], [37, 1, 1, "", "cookie_partition_key"], [37, 1, 1, "", "cookie_partition_key_opaque"], [37, 1, 1, "", "exempted_cookies"], [37, 1, 1, "", "headers"], [37, 1, 1, "", "headers_text"], [37, 1, 1, "", "request_id"], [37, 1, 1, "", "resource_ip_address_space"], [37, 1, 1, "", "status_code"]], "nodriver.cdp.network.SecurityDetails": [[37, 1, 1, "", "certificate_id"], [37, 1, 1, "", "certificate_transparency_compliance"], [37, 1, 1, "", "cipher"], [37, 1, 1, "", "encrypted_client_hello"], [37, 1, 1, "", "issuer"], [37, 1, 1, "", "key_exchange"], [37, 1, 1, "", "key_exchange_group"], [37, 1, 1, "", "mac"], [37, 1, 1, "", "protocol"], [37, 1, 1, "", "san_list"], [37, 1, 1, "", "server_signature_algorithm"], [37, 1, 1, "", "signed_certificate_timestamp_list"], [37, 1, 1, "", "subject_name"], [37, 1, 1, "", "valid_from"], [37, 1, 1, "", "valid_to"]], "nodriver.cdp.network.SecurityIsolationStatus": [[37, 1, 1, "", "coep"], [37, 1, 1, "", "coop"], [37, 1, 1, "", "csp"]], "nodriver.cdp.network.ServiceWorkerResponseSource": [[37, 1, 1, "", "CACHE_STORAGE"], [37, 1, 1, "", "FALLBACK_CODE"], [37, 1, 1, "", "HTTP_CACHE"], [37, 1, 1, "", "NETWORK"]], "nodriver.cdp.network.ServiceWorkerRouterInfo": [[37, 1, 1, "", "actual_source_type"], [37, 1, 1, "", "matched_source_type"], [37, 1, 1, "", "rule_id_matched"]], "nodriver.cdp.network.ServiceWorkerRouterSource": [[37, 1, 1, "", "CACHE"], [37, 1, 1, "", "FETCH_EVENT"], [37, 1, 1, "", "NETWORK"], [37, 1, 1, "", "RACE_NETWORK_AND_FETCH_HANDLER"]], "nodriver.cdp.network.SetCookieBlockedReason": [[37, 1, 1, "", "DISALLOWED_CHARACTER"], [37, 1, 1, "", "INVALID_DOMAIN"], [37, 1, 1, "", "INVALID_PREFIX"], [37, 1, 1, "", "NAME_VALUE_PAIR_EXCEEDS_MAX_SIZE"], [37, 1, 1, "", "NO_COOKIE_CONTENT"], [37, 1, 1, "", "OVERWRITE_SECURE"], [37, 1, 1, "", "SAME_PARTY_CONFLICTS_WITH_OTHER_ATTRIBUTES"], [37, 1, 1, "", "SAME_PARTY_FROM_CROSS_PARTY_CONTEXT"], [37, 1, 1, "", "SAME_SITE_LAX"], [37, 1, 1, "", "SAME_SITE_NONE_INSECURE"], [37, 1, 1, "", "SAME_SITE_STRICT"], [37, 1, 1, "", "SAME_SITE_UNSPECIFIED_TREATED_AS_LAX"], [37, 1, 1, "", "SCHEMEFUL_SAME_SITE_LAX"], [37, 1, 1, "", "SCHEMEFUL_SAME_SITE_STRICT"], [37, 1, 1, "", "SCHEMEFUL_SAME_SITE_UNSPECIFIED_TREATED_AS_LAX"], [37, 1, 1, "", "SCHEME_NOT_SUPPORTED"], [37, 1, 1, "", "SECURE_ONLY"], [37, 1, 1, "", "SYNTAX_ERROR"], [37, 1, 1, "", "THIRD_PARTY_BLOCKED_IN_FIRST_PARTY_SET"], [37, 1, 1, "", "THIRD_PARTY_PHASEOUT"], [37, 1, 1, "", "UNKNOWN_ERROR"], [37, 1, 1, "", "USER_PREFERENCES"]], "nodriver.cdp.network.SignedCertificateTimestamp": [[37, 1, 1, "", "hash_algorithm"], [37, 1, 1, "", "log_description"], [37, 1, 1, "", "log_id"], [37, 1, 1, "", "origin"], [37, 1, 1, "", "signature_algorithm"], [37, 1, 1, "", "signature_data"], [37, 1, 1, "", "status"], [37, 1, 1, "", "timestamp"]], "nodriver.cdp.network.SignedExchangeError": [[37, 1, 1, "", "error_field"], [37, 1, 1, "", "message"], [37, 1, 1, "", "signature_index"]], "nodriver.cdp.network.SignedExchangeErrorField": [[37, 1, 1, "", "SIGNATURE_CERT_SHA256"], [37, 1, 1, "", "SIGNATURE_CERT_URL"], [37, 1, 1, "", "SIGNATURE_INTEGRITY"], [37, 1, 1, "", "SIGNATURE_SIG"], [37, 1, 1, "", "SIGNATURE_TIMESTAMPS"], [37, 1, 1, "", "SIGNATURE_VALIDITY_URL"]], "nodriver.cdp.network.SignedExchangeHeader": [[37, 1, 1, "", "header_integrity"], [37, 1, 1, "", "request_url"], [37, 1, 1, "", "response_code"], [37, 1, 1, "", "response_headers"], [37, 1, 1, "", "signatures"]], "nodriver.cdp.network.SignedExchangeInfo": [[37, 1, 1, "", "errors"], [37, 1, 1, "", "header"], [37, 1, 1, "", "outer_response"], [37, 1, 1, "", "security_details"]], "nodriver.cdp.network.SignedExchangeReceived": [[37, 1, 1, "", "info"], [37, 1, 1, "", "request_id"]], "nodriver.cdp.network.SignedExchangeSignature": [[37, 1, 1, "", "cert_sha256"], [37, 1, 1, "", "cert_url"], [37, 1, 1, "", "certificates"], [37, 1, 1, "", "date"], [37, 1, 1, "", "expires"], [37, 1, 1, "", "integrity"], [37, 1, 1, "", "label"], [37, 1, 1, "", "signature"], [37, 1, 1, "", "validity_url"]], "nodriver.cdp.network.SubresourceWebBundleInnerResponseError": [[37, 1, 1, "", "bundle_request_id"], [37, 1, 1, "", "error_message"], [37, 1, 1, "", "inner_request_id"], [37, 1, 1, "", "inner_request_url"]], "nodriver.cdp.network.SubresourceWebBundleInnerResponseParsed": [[37, 1, 1, "", "bundle_request_id"], [37, 1, 1, "", "inner_request_id"], [37, 1, 1, "", "inner_request_url"]], "nodriver.cdp.network.SubresourceWebBundleMetadataError": [[37, 1, 1, "", "error_message"], [37, 1, 1, "", "request_id"]], "nodriver.cdp.network.SubresourceWebBundleMetadataReceived": [[37, 1, 1, "", "request_id"], [37, 1, 1, "", "urls"]], "nodriver.cdp.network.TrustTokenOperationDone": [[37, 1, 1, "", "issued_token_count"], [37, 1, 1, "", "issuer_origin"], [37, 1, 1, "", "request_id"], [37, 1, 1, "", "status"], [37, 1, 1, "", "top_level_origin"], [37, 1, 1, "", "type_"]], "nodriver.cdp.network.TrustTokenOperationType": [[37, 1, 1, "", "ISSUANCE"], [37, 1, 1, "", "REDEMPTION"], [37, 1, 1, "", "SIGNING"]], "nodriver.cdp.network.TrustTokenParams": [[37, 1, 1, "", "issuers"], [37, 1, 1, "", "operation"], [37, 1, 1, "", "refresh_policy"]], "nodriver.cdp.network.WebSocketClosed": [[37, 1, 1, "", "request_id"], [37, 1, 1, "", "timestamp"]], "nodriver.cdp.network.WebSocketCreated": [[37, 1, 1, "", "initiator"], [37, 1, 1, "", "request_id"], [37, 1, 1, "", "url"]], "nodriver.cdp.network.WebSocketFrame": [[37, 1, 1, "", "mask"], [37, 1, 1, "", "opcode"], [37, 1, 1, "", "payload_data"]], "nodriver.cdp.network.WebSocketFrameError": [[37, 1, 1, "", "error_message"], [37, 1, 1, "", "request_id"], [37, 1, 1, "", "timestamp"]], "nodriver.cdp.network.WebSocketFrameReceived": [[37, 1, 1, "", "request_id"], [37, 1, 1, "", "response"], [37, 1, 1, "", "timestamp"]], "nodriver.cdp.network.WebSocketFrameSent": [[37, 1, 1, "", "request_id"], [37, 1, 1, "", "response"], [37, 1, 1, "", "timestamp"]], "nodriver.cdp.network.WebSocketHandshakeResponseReceived": [[37, 1, 1, "", "request_id"], [37, 1, 1, "", "response"], [37, 1, 1, "", "timestamp"]], "nodriver.cdp.network.WebSocketRequest": [[37, 1, 1, "", "headers"]], "nodriver.cdp.network.WebSocketResponse": [[37, 1, 1, "", "headers"], [37, 1, 1, "", "headers_text"], [37, 1, 1, "", "request_headers"], [37, 1, 1, "", "request_headers_text"], [37, 1, 1, "", "status"], [37, 1, 1, "", "status_text"]], "nodriver.cdp.network.WebSocketWillSendHandshakeRequest": [[37, 1, 1, "", "request"], [37, 1, 1, "", "request_id"], [37, 1, 1, "", "timestamp"], [37, 1, 1, "", "wall_time"]], "nodriver.cdp.network.WebTransportClosed": [[37, 1, 1, "", "timestamp"], [37, 1, 1, "", "transport_id"]], "nodriver.cdp.network.WebTransportConnectionEstablished": [[37, 1, 1, "", "timestamp"], [37, 1, 1, "", "transport_id"]], "nodriver.cdp.network.WebTransportCreated": [[37, 1, 1, "", "initiator"], [37, 1, 1, "", "timestamp"], [37, 1, 1, "", "transport_id"], [37, 1, 1, "", "url"]], "nodriver.cdp.overlay": [[38, 0, 1, "", "BoxStyle"], [38, 0, 1, "", "ColorFormat"], [38, 0, 1, "", "ContainerQueryContainerHighlightConfig"], [38, 0, 1, "", "ContainerQueryHighlightConfig"], [38, 0, 1, "", "ContrastAlgorithm"], [38, 0, 1, "", "FlexContainerHighlightConfig"], [38, 0, 1, "", "FlexItemHighlightConfig"], [38, 0, 1, "", "FlexNodeHighlightConfig"], [38, 0, 1, "", "GridHighlightConfig"], [38, 0, 1, "", "GridNodeHighlightConfig"], [38, 0, 1, "", "HighlightConfig"], [38, 0, 1, "", "HingeConfig"], [38, 0, 1, "", "InspectMode"], [38, 0, 1, "", "InspectModeCanceled"], [38, 0, 1, "", "InspectNodeRequested"], [38, 0, 1, "", "IsolatedElementHighlightConfig"], [38, 0, 1, "", "IsolationModeHighlightConfig"], [38, 0, 1, "", "LineStyle"], [38, 0, 1, "", "NodeHighlightRequested"], [38, 0, 1, "", "ScreenshotRequested"], [38, 0, 1, "", "ScrollSnapContainerHighlightConfig"], [38, 0, 1, "", "ScrollSnapHighlightConfig"], [38, 0, 1, "", "SourceOrderConfig"], [38, 0, 1, "", "WindowControlsOverlayConfig"], [38, 5, 1, "", "disable"], [38, 5, 1, "", "enable"], [38, 5, 1, "", "get_grid_highlight_objects_for_test"], [38, 5, 1, "", "get_highlight_object_for_test"], [38, 5, 1, "", "get_source_order_highlight_object_for_test"], [38, 5, 1, "", "hide_highlight"], [38, 5, 1, "", "highlight_frame"], [38, 5, 1, "", "highlight_node"], [38, 5, 1, "", "highlight_quad"], [38, 5, 1, "", "highlight_rect"], [38, 5, 1, "", "highlight_source_order"], [38, 5, 1, "", "set_inspect_mode"], [38, 5, 1, "", "set_paused_in_debugger_message"], [38, 5, 1, "", "set_show_ad_highlights"], [38, 5, 1, "", "set_show_container_query_overlays"], [38, 5, 1, "", "set_show_debug_borders"], [38, 5, 1, "", "set_show_flex_overlays"], [38, 5, 1, "", "set_show_fps_counter"], [38, 5, 1, "", "set_show_grid_overlays"], [38, 5, 1, "", "set_show_hinge"], [38, 5, 1, "", "set_show_hit_test_borders"], [38, 5, 1, "", "set_show_isolated_elements"], [38, 5, 1, "", "set_show_layout_shift_regions"], [38, 5, 1, "", "set_show_paint_rects"], [38, 5, 1, "", "set_show_scroll_bottleneck_rects"], [38, 5, 1, "", "set_show_scroll_snap_overlays"], [38, 5, 1, "", "set_show_viewport_size_on_resize"], [38, 5, 1, "", "set_show_web_vitals"], [38, 5, 1, "", "set_show_window_controls_overlay"]], "nodriver.cdp.overlay.BoxStyle": [[38, 1, 1, "", "fill_color"], [38, 1, 1, "", "hatch_color"]], "nodriver.cdp.overlay.ColorFormat": [[38, 1, 1, "", "HEX_"], [38, 1, 1, "", "HSL"], [38, 1, 1, "", "HWB"], [38, 1, 1, "", "RGB"]], "nodriver.cdp.overlay.ContainerQueryContainerHighlightConfig": [[38, 1, 1, "", "container_border"], [38, 1, 1, "", "descendant_border"]], "nodriver.cdp.overlay.ContainerQueryHighlightConfig": [[38, 1, 1, "", "container_query_container_highlight_config"], [38, 1, 1, "", "node_id"]], "nodriver.cdp.overlay.ContrastAlgorithm": [[38, 1, 1, "", "AA"], [38, 1, 1, "", "AAA"], [38, 1, 1, "", "APCA"]], "nodriver.cdp.overlay.FlexContainerHighlightConfig": [[38, 1, 1, "", "column_gap_space"], [38, 1, 1, "", "container_border"], [38, 1, 1, "", "cross_alignment"], [38, 1, 1, "", "cross_distributed_space"], [38, 1, 1, "", "item_separator"], [38, 1, 1, "", "line_separator"], [38, 1, 1, "", "main_distributed_space"], [38, 1, 1, "", "row_gap_space"]], "nodriver.cdp.overlay.FlexItemHighlightConfig": [[38, 1, 1, "", "base_size_border"], [38, 1, 1, "", "base_size_box"], [38, 1, 1, "", "flexibility_arrow"]], "nodriver.cdp.overlay.FlexNodeHighlightConfig": [[38, 1, 1, "", "flex_container_highlight_config"], [38, 1, 1, "", "node_id"]], "nodriver.cdp.overlay.GridHighlightConfig": [[38, 1, 1, "", "area_border_color"], [38, 1, 1, "", "cell_border_color"], [38, 1, 1, "", "cell_border_dash"], [38, 1, 1, "", "column_gap_color"], [38, 1, 1, "", "column_hatch_color"], [38, 1, 1, "", "column_line_color"], [38, 1, 1, "", "column_line_dash"], [38, 1, 1, "", "grid_background_color"], [38, 1, 1, "", "grid_border_color"], [38, 1, 1, "", "grid_border_dash"], [38, 1, 1, "", "row_gap_color"], [38, 1, 1, "", "row_hatch_color"], [38, 1, 1, "", "row_line_color"], [38, 1, 1, "", "row_line_dash"], [38, 1, 1, "", "show_area_names"], [38, 1, 1, "", "show_grid_extension_lines"], [38, 1, 1, "", "show_line_names"], [38, 1, 1, "", "show_negative_line_numbers"], [38, 1, 1, "", "show_positive_line_numbers"], [38, 1, 1, "", "show_track_sizes"]], "nodriver.cdp.overlay.GridNodeHighlightConfig": [[38, 1, 1, "", "grid_highlight_config"], [38, 1, 1, "", "node_id"]], "nodriver.cdp.overlay.HighlightConfig": [[38, 1, 1, "", "border_color"], [38, 1, 1, "", "color_format"], [38, 1, 1, "", "container_query_container_highlight_config"], [38, 1, 1, "", "content_color"], [38, 1, 1, "", "contrast_algorithm"], [38, 1, 1, "", "css_grid_color"], [38, 1, 1, "", "event_target_color"], [38, 1, 1, "", "flex_container_highlight_config"], [38, 1, 1, "", "flex_item_highlight_config"], [38, 1, 1, "", "grid_highlight_config"], [38, 1, 1, "", "margin_color"], [38, 1, 1, "", "padding_color"], [38, 1, 1, "", "shape_color"], [38, 1, 1, "", "shape_margin_color"], [38, 1, 1, "", "show_accessibility_info"], [38, 1, 1, "", "show_extension_lines"], [38, 1, 1, "", "show_info"], [38, 1, 1, "", "show_rulers"], [38, 1, 1, "", "show_styles"]], "nodriver.cdp.overlay.HingeConfig": [[38, 1, 1, "", "content_color"], [38, 1, 1, "", "outline_color"], [38, 1, 1, "", "rect"]], "nodriver.cdp.overlay.InspectMode": [[38, 1, 1, "", "CAPTURE_AREA_SCREENSHOT"], [38, 1, 1, "", "NONE"], [38, 1, 1, "", "SEARCH_FOR_NODE"], [38, 1, 1, "", "SEARCH_FOR_UA_SHADOW_DOM"], [38, 1, 1, "", "SHOW_DISTANCES"]], "nodriver.cdp.overlay.InspectNodeRequested": [[38, 1, 1, "", "backend_node_id"]], "nodriver.cdp.overlay.IsolatedElementHighlightConfig": [[38, 1, 1, "", "isolation_mode_highlight_config"], [38, 1, 1, "", "node_id"]], "nodriver.cdp.overlay.IsolationModeHighlightConfig": [[38, 1, 1, "", "mask_color"], [38, 1, 1, "", "resizer_color"], [38, 1, 1, "", "resizer_handle_color"]], "nodriver.cdp.overlay.LineStyle": [[38, 1, 1, "", "color"], [38, 1, 1, "", "pattern"]], "nodriver.cdp.overlay.NodeHighlightRequested": [[38, 1, 1, "", "node_id"]], "nodriver.cdp.overlay.ScreenshotRequested": [[38, 1, 1, "", "viewport"]], "nodriver.cdp.overlay.ScrollSnapContainerHighlightConfig": [[38, 1, 1, "", "scroll_margin_color"], [38, 1, 1, "", "scroll_padding_color"], [38, 1, 1, "", "snap_area_border"], [38, 1, 1, "", "snapport_border"]], "nodriver.cdp.overlay.ScrollSnapHighlightConfig": [[38, 1, 1, "", "node_id"], [38, 1, 1, "", "scroll_snap_container_highlight_config"]], "nodriver.cdp.overlay.SourceOrderConfig": [[38, 1, 1, "", "child_outline_color"], [38, 1, 1, "", "parent_outline_color"]], "nodriver.cdp.overlay.WindowControlsOverlayConfig": [[38, 1, 1, "", "selected_platform"], [38, 1, 1, "", "show_css"], [38, 1, 1, "", "theme_color"]], "nodriver.cdp.page": [[39, 0, 1, "", "AdFrameExplanation"], [39, 0, 1, "", "AdFrameStatus"], [39, 0, 1, "", "AdFrameType"], [39, 0, 1, "", "AdScriptId"], [39, 0, 1, "", "AppManifestError"], [39, 0, 1, "", "AppManifestParsedProperties"], [39, 0, 1, "", "AutoResponseMode"], [39, 0, 1, "", "BackForwardCacheBlockingDetails"], [39, 0, 1, "", "BackForwardCacheNotRestoredExplanation"], [39, 0, 1, "", "BackForwardCacheNotRestoredExplanationTree"], [39, 0, 1, "", "BackForwardCacheNotRestoredReason"], [39, 0, 1, "", "BackForwardCacheNotRestoredReasonType"], [39, 0, 1, "", "BackForwardCacheNotUsed"], [39, 0, 1, "", "ClientNavigationDisposition"], [39, 0, 1, "", "ClientNavigationReason"], [39, 0, 1, "", "CompilationCacheParams"], [39, 0, 1, "", "CompilationCacheProduced"], [39, 0, 1, "", "CrossOriginIsolatedContextType"], [39, 0, 1, "", "DialogType"], [39, 0, 1, "", "DocumentOpened"], [39, 0, 1, "", "DomContentEventFired"], [39, 0, 1, "", "DownloadProgress"], [39, 0, 1, "", "DownloadWillBegin"], [39, 0, 1, "", "FileChooserOpened"], [39, 0, 1, "", "FileFilter"], [39, 0, 1, "", "FileHandler"], [39, 0, 1, "", "FontFamilies"], [39, 0, 1, "", "FontSizes"], [39, 0, 1, "", "Frame"], [39, 0, 1, "", "FrameAttached"], [39, 0, 1, "", "FrameClearedScheduledNavigation"], [39, 0, 1, "", "FrameDetached"], [39, 0, 1, "", "FrameId"], [39, 0, 1, "", "FrameNavigated"], [39, 0, 1, "", "FrameRequestedNavigation"], [39, 0, 1, "", "FrameResized"], [39, 0, 1, "", "FrameResource"], [39, 0, 1, "", "FrameResourceTree"], [39, 0, 1, "", "FrameScheduledNavigation"], [39, 0, 1, "", "FrameStartedLoading"], [39, 0, 1, "", "FrameStoppedLoading"], [39, 0, 1, "", "FrameSubtreeWillBeDetached"], [39, 0, 1, "", "FrameTree"], [39, 0, 1, "", "GatedAPIFeatures"], [39, 0, 1, "", "ImageResource"], [39, 0, 1, "", "InstallabilityError"], [39, 0, 1, "", "InstallabilityErrorArgument"], [39, 0, 1, "", "InterstitialHidden"], [39, 0, 1, "", "InterstitialShown"], [39, 0, 1, "", "JavascriptDialogClosed"], [39, 0, 1, "", "JavascriptDialogOpening"], [39, 0, 1, "", "LaunchHandler"], [39, 0, 1, "", "LayoutViewport"], [39, 0, 1, "", "LifecycleEvent"], [39, 0, 1, "", "LoadEventFired"], [39, 0, 1, "", "NavigatedWithinDocument"], [39, 0, 1, "", "NavigationEntry"], [39, 0, 1, "", "NavigationType"], [39, 0, 1, "", "OriginTrial"], [39, 0, 1, "", "OriginTrialStatus"], [39, 0, 1, "", "OriginTrialToken"], [39, 0, 1, "", "OriginTrialTokenStatus"], [39, 0, 1, "", "OriginTrialTokenWithStatus"], [39, 0, 1, "", "OriginTrialUsageRestriction"], [39, 0, 1, "", "PermissionsPolicyBlockLocator"], [39, 0, 1, "", "PermissionsPolicyBlockReason"], [39, 0, 1, "", "PermissionsPolicyFeature"], [39, 0, 1, "", "PermissionsPolicyFeatureState"], [39, 0, 1, "", "ProtocolHandler"], [39, 0, 1, "", "ReferrerPolicy"], [39, 0, 1, "", "RelatedApplication"], [39, 0, 1, "", "ScopeExtension"], [39, 0, 1, "", "ScreencastFrame"], [39, 0, 1, "", "ScreencastFrameMetadata"], [39, 0, 1, "", "ScreencastVisibilityChanged"], [39, 0, 1, "", "Screenshot"], [39, 0, 1, "", "ScriptFontFamilies"], [39, 0, 1, "", "ScriptIdentifier"], [39, 0, 1, "", "SecureContextType"], [39, 0, 1, "", "ShareTarget"], [39, 0, 1, "", "Shortcut"], [39, 0, 1, "", "TransitionType"], [39, 0, 1, "", "Viewport"], [39, 0, 1, "", "VisualViewport"], [39, 0, 1, "", "WebAppManifest"], [39, 0, 1, "", "WindowOpen"], [39, 5, 1, "", "add_compilation_cache"], [39, 5, 1, "", "add_script_to_evaluate_on_load"], [39, 5, 1, "", "add_script_to_evaluate_on_new_document"], [39, 5, 1, "", "bring_to_front"], [39, 5, 1, "", "capture_screenshot"], [39, 5, 1, "", "capture_snapshot"], [39, 5, 1, "", "clear_compilation_cache"], [39, 5, 1, "", "clear_device_metrics_override"], [39, 5, 1, "", "clear_device_orientation_override"], [39, 5, 1, "", "clear_geolocation_override"], [39, 5, 1, "", "close"], [39, 5, 1, "", "crash"], [39, 5, 1, "", "create_isolated_world"], [39, 5, 1, "", "delete_cookie"], [39, 5, 1, "", "disable"], [39, 5, 1, "", "enable"], [39, 5, 1, "", "generate_test_report"], [39, 5, 1, "", "get_ad_script_id"], [39, 5, 1, "", "get_app_id"], [39, 5, 1, "", "get_app_manifest"], [39, 5, 1, "", "get_frame_tree"], [39, 5, 1, "", "get_installability_errors"], [39, 5, 1, "", "get_layout_metrics"], [39, 5, 1, "", "get_manifest_icons"], [39, 5, 1, "", "get_navigation_history"], [39, 5, 1, "", "get_origin_trials"], [39, 5, 1, "", "get_permissions_policy_state"], [39, 5, 1, "", "get_resource_content"], [39, 5, 1, "", "get_resource_tree"], [39, 5, 1, "", "handle_java_script_dialog"], [39, 5, 1, "", "navigate"], [39, 5, 1, "", "navigate_to_history_entry"], [39, 5, 1, "", "print_to_pdf"], [39, 5, 1, "", "produce_compilation_cache"], [39, 5, 1, "", "reload"], [39, 5, 1, "", "remove_script_to_evaluate_on_load"], [39, 5, 1, "", "remove_script_to_evaluate_on_new_document"], [39, 5, 1, "", "reset_navigation_history"], [39, 5, 1, "", "screencast_frame_ack"], [39, 5, 1, "", "search_in_resource"], [39, 5, 1, "", "set_ad_blocking_enabled"], [39, 5, 1, "", "set_bypass_csp"], [39, 5, 1, "", "set_device_metrics_override"], [39, 5, 1, "", "set_device_orientation_override"], [39, 5, 1, "", "set_document_content"], [39, 5, 1, "", "set_download_behavior"], [39, 5, 1, "", "set_font_families"], [39, 5, 1, "", "set_font_sizes"], [39, 5, 1, "", "set_geolocation_override"], [39, 5, 1, "", "set_intercept_file_chooser_dialog"], [39, 5, 1, "", "set_lifecycle_events_enabled"], [39, 5, 1, "", "set_prerendering_allowed"], [39, 5, 1, "", "set_rph_registration_mode"], [39, 5, 1, "", "set_spc_transaction_mode"], [39, 5, 1, "", "set_touch_emulation_enabled"], [39, 5, 1, "", "set_web_lifecycle_state"], [39, 5, 1, "", "start_screencast"], [39, 5, 1, "", "stop_loading"], [39, 5, 1, "", "stop_screencast"], [39, 5, 1, "", "wait_for_debugger"]], "nodriver.cdp.page.AdFrameExplanation": [[39, 1, 1, "", "CREATED_BY_AD_SCRIPT"], [39, 1, 1, "", "MATCHED_BLOCKING_RULE"], [39, 1, 1, "", "PARENT_IS_AD"]], "nodriver.cdp.page.AdFrameStatus": [[39, 1, 1, "", "ad_frame_type"], [39, 1, 1, "", "explanations"]], "nodriver.cdp.page.AdFrameType": [[39, 1, 1, "", "CHILD"], [39, 1, 1, "", "NONE"], [39, 1, 1, "", "ROOT"]], "nodriver.cdp.page.AdScriptId": [[39, 1, 1, "", "debugger_id"], [39, 1, 1, "", "script_id"]], "nodriver.cdp.page.AppManifestError": [[39, 1, 1, "", "column"], [39, 1, 1, "", "critical"], [39, 1, 1, "", "line"], [39, 1, 1, "", "message"]], "nodriver.cdp.page.AppManifestParsedProperties": [[39, 1, 1, "", "scope"]], "nodriver.cdp.page.AutoResponseMode": [[39, 1, 1, "", "AUTO_ACCEPT"], [39, 1, 1, "", "AUTO_OPT_OUT"], [39, 1, 1, "", "AUTO_REJECT"], [39, 1, 1, "", "NONE"]], "nodriver.cdp.page.BackForwardCacheBlockingDetails": [[39, 1, 1, "", "column_number"], [39, 1, 1, "", "function"], [39, 1, 1, "", "line_number"], [39, 1, 1, "", "url"]], "nodriver.cdp.page.BackForwardCacheNotRestoredExplanation": [[39, 1, 1, "", "context"], [39, 1, 1, "", "details"], [39, 1, 1, "", "reason"], [39, 1, 1, "", "type_"]], "nodriver.cdp.page.BackForwardCacheNotRestoredExplanationTree": [[39, 1, 1, "", "children"], [39, 1, 1, "", "explanations"], [39, 1, 1, "", "url"]], "nodriver.cdp.page.BackForwardCacheNotRestoredReason": [[39, 1, 1, "", "ACTIVATION_NAVIGATIONS_DISALLOWED_FOR_BUG1234857"], [39, 1, 1, "", "APP_BANNER"], [39, 1, 1, "", "BACK_FORWARD_CACHE_DISABLED"], [39, 1, 1, "", "BACK_FORWARD_CACHE_DISABLED_BY_COMMAND_LINE"], [39, 1, 1, "", "BACK_FORWARD_CACHE_DISABLED_BY_LOW_MEMORY"], [39, 1, 1, "", "BACK_FORWARD_CACHE_DISABLED_FOR_DELEGATE"], [39, 1, 1, "", "BACK_FORWARD_CACHE_DISABLED_FOR_PRERENDER"], [39, 1, 1, "", "BROADCAST_CHANNEL"], [39, 1, 1, "", "BROADCAST_CHANNEL_ON_MESSAGE"], [39, 1, 1, "", "BROWSING_INSTANCE_NOT_SWAPPED"], [39, 1, 1, "", "CACHE_CONTROL_NO_STORE"], [39, 1, 1, "", "CACHE_CONTROL_NO_STORE_COOKIE_MODIFIED"], [39, 1, 1, "", "CACHE_CONTROL_NO_STORE_HTTP_ONLY_COOKIE_MODIFIED"], [39, 1, 1, "", "CACHE_FLUSHED"], [39, 1, 1, "", "CACHE_LIMIT"], [39, 1, 1, "", "CONFLICTING_BROWSING_INSTANCE"], [39, 1, 1, "", "CONTAINS_PLUGINS"], [39, 1, 1, "", "CONTENT_DISCARDED"], [39, 1, 1, "", "CONTENT_FILE_CHOOSER"], [39, 1, 1, "", "CONTENT_FILE_SYSTEM_ACCESS"], [39, 1, 1, "", "CONTENT_MEDIA_DEVICES_DISPATCHER_HOST"], [39, 1, 1, "", "CONTENT_MEDIA_SESSION_SERVICE"], [39, 1, 1, "", "CONTENT_SCREEN_READER"], [39, 1, 1, "", "CONTENT_SECURITY_HANDLER"], [39, 1, 1, "", "CONTENT_SERIAL"], [39, 1, 1, "", "CONTENT_WEB_AUTHENTICATION_API"], [39, 1, 1, "", "CONTENT_WEB_BLUETOOTH"], [39, 1, 1, "", "CONTENT_WEB_USB"], [39, 1, 1, "", "COOKIE_DISABLED"], [39, 1, 1, "", "COOKIE_FLUSHED"], [39, 1, 1, "", "DISABLE_FOR_RENDER_FRAME_HOST_CALLED"], [39, 1, 1, "", "DOCUMENT_LOADED"], [39, 1, 1, "", "DOMAIN_NOT_ALLOWED"], [39, 1, 1, "", "DUMMY"], [39, 1, 1, "", "EMBEDDER_APP_BANNER_MANAGER"], [39, 1, 1, "", "EMBEDDER_CHROME_PASSWORD_MANAGER_CLIENT_BIND_CREDENTIAL_MANAGER"], [39, 1, 1, "", "EMBEDDER_DOM_DISTILLER_SELF_DELETING_REQUEST_DELEGATE"], [39, 1, 1, "", "EMBEDDER_DOM_DISTILLER_VIEWER_SOURCE"], [39, 1, 1, "", "EMBEDDER_EXTENSIONS"], [39, 1, 1, "", "EMBEDDER_EXTENSION_MESSAGING"], [39, 1, 1, "", "EMBEDDER_EXTENSION_MESSAGING_FOR_OPEN_PORT"], [39, 1, 1, "", "EMBEDDER_EXTENSION_SENT_MESSAGE_TO_CACHED_FRAME"], [39, 1, 1, "", "EMBEDDER_MODAL_DIALOG"], [39, 1, 1, "", "EMBEDDER_OFFLINE_PAGE"], [39, 1, 1, "", "EMBEDDER_OOM_INTERVENTION_TAB_HELPER"], [39, 1, 1, "", "EMBEDDER_PERMISSION_REQUEST_MANAGER"], [39, 1, 1, "", "EMBEDDER_POPUP_BLOCKER_TAB_HELPER"], [39, 1, 1, "", "EMBEDDER_SAFE_BROWSING_THREAT_DETAILS"], [39, 1, 1, "", "EMBEDDER_SAFE_BROWSING_TRIGGERED_POPUP_BLOCKER"], [39, 1, 1, "", "ENTERED_BACK_FORWARD_CACHE_BEFORE_SERVICE_WORKER_HOST_ADDED"], [39, 1, 1, "", "ERROR_DOCUMENT"], [39, 1, 1, "", "FENCED_FRAMES_EMBEDDER"], [39, 1, 1, "", "FOREGROUND_CACHE_LIMIT"], [39, 1, 1, "", "HAVE_INNER_CONTENTS"], [39, 1, 1, "", "HTTP_AUTH_REQUIRED"], [39, 1, 1, "", "HTTP_METHOD_NOT_GET"], [39, 1, 1, "", "HTTP_STATUS_NOT_OK"], [39, 1, 1, "", "IDLE_MANAGER"], [39, 1, 1, "", "IGNORE_EVENT_AND_EVICT"], [39, 1, 1, "", "INDEXED_DB_EVENT"], [39, 1, 1, "", "INJECTED_JAVASCRIPT"], [39, 1, 1, "", "INJECTED_STYLE_SHEET"], [39, 1, 1, "", "JAVA_SCRIPT_EXECUTION"], [39, 1, 1, "", "JS_NETWORK_REQUEST_RECEIVED_CACHE_CONTROL_NO_STORE_RESOURCE"], [39, 1, 1, "", "KEEPALIVE_REQUEST"], [39, 1, 1, "", "KEYBOARD_LOCK"], [39, 1, 1, "", "LIVE_MEDIA_STREAM_TRACK"], [39, 1, 1, "", "LOADING"], [39, 1, 1, "", "MAIN_RESOURCE_HAS_CACHE_CONTROL_NO_CACHE"], [39, 1, 1, "", "MAIN_RESOURCE_HAS_CACHE_CONTROL_NO_STORE"], [39, 1, 1, "", "NAVIGATION_CANCELLED_WHILE_RESTORING"], [39, 1, 1, "", "NETWORK_EXCEEDS_BUFFER_LIMIT"], [39, 1, 1, "", "NETWORK_REQUEST_DATAPIPE_DRAINED_AS_BYTES_CONSUMER"], [39, 1, 1, "", "NETWORK_REQUEST_REDIRECTED"], [39, 1, 1, "", "NETWORK_REQUEST_TIMEOUT"], [39, 1, 1, "", "NOT_MOST_RECENT_NAVIGATION_ENTRY"], [39, 1, 1, "", "NOT_PRIMARY_MAIN_FRAME"], [39, 1, 1, "", "NO_RESPONSE_HEAD"], [39, 1, 1, "", "OUTSTANDING_NETWORK_REQUEST_DIRECT_SOCKET"], [39, 1, 1, "", "OUTSTANDING_NETWORK_REQUEST_FETCH"], [39, 1, 1, "", "OUTSTANDING_NETWORK_REQUEST_OTHERS"], [39, 1, 1, "", "OUTSTANDING_NETWORK_REQUEST_XHR"], [39, 1, 1, "", "PARSER_ABORTED"], [39, 1, 1, "", "PAYMENT_MANAGER"], [39, 1, 1, "", "PICTURE_IN_PICTURE"], [39, 1, 1, "", "POST_MESSAGE_BY_WEB_VIEW_CLIENT"], [39, 1, 1, "", "PRINTING"], [39, 1, 1, "", "RELATED_ACTIVE_CONTENTS_EXIST"], [39, 1, 1, "", "RENDERER_PROCESS_CRASHED"], [39, 1, 1, "", "RENDERER_PROCESS_KILLED"], [39, 1, 1, "", "RENDER_FRAME_HOST_REUSED_CROSS_SITE"], [39, 1, 1, "", "RENDER_FRAME_HOST_REUSED_SAME_SITE"], [39, 1, 1, "", "REQUESTED_AUDIO_CAPTURE_PERMISSION"], [39, 1, 1, "", "REQUESTED_BACKGROUND_WORK_PERMISSION"], [39, 1, 1, "", "REQUESTED_BACK_FORWARD_CACHE_BLOCKED_SENSORS"], [39, 1, 1, "", "REQUESTED_BY_WEB_VIEW_CLIENT"], [39, 1, 1, "", "REQUESTED_MIDI_PERMISSION"], [39, 1, 1, "", "REQUESTED_STORAGE_ACCESS_GRANT"], [39, 1, 1, "", "REQUESTED_VIDEO_CAPTURE_PERMISSION"], [39, 1, 1, "", "SCHEDULER_TRACKED_FEATURE_USED"], [39, 1, 1, "", "SCHEME_NOT_HTTP_OR_HTTPS"], [39, 1, 1, "", "SERVICE_WORKER_CLAIM"], [39, 1, 1, "", "SERVICE_WORKER_POST_MESSAGE"], [39, 1, 1, "", "SERVICE_WORKER_UNREGISTRATION"], [39, 1, 1, "", "SERVICE_WORKER_VERSION_ACTIVATION"], [39, 1, 1, "", "SESSION_RESTORED"], [39, 1, 1, "", "SHARED_WORKER"], [39, 1, 1, "", "SMART_CARD"], [39, 1, 1, "", "SPEECH_RECOGNIZER"], [39, 1, 1, "", "SPEECH_SYNTHESIS"], [39, 1, 1, "", "SUBFRAME_IS_NAVIGATING"], [39, 1, 1, "", "SUBRESOURCE_HAS_CACHE_CONTROL_NO_CACHE"], [39, 1, 1, "", "SUBRESOURCE_HAS_CACHE_CONTROL_NO_STORE"], [39, 1, 1, "", "TIMEOUT"], [39, 1, 1, "", "TIMEOUT_PUTTING_IN_CACHE"], [39, 1, 1, "", "UNKNOWN"], [39, 1, 1, "", "UNLOAD_HANDLER"], [39, 1, 1, "", "UNLOAD_HANDLER_EXISTS_IN_MAIN_FRAME"], [39, 1, 1, "", "UNLOAD_HANDLER_EXISTS_IN_SUB_FRAME"], [39, 1, 1, "", "USER_AGENT_OVERRIDE_DIFFERS"], [39, 1, 1, "", "WAS_GRANTED_MEDIA_ACCESS"], [39, 1, 1, "", "WEB_DATABASE"], [39, 1, 1, "", "WEB_HID"], [39, 1, 1, "", "WEB_LOCKS"], [39, 1, 1, "", "WEB_NFC"], [39, 1, 1, "", "WEB_OTP_SERVICE"], [39, 1, 1, "", "WEB_RTC"], [39, 1, 1, "", "WEB_RTC_STICKY"], [39, 1, 1, "", "WEB_SHARE"], [39, 1, 1, "", "WEB_SOCKET"], [39, 1, 1, "", "WEB_SOCKET_STICKY"], [39, 1, 1, "", "WEB_TRANSPORT"], [39, 1, 1, "", "WEB_TRANSPORT_STICKY"], [39, 1, 1, "", "WEB_VIEW_DOCUMENT_START_JAVASCRIPT_CHANGED"], [39, 1, 1, "", "WEB_VIEW_JAVA_SCRIPT_OBJECT_CHANGED"], [39, 1, 1, "", "WEB_VIEW_MESSAGE_LISTENER_INJECTED"], [39, 1, 1, "", "WEB_VIEW_SAFE_BROWSING_ALLOWLIST_CHANGED"], [39, 1, 1, "", "WEB_VIEW_SETTINGS_CHANGED"], [39, 1, 1, "", "WEB_XR"]], "nodriver.cdp.page.BackForwardCacheNotRestoredReasonType": [[39, 1, 1, "", "CIRCUMSTANTIAL"], [39, 1, 1, "", "PAGE_SUPPORT_NEEDED"], [39, 1, 1, "", "SUPPORT_PENDING"]], "nodriver.cdp.page.BackForwardCacheNotUsed": [[39, 1, 1, "", "frame_id"], [39, 1, 1, "", "loader_id"], [39, 1, 1, "", "not_restored_explanations"], [39, 1, 1, "", "not_restored_explanations_tree"]], "nodriver.cdp.page.ClientNavigationDisposition": [[39, 1, 1, "", "CURRENT_TAB"], [39, 1, 1, "", "DOWNLOAD"], [39, 1, 1, "", "NEW_TAB"], [39, 1, 1, "", "NEW_WINDOW"]], "nodriver.cdp.page.ClientNavigationReason": [[39, 1, 1, "", "ANCHOR_CLICK"], [39, 1, 1, "", "FORM_SUBMISSION_GET"], [39, 1, 1, "", "FORM_SUBMISSION_POST"], [39, 1, 1, "", "HTTP_HEADER_REFRESH"], [39, 1, 1, "", "INITIAL_FRAME_NAVIGATION"], [39, 1, 1, "", "META_TAG_REFRESH"], [39, 1, 1, "", "OTHER"], [39, 1, 1, "", "PAGE_BLOCK_INTERSTITIAL"], [39, 1, 1, "", "RELOAD"], [39, 1, 1, "", "SCRIPT_INITIATED"]], "nodriver.cdp.page.CompilationCacheParams": [[39, 1, 1, "", "eager"], [39, 1, 1, "", "url"]], "nodriver.cdp.page.CompilationCacheProduced": [[39, 1, 1, "", "data"], [39, 1, 1, "", "url"]], "nodriver.cdp.page.CrossOriginIsolatedContextType": [[39, 1, 1, "", "ISOLATED"], [39, 1, 1, "", "NOT_ISOLATED"], [39, 1, 1, "", "NOT_ISOLATED_FEATURE_DISABLED"]], "nodriver.cdp.page.DialogType": [[39, 1, 1, "", "ALERT"], [39, 1, 1, "", "BEFOREUNLOAD"], [39, 1, 1, "", "CONFIRM"], [39, 1, 1, "", "PROMPT"]], "nodriver.cdp.page.DocumentOpened": [[39, 1, 1, "", "frame"]], "nodriver.cdp.page.DomContentEventFired": [[39, 1, 1, "", "timestamp"]], "nodriver.cdp.page.DownloadProgress": [[39, 1, 1, "", "guid"], [39, 1, 1, "", "received_bytes"], [39, 1, 1, "", "state"], [39, 1, 1, "", "total_bytes"]], "nodriver.cdp.page.DownloadWillBegin": [[39, 1, 1, "", "frame_id"], [39, 1, 1, "", "guid"], [39, 1, 1, "", "suggested_filename"], [39, 1, 1, "", "url"]], "nodriver.cdp.page.FileChooserOpened": [[39, 1, 1, "", "backend_node_id"], [39, 1, 1, "", "frame_id"], [39, 1, 1, "", "mode"]], "nodriver.cdp.page.FileFilter": [[39, 1, 1, "", "accepts"], [39, 1, 1, "", "name"]], "nodriver.cdp.page.FileHandler": [[39, 1, 1, "", "accepts"], [39, 1, 1, "", "action"], [39, 1, 1, "", "icons"], [39, 1, 1, "", "launch_type"], [39, 1, 1, "", "name"]], "nodriver.cdp.page.FontFamilies": [[39, 1, 1, "", "cursive"], [39, 1, 1, "", "fantasy"], [39, 1, 1, "", "fixed"], [39, 1, 1, "", "math"], [39, 1, 1, "", "sans_serif"], [39, 1, 1, "", "serif"], [39, 1, 1, "", "standard"]], "nodriver.cdp.page.FontSizes": [[39, 1, 1, "", "fixed"], [39, 1, 1, "", "standard"]], "nodriver.cdp.page.Frame": [[39, 1, 1, "", "ad_frame_status"], [39, 1, 1, "", "cross_origin_isolated_context_type"], [39, 1, 1, "", "domain_and_registry"], [39, 1, 1, "", "gated_api_features"], [39, 1, 1, "", "id_"], [39, 1, 1, "", "loader_id"], [39, 1, 1, "", "mime_type"], [39, 1, 1, "", "name"], [39, 1, 1, "", "parent_id"], [39, 1, 1, "", "secure_context_type"], [39, 1, 1, "", "security_origin"], [39, 1, 1, "", "unreachable_url"], [39, 1, 1, "", "url"], [39, 1, 1, "", "url_fragment"]], "nodriver.cdp.page.FrameAttached": [[39, 1, 1, "", "frame_id"], [39, 1, 1, "", "parent_frame_id"], [39, 1, 1, "", "stack"]], "nodriver.cdp.page.FrameClearedScheduledNavigation": [[39, 1, 1, "", "frame_id"]], "nodriver.cdp.page.FrameDetached": [[39, 1, 1, "", "frame_id"], [39, 1, 1, "", "reason"]], "nodriver.cdp.page.FrameNavigated": [[39, 1, 1, "", "frame"], [39, 1, 1, "", "type_"]], "nodriver.cdp.page.FrameRequestedNavigation": [[39, 1, 1, "", "disposition"], [39, 1, 1, "", "frame_id"], [39, 1, 1, "", "reason"], [39, 1, 1, "", "url"]], "nodriver.cdp.page.FrameResource": [[39, 1, 1, "", "canceled"], [39, 1, 1, "", "content_size"], [39, 1, 1, "", "failed"], [39, 1, 1, "", "last_modified"], [39, 1, 1, "", "mime_type"], [39, 1, 1, "", "type_"], [39, 1, 1, "", "url"]], "nodriver.cdp.page.FrameResourceTree": [[39, 1, 1, "", "child_frames"], [39, 1, 1, "", "frame"], [39, 1, 1, "", "resources"]], "nodriver.cdp.page.FrameScheduledNavigation": [[39, 1, 1, "", "delay"], [39, 1, 1, "", "frame_id"], [39, 1, 1, "", "reason"], [39, 1, 1, "", "url"]], "nodriver.cdp.page.FrameStartedLoading": [[39, 1, 1, "", "frame_id"]], "nodriver.cdp.page.FrameStoppedLoading": [[39, 1, 1, "", "frame_id"]], "nodriver.cdp.page.FrameSubtreeWillBeDetached": [[39, 1, 1, "", "frame_id"]], "nodriver.cdp.page.FrameTree": [[39, 1, 1, "", "child_frames"], [39, 1, 1, "", "frame"]], "nodriver.cdp.page.GatedAPIFeatures": [[39, 1, 1, "", "PERFORMANCE_MEASURE_MEMORY"], [39, 1, 1, "", "PERFORMANCE_PROFILE"], [39, 1, 1, "", "SHARED_ARRAY_BUFFERS"], [39, 1, 1, "", "SHARED_ARRAY_BUFFERS_TRANSFER_ALLOWED"]], "nodriver.cdp.page.ImageResource": [[39, 1, 1, "", "sizes"], [39, 1, 1, "", "type_"], [39, 1, 1, "", "url"]], "nodriver.cdp.page.InstallabilityError": [[39, 1, 1, "", "error_arguments"], [39, 1, 1, "", "error_id"]], "nodriver.cdp.page.InstallabilityErrorArgument": [[39, 1, 1, "", "name"], [39, 1, 1, "", "value"]], "nodriver.cdp.page.JavascriptDialogClosed": [[39, 1, 1, "", "result"], [39, 1, 1, "", "user_input"]], "nodriver.cdp.page.JavascriptDialogOpening": [[39, 1, 1, "", "default_prompt"], [39, 1, 1, "", "has_browser_handler"], [39, 1, 1, "", "message"], [39, 1, 1, "", "type_"], [39, 1, 1, "", "url"]], "nodriver.cdp.page.LaunchHandler": [[39, 1, 1, "", "client_mode"]], "nodriver.cdp.page.LayoutViewport": [[39, 1, 1, "", "client_height"], [39, 1, 1, "", "client_width"], [39, 1, 1, "", "page_x"], [39, 1, 1, "", "page_y"]], "nodriver.cdp.page.LifecycleEvent": [[39, 1, 1, "", "frame_id"], [39, 1, 1, "", "loader_id"], [39, 1, 1, "", "name"], [39, 1, 1, "", "timestamp"]], "nodriver.cdp.page.LoadEventFired": [[39, 1, 1, "", "timestamp"]], "nodriver.cdp.page.NavigatedWithinDocument": [[39, 1, 1, "", "frame_id"], [39, 1, 1, "", "navigation_type"], [39, 1, 1, "", "url"]], "nodriver.cdp.page.NavigationEntry": [[39, 1, 1, "", "id_"], [39, 1, 1, "", "title"], [39, 1, 1, "", "transition_type"], [39, 1, 1, "", "url"], [39, 1, 1, "", "user_typed_url"]], "nodriver.cdp.page.NavigationType": [[39, 1, 1, "", "BACK_FORWARD_CACHE_RESTORE"], [39, 1, 1, "", "NAVIGATION"]], "nodriver.cdp.page.OriginTrial": [[39, 1, 1, "", "status"], [39, 1, 1, "", "tokens_with_status"], [39, 1, 1, "", "trial_name"]], "nodriver.cdp.page.OriginTrialStatus": [[39, 1, 1, "", "ENABLED"], [39, 1, 1, "", "OS_NOT_SUPPORTED"], [39, 1, 1, "", "TRIAL_NOT_ALLOWED"], [39, 1, 1, "", "VALID_TOKEN_NOT_PROVIDED"]], "nodriver.cdp.page.OriginTrialToken": [[39, 1, 1, "", "expiry_time"], [39, 1, 1, "", "is_third_party"], [39, 1, 1, "", "match_sub_domains"], [39, 1, 1, "", "origin"], [39, 1, 1, "", "trial_name"], [39, 1, 1, "", "usage_restriction"]], "nodriver.cdp.page.OriginTrialTokenStatus": [[39, 1, 1, "", "EXPIRED"], [39, 1, 1, "", "FEATURE_DISABLED"], [39, 1, 1, "", "FEATURE_DISABLED_FOR_USER"], [39, 1, 1, "", "INSECURE"], [39, 1, 1, "", "INVALID_SIGNATURE"], [39, 1, 1, "", "MALFORMED"], [39, 1, 1, "", "NOT_SUPPORTED"], [39, 1, 1, "", "SUCCESS"], [39, 1, 1, "", "TOKEN_DISABLED"], [39, 1, 1, "", "UNKNOWN_TRIAL"], [39, 1, 1, "", "WRONG_ORIGIN"], [39, 1, 1, "", "WRONG_VERSION"]], "nodriver.cdp.page.OriginTrialTokenWithStatus": [[39, 1, 1, "", "parsed_token"], [39, 1, 1, "", "raw_token_text"], [39, 1, 1, "", "status"]], "nodriver.cdp.page.OriginTrialUsageRestriction": [[39, 1, 1, "", "NONE"], [39, 1, 1, "", "SUBSET"]], "nodriver.cdp.page.PermissionsPolicyBlockLocator": [[39, 1, 1, "", "block_reason"], [39, 1, 1, "", "frame_id"]], "nodriver.cdp.page.PermissionsPolicyBlockReason": [[39, 1, 1, "", "HEADER"], [39, 1, 1, "", "IFRAME_ATTRIBUTE"], [39, 1, 1, "", "IN_FENCED_FRAME_TREE"], [39, 1, 1, "", "IN_ISOLATED_APP"]], "nodriver.cdp.page.PermissionsPolicyFeature": [[39, 1, 1, "", "ACCELEROMETER"], [39, 1, 1, "", "ALL_SCREENS_CAPTURE"], [39, 1, 1, "", "AMBIENT_LIGHT_SENSOR"], [39, 1, 1, "", "ATTRIBUTION_REPORTING"], [39, 1, 1, "", "AUTOPLAY"], [39, 1, 1, "", "BLUETOOTH"], [39, 1, 1, "", "BROWSING_TOPICS"], [39, 1, 1, "", "CAMERA"], [39, 1, 1, "", "CAPTURED_SURFACE_CONTROL"], [39, 1, 1, "", "CH_DEVICE_MEMORY"], [39, 1, 1, "", "CH_DOWNLINK"], [39, 1, 1, "", "CH_DPR"], [39, 1, 1, "", "CH_ECT"], [39, 1, 1, "", "CH_PREFERS_COLOR_SCHEME"], [39, 1, 1, "", "CH_PREFERS_REDUCED_MOTION"], [39, 1, 1, "", "CH_PREFERS_REDUCED_TRANSPARENCY"], [39, 1, 1, "", "CH_RTT"], [39, 1, 1, "", "CH_SAVE_DATA"], [39, 1, 1, "", "CH_UA"], [39, 1, 1, "", "CH_UA_ARCH"], [39, 1, 1, "", "CH_UA_BITNESS"], [39, 1, 1, "", "CH_UA_FORM_FACTORS"], [39, 1, 1, "", "CH_UA_FULL_VERSION"], [39, 1, 1, "", "CH_UA_FULL_VERSION_LIST"], [39, 1, 1, "", "CH_UA_MOBILE"], [39, 1, 1, "", "CH_UA_MODEL"], [39, 1, 1, "", "CH_UA_PLATFORM"], [39, 1, 1, "", "CH_UA_PLATFORM_VERSION"], [39, 1, 1, "", "CH_UA_WOW64"], [39, 1, 1, "", "CH_VIEWPORT_HEIGHT"], [39, 1, 1, "", "CH_VIEWPORT_WIDTH"], [39, 1, 1, "", "CH_WIDTH"], [39, 1, 1, "", "CLIPBOARD_READ"], [39, 1, 1, "", "CLIPBOARD_WRITE"], [39, 1, 1, "", "COMPUTE_PRESSURE"], [39, 1, 1, "", "CONTROLLED_FRAME"], [39, 1, 1, "", "CROSS_ORIGIN_ISOLATED"], [39, 1, 1, "", "DEFERRED_FETCH"], [39, 1, 1, "", "DEFERRED_FETCH_MINIMAL"], [39, 1, 1, "", "DIGITAL_CREDENTIALS_GET"], [39, 1, 1, "", "DIRECT_SOCKETS"], [39, 1, 1, "", "DIRECT_SOCKETS_PRIVATE"], [39, 1, 1, "", "DISPLAY_CAPTURE"], [39, 1, 1, "", "DOCUMENT_DOMAIN"], [39, 1, 1, "", "ENCRYPTED_MEDIA"], [39, 1, 1, "", "EXECUTION_WHILE_NOT_RENDERED"], [39, 1, 1, "", "EXECUTION_WHILE_OUT_OF_VIEWPORT"], [39, 1, 1, "", "FENCED_UNPARTITIONED_STORAGE_READ"], [39, 1, 1, "", "FOCUS_WITHOUT_USER_ACTIVATION"], [39, 1, 1, "", "FROBULATE"], [39, 1, 1, "", "FULLSCREEN"], [39, 1, 1, "", "GAMEPAD"], [39, 1, 1, "", "GEOLOCATION"], [39, 1, 1, "", "GYROSCOPE"], [39, 1, 1, "", "HID"], [39, 1, 1, "", "IDENTITY_CREDENTIALS_GET"], [39, 1, 1, "", "IDLE_DETECTION"], [39, 1, 1, "", "INTEREST_COHORT"], [39, 1, 1, "", "JOIN_AD_INTEREST_GROUP"], [39, 1, 1, "", "KEYBOARD_MAP"], [39, 1, 1, "", "LOCAL_FONTS"], [39, 1, 1, "", "MAGNETOMETER"], [39, 1, 1, "", "MEDIA_PLAYBACK_WHILE_NOT_VISIBLE"], [39, 1, 1, "", "MICROPHONE"], [39, 1, 1, "", "MIDI"], [39, 1, 1, "", "OTP_CREDENTIALS"], [39, 1, 1, "", "PAYMENT"], [39, 1, 1, "", "PICTURE_IN_PICTURE"], [39, 1, 1, "", "POPINS"], [39, 1, 1, "", "PRIVATE_AGGREGATION"], [39, 1, 1, "", "PRIVATE_STATE_TOKEN_ISSUANCE"], [39, 1, 1, "", "PRIVATE_STATE_TOKEN_REDEMPTION"], [39, 1, 1, "", "PUBLICKEY_CREDENTIALS_CREATE"], [39, 1, 1, "", "PUBLICKEY_CREDENTIALS_GET"], [39, 1, 1, "", "RUN_AD_AUCTION"], [39, 1, 1, "", "SCREEN_WAKE_LOCK"], [39, 1, 1, "", "SERIAL"], [39, 1, 1, "", "SHARED_AUTOFILL"], [39, 1, 1, "", "SHARED_STORAGE"], [39, 1, 1, "", "SHARED_STORAGE_SELECT_URL"], [39, 1, 1, "", "SMART_CARD"], [39, 1, 1, "", "SPEAKER_SELECTION"], [39, 1, 1, "", "STORAGE_ACCESS"], [39, 1, 1, "", "SUB_APPS"], [39, 1, 1, "", "SYNC_XHR"], [39, 1, 1, "", "UNLOAD"], [39, 1, 1, "", "USB"], [39, 1, 1, "", "USB_UNRESTRICTED"], [39, 1, 1, "", "VERTICAL_SCROLL"], [39, 1, 1, "", "WEB_APP_INSTALLATION"], [39, 1, 1, "", "WEB_PRINTING"], [39, 1, 1, "", "WEB_SHARE"], [39, 1, 1, "", "WINDOW_MANAGEMENT"], [39, 1, 1, "", "XR_SPATIAL_TRACKING"]], "nodriver.cdp.page.PermissionsPolicyFeatureState": [[39, 1, 1, "", "allowed"], [39, 1, 1, "", "feature"], [39, 1, 1, "", "locator"]], "nodriver.cdp.page.ProtocolHandler": [[39, 1, 1, "", "protocol"], [39, 1, 1, "", "url"]], "nodriver.cdp.page.ReferrerPolicy": [[39, 1, 1, "", "NO_REFERRER"], [39, 1, 1, "", "NO_REFERRER_WHEN_DOWNGRADE"], [39, 1, 1, "", "ORIGIN"], [39, 1, 1, "", "ORIGIN_WHEN_CROSS_ORIGIN"], [39, 1, 1, "", "SAME_ORIGIN"], [39, 1, 1, "", "STRICT_ORIGIN"], [39, 1, 1, "", "STRICT_ORIGIN_WHEN_CROSS_ORIGIN"], [39, 1, 1, "", "UNSAFE_URL"]], "nodriver.cdp.page.RelatedApplication": [[39, 1, 1, "", "id_"], [39, 1, 1, "", "url"]], "nodriver.cdp.page.ScopeExtension": [[39, 1, 1, "", "has_origin_wildcard"], [39, 1, 1, "", "origin"]], "nodriver.cdp.page.ScreencastFrame": [[39, 1, 1, "", "data"], [39, 1, 1, "", "metadata"], [39, 1, 1, "", "session_id"]], "nodriver.cdp.page.ScreencastFrameMetadata": [[39, 1, 1, "", "device_height"], [39, 1, 1, "", "device_width"], [39, 1, 1, "", "offset_top"], [39, 1, 1, "", "page_scale_factor"], [39, 1, 1, "", "scroll_offset_x"], [39, 1, 1, "", "scroll_offset_y"], [39, 1, 1, "", "timestamp"]], "nodriver.cdp.page.ScreencastVisibilityChanged": [[39, 1, 1, "", "visible"]], "nodriver.cdp.page.Screenshot": [[39, 1, 1, "", "form_factor"], [39, 1, 1, "", "image"], [39, 1, 1, "", "label"]], "nodriver.cdp.page.ScriptFontFamilies": [[39, 1, 1, "", "font_families"], [39, 1, 1, "", "script"]], "nodriver.cdp.page.SecureContextType": [[39, 1, 1, "", "INSECURE_ANCESTOR"], [39, 1, 1, "", "INSECURE_SCHEME"], [39, 1, 1, "", "SECURE"], [39, 1, 1, "", "SECURE_LOCALHOST"]], "nodriver.cdp.page.ShareTarget": [[39, 1, 1, "", "action"], [39, 1, 1, "", "enctype"], [39, 1, 1, "", "files"], [39, 1, 1, "", "method"], [39, 1, 1, "", "text"], [39, 1, 1, "", "title"], [39, 1, 1, "", "url"]], "nodriver.cdp.page.Shortcut": [[39, 1, 1, "", "name"], [39, 1, 1, "", "url"]], "nodriver.cdp.page.TransitionType": [[39, 1, 1, "", "ADDRESS_BAR"], [39, 1, 1, "", "AUTO_BOOKMARK"], [39, 1, 1, "", "AUTO_SUBFRAME"], [39, 1, 1, "", "AUTO_TOPLEVEL"], [39, 1, 1, "", "FORM_SUBMIT"], [39, 1, 1, "", "GENERATED"], [39, 1, 1, "", "KEYWORD"], [39, 1, 1, "", "KEYWORD_GENERATED"], [39, 1, 1, "", "LINK"], [39, 1, 1, "", "MANUAL_SUBFRAME"], [39, 1, 1, "", "OTHER"], [39, 1, 1, "", "RELOAD"], [39, 1, 1, "", "TYPED"]], "nodriver.cdp.page.Viewport": [[39, 1, 1, "", "height"], [39, 1, 1, "", "scale"], [39, 1, 1, "", "width"], [39, 1, 1, "", "x"], [39, 1, 1, "", "y"]], "nodriver.cdp.page.VisualViewport": [[39, 1, 1, "", "client_height"], [39, 1, 1, "", "client_width"], [39, 1, 1, "", "offset_x"], [39, 1, 1, "", "offset_y"], [39, 1, 1, "", "page_x"], [39, 1, 1, "", "page_y"], [39, 1, 1, "", "scale"], [39, 1, 1, "", "zoom"]], "nodriver.cdp.page.WebAppManifest": [[39, 1, 1, "", "background_color"], [39, 1, 1, "", "description"], [39, 1, 1, "", "dir_"], [39, 1, 1, "", "display"], [39, 1, 1, "", "display_overrides"], [39, 1, 1, "", "file_handlers"], [39, 1, 1, "", "icons"], [39, 1, 1, "", "id_"], [39, 1, 1, "", "lang"], [39, 1, 1, "", "launch_handler"], [39, 1, 1, "", "name"], [39, 1, 1, "", "orientation"], [39, 1, 1, "", "prefer_related_applications"], [39, 1, 1, "", "protocol_handlers"], [39, 1, 1, "", "related_applications"], [39, 1, 1, "", "scope"], [39, 1, 1, "", "scope_extensions"], [39, 1, 1, "", "screenshots"], [39, 1, 1, "", "share_target"], [39, 1, 1, "", "short_name"], [39, 1, 1, "", "shortcuts"], [39, 1, 1, "", "start_url"], [39, 1, 1, "", "theme_color"]], "nodriver.cdp.page.WindowOpen": [[39, 1, 1, "", "url"], [39, 1, 1, "", "user_gesture"], [39, 1, 1, "", "window_features"], [39, 1, 1, "", "window_name"]], "nodriver.cdp.performance": [[40, 0, 1, "", "Metric"], [40, 0, 1, "", "Metrics"], [40, 5, 1, "", "disable"], [40, 5, 1, "", "enable"], [40, 5, 1, "", "get_metrics"], [40, 5, 1, "", "set_time_domain"]], "nodriver.cdp.performance.Metric": [[40, 1, 1, "", "name"], [40, 1, 1, "", "value"]], "nodriver.cdp.performance.Metrics": [[40, 1, 1, "", "metrics"], [40, 1, 1, "", "title"]], "nodriver.cdp.performance_timeline": [[41, 0, 1, "", "LargestContentfulPaint"], [41, 0, 1, "", "LayoutShift"], [41, 0, 1, "", "LayoutShiftAttribution"], [41, 0, 1, "", "TimelineEvent"], [41, 0, 1, "", "TimelineEventAdded"], [41, 5, 1, "", "enable"]], "nodriver.cdp.performance_timeline.LargestContentfulPaint": [[41, 1, 1, "", "element_id"], [41, 1, 1, "", "load_time"], [41, 1, 1, "", "node_id"], [41, 1, 1, "", "render_time"], [41, 1, 1, "", "size"], [41, 1, 1, "", "url"]], "nodriver.cdp.performance_timeline.LayoutShift": [[41, 1, 1, "", "had_recent_input"], [41, 1, 1, "", "last_input_time"], [41, 1, 1, "", "sources"], [41, 1, 1, "", "value"]], "nodriver.cdp.performance_timeline.LayoutShiftAttribution": [[41, 1, 1, "", "current_rect"], [41, 1, 1, "", "node_id"], [41, 1, 1, "", "previous_rect"]], "nodriver.cdp.performance_timeline.TimelineEvent": [[41, 1, 1, "", "duration"], [41, 1, 1, "", "frame_id"], [41, 1, 1, "", "layout_shift_details"], [41, 1, 1, "", "lcp_details"], [41, 1, 1, "", "name"], [41, 1, 1, "", "time"], [41, 1, 1, "", "type_"]], "nodriver.cdp.performance_timeline.TimelineEventAdded": [[41, 1, 1, "", "event"]], "nodriver.cdp.preload": [[42, 0, 1, "", "PrefetchStatus"], [42, 0, 1, "", "PrefetchStatusUpdated"], [42, 0, 1, "", "PreloadEnabledStateUpdated"], [42, 0, 1, "", "PreloadingAttemptKey"], [42, 0, 1, "", "PreloadingAttemptSource"], [42, 0, 1, "", "PreloadingAttemptSourcesUpdated"], [42, 0, 1, "", "PreloadingStatus"], [42, 0, 1, "", "PrerenderFinalStatus"], [42, 0, 1, "", "PrerenderMismatchedHeaders"], [42, 0, 1, "", "PrerenderStatusUpdated"], [42, 0, 1, "", "RuleSet"], [42, 0, 1, "", "RuleSetErrorType"], [42, 0, 1, "", "RuleSetId"], [42, 0, 1, "", "RuleSetRemoved"], [42, 0, 1, "", "RuleSetUpdated"], [42, 0, 1, "", "SpeculationAction"], [42, 0, 1, "", "SpeculationTargetHint"], [42, 5, 1, "", "disable"], [42, 5, 1, "", "enable"]], "nodriver.cdp.preload.PrefetchStatus": [[42, 1, 1, "", "PREFETCH_ALLOWED"], [42, 1, 1, "", "PREFETCH_EVICTED_AFTER_CANDIDATE_REMOVED"], [42, 1, 1, "", "PREFETCH_EVICTED_FOR_NEWER_PREFETCH"], [42, 1, 1, "", "PREFETCH_FAILED_INELIGIBLE_REDIRECT"], [42, 1, 1, "", "PREFETCH_FAILED_INVALID_REDIRECT"], [42, 1, 1, "", "PREFETCH_FAILED_MIME_NOT_SUPPORTED"], [42, 1, 1, "", "PREFETCH_FAILED_NET_ERROR"], [42, 1, 1, "", "PREFETCH_FAILED_NON2_XX"], [42, 1, 1, "", "PREFETCH_HELDBACK"], [42, 1, 1, "", "PREFETCH_INELIGIBLE_RETRY_AFTER"], [42, 1, 1, "", "PREFETCH_IS_PRIVACY_DECOY"], [42, 1, 1, "", "PREFETCH_IS_STALE"], [42, 1, 1, "", "PREFETCH_NOT_ELIGIBLE_BATTERY_SAVER_ENABLED"], [42, 1, 1, "", "PREFETCH_NOT_ELIGIBLE_BROWSER_CONTEXT_OFF_THE_RECORD"], [42, 1, 1, "", "PREFETCH_NOT_ELIGIBLE_DATA_SAVER_ENABLED"], [42, 1, 1, "", "PREFETCH_NOT_ELIGIBLE_EXISTING_PROXY"], [42, 1, 1, "", "PREFETCH_NOT_ELIGIBLE_HOST_IS_NON_UNIQUE"], [42, 1, 1, "", "PREFETCH_NOT_ELIGIBLE_NON_DEFAULT_STORAGE_PARTITION"], [42, 1, 1, "", "PREFETCH_NOT_ELIGIBLE_PRELOADING_DISABLED"], [42, 1, 1, "", "PREFETCH_NOT_ELIGIBLE_SAME_SITE_CROSS_ORIGIN_PREFETCH_REQUIRED_PROXY"], [42, 1, 1, "", "PREFETCH_NOT_ELIGIBLE_SCHEME_IS_NOT_HTTPS"], [42, 1, 1, "", "PREFETCH_NOT_ELIGIBLE_USER_HAS_COOKIES"], [42, 1, 1, "", "PREFETCH_NOT_ELIGIBLE_USER_HAS_SERVICE_WORKER"], [42, 1, 1, "", "PREFETCH_NOT_FINISHED_IN_TIME"], [42, 1, 1, "", "PREFETCH_NOT_STARTED"], [42, 1, 1, "", "PREFETCH_NOT_USED_COOKIES_CHANGED"], [42, 1, 1, "", "PREFETCH_NOT_USED_PROBE_FAILED"], [42, 1, 1, "", "PREFETCH_PROXY_NOT_AVAILABLE"], [42, 1, 1, "", "PREFETCH_RESPONSE_USED"], [42, 1, 1, "", "PREFETCH_SUCCESSFUL_BUT_NOT_USED"]], "nodriver.cdp.preload.PrefetchStatusUpdated": [[42, 1, 1, "", "initiating_frame_id"], [42, 1, 1, "", "key"], [42, 1, 1, "", "prefetch_status"], [42, 1, 1, "", "prefetch_url"], [42, 1, 1, "", "request_id"], [42, 1, 1, "", "status"]], "nodriver.cdp.preload.PreloadEnabledStateUpdated": [[42, 1, 1, "", "disabled_by_battery_saver"], [42, 1, 1, "", "disabled_by_data_saver"], [42, 1, 1, "", "disabled_by_holdback_prefetch_speculation_rules"], [42, 1, 1, "", "disabled_by_holdback_prerender_speculation_rules"], [42, 1, 1, "", "disabled_by_preference"]], "nodriver.cdp.preload.PreloadingAttemptKey": [[42, 1, 1, "", "action"], [42, 1, 1, "", "loader_id"], [42, 1, 1, "", "target_hint"], [42, 1, 1, "", "url"]], "nodriver.cdp.preload.PreloadingAttemptSource": [[42, 1, 1, "", "key"], [42, 1, 1, "", "node_ids"], [42, 1, 1, "", "rule_set_ids"]], "nodriver.cdp.preload.PreloadingAttemptSourcesUpdated": [[42, 1, 1, "", "loader_id"], [42, 1, 1, "", "preloading_attempt_sources"]], "nodriver.cdp.preload.PreloadingStatus": [[42, 1, 1, "", "FAILURE"], [42, 1, 1, "", "NOT_SUPPORTED"], [42, 1, 1, "", "PENDING"], [42, 1, 1, "", "READY"], [42, 1, 1, "", "RUNNING"], [42, 1, 1, "", "SUCCESS"]], "nodriver.cdp.preload.PrerenderFinalStatus": [[42, 1, 1, "", "ACTIVATED"], [42, 1, 1, "", "ACTIVATED_BEFORE_STARTED"], [42, 1, 1, "", "ACTIVATED_DURING_MAIN_FRAME_NAVIGATION"], [42, 1, 1, "", "ACTIVATED_IN_BACKGROUND"], [42, 1, 1, "", "ACTIVATED_WITH_AUXILIARY_BROWSING_CONTEXTS"], [42, 1, 1, "", "ACTIVATION_FRAME_POLICY_NOT_COMPATIBLE"], [42, 1, 1, "", "ACTIVATION_NAVIGATION_DESTROYED_BEFORE_SUCCESS"], [42, 1, 1, "", "ACTIVATION_NAVIGATION_PARAMETER_MISMATCH"], [42, 1, 1, "", "ACTIVATION_URL_HAS_EFFECTIVE_URL"], [42, 1, 1, "", "ALL_PRERENDERING_CANCELED"], [42, 1, 1, "", "AUDIO_OUTPUT_DEVICE_REQUESTED"], [42, 1, 1, "", "BATTERY_SAVER_ENABLED"], [42, 1, 1, "", "BLOCKED_BY_CLIENT"], [42, 1, 1, "", "CANCEL_ALL_HOSTS_FOR_TESTING"], [42, 1, 1, "", "CLIENT_CERT_REQUESTED"], [42, 1, 1, "", "CROSS_SITE_NAVIGATION_IN_INITIAL_NAVIGATION"], [42, 1, 1, "", "CROSS_SITE_NAVIGATION_IN_MAIN_FRAME_NAVIGATION"], [42, 1, 1, "", "CROSS_SITE_REDIRECT_IN_INITIAL_NAVIGATION"], [42, 1, 1, "", "CROSS_SITE_REDIRECT_IN_MAIN_FRAME_NAVIGATION"], [42, 1, 1, "", "DATA_SAVER_ENABLED"], [42, 1, 1, "", "DESTROYED"], [42, 1, 1, "", "DID_FAIL_LOAD"], [42, 1, 1, "", "DOWNLOAD"], [42, 1, 1, "", "EMBEDDER_HOST_DISALLOWED"], [42, 1, 1, "", "INACTIVE_PAGE_RESTRICTION"], [42, 1, 1, "", "INVALID_SCHEME_NAVIGATION"], [42, 1, 1, "", "INVALID_SCHEME_REDIRECT"], [42, 1, 1, "", "JAVA_SCRIPT_INTERFACE_ADDED"], [42, 1, 1, "", "JAVA_SCRIPT_INTERFACE_REMOVED"], [42, 1, 1, "", "LOGIN_AUTH_REQUESTED"], [42, 1, 1, "", "LOW_END_DEVICE"], [42, 1, 1, "", "MAIN_FRAME_NAVIGATION"], [42, 1, 1, "", "MAX_NUM_OF_RUNNING_EAGER_PRERENDERS_EXCEEDED"], [42, 1, 1, "", "MAX_NUM_OF_RUNNING_EMBEDDER_PRERENDERS_EXCEEDED"], [42, 1, 1, "", "MAX_NUM_OF_RUNNING_NON_EAGER_PRERENDERS_EXCEEDED"], [42, 1, 1, "", "MEMORY_LIMIT_EXCEEDED"], [42, 1, 1, "", "MEMORY_PRESSURE_AFTER_TRIGGERED"], [42, 1, 1, "", "MEMORY_PRESSURE_ON_TRIGGER"], [42, 1, 1, "", "MIXED_CONTENT"], [42, 1, 1, "", "MOJO_BINDER_POLICY"], [42, 1, 1, "", "NAVIGATION_BAD_HTTP_STATUS"], [42, 1, 1, "", "NAVIGATION_NOT_COMMITTED"], [42, 1, 1, "", "NAVIGATION_REQUEST_BLOCKED_BY_CSP"], [42, 1, 1, "", "NAVIGATION_REQUEST_NETWORK_ERROR"], [42, 1, 1, "", "OTHER_PRERENDERED_PAGE_ACTIVATED"], [42, 1, 1, "", "PRELOADING_DISABLED"], [42, 1, 1, "", "PRELOADING_UNSUPPORTED_BY_WEB_CONTENTS"], [42, 1, 1, "", "PRERENDERING_DISABLED_BY_DEV_TOOLS"], [42, 1, 1, "", "PRERENDERING_URL_HAS_EFFECTIVE_URL"], [42, 1, 1, "", "PRERENDER_FAILED_DURING_PREFETCH"], [42, 1, 1, "", "PRIMARY_MAIN_FRAME_RENDERER_PROCESS_CRASHED"], [42, 1, 1, "", "PRIMARY_MAIN_FRAME_RENDERER_PROCESS_KILLED"], [42, 1, 1, "", "REDIRECTED_PRERENDERING_URL_HAS_EFFECTIVE_URL"], [42, 1, 1, "", "RENDERER_PROCESS_CRASHED"], [42, 1, 1, "", "RENDERER_PROCESS_KILLED"], [42, 1, 1, "", "SAME_SITE_CROSS_ORIGIN_NAVIGATION_NOT_OPT_IN_IN_INITIAL_NAVIGATION"], [42, 1, 1, "", "SAME_SITE_CROSS_ORIGIN_NAVIGATION_NOT_OPT_IN_IN_MAIN_FRAME_NAVIGATION"], [42, 1, 1, "", "SAME_SITE_CROSS_ORIGIN_REDIRECT_NOT_OPT_IN_IN_INITIAL_NAVIGATION"], [42, 1, 1, "", "SAME_SITE_CROSS_ORIGIN_REDIRECT_NOT_OPT_IN_IN_MAIN_FRAME_NAVIGATION"], [42, 1, 1, "", "SLOW_NETWORK"], [42, 1, 1, "", "SPECULATION_RULE_REMOVED"], [42, 1, 1, "", "SSL_CERTIFICATE_ERROR"], [42, 1, 1, "", "START_FAILED"], [42, 1, 1, "", "STOP"], [42, 1, 1, "", "TAB_CLOSED_BY_USER_GESTURE"], [42, 1, 1, "", "TAB_CLOSED_WITHOUT_USER_GESTURE"], [42, 1, 1, "", "TIMEOUT_BACKGROUNDED"], [42, 1, 1, "", "TRIGGER_BACKGROUNDED"], [42, 1, 1, "", "TRIGGER_DESTROYED"], [42, 1, 1, "", "TRIGGER_URL_HAS_EFFECTIVE_URL"], [42, 1, 1, "", "UA_CHANGE_REQUIRES_RELOAD"], [42, 1, 1, "", "V8_OPTIMIZER_DISABLED"], [42, 1, 1, "", "WINDOW_CLOSED"]], "nodriver.cdp.preload.PrerenderMismatchedHeaders": [[42, 1, 1, "", "activation_value"], [42, 1, 1, "", "header_name"], [42, 1, 1, "", "initial_value"]], "nodriver.cdp.preload.PrerenderStatusUpdated": [[42, 1, 1, "", "disallowed_mojo_interface"], [42, 1, 1, "", "key"], [42, 1, 1, "", "mismatched_headers"], [42, 1, 1, "", "prerender_status"], [42, 1, 1, "", "status"]], "nodriver.cdp.preload.RuleSet": [[42, 1, 1, "", "backend_node_id"], [42, 1, 1, "", "error_message"], [42, 1, 1, "", "error_type"], [42, 1, 1, "", "id_"], [42, 1, 1, "", "loader_id"], [42, 1, 1, "", "request_id"], [42, 1, 1, "", "source_text"], [42, 1, 1, "", "url"]], "nodriver.cdp.preload.RuleSetErrorType": [[42, 1, 1, "", "INVALID_RULES_SKIPPED"], [42, 1, 1, "", "SOURCE_IS_NOT_JSON_OBJECT"]], "nodriver.cdp.preload.RuleSetRemoved": [[42, 1, 1, "", "id_"]], "nodriver.cdp.preload.RuleSetUpdated": [[42, 1, 1, "", "rule_set"]], "nodriver.cdp.preload.SpeculationAction": [[42, 1, 1, "", "PREFETCH"], [42, 1, 1, "", "PRERENDER"]], "nodriver.cdp.preload.SpeculationTargetHint": [[42, 1, 1, "", "BLANK"], [42, 1, 1, "", "SELF"]], "nodriver.cdp.profiler": [[43, 0, 1, "", "ConsoleProfileFinished"], [43, 0, 1, "", "ConsoleProfileStarted"], [43, 0, 1, "", "CoverageRange"], [43, 0, 1, "", "FunctionCoverage"], [43, 0, 1, "", "PositionTickInfo"], [43, 0, 1, "", "PreciseCoverageDeltaUpdate"], [43, 0, 1, "", "Profile"], [43, 0, 1, "", "ProfileNode"], [43, 0, 1, "", "ScriptCoverage"], [43, 5, 1, "", "disable"], [43, 5, 1, "", "enable"], [43, 5, 1, "", "get_best_effort_coverage"], [43, 5, 1, "", "set_sampling_interval"], [43, 5, 1, "", "start"], [43, 5, 1, "", "start_precise_coverage"], [43, 5, 1, "", "stop"], [43, 5, 1, "", "stop_precise_coverage"], [43, 5, 1, "", "take_precise_coverage"]], "nodriver.cdp.profiler.ConsoleProfileFinished": [[43, 1, 1, "", "id_"], [43, 1, 1, "", "location"], [43, 1, 1, "", "profile"], [43, 1, 1, "", "title"]], "nodriver.cdp.profiler.ConsoleProfileStarted": [[43, 1, 1, "", "id_"], [43, 1, 1, "", "location"], [43, 1, 1, "", "title"]], "nodriver.cdp.profiler.CoverageRange": [[43, 1, 1, "", "count"], [43, 1, 1, "", "end_offset"], [43, 1, 1, "", "start_offset"]], "nodriver.cdp.profiler.FunctionCoverage": [[43, 1, 1, "", "function_name"], [43, 1, 1, "", "is_block_coverage"], [43, 1, 1, "", "ranges"]], "nodriver.cdp.profiler.PositionTickInfo": [[43, 1, 1, "", "line"], [43, 1, 1, "", "ticks"]], "nodriver.cdp.profiler.PreciseCoverageDeltaUpdate": [[43, 1, 1, "", "occasion"], [43, 1, 1, "", "result"], [43, 1, 1, "", "timestamp"]], "nodriver.cdp.profiler.Profile": [[43, 1, 1, "", "end_time"], [43, 1, 1, "", "nodes"], [43, 1, 1, "", "samples"], [43, 1, 1, "", "start_time"], [43, 1, 1, "", "time_deltas"]], "nodriver.cdp.profiler.ProfileNode": [[43, 1, 1, "", "call_frame"], [43, 1, 1, "", "children"], [43, 1, 1, "", "deopt_reason"], [43, 1, 1, "", "hit_count"], [43, 1, 1, "", "id_"], [43, 1, 1, "", "position_ticks"]], "nodriver.cdp.profiler.ScriptCoverage": [[43, 1, 1, "", "functions"], [43, 1, 1, "", "script_id"], [43, 1, 1, "", "url"]], "nodriver.cdp.pwa": [[44, 0, 1, "", "DisplayMode"], [44, 0, 1, "", "FileHandler"], [44, 0, 1, "", "FileHandlerAccept"], [44, 5, 1, "", "change_app_user_settings"], [44, 5, 1, "", "get_os_app_state"], [44, 5, 1, "", "install"], [44, 5, 1, "", "launch"], [44, 5, 1, "", "launch_files_in_app"], [44, 5, 1, "", "open_current_page_in_app"], [44, 5, 1, "", "uninstall"]], "nodriver.cdp.pwa.DisplayMode": [[44, 1, 1, "", "BROWSER"], [44, 1, 1, "", "STANDALONE"]], "nodriver.cdp.pwa.FileHandler": [[44, 1, 1, "", "accepts"], [44, 1, 1, "", "action"], [44, 1, 1, "", "display_name"]], "nodriver.cdp.pwa.FileHandlerAccept": [[44, 1, 1, "", "file_extensions"], [44, 1, 1, "", "media_type"]], "nodriver.cdp.runtime": [[45, 0, 1, "", "BindingCalled"], [45, 0, 1, "", "CallArgument"], [45, 0, 1, "", "CallFrame"], [45, 0, 1, "", "ConsoleAPICalled"], [45, 0, 1, "", "CustomPreview"], [45, 0, 1, "", "DeepSerializedValue"], [45, 0, 1, "", "EntryPreview"], [45, 0, 1, "", "ExceptionDetails"], [45, 0, 1, "", "ExceptionRevoked"], [45, 0, 1, "", "ExceptionThrown"], [45, 0, 1, "", "ExecutionContextCreated"], [45, 0, 1, "", "ExecutionContextDescription"], [45, 0, 1, "", "ExecutionContextDestroyed"], [45, 0, 1, "", "ExecutionContextId"], [45, 0, 1, "", "ExecutionContextsCleared"], [45, 0, 1, "", "InspectRequested"], [45, 0, 1, "", "InternalPropertyDescriptor"], [45, 0, 1, "", "ObjectPreview"], [45, 0, 1, "", "PrivatePropertyDescriptor"], [45, 0, 1, "", "PropertyDescriptor"], [45, 0, 1, "", "PropertyPreview"], [45, 0, 1, "", "RemoteObject"], [45, 0, 1, "", "RemoteObjectId"], [45, 0, 1, "", "ScriptId"], [45, 0, 1, "", "SerializationOptions"], [45, 0, 1, "", "StackTrace"], [45, 0, 1, "", "StackTraceId"], [45, 0, 1, "", "TimeDelta"], [45, 0, 1, "", "Timestamp"], [45, 0, 1, "", "UniqueDebuggerId"], [45, 0, 1, "", "UnserializableValue"], [45, 5, 1, "", "add_binding"], [45, 5, 1, "", "await_promise"], [45, 5, 1, "", "call_function_on"], [45, 5, 1, "", "compile_script"], [45, 5, 1, "", "disable"], [45, 5, 1, "", "discard_console_entries"], [45, 5, 1, "", "enable"], [45, 5, 1, "", "evaluate"], [45, 5, 1, "", "get_exception_details"], [45, 5, 1, "", "get_heap_usage"], [45, 5, 1, "", "get_isolate_id"], [45, 5, 1, "", "get_properties"], [45, 5, 1, "", "global_lexical_scope_names"], [45, 5, 1, "", "query_objects"], [45, 5, 1, "", "release_object"], [45, 5, 1, "", "release_object_group"], [45, 5, 1, "", "remove_binding"], [45, 5, 1, "", "run_if_waiting_for_debugger"], [45, 5, 1, "", "run_script"], [45, 5, 1, "", "set_async_call_stack_depth"], [45, 5, 1, "", "set_custom_object_formatter_enabled"], [45, 5, 1, "", "set_max_call_stack_size_to_capture"], [45, 5, 1, "", "terminate_execution"]], "nodriver.cdp.runtime.BindingCalled": [[45, 1, 1, "", "execution_context_id"], [45, 1, 1, "", "name"], [45, 1, 1, "", "payload"]], "nodriver.cdp.runtime.CallArgument": [[45, 1, 1, "", "object_id"], [45, 1, 1, "", "unserializable_value"], [45, 1, 1, "", "value"]], "nodriver.cdp.runtime.CallFrame": [[45, 1, 1, "", "column_number"], [45, 1, 1, "", "function_name"], [45, 1, 1, "", "line_number"], [45, 1, 1, "", "script_id"], [45, 1, 1, "", "url"]], "nodriver.cdp.runtime.ConsoleAPICalled": [[45, 1, 1, "", "args"], [45, 1, 1, "", "context"], [45, 1, 1, "", "execution_context_id"], [45, 1, 1, "", "stack_trace"], [45, 1, 1, "", "timestamp"], [45, 1, 1, "", "type_"]], "nodriver.cdp.runtime.CustomPreview": [[45, 1, 1, "", "body_getter_id"], [45, 1, 1, "", "header"]], "nodriver.cdp.runtime.DeepSerializedValue": [[45, 1, 1, "", "object_id"], [45, 1, 1, "", "type_"], [45, 1, 1, "", "value"], [45, 1, 1, "", "weak_local_object_reference"]], "nodriver.cdp.runtime.EntryPreview": [[45, 1, 1, "", "key"], [45, 1, 1, "", "value"]], "nodriver.cdp.runtime.ExceptionDetails": [[45, 1, 1, "", "column_number"], [45, 1, 1, "", "exception"], [45, 1, 1, "", "exception_id"], [45, 1, 1, "", "exception_meta_data"], [45, 1, 1, "", "execution_context_id"], [45, 1, 1, "", "line_number"], [45, 1, 1, "", "script_id"], [45, 1, 1, "", "stack_trace"], [45, 1, 1, "", "text"], [45, 1, 1, "", "url"]], "nodriver.cdp.runtime.ExceptionRevoked": [[45, 1, 1, "", "exception_id"], [45, 1, 1, "", "reason"]], "nodriver.cdp.runtime.ExceptionThrown": [[45, 1, 1, "", "exception_details"], [45, 1, 1, "", "timestamp"]], "nodriver.cdp.runtime.ExecutionContextCreated": [[45, 1, 1, "", "context"]], "nodriver.cdp.runtime.ExecutionContextDescription": [[45, 1, 1, "", "aux_data"], [45, 1, 1, "", "id_"], [45, 1, 1, "", "name"], [45, 1, 1, "", "origin"], [45, 1, 1, "", "unique_id"]], "nodriver.cdp.runtime.ExecutionContextDestroyed": [[45, 1, 1, "", "execution_context_id"], [45, 1, 1, "", "execution_context_unique_id"]], "nodriver.cdp.runtime.InspectRequested": [[45, 1, 1, "", "execution_context_id"], [45, 1, 1, "", "hints"], [45, 1, 1, "", "object_"]], "nodriver.cdp.runtime.InternalPropertyDescriptor": [[45, 1, 1, "", "name"], [45, 1, 1, "", "value"]], "nodriver.cdp.runtime.ObjectPreview": [[45, 1, 1, "", "description"], [45, 1, 1, "", "entries"], [45, 1, 1, "", "overflow"], [45, 1, 1, "", "properties"], [45, 1, 1, "", "subtype"], [45, 1, 1, "", "type_"]], "nodriver.cdp.runtime.PrivatePropertyDescriptor": [[45, 1, 1, "", "get"], [45, 1, 1, "", "name"], [45, 1, 1, "", "set_"], [45, 1, 1, "", "value"]], "nodriver.cdp.runtime.PropertyDescriptor": [[45, 1, 1, "", "configurable"], [45, 1, 1, "", "enumerable"], [45, 1, 1, "", "get"], [45, 1, 1, "", "is_own"], [45, 1, 1, "", "name"], [45, 1, 1, "", "set_"], [45, 1, 1, "", "symbol"], [45, 1, 1, "", "value"], [45, 1, 1, "", "was_thrown"], [45, 1, 1, "", "writable"]], "nodriver.cdp.runtime.PropertyPreview": [[45, 1, 1, "", "name"], [45, 1, 1, "", "subtype"], [45, 1, 1, "", "type_"], [45, 1, 1, "", "value"], [45, 1, 1, "", "value_preview"]], "nodriver.cdp.runtime.RemoteObject": [[45, 1, 1, "", "class_name"], [45, 1, 1, "", "custom_preview"], [45, 1, 1, "", "deep_serialized_value"], [45, 1, 1, "", "description"], [45, 1, 1, "", "object_id"], [45, 1, 1, "", "preview"], [45, 1, 1, "", "subtype"], [45, 1, 1, "", "type_"], [45, 1, 1, "", "unserializable_value"], [45, 1, 1, "", "value"]], "nodriver.cdp.runtime.SerializationOptions": [[45, 1, 1, "", "additional_parameters"], [45, 1, 1, "", "max_depth"], [45, 1, 1, "", "serialization"]], "nodriver.cdp.runtime.StackTrace": [[45, 1, 1, "", "call_frames"], [45, 1, 1, "", "description"], [45, 1, 1, "", "parent"], [45, 1, 1, "", "parent_id"]], "nodriver.cdp.runtime.StackTraceId": [[45, 1, 1, "", "debugger_id"], [45, 1, 1, "", "id_"]], "nodriver.cdp.schema": [[46, 0, 1, "", "Domain"], [46, 5, 1, "", "get_domains"]], "nodriver.cdp.schema.Domain": [[46, 1, 1, "", "name"], [46, 1, 1, "", "version"]], "nodriver.cdp.security": [[47, 0, 1, "", "CertificateError"], [47, 0, 1, "", "CertificateErrorAction"], [47, 0, 1, "", "CertificateId"], [47, 0, 1, "", "CertificateSecurityState"], [47, 0, 1, "", "InsecureContentStatus"], [47, 0, 1, "", "MixedContentType"], [47, 0, 1, "", "SafetyTipInfo"], [47, 0, 1, "", "SafetyTipStatus"], [47, 0, 1, "", "SecurityState"], [47, 0, 1, "", "SecurityStateChanged"], [47, 0, 1, "", "SecurityStateExplanation"], [47, 0, 1, "", "VisibleSecurityState"], [47, 0, 1, "", "VisibleSecurityStateChanged"], [47, 5, 1, "", "disable"], [47, 5, 1, "", "enable"], [47, 5, 1, "", "handle_certificate_error"], [47, 5, 1, "", "set_ignore_certificate_errors"], [47, 5, 1, "", "set_override_certificate_errors"]], "nodriver.cdp.security.CertificateError": [[47, 1, 1, "", "error_type"], [47, 1, 1, "", "event_id"], [47, 1, 1, "", "request_url"]], "nodriver.cdp.security.CertificateErrorAction": [[47, 1, 1, "", "CANCEL"], [47, 1, 1, "", "CONTINUE"]], "nodriver.cdp.security.CertificateSecurityState": [[47, 1, 1, "", "certificate"], [47, 1, 1, "", "certificate_has_sha1_signature"], [47, 1, 1, "", "certificate_has_weak_signature"], [47, 1, 1, "", "certificate_network_error"], [47, 1, 1, "", "cipher"], [47, 1, 1, "", "issuer"], [47, 1, 1, "", "key_exchange"], [47, 1, 1, "", "key_exchange_group"], [47, 1, 1, "", "mac"], [47, 1, 1, "", "modern_ssl"], [47, 1, 1, "", "obsolete_ssl_cipher"], [47, 1, 1, "", "obsolete_ssl_key_exchange"], [47, 1, 1, "", "obsolete_ssl_protocol"], [47, 1, 1, "", "obsolete_ssl_signature"], [47, 1, 1, "", "protocol"], [47, 1, 1, "", "subject_name"], [47, 1, 1, "", "valid_from"], [47, 1, 1, "", "valid_to"]], "nodriver.cdp.security.InsecureContentStatus": [[47, 1, 1, "", "contained_mixed_form"], [47, 1, 1, "", "displayed_content_with_cert_errors"], [47, 1, 1, "", "displayed_insecure_content_style"], [47, 1, 1, "", "displayed_mixed_content"], [47, 1, 1, "", "ran_content_with_cert_errors"], [47, 1, 1, "", "ran_insecure_content_style"], [47, 1, 1, "", "ran_mixed_content"]], "nodriver.cdp.security.MixedContentType": [[47, 1, 1, "", "BLOCKABLE"], [47, 1, 1, "", "NONE"], [47, 1, 1, "", "OPTIONALLY_BLOCKABLE"]], "nodriver.cdp.security.SafetyTipInfo": [[47, 1, 1, "", "safe_url"], [47, 1, 1, "", "safety_tip_status"]], "nodriver.cdp.security.SafetyTipStatus": [[47, 1, 1, "", "BAD_REPUTATION"], [47, 1, 1, "", "LOOKALIKE"]], "nodriver.cdp.security.SecurityState": [[47, 1, 1, "", "INFO"], [47, 1, 1, "", "INSECURE"], [47, 1, 1, "", "INSECURE_BROKEN"], [47, 1, 1, "", "NEUTRAL"], [47, 1, 1, "", "SECURE"], [47, 1, 1, "", "UNKNOWN"]], "nodriver.cdp.security.SecurityStateChanged": [[47, 1, 1, "", "explanations"], [47, 1, 1, "", "insecure_content_status"], [47, 1, 1, "", "scheme_is_cryptographic"], [47, 1, 1, "", "security_state"], [47, 1, 1, "", "summary"]], "nodriver.cdp.security.SecurityStateExplanation": [[47, 1, 1, "", "certificate"], [47, 1, 1, "", "description"], [47, 1, 1, "", "mixed_content_type"], [47, 1, 1, "", "recommendations"], [47, 1, 1, "", "security_state"], [47, 1, 1, "", "summary"], [47, 1, 1, "", "title"]], "nodriver.cdp.security.VisibleSecurityState": [[47, 1, 1, "", "certificate_security_state"], [47, 1, 1, "", "safety_tip_info"], [47, 1, 1, "", "security_state"], [47, 1, 1, "", "security_state_issue_ids"]], "nodriver.cdp.security.VisibleSecurityStateChanged": [[47, 1, 1, "", "visible_security_state"]], "nodriver.cdp.service_worker": [[48, 0, 1, "", "RegistrationID"], [48, 0, 1, "", "ServiceWorkerErrorMessage"], [48, 0, 1, "", "ServiceWorkerRegistration"], [48, 0, 1, "", "ServiceWorkerVersion"], [48, 0, 1, "", "ServiceWorkerVersionRunningStatus"], [48, 0, 1, "", "ServiceWorkerVersionStatus"], [48, 0, 1, "", "WorkerErrorReported"], [48, 0, 1, "", "WorkerRegistrationUpdated"], [48, 0, 1, "", "WorkerVersionUpdated"], [48, 5, 1, "", "deliver_push_message"], [48, 5, 1, "", "disable"], [48, 5, 1, "", "dispatch_periodic_sync_event"], [48, 5, 1, "", "dispatch_sync_event"], [48, 5, 1, "", "enable"], [48, 5, 1, "", "inspect_worker"], [48, 5, 1, "", "set_force_update_on_page_load"], [48, 5, 1, "", "skip_waiting"], [48, 5, 1, "", "start_worker"], [48, 5, 1, "", "stop_all_workers"], [48, 5, 1, "", "stop_worker"], [48, 5, 1, "", "unregister"], [48, 5, 1, "", "update_registration"]], "nodriver.cdp.service_worker.ServiceWorkerErrorMessage": [[48, 1, 1, "", "column_number"], [48, 1, 1, "", "error_message"], [48, 1, 1, "", "line_number"], [48, 1, 1, "", "registration_id"], [48, 1, 1, "", "source_url"], [48, 1, 1, "", "version_id"]], "nodriver.cdp.service_worker.ServiceWorkerRegistration": [[48, 1, 1, "", "is_deleted"], [48, 1, 1, "", "registration_id"], [48, 1, 1, "", "scope_url"]], "nodriver.cdp.service_worker.ServiceWorkerVersion": [[48, 1, 1, "", "controlled_clients"], [48, 1, 1, "", "registration_id"], [48, 1, 1, "", "router_rules"], [48, 1, 1, "", "running_status"], [48, 1, 1, "", "script_last_modified"], [48, 1, 1, "", "script_response_time"], [48, 1, 1, "", "script_url"], [48, 1, 1, "", "status"], [48, 1, 1, "", "target_id"], [48, 1, 1, "", "version_id"]], "nodriver.cdp.service_worker.ServiceWorkerVersionRunningStatus": [[48, 1, 1, "", "RUNNING"], [48, 1, 1, "", "STARTING"], [48, 1, 1, "", "STOPPED"], [48, 1, 1, "", "STOPPING"]], "nodriver.cdp.service_worker.ServiceWorkerVersionStatus": [[48, 1, 1, "", "ACTIVATED"], [48, 1, 1, "", "ACTIVATING"], [48, 1, 1, "", "INSTALLED"], [48, 1, 1, "", "INSTALLING"], [48, 1, 1, "", "NEW"], [48, 1, 1, "", "REDUNDANT"]], "nodriver.cdp.service_worker.WorkerErrorReported": [[48, 1, 1, "", "error_message"]], "nodriver.cdp.service_worker.WorkerRegistrationUpdated": [[48, 1, 1, "", "registrations"]], "nodriver.cdp.service_worker.WorkerVersionUpdated": [[48, 1, 1, "", "versions"]], "nodriver.cdp.storage": [[49, 0, 1, "", "AttributionReportingAggregatableDebugReportingConfig"], [49, 0, 1, "", "AttributionReportingAggregatableDebugReportingData"], [49, 0, 1, "", "AttributionReportingAggregatableDedupKey"], [49, 0, 1, "", "AttributionReportingAggregatableResult"], [49, 0, 1, "", "AttributionReportingAggregatableTriggerData"], [49, 0, 1, "", "AttributionReportingAggregatableValueDictEntry"], [49, 0, 1, "", "AttributionReportingAggregatableValueEntry"], [49, 0, 1, "", "AttributionReportingAggregationKeysEntry"], [49, 0, 1, "", "AttributionReportingEventLevelResult"], [49, 0, 1, "", "AttributionReportingEventReportWindows"], [49, 0, 1, "", "AttributionReportingEventTriggerData"], [49, 0, 1, "", "AttributionReportingFilterConfig"], [49, 0, 1, "", "AttributionReportingFilterDataEntry"], [49, 0, 1, "", "AttributionReportingFilterPair"], [49, 0, 1, "", "AttributionReportingSourceRegistered"], [49, 0, 1, "", "AttributionReportingSourceRegistration"], [49, 0, 1, "", "AttributionReportingSourceRegistrationResult"], [49, 0, 1, "", "AttributionReportingSourceRegistrationTimeConfig"], [49, 0, 1, "", "AttributionReportingSourceType"], [49, 0, 1, "", "AttributionReportingTriggerDataMatching"], [49, 0, 1, "", "AttributionReportingTriggerRegistered"], [49, 0, 1, "", "AttributionReportingTriggerRegistration"], [49, 0, 1, "", "AttributionReportingTriggerSpec"], [49, 0, 1, "", "AttributionScopesData"], [49, 0, 1, "", "CacheStorageContentUpdated"], [49, 0, 1, "", "CacheStorageListUpdated"], [49, 0, 1, "", "IndexedDBContentUpdated"], [49, 0, 1, "", "IndexedDBListUpdated"], [49, 0, 1, "", "InterestGroupAccessType"], [49, 0, 1, "", "InterestGroupAccessed"], [49, 0, 1, "", "InterestGroupAuctionEventOccurred"], [49, 0, 1, "", "InterestGroupAuctionEventType"], [49, 0, 1, "", "InterestGroupAuctionFetchType"], [49, 0, 1, "", "InterestGroupAuctionId"], [49, 0, 1, "", "InterestGroupAuctionNetworkRequestCreated"], [49, 0, 1, "", "RelatedWebsiteSet"], [49, 0, 1, "", "SerializedStorageKey"], [49, 0, 1, "", "SharedStorageAccessParams"], [49, 0, 1, "", "SharedStorageAccessType"], [49, 0, 1, "", "SharedStorageAccessed"], [49, 0, 1, "", "SharedStorageEntry"], [49, 0, 1, "", "SharedStorageMetadata"], [49, 0, 1, "", "SharedStorageReportingMetadata"], [49, 0, 1, "", "SharedStorageUrlWithMetadata"], [49, 0, 1, "", "SignedInt64AsBase10"], [49, 0, 1, "", "StorageBucket"], [49, 0, 1, "", "StorageBucketCreatedOrUpdated"], [49, 0, 1, "", "StorageBucketDeleted"], [49, 0, 1, "", "StorageBucketInfo"], [49, 0, 1, "", "StorageBucketsDurability"], [49, 0, 1, "", "StorageType"], [49, 0, 1, "", "TrustTokens"], [49, 0, 1, "", "UnsignedInt128AsBase16"], [49, 0, 1, "", "UnsignedInt64AsBase10"], [49, 0, 1, "", "UsageForType"], [49, 5, 1, "", "clear_cookies"], [49, 5, 1, "", "clear_data_for_origin"], [49, 5, 1, "", "clear_data_for_storage_key"], [49, 5, 1, "", "clear_shared_storage_entries"], [49, 5, 1, "", "clear_trust_tokens"], [49, 5, 1, "", "delete_shared_storage_entry"], [49, 5, 1, "", "delete_storage_bucket"], [49, 5, 1, "", "get_cookies"], [49, 5, 1, "", "get_interest_group_details"], [49, 5, 1, "", "get_related_website_sets"], [49, 5, 1, "", "get_shared_storage_entries"], [49, 5, 1, "", "get_shared_storage_metadata"], [49, 5, 1, "", "get_storage_key_for_frame"], [49, 5, 1, "", "get_trust_tokens"], [49, 5, 1, "", "get_usage_and_quota"], [49, 5, 1, "", "override_quota_for_origin"], [49, 5, 1, "", "reset_shared_storage_budget"], [49, 5, 1, "", "run_bounce_tracking_mitigations"], [49, 5, 1, "", "send_pending_attribution_reports"], [49, 5, 1, "", "set_attribution_reporting_local_testing_mode"], [49, 5, 1, "", "set_attribution_reporting_tracking"], [49, 5, 1, "", "set_cookies"], [49, 5, 1, "", "set_interest_group_auction_tracking"], [49, 5, 1, "", "set_interest_group_tracking"], [49, 5, 1, "", "set_shared_storage_entry"], [49, 5, 1, "", "set_shared_storage_tracking"], [49, 5, 1, "", "set_storage_bucket_tracking"], [49, 5, 1, "", "track_cache_storage_for_origin"], [49, 5, 1, "", "track_cache_storage_for_storage_key"], [49, 5, 1, "", "track_indexed_db_for_origin"], [49, 5, 1, "", "track_indexed_db_for_storage_key"], [49, 5, 1, "", "untrack_cache_storage_for_origin"], [49, 5, 1, "", "untrack_cache_storage_for_storage_key"], [49, 5, 1, "", "untrack_indexed_db_for_origin"], [49, 5, 1, "", "untrack_indexed_db_for_storage_key"]], "nodriver.cdp.storage.AttributionReportingAggregatableDebugReportingConfig": [[49, 1, 1, "", "aggregation_coordinator_origin"], [49, 1, 1, "", "budget"], [49, 1, 1, "", "debug_data"], [49, 1, 1, "", "key_piece"]], "nodriver.cdp.storage.AttributionReportingAggregatableDebugReportingData": [[49, 1, 1, "", "key_piece"], [49, 1, 1, "", "types"], [49, 1, 1, "", "value"]], "nodriver.cdp.storage.AttributionReportingAggregatableDedupKey": [[49, 1, 1, "", "dedup_key"], [49, 1, 1, "", "filters"]], "nodriver.cdp.storage.AttributionReportingAggregatableResult": [[49, 1, 1, "", "DEDUPLICATED"], [49, 1, 1, "", "EXCESSIVE_ATTRIBUTIONS"], [49, 1, 1, "", "EXCESSIVE_REPORTING_ORIGINS"], [49, 1, 1, "", "EXCESSIVE_REPORTS"], [49, 1, 1, "", "INSUFFICIENT_BUDGET"], [49, 1, 1, "", "INSUFFICIENT_NAMED_BUDGET"], [49, 1, 1, "", "INTERNAL_ERROR"], [49, 1, 1, "", "NOT_REGISTERED"], [49, 1, 1, "", "NO_CAPACITY_FOR_ATTRIBUTION_DESTINATION"], [49, 1, 1, "", "NO_HISTOGRAMS"], [49, 1, 1, "", "NO_MATCHING_SOURCES"], [49, 1, 1, "", "NO_MATCHING_SOURCE_FILTER_DATA"], [49, 1, 1, "", "PROHIBITED_BY_BROWSER_POLICY"], [49, 1, 1, "", "REPORT_WINDOW_PASSED"], [49, 1, 1, "", "SUCCESS"]], "nodriver.cdp.storage.AttributionReportingAggregatableTriggerData": [[49, 1, 1, "", "filters"], [49, 1, 1, "", "key_piece"], [49, 1, 1, "", "source_keys"]], "nodriver.cdp.storage.AttributionReportingAggregatableValueDictEntry": [[49, 1, 1, "", "filtering_id"], [49, 1, 1, "", "key"], [49, 1, 1, "", "value"]], "nodriver.cdp.storage.AttributionReportingAggregatableValueEntry": [[49, 1, 1, "", "filters"], [49, 1, 1, "", "values"]], "nodriver.cdp.storage.AttributionReportingAggregationKeysEntry": [[49, 1, 1, "", "key"], [49, 1, 1, "", "value"]], "nodriver.cdp.storage.AttributionReportingEventLevelResult": [[49, 1, 1, "", "DEDUPLICATED"], [49, 1, 1, "", "EXCESSIVE_ATTRIBUTIONS"], [49, 1, 1, "", "EXCESSIVE_REPORTING_ORIGINS"], [49, 1, 1, "", "EXCESSIVE_REPORTS"], [49, 1, 1, "", "FALSELY_ATTRIBUTED_SOURCE"], [49, 1, 1, "", "INTERNAL_ERROR"], [49, 1, 1, "", "NEVER_ATTRIBUTED_SOURCE"], [49, 1, 1, "", "NOT_REGISTERED"], [49, 1, 1, "", "NO_CAPACITY_FOR_ATTRIBUTION_DESTINATION"], [49, 1, 1, "", "NO_MATCHING_CONFIGURATIONS"], [49, 1, 1, "", "NO_MATCHING_SOURCES"], [49, 1, 1, "", "NO_MATCHING_SOURCE_FILTER_DATA"], [49, 1, 1, "", "NO_MATCHING_TRIGGER_DATA"], [49, 1, 1, "", "PRIORITY_TOO_LOW"], [49, 1, 1, "", "PROHIBITED_BY_BROWSER_POLICY"], [49, 1, 1, "", "REPORT_WINDOW_NOT_STARTED"], [49, 1, 1, "", "REPORT_WINDOW_PASSED"], [49, 1, 1, "", "SUCCESS"], [49, 1, 1, "", "SUCCESS_DROPPED_LOWER_PRIORITY"]], "nodriver.cdp.storage.AttributionReportingEventReportWindows": [[49, 1, 1, "", "ends"], [49, 1, 1, "", "start"]], "nodriver.cdp.storage.AttributionReportingEventTriggerData": [[49, 1, 1, "", "data"], [49, 1, 1, "", "dedup_key"], [49, 1, 1, "", "filters"], [49, 1, 1, "", "priority"]], "nodriver.cdp.storage.AttributionReportingFilterConfig": [[49, 1, 1, "", "filter_values"], [49, 1, 1, "", "lookback_window"]], "nodriver.cdp.storage.AttributionReportingFilterDataEntry": [[49, 1, 1, "", "key"], [49, 1, 1, "", "values"]], "nodriver.cdp.storage.AttributionReportingFilterPair": [[49, 1, 1, "", "filters"], [49, 1, 1, "", "not_filters"]], "nodriver.cdp.storage.AttributionReportingSourceRegistered": [[49, 1, 1, "", "registration"], [49, 1, 1, "", "result"]], "nodriver.cdp.storage.AttributionReportingSourceRegistration": [[49, 1, 1, "", "aggregatable_debug_reporting_config"], [49, 1, 1, "", "aggregatable_report_window"], [49, 1, 1, "", "aggregation_keys"], [49, 1, 1, "", "debug_key"], [49, 1, 1, "", "destination_limit_priority"], [49, 1, 1, "", "destination_sites"], [49, 1, 1, "", "event_id"], [49, 1, 1, "", "expiry"], [49, 1, 1, "", "filter_data"], [49, 1, 1, "", "max_event_level_reports"], [49, 1, 1, "", "priority"], [49, 1, 1, "", "reporting_origin"], [49, 1, 1, "", "scopes_data"], [49, 1, 1, "", "source_origin"], [49, 1, 1, "", "time"], [49, 1, 1, "", "trigger_data_matching"], [49, 1, 1, "", "trigger_specs"], [49, 1, 1, "", "type_"]], "nodriver.cdp.storage.AttributionReportingSourceRegistrationResult": [[49, 1, 1, "", "DESTINATION_BOTH_LIMITS_REACHED"], [49, 1, 1, "", "DESTINATION_GLOBAL_LIMIT_REACHED"], [49, 1, 1, "", "DESTINATION_PER_DAY_REPORTING_LIMIT_REACHED"], [49, 1, 1, "", "DESTINATION_REPORTING_LIMIT_REACHED"], [49, 1, 1, "", "EXCEEDS_MAX_CHANNEL_CAPACITY"], [49, 1, 1, "", "EXCEEDS_MAX_EVENT_STATES_LIMIT"], [49, 1, 1, "", "EXCEEDS_MAX_SCOPES_CHANNEL_CAPACITY"], [49, 1, 1, "", "EXCEEDS_MAX_TRIGGER_STATE_CARDINALITY"], [49, 1, 1, "", "EXCESSIVE_REPORTING_ORIGINS"], [49, 1, 1, "", "INSUFFICIENT_SOURCE_CAPACITY"], [49, 1, 1, "", "INSUFFICIENT_UNIQUE_DESTINATION_CAPACITY"], [49, 1, 1, "", "INTERNAL_ERROR"], [49, 1, 1, "", "PROHIBITED_BY_BROWSER_POLICY"], [49, 1, 1, "", "REPORTING_ORIGINS_PER_SITE_LIMIT_REACHED"], [49, 1, 1, "", "SUCCESS"], [49, 1, 1, "", "SUCCESS_NOISED"]], "nodriver.cdp.storage.AttributionReportingSourceRegistrationTimeConfig": [[49, 1, 1, "", "EXCLUDE"], [49, 1, 1, "", "INCLUDE"]], "nodriver.cdp.storage.AttributionReportingSourceType": [[49, 1, 1, "", "EVENT"], [49, 1, 1, "", "NAVIGATION"]], "nodriver.cdp.storage.AttributionReportingTriggerDataMatching": [[49, 1, 1, "", "EXACT"], [49, 1, 1, "", "MODULUS"]], "nodriver.cdp.storage.AttributionReportingTriggerRegistered": [[49, 1, 1, "", "aggregatable"], [49, 1, 1, "", "event_level"], [49, 1, 1, "", "registration"]], "nodriver.cdp.storage.AttributionReportingTriggerRegistration": [[49, 1, 1, "", "aggregatable_debug_reporting_config"], [49, 1, 1, "", "aggregatable_dedup_keys"], [49, 1, 1, "", "aggregatable_filtering_id_max_bytes"], [49, 1, 1, "", "aggregatable_trigger_data"], [49, 1, 1, "", "aggregatable_values"], [49, 1, 1, "", "aggregation_coordinator_origin"], [49, 1, 1, "", "debug_key"], [49, 1, 1, "", "debug_reporting"], [49, 1, 1, "", "event_trigger_data"], [49, 1, 1, "", "filters"], [49, 1, 1, "", "scopes"], [49, 1, 1, "", "source_registration_time_config"], [49, 1, 1, "", "trigger_context_id"]], "nodriver.cdp.storage.AttributionReportingTriggerSpec": [[49, 1, 1, "", "event_report_windows"], [49, 1, 1, "", "trigger_data"]], "nodriver.cdp.storage.AttributionScopesData": [[49, 1, 1, "", "limit"], [49, 1, 1, "", "max_event_states"], [49, 1, 1, "", "values"]], "nodriver.cdp.storage.CacheStorageContentUpdated": [[49, 1, 1, "", "bucket_id"], [49, 1, 1, "", "cache_name"], [49, 1, 1, "", "origin"], [49, 1, 1, "", "storage_key"]], "nodriver.cdp.storage.CacheStorageListUpdated": [[49, 1, 1, "", "bucket_id"], [49, 1, 1, "", "origin"], [49, 1, 1, "", "storage_key"]], "nodriver.cdp.storage.IndexedDBContentUpdated": [[49, 1, 1, "", "bucket_id"], [49, 1, 1, "", "database_name"], [49, 1, 1, "", "object_store_name"], [49, 1, 1, "", "origin"], [49, 1, 1, "", "storage_key"]], "nodriver.cdp.storage.IndexedDBListUpdated": [[49, 1, 1, "", "bucket_id"], [49, 1, 1, "", "origin"], [49, 1, 1, "", "storage_key"]], "nodriver.cdp.storage.InterestGroupAccessType": [[49, 1, 1, "", "ADDITIONAL_BID"], [49, 1, 1, "", "ADDITIONAL_BID_WIN"], [49, 1, 1, "", "BID"], [49, 1, 1, "", "CLEAR"], [49, 1, 1, "", "JOIN"], [49, 1, 1, "", "LEAVE"], [49, 1, 1, "", "LOADED"], [49, 1, 1, "", "TOP_LEVEL_ADDITIONAL_BID"], [49, 1, 1, "", "TOP_LEVEL_BID"], [49, 1, 1, "", "UPDATE"], [49, 1, 1, "", "WIN"]], "nodriver.cdp.storage.InterestGroupAccessed": [[49, 1, 1, "", "access_time"], [49, 1, 1, "", "bid"], [49, 1, 1, "", "bid_currency"], [49, 1, 1, "", "component_seller_origin"], [49, 1, 1, "", "name"], [49, 1, 1, "", "owner_origin"], [49, 1, 1, "", "type_"], [49, 1, 1, "", "unique_auction_id"]], "nodriver.cdp.storage.InterestGroupAuctionEventOccurred": [[49, 1, 1, "", "auction_config"], [49, 1, 1, "", "event_time"], [49, 1, 1, "", "parent_auction_id"], [49, 1, 1, "", "type_"], [49, 1, 1, "", "unique_auction_id"]], "nodriver.cdp.storage.InterestGroupAuctionEventType": [[49, 1, 1, "", "CONFIG_RESOLVED"], [49, 1, 1, "", "STARTED"]], "nodriver.cdp.storage.InterestGroupAuctionFetchType": [[49, 1, 1, "", "BIDDER_JS"], [49, 1, 1, "", "BIDDER_TRUSTED_SIGNALS"], [49, 1, 1, "", "BIDDER_WASM"], [49, 1, 1, "", "SELLER_JS"], [49, 1, 1, "", "SELLER_TRUSTED_SIGNALS"]], "nodriver.cdp.storage.InterestGroupAuctionNetworkRequestCreated": [[49, 1, 1, "", "auctions"], [49, 1, 1, "", "request_id"], [49, 1, 1, "", "type_"]], "nodriver.cdp.storage.RelatedWebsiteSet": [[49, 1, 1, "", "associated_sites"], [49, 1, 1, "", "primary_sites"], [49, 1, 1, "", "service_sites"]], "nodriver.cdp.storage.SharedStorageAccessParams": [[49, 1, 1, "", "ignore_if_present"], [49, 1, 1, "", "key"], [49, 1, 1, "", "operation_name"], [49, 1, 1, "", "script_source_url"], [49, 1, 1, "", "serialized_data"], [49, 1, 1, "", "urls_with_metadata"], [49, 1, 1, "", "value"]], "nodriver.cdp.storage.SharedStorageAccessType": [[49, 1, 1, "", "DOCUMENT_ADD_MODULE"], [49, 1, 1, "", "DOCUMENT_APPEND"], [49, 1, 1, "", "DOCUMENT_CLEAR"], [49, 1, 1, "", "DOCUMENT_DELETE"], [49, 1, 1, "", "DOCUMENT_GET"], [49, 1, 1, "", "DOCUMENT_RUN"], [49, 1, 1, "", "DOCUMENT_SELECT_URL"], [49, 1, 1, "", "DOCUMENT_SET"], [49, 1, 1, "", "HEADER_APPEND"], [49, 1, 1, "", "HEADER_CLEAR"], [49, 1, 1, "", "HEADER_DELETE"], [49, 1, 1, "", "HEADER_SET"], [49, 1, 1, "", "WORKLET_APPEND"], [49, 1, 1, "", "WORKLET_CLEAR"], [49, 1, 1, "", "WORKLET_DELETE"], [49, 1, 1, "", "WORKLET_ENTRIES"], [49, 1, 1, "", "WORKLET_GET"], [49, 1, 1, "", "WORKLET_KEYS"], [49, 1, 1, "", "WORKLET_LENGTH"], [49, 1, 1, "", "WORKLET_REMAINING_BUDGET"], [49, 1, 1, "", "WORKLET_SET"]], "nodriver.cdp.storage.SharedStorageAccessed": [[49, 1, 1, "", "access_time"], [49, 1, 1, "", "main_frame_id"], [49, 1, 1, "", "owner_origin"], [49, 1, 1, "", "params"], [49, 1, 1, "", "type_"]], "nodriver.cdp.storage.SharedStorageEntry": [[49, 1, 1, "", "key"], [49, 1, 1, "", "value"]], "nodriver.cdp.storage.SharedStorageMetadata": [[49, 1, 1, "", "bytes_used"], [49, 1, 1, "", "creation_time"], [49, 1, 1, "", "length"], [49, 1, 1, "", "remaining_budget"]], "nodriver.cdp.storage.SharedStorageReportingMetadata": [[49, 1, 1, "", "event_type"], [49, 1, 1, "", "reporting_url"]], "nodriver.cdp.storage.SharedStorageUrlWithMetadata": [[49, 1, 1, "", "reporting_metadata"], [49, 1, 1, "", "url"]], "nodriver.cdp.storage.StorageBucket": [[49, 1, 1, "", "name"], [49, 1, 1, "", "storage_key"]], "nodriver.cdp.storage.StorageBucketCreatedOrUpdated": [[49, 1, 1, "", "bucket_info"]], "nodriver.cdp.storage.StorageBucketDeleted": [[49, 1, 1, "", "bucket_id"]], "nodriver.cdp.storage.StorageBucketInfo": [[49, 1, 1, "", "bucket"], [49, 1, 1, "", "durability"], [49, 1, 1, "", "expiration"], [49, 1, 1, "", "id_"], [49, 1, 1, "", "persistent"], [49, 1, 1, "", "quota"]], "nodriver.cdp.storage.StorageBucketsDurability": [[49, 1, 1, "", "RELAXED"], [49, 1, 1, "", "STRICT"]], "nodriver.cdp.storage.StorageType": [[49, 1, 1, "", "ALL_"], [49, 1, 1, "", "APPCACHE"], [49, 1, 1, "", "CACHE_STORAGE"], [49, 1, 1, "", "COOKIES"], [49, 1, 1, "", "FILE_SYSTEMS"], [49, 1, 1, "", "INDEXEDDB"], [49, 1, 1, "", "INTEREST_GROUPS"], [49, 1, 1, "", "LOCAL_STORAGE"], [49, 1, 1, "", "OTHER"], [49, 1, 1, "", "SERVICE_WORKERS"], [49, 1, 1, "", "SHADER_CACHE"], [49, 1, 1, "", "SHARED_STORAGE"], [49, 1, 1, "", "STORAGE_BUCKETS"], [49, 1, 1, "", "WEBSQL"]], "nodriver.cdp.storage.TrustTokens": [[49, 1, 1, "", "count"], [49, 1, 1, "", "issuer_origin"]], "nodriver.cdp.storage.UsageForType": [[49, 1, 1, "", "storage_type"], [49, 1, 1, "", "usage"]], "nodriver.cdp.system_info": [[50, 0, 1, "", "GPUDevice"], [50, 0, 1, "", "GPUInfo"], [50, 0, 1, "", "ImageDecodeAcceleratorCapability"], [50, 0, 1, "", "ImageType"], [50, 0, 1, "", "ProcessInfo"], [50, 0, 1, "", "Size"], [50, 0, 1, "", "SubsamplingFormat"], [50, 0, 1, "", "VideoDecodeAcceleratorCapability"], [50, 0, 1, "", "VideoEncodeAcceleratorCapability"], [50, 5, 1, "", "get_feature_state"], [50, 5, 1, "", "get_info"], [50, 5, 1, "", "get_process_info"]], "nodriver.cdp.system_info.GPUDevice": [[50, 1, 1, "", "device_id"], [50, 1, 1, "", "device_string"], [50, 1, 1, "", "driver_vendor"], [50, 1, 1, "", "driver_version"], [50, 1, 1, "", "revision"], [50, 1, 1, "", "sub_sys_id"], [50, 1, 1, "", "vendor_id"], [50, 1, 1, "", "vendor_string"]], "nodriver.cdp.system_info.GPUInfo": [[50, 1, 1, "", "aux_attributes"], [50, 1, 1, "", "devices"], [50, 1, 1, "", "driver_bug_workarounds"], [50, 1, 1, "", "feature_status"], [50, 1, 1, "", "image_decoding"], [50, 1, 1, "", "video_decoding"], [50, 1, 1, "", "video_encoding"]], "nodriver.cdp.system_info.ImageDecodeAcceleratorCapability": [[50, 1, 1, "", "image_type"], [50, 1, 1, "", "max_dimensions"], [50, 1, 1, "", "min_dimensions"], [50, 1, 1, "", "subsamplings"]], "nodriver.cdp.system_info.ImageType": [[50, 1, 1, "", "JPEG"], [50, 1, 1, "", "UNKNOWN"], [50, 1, 1, "", "WEBP"]], "nodriver.cdp.system_info.ProcessInfo": [[50, 1, 1, "", "cpu_time"], [50, 1, 1, "", "id_"], [50, 1, 1, "", "type_"]], "nodriver.cdp.system_info.Size": [[50, 1, 1, "", "height"], [50, 1, 1, "", "width"]], "nodriver.cdp.system_info.SubsamplingFormat": [[50, 1, 1, "", "YUV420"], [50, 1, 1, "", "YUV422"], [50, 1, 1, "", "YUV444"]], "nodriver.cdp.system_info.VideoDecodeAcceleratorCapability": [[50, 1, 1, "", "max_resolution"], [50, 1, 1, "", "min_resolution"], [50, 1, 1, "", "profile"]], "nodriver.cdp.system_info.VideoEncodeAcceleratorCapability": [[50, 1, 1, "", "max_framerate_denominator"], [50, 1, 1, "", "max_framerate_numerator"], [50, 1, 1, "", "max_resolution"], [50, 1, 1, "", "profile"]], "nodriver.cdp.target": [[51, 0, 1, "", "AttachedToTarget"], [51, 0, 1, "", "DetachedFromTarget"], [51, 0, 1, "", "FilterEntry"], [51, 0, 1, "", "ReceivedMessageFromTarget"], [51, 0, 1, "", "RemoteLocation"], [51, 0, 1, "", "SessionID"], [51, 0, 1, "", "TargetCrashed"], [51, 0, 1, "", "TargetCreated"], [51, 0, 1, "", "TargetDestroyed"], [51, 0, 1, "", "TargetFilter"], [51, 0, 1, "", "TargetID"], [51, 0, 1, "", "TargetInfo"], [51, 0, 1, "", "TargetInfoChanged"], [51, 5, 1, "", "activate_target"], [51, 5, 1, "", "attach_to_browser_target"], [51, 5, 1, "", "attach_to_target"], [51, 5, 1, "", "auto_attach_related"], [51, 5, 1, "", "close_target"], [51, 5, 1, "", "create_browser_context"], [51, 5, 1, "", "create_target"], [51, 5, 1, "", "detach_from_target"], [51, 5, 1, "", "dispose_browser_context"], [51, 5, 1, "", "expose_dev_tools_protocol"], [51, 5, 1, "", "get_browser_contexts"], [51, 5, 1, "", "get_target_info"], [51, 5, 1, "", "get_targets"], [51, 5, 1, "", "send_message_to_target"], [51, 5, 1, "", "set_auto_attach"], [51, 5, 1, "", "set_discover_targets"], [51, 5, 1, "", "set_remote_locations"]], "nodriver.cdp.target.AttachedToTarget": [[51, 1, 1, "", "session_id"], [51, 1, 1, "", "target_info"], [51, 1, 1, "", "waiting_for_debugger"]], "nodriver.cdp.target.DetachedFromTarget": [[51, 1, 1, "", "session_id"], [51, 1, 1, "", "target_id"]], "nodriver.cdp.target.FilterEntry": [[51, 1, 1, "", "exclude"], [51, 1, 1, "", "type_"]], "nodriver.cdp.target.ReceivedMessageFromTarget": [[51, 1, 1, "", "message"], [51, 1, 1, "", "session_id"], [51, 1, 1, "", "target_id"]], "nodriver.cdp.target.RemoteLocation": [[51, 1, 1, "", "host"], [51, 1, 1, "", "port"]], "nodriver.cdp.target.TargetCrashed": [[51, 1, 1, "", "error_code"], [51, 1, 1, "", "status"], [51, 1, 1, "", "target_id"]], "nodriver.cdp.target.TargetCreated": [[51, 1, 1, "", "target_info"]], "nodriver.cdp.target.TargetDestroyed": [[51, 1, 1, "", "target_id"]], "nodriver.cdp.target.TargetInfo": [[51, 1, 1, "", "attached"], [51, 1, 1, "", "browser_context_id"], [51, 1, 1, "", "can_access_opener"], [51, 1, 1, "", "opener_frame_id"], [51, 1, 1, "", "opener_id"], [51, 1, 1, "", "subtype"], [51, 1, 1, "", "target_id"], [51, 1, 1, "", "title"], [51, 1, 1, "", "type_"], [51, 1, 1, "", "url"]], "nodriver.cdp.target.TargetInfoChanged": [[51, 1, 1, "", "target_info"]], "nodriver.cdp.tethering": [[52, 0, 1, "", "Accepted"], [52, 5, 1, "", "bind"], [52, 5, 1, "", "unbind"]], "nodriver.cdp.tethering.Accepted": [[52, 1, 1, "", "connection_id"], [52, 1, 1, "", "port"]], "nodriver.cdp.tracing": [[53, 0, 1, "", "BufferUsage"], [53, 0, 1, "", "DataCollected"], [53, 0, 1, "", "MemoryDumpConfig"], [53, 0, 1, "", "MemoryDumpLevelOfDetail"], [53, 0, 1, "", "StreamCompression"], [53, 0, 1, "", "StreamFormat"], [53, 0, 1, "", "TraceConfig"], [53, 0, 1, "", "TracingBackend"], [53, 0, 1, "", "TracingComplete"], [53, 5, 1, "", "end"], [53, 5, 1, "", "get_categories"], [53, 5, 1, "", "record_clock_sync_marker"], [53, 5, 1, "", "request_memory_dump"], [53, 5, 1, "", "start"]], "nodriver.cdp.tracing.BufferUsage": [[53, 1, 1, "", "event_count"], [53, 1, 1, "", "percent_full"], [53, 1, 1, "", "value"]], "nodriver.cdp.tracing.DataCollected": [[53, 1, 1, "", "value"]], "nodriver.cdp.tracing.MemoryDumpLevelOfDetail": [[53, 1, 1, "", "BACKGROUND"], [53, 1, 1, "", "DETAILED"], [53, 1, 1, "", "LIGHT"]], "nodriver.cdp.tracing.StreamCompression": [[53, 1, 1, "", "GZIP"], [53, 1, 1, "", "NONE"]], "nodriver.cdp.tracing.StreamFormat": [[53, 1, 1, "", "JSON"], [53, 1, 1, "", "PROTO"]], "nodriver.cdp.tracing.TraceConfig": [[53, 1, 1, "", "enable_argument_filter"], [53, 1, 1, "", "enable_sampling"], [53, 1, 1, "", "enable_systrace"], [53, 1, 1, "", "excluded_categories"], [53, 1, 1, "", "included_categories"], [53, 1, 1, "", "memory_dump_config"], [53, 1, 1, "", "record_mode"], [53, 1, 1, "", "synthetic_delays"], [53, 1, 1, "", "trace_buffer_size_in_kb"]], "nodriver.cdp.tracing.TracingBackend": [[53, 1, 1, "", "AUTO"], [53, 1, 1, "", "CHROME"], [53, 1, 1, "", "SYSTEM"]], "nodriver.cdp.tracing.TracingComplete": [[53, 1, 1, "", "data_loss_occurred"], [53, 1, 1, "", "stream"], [53, 1, 1, "", "stream_compression"], [53, 1, 1, "", "trace_format"]], "nodriver.cdp.web_audio": [[54, 0, 1, "", "AudioListener"], [54, 0, 1, "", "AudioListenerCreated"], [54, 0, 1, "", "AudioListenerWillBeDestroyed"], [54, 0, 1, "", "AudioNode"], [54, 0, 1, "", "AudioNodeCreated"], [54, 0, 1, "", "AudioNodeWillBeDestroyed"], [54, 0, 1, "", "AudioParam"], [54, 0, 1, "", "AudioParamCreated"], [54, 0, 1, "", "AudioParamWillBeDestroyed"], [54, 0, 1, "", "AutomationRate"], [54, 0, 1, "", "BaseAudioContext"], [54, 0, 1, "", "ChannelCountMode"], [54, 0, 1, "", "ChannelInterpretation"], [54, 0, 1, "", "ContextChanged"], [54, 0, 1, "", "ContextCreated"], [54, 0, 1, "", "ContextRealtimeData"], [54, 0, 1, "", "ContextState"], [54, 0, 1, "", "ContextType"], [54, 0, 1, "", "ContextWillBeDestroyed"], [54, 0, 1, "", "GraphObjectId"], [54, 0, 1, "", "NodeParamConnected"], [54, 0, 1, "", "NodeParamDisconnected"], [54, 0, 1, "", "NodeType"], [54, 0, 1, "", "NodesConnected"], [54, 0, 1, "", "NodesDisconnected"], [54, 0, 1, "", "ParamType"], [54, 5, 1, "", "disable"], [54, 5, 1, "", "enable"], [54, 5, 1, "", "get_realtime_data"]], "nodriver.cdp.web_audio.AudioListener": [[54, 1, 1, "", "context_id"], [54, 1, 1, "", "listener_id"]], "nodriver.cdp.web_audio.AudioListenerCreated": [[54, 1, 1, "", "listener"]], "nodriver.cdp.web_audio.AudioListenerWillBeDestroyed": [[54, 1, 1, "", "context_id"], [54, 1, 1, "", "listener_id"]], "nodriver.cdp.web_audio.AudioNode": [[54, 1, 1, "", "channel_count"], [54, 1, 1, "", "channel_count_mode"], [54, 1, 1, "", "channel_interpretation"], [54, 1, 1, "", "context_id"], [54, 1, 1, "", "node_id"], [54, 1, 1, "", "node_type"], [54, 1, 1, "", "number_of_inputs"], [54, 1, 1, "", "number_of_outputs"]], "nodriver.cdp.web_audio.AudioNodeCreated": [[54, 1, 1, "", "node"]], "nodriver.cdp.web_audio.AudioNodeWillBeDestroyed": [[54, 1, 1, "", "context_id"], [54, 1, 1, "", "node_id"]], "nodriver.cdp.web_audio.AudioParam": [[54, 1, 1, "", "context_id"], [54, 1, 1, "", "default_value"], [54, 1, 1, "", "max_value"], [54, 1, 1, "", "min_value"], [54, 1, 1, "", "node_id"], [54, 1, 1, "", "param_id"], [54, 1, 1, "", "param_type"], [54, 1, 1, "", "rate"]], "nodriver.cdp.web_audio.AudioParamCreated": [[54, 1, 1, "", "param"]], "nodriver.cdp.web_audio.AudioParamWillBeDestroyed": [[54, 1, 1, "", "context_id"], [54, 1, 1, "", "node_id"], [54, 1, 1, "", "param_id"]], "nodriver.cdp.web_audio.AutomationRate": [[54, 1, 1, "", "A_RATE"], [54, 1, 1, "", "K_RATE"]], "nodriver.cdp.web_audio.BaseAudioContext": [[54, 1, 1, "", "callback_buffer_size"], [54, 1, 1, "", "context_id"], [54, 1, 1, "", "context_state"], [54, 1, 1, "", "context_type"], [54, 1, 1, "", "max_output_channel_count"], [54, 1, 1, "", "realtime_data"], [54, 1, 1, "", "sample_rate"]], "nodriver.cdp.web_audio.ChannelCountMode": [[54, 1, 1, "", "CLAMPED_MAX"], [54, 1, 1, "", "EXPLICIT"], [54, 1, 1, "", "MAX_"]], "nodriver.cdp.web_audio.ChannelInterpretation": [[54, 1, 1, "", "DISCRETE"], [54, 1, 1, "", "SPEAKERS"]], "nodriver.cdp.web_audio.ContextChanged": [[54, 1, 1, "", "context"]], "nodriver.cdp.web_audio.ContextCreated": [[54, 1, 1, "", "context"]], "nodriver.cdp.web_audio.ContextRealtimeData": [[54, 1, 1, "", "callback_interval_mean"], [54, 1, 1, "", "callback_interval_variance"], [54, 1, 1, "", "current_time"], [54, 1, 1, "", "render_capacity"]], "nodriver.cdp.web_audio.ContextState": [[54, 1, 1, "", "CLOSED"], [54, 1, 1, "", "INTERRUPTED"], [54, 1, 1, "", "RUNNING"], [54, 1, 1, "", "SUSPENDED"]], "nodriver.cdp.web_audio.ContextType": [[54, 1, 1, "", "OFFLINE"], [54, 1, 1, "", "REALTIME"]], "nodriver.cdp.web_audio.ContextWillBeDestroyed": [[54, 1, 1, "", "context_id"]], "nodriver.cdp.web_audio.NodeParamConnected": [[54, 1, 1, "", "context_id"], [54, 1, 1, "", "destination_id"], [54, 1, 1, "", "source_id"], [54, 1, 1, "", "source_output_index"]], "nodriver.cdp.web_audio.NodeParamDisconnected": [[54, 1, 1, "", "context_id"], [54, 1, 1, "", "destination_id"], [54, 1, 1, "", "source_id"], [54, 1, 1, "", "source_output_index"]], "nodriver.cdp.web_audio.NodesConnected": [[54, 1, 1, "", "context_id"], [54, 1, 1, "", "destination_id"], [54, 1, 1, "", "destination_input_index"], [54, 1, 1, "", "source_id"], [54, 1, 1, "", "source_output_index"]], "nodriver.cdp.web_audio.NodesDisconnected": [[54, 1, 1, "", "context_id"], [54, 1, 1, "", "destination_id"], [54, 1, 1, "", "destination_input_index"], [54, 1, 1, "", "source_id"], [54, 1, 1, "", "source_output_index"]], "nodriver.cdp.web_authn": [[55, 0, 1, "", "AuthenticatorId"], [55, 0, 1, "", "AuthenticatorProtocol"], [55, 0, 1, "", "AuthenticatorTransport"], [55, 0, 1, "", "Credential"], [55, 0, 1, "", "CredentialAdded"], [55, 0, 1, "", "CredentialAsserted"], [55, 0, 1, "", "CredentialDeleted"], [55, 0, 1, "", "CredentialUpdated"], [55, 0, 1, "", "Ctap2Version"], [55, 0, 1, "", "VirtualAuthenticatorOptions"], [55, 5, 1, "", "add_credential"], [55, 5, 1, "", "add_virtual_authenticator"], [55, 5, 1, "", "clear_credentials"], [55, 5, 1, "", "disable"], [55, 5, 1, "", "enable"], [55, 5, 1, "", "get_credential"], [55, 5, 1, "", "get_credentials"], [55, 5, 1, "", "remove_credential"], [55, 5, 1, "", "remove_virtual_authenticator"], [55, 5, 1, "", "set_automatic_presence_simulation"], [55, 5, 1, "", "set_credential_properties"], [55, 5, 1, "", "set_response_override_bits"], [55, 5, 1, "", "set_user_verified"]], "nodriver.cdp.web_authn.AuthenticatorProtocol": [[55, 1, 1, "", "CTAP2"], [55, 1, 1, "", "U2F"]], "nodriver.cdp.web_authn.AuthenticatorTransport": [[55, 1, 1, "", "BLE"], [55, 1, 1, "", "CABLE"], [55, 1, 1, "", "INTERNAL"], [55, 1, 1, "", "NFC"], [55, 1, 1, "", "USB"]], "nodriver.cdp.web_authn.Credential": [[55, 1, 1, "", "backup_eligibility"], [55, 1, 1, "", "backup_state"], [55, 1, 1, "", "credential_id"], [55, 1, 1, "", "is_resident_credential"], [55, 1, 1, "", "large_blob"], [55, 1, 1, "", "private_key"], [55, 1, 1, "", "rp_id"], [55, 1, 1, "", "sign_count"], [55, 1, 1, "", "user_display_name"], [55, 1, 1, "", "user_handle"], [55, 1, 1, "", "user_name"]], "nodriver.cdp.web_authn.CredentialAdded": [[55, 1, 1, "", "authenticator_id"], [55, 1, 1, "", "credential"]], "nodriver.cdp.web_authn.CredentialAsserted": [[55, 1, 1, "", "authenticator_id"], [55, 1, 1, "", "credential"]], "nodriver.cdp.web_authn.CredentialDeleted": [[55, 1, 1, "", "authenticator_id"], [55, 1, 1, "", "credential_id"]], "nodriver.cdp.web_authn.CredentialUpdated": [[55, 1, 1, "", "authenticator_id"], [55, 1, 1, "", "credential"]], "nodriver.cdp.web_authn.Ctap2Version": [[55, 1, 1, "", "CTAP2_0"], [55, 1, 1, "", "CTAP2_1"]], "nodriver.cdp.web_authn.VirtualAuthenticatorOptions": [[55, 1, 1, "", "automatic_presence_simulation"], [55, 1, 1, "", "ctap2_version"], [55, 1, 1, "", "default_backup_eligibility"], [55, 1, 1, "", "default_backup_state"], [55, 1, 1, "", "has_cred_blob"], [55, 1, 1, "", "has_large_blob"], [55, 1, 1, "", "has_min_pin_length"], [55, 1, 1, "", "has_prf"], [55, 1, 1, "", "has_resident_key"], [55, 1, 1, "", "has_user_verification"], [55, 1, 1, "", "is_user_verified"], [55, 1, 1, "", "protocol"], [55, 1, 1, "", "transport"]], "nodriver.core": [[58, 4, 0, "-", "_contradict"]], "nodriver.core._contradict": [[58, 0, 1, "id0", "ContraDict"], [58, 5, 1, "", "cdict"]], "nodriver.core._contradict.ContraDict": [[58, 3, 1, "id1", "clear"], [58, 3, 1, "id2", "copy"], [58, 3, 1, "id3", "fromkeys"], [58, 3, 1, "id4", "get"], [58, 3, 1, "id5", "items"], [58, 3, 1, "id6", "keys"], [58, 3, 1, "id7", "pop"], [58, 3, 1, "id8", "popitem"], [58, 3, 1, "id9", "setdefault"], [58, 3, 1, "id10", "update"], [58, 3, 1, "id11", "values"]]}, "objtypes": {"0": "py:class", "1": "py:attribute", "2": "py:property", "3": "py:method", "4": "py:module", "5": "py:function"}, "objnames": {"0": ["py", "class", "Python class"], "1": ["py", "attribute", "Python attribute"], "2": ["py", "property", "Python property"], "3": ["py", "method", "Python method"], "4": ["py", "module", "Python module"], "5": ["py", "function", "Python function"]}, "titleterms": {"nodriv": [0, 61], "some": [0, 59, 61], "featur": [0, 61], "quick": 0, "start": [0, 60], "main": 0, "object": [0, 1], "cdp": [0, 1, 59], "access": 2, "type": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55], "command": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 59], "event": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55], "anim": 3, "audit": 4, "autofil": 5, "backgroundservic": 6, "browser": [8, 56], "cachestorag": 9, "cast": 10, "consol": 11, "css": 12, "databas": 13, "debugg": 14, "deviceaccess": 15, "deviceorient": 16, "dom": 17, "domdebugg": 18, "domsnapshot": 19, "domstorag": 20, "emul": 21, "eventbreakpoint": 22, "extens": 23, "fedcm": 24, "fetch": 25, "headlessexperiment": 27, "heapprofil": 28, "indexeddb": 29, "input": 30, "inspector": 31, "io": 32, "layertre": 33, "log": 34, "media": 35, "memori": 36, "network": 37, "overlai": 38, "page": 39, "perform": 40, "performancetimelin": 41, "preload": 42, "profil": 43, "pwa": 44, "runtim": 45, "schema": 46, "secur": 47, "servicework": 48, "storag": 49, "systeminfo": 50, "target": 51, "tether": 52, "trace": 53, "webaudio": 54, "webauthn": 55, "class": [56, 57, 58, 59], "cooki": 56, "element": 57, "other": [58, 59], "helper": 58, "config": 58, "contradict": 58, "function": 58, "tab": 59, "custom": [59, 60], "us": 59, "often": 59, "need": 59, "simpli": 59, "requir": 59, "method": 59, "find": 59, "text": 59, "best_match": 59, "true": 59, "select": 59, "selector": 59, "select_al": 59, "await": 59, "send": 59, "quickstart": 60, "guid": 60, "instal": [60, 61], "usag": [60, 61], "exampl": [60, 61], "more": 60, "complet": 60, "option": 60, "altern": 60, "titl": 62, "section": 62, "subsect": 62, "paragraph": 62, "tabl": 62, "click": [0, 61], "here": [0, 61], "FOR": 0, "doc": [0, 61], "bluetoothemul": 7, "filesystem": 26, "what": 61, "i": 61, "new": 61, "api": 61, "look": 61, "like": 61}, "envversion": {"sphinx.domains.c": 3, "sphinx.domains.changeset": 1, "sphinx.domains.citation": 1, "sphinx.domains.cpp": 9, "sphinx.domains.index": 1, "sphinx.domains.javascript": 3, "sphinx.domains.math": 2, "sphinx.domains.python": 4, "sphinx.domains.rst": 2, "sphinx.domains.std": 2, "sphinx.ext.viewcode": 1, "sphinx.ext.intersphinx": 1, "sphinx": 60}, "alltitles": {"Quickstart guide": [[60, "quickstart-guide"]], "Installation": [[60, "installation"], [61, "installation"]], "usage example": [[60, "usage-example"], [61, "usage-example"]], "More complete example": [[60, "more-complete-example"]], "Custom starting options": [[60, "custom-starting-options"]], "Alternative custom options": [[60, "alternative-custom-options"]], "TITLE": [[62, "title"]], "SECTION": [[62, "section"]], "SUBSECTION": [[62, "subsection"]], "PARAGRAPH": [[62, "paragraph"]], "TABLES": [[62, "tables"]], "NODRIVER": [[0, "nodriver"], [61, "nodriver"]], "CLICK HERE FOR DOCS": [[0, "id1"]], "Some features": [[0, "some-features"], [61, "some-features"]], "Quick start": [[0, "quick-start"]], "Main objects": [[0, "main-objects"]], "CDP object": [[0, "cdp-object"], [1, "cdp-object"]], "Accessibility": [[2, "accessibility"]], "Types": [[2, "types"], [3, "types"], [4, "types"], [5, "types"], [6, "types"], [7, "types"], [8, "types"], [9, "types"], [10, "types"], [11, "types"], [12, "types"], [13, "types"], [14, "types"], [15, "types"], [16, "types"], [17, "types"], [18, "types"], [19, "types"], [20, "types"], [21, "types"], [22, "types"], [23, "types"], [24, "types"], [25, "types"], [26, "types"], [27, "types"], [28, "types"], [29, "types"], [30, "types"], [31, "types"], [32, "types"], [33, "types"], [34, "types"], [35, "types"], [36, "types"], [37, "types"], [38, "types"], [39, "types"], [40, "types"], [41, "types"], [42, "types"], [43, "types"], [44, "types"], [45, "types"], [46, "types"], [47, "types"], [48, "types"], [49, "types"], [50, "types"], [51, "types"], [52, "types"], [53, "types"], [54, "types"], [55, "types"]], "Commands": [[2, "commands"], [3, "commands"], [4, "commands"], [5, "commands"], [6, "commands"], [7, "commands"], [8, "commands"], [9, "commands"], [10, "commands"], [11, "commands"], [12, "commands"], [13, "commands"], [14, "commands"], [15, "commands"], [16, "commands"], [17, "commands"], [18, "commands"], [19, "commands"], [20, "commands"], [21, "commands"], [22, "commands"], [23, "commands"], [24, "commands"], [25, "commands"], [26, "commands"], [27, "commands"], [28, "commands"], [29, "commands"], [30, "commands"], [31, "commands"], [32, "commands"], [33, "commands"], [34, "commands"], [35, "commands"], [36, "commands"], [37, "commands"], [38, "commands"], [39, "commands"], [40, "commands"], [41, "commands"], [42, "commands"], [43, "commands"], [44, "commands"], [45, "commands"], [46, "commands"], [47, "commands"], [48, "commands"], [49, "commands"], [50, "commands"], [51, "commands"], [52, "commands"], [53, "commands"], [54, "commands"], [55, "commands"]], "Events": [[2, "events"], [3, "events"], [4, "events"], [5, "events"], [6, "events"], [7, "events"], [8, "events"], [9, "events"], [10, "events"], [11, "events"], [12, "events"], [13, "events"], [14, "events"], [15, "events"], [16, "events"], [17, "events"], [18, "events"], [19, "events"], [20, "events"], [21, "events"], [22, "events"], [23, "events"], [24, "events"], [25, "events"], [26, "events"], [27, "events"], [28, "events"], [29, "events"], [30, "events"], [31, "events"], [32, "events"], [33, "events"], [34, "events"], [35, "events"], [36, "events"], [37, "events"], [38, "events"], [39, "events"], [40, "events"], [41, "events"], [42, "events"], [43, "events"], [44, "events"], [45, "events"], [46, "events"], [47, "events"], [48, "events"], [49, "events"], [50, "events"], [51, "events"], [52, "events"], [53, "events"], [54, "events"], [55, "events"]], "Animation": [[3, "animation"]], "Audits": [[4, "audits"]], "Autofill": [[5, "autofill"]], "BackgroundService": [[6, "backgroundservice"]], "BluetoothEmulation": [[7, "bluetoothemulation"]], "Browser": [[8, "browser"]], "CacheStorage": [[9, "cachestorage"]], "Cast": [[10, "cast"]], "Console": [[11, "console"]], "CSS": [[12, "css"]], "Database": [[13, "database"]], "Debugger": [[14, "debugger"]], "DeviceAccess": [[15, "deviceaccess"]], "DeviceOrientation": [[16, "deviceorientation"]], "DOM": [[17, "dom"]], "DOMDebugger": [[18, "domdebugger"]], "DOMSnapshot": [[19, "domsnapshot"]], "DOMStorage": [[20, "domstorage"]], "Emulation": [[21, "emulation"]], "EventBreakpoints": [[22, "eventbreakpoints"]], "Extensions": [[23, "extensions"]], "FedCm": [[24, "fedcm"]], "Fetch": [[25, "fetch"]], "FileSystem": [[26, "filesystem"]], "HeadlessExperimental": [[27, "headlessexperimental"]], "HeapProfiler": [[28, "heapprofiler"]], "IndexedDB": [[29, "indexeddb"]], "Input": [[30, "module-nodriver.cdp.input_"]], "Inspector": [[31, "inspector"]], "IO": [[32, "io"]], "LayerTree": [[33, "layertree"]], "Log": [[34, "log"]], "Media": [[35, "media"]], "Memory": [[36, "memory"]], "Network": [[37, "network"]], "Overlay": [[38, "overlay"]], "Page": [[39, "page"]], "Performance": [[40, "module-nodriver.cdp.performance"]], "PerformanceTimeline": [[41, "performancetimeline"]], "Preload": [[42, "preload"]], "Profiler": [[43, "module-nodriver.cdp.profiler"]], "PWA": [[44, "pwa"]], "Runtime": [[45, "runtime"]], "Schema": [[46, "schema"]], "Security": [[47, "security"]], "ServiceWorker": [[48, "serviceworker"]], "Storage": [[49, "storage"]], "SystemInfo": [[50, "systeminfo"]], "Target": [[51, "target"]], "Tethering": [[52, "tethering"]], "Tracing": [[53, "module-nodriver.cdp.tracing"]], "WebAudio": [[54, "webaudio"]], "WebAuthn": [[55, "webauthn"]], "Browser class": [[56, "browser-class"], [56, "id1"]], "cookies": [[56, "cookies"]], "Other classes and Helper classes": [[58, "other-classes-and-helper-classes"]], "Config class": [[58, "config-class"]], "ContraDict class": [[58, "contradict-class"]], "Helper functions": [[58, "module-nodriver.core._contradict"]], "Element class": [[57, "element-class"]], "Tab class": [[59, "tab-class"]], "Custom CDP commands": [[59, "custom-cdp-commands"]], "some useful, often needed and simply required methods": [[59, "some-useful-often-needed-and-simply-required-methods"]], "find() | find(text)": [[59, "find-find-text"]], "find() | find(text, best_match=True) or find(text, True)": [[59, "find-find-text-best-match-true-or-find-text-true"]], "select() | select(selector)": [[59, "select-select-selector"]], "select_all() | select_all(selector)": [[59, "select-all-select-all-selector"]], "await Tab": [[59, "await-tab"]], "Using other and custom CDP commands": [[59, "using-other-and-custom-cdp-commands"]], "send()": [[59, "send"]], "for docs click here": [[61, "for-docs-click-here"]], "what is new": [[61, "what-is-new"]], "Some examples of what the api looks like": [[61, "some-examples-of-what-the-api-looks-like"]]}, "indexentries": {"element (class in nodriver)": [[57, "nodriver.Element"]], "apply() (element method)": [[57, "nodriver.Element.apply"]], "assigned_slot (element property)": [[57, "nodriver.Element.assigned_slot"]], "attributes (element property)": [[57, "nodriver.Element.attributes"]], "attrs (element property)": [[57, "nodriver.Element.attrs"]], "backend_node_id (element property)": [[57, "nodriver.Element.backend_node_id"]], "base_url (element property)": [[57, "nodriver.Element.base_url"]], "child_node_count (element property)": [[57, "nodriver.Element.child_node_count"]], "children (element property)": [[57, "nodriver.Element.children"]], "clear_input() (element method)": [[57, "nodriver.Element.clear_input"]], "click() (element method)": [[57, "nodriver.Element.click"]], "compatibility_mode (element property)": [[57, "nodriver.Element.compatibility_mode"]], "content_document (element property)": [[57, "nodriver.Element.content_document"]], "distributed_nodes (element property)": [[57, "nodriver.Element.distributed_nodes"]], "document_url (element property)": [[57, "nodriver.Element.document_url"]], "flash() (element method)": [[57, "nodriver.Element.flash"]], "focus() (element method)": [[57, "nodriver.Element.focus"]], "frame_id (element property)": [[57, "nodriver.Element.frame_id"]], "get_html() (element method)": [[57, "nodriver.Element.get_html"]], "get_js_attributes() (element method)": [[57, "nodriver.Element.get_js_attributes"]], "get_position() (element method)": [[57, "nodriver.Element.get_position"]], "highlight_overlay() (element method)": [[57, "nodriver.Element.highlight_overlay"]], "imported_document (element property)": [[57, "nodriver.Element.imported_document"]], "internal_subset (element property)": [[57, "nodriver.Element.internal_subset"]], "is_recording() (element method)": [[57, "nodriver.Element.is_recording"]], "is_svg (element property)": [[57, "nodriver.Element.is_svg"]], "local_name (element property)": [[57, "nodriver.Element.local_name"]], "mouse_click() (element method)": [[57, "nodriver.Element.mouse_click"]], "mouse_drag() (element method)": [[57, "nodriver.Element.mouse_drag"]], "mouse_move() (element method)": [[57, "nodriver.Element.mouse_move"]], "node (element property)": [[57, "nodriver.Element.node"]], "node_id (element property)": [[57, "nodriver.Element.node_id"]], "node_name (element property)": [[57, "nodriver.Element.node_name"]], "node_type (element property)": [[57, "nodriver.Element.node_type"]], "node_value (element property)": [[57, "nodriver.Element.node_value"]], "object_id (element property)": [[57, "nodriver.Element.object_id"]], "parent (element property)": [[57, "nodriver.Element.parent"]], "parent_id (element property)": [[57, "nodriver.Element.parent_id"]], "pseudo_elements (element property)": [[57, "nodriver.Element.pseudo_elements"]], "pseudo_identifier (element property)": [[57, "nodriver.Element.pseudo_identifier"]], "pseudo_type (element property)": [[57, "nodriver.Element.pseudo_type"]], "public_id (element property)": [[57, "nodriver.Element.public_id"]], "query_selector() (element method)": [[57, "nodriver.Element.query_selector"]], "query_selector_all() (element method)": [[57, "nodriver.Element.query_selector_all"]], "record_video() (element method)": [[57, "nodriver.Element.record_video"]], "remote_object (element property)": [[57, "nodriver.Element.remote_object"]], "remove_from_dom() (element method)": [[57, "nodriver.Element.remove_from_dom"]], "save_screenshot() (element method)": [[57, "nodriver.Element.save_screenshot"]], "save_to_dom() (element method)": [[57, "nodriver.Element.save_to_dom"]], "scroll_into_view() (element method)": [[57, "nodriver.Element.scroll_into_view"]], "select_option() (element method)": [[57, "nodriver.Element.select_option"]], "send_file() (element method)": [[57, "nodriver.Element.send_file"]], "send_keys() (element method)": [[57, "nodriver.Element.send_keys"]], "set_text() (element method)": [[57, "nodriver.Element.set_text"]], "set_value() (element method)": [[57, "nodriver.Element.set_value"]], "shadow_children (element property)": [[57, "nodriver.Element.shadow_children"]], "shadow_root_type (element property)": [[57, "nodriver.Element.shadow_root_type"]], "shadow_roots (element property)": [[57, "nodriver.Element.shadow_roots"]], "system_id (element property)": [[57, "nodriver.Element.system_id"]], "tab (element property)": [[57, "nodriver.Element.tab"]], "tag (element property)": [[57, "nodriver.Element.tag"]], "tag_name (element property)": [[57, "nodriver.Element.tag_name"]], "template_content (element property)": [[57, "nodriver.Element.template_content"]], "text (element property)": [[57, "nodriver.Element.text"]], "text_all (element property)": [[57, "nodriver.Element.text_all"]], "tree (element property)": [[57, "nodriver.Element.tree"]], "update() (element method)": [[57, "nodriver.Element.update"]], "value (element property)": [[57, "nodriver.Element.value"]], "xml_version (element property)": [[57, "nodriver.Element.xml_version"]], "tab (class in nodriver)": [[59, "nodriver.Tab"]], "aclose() (tab method)": [[59, "nodriver.Tab.aclose"]], "activate() (tab method)": [[59, "nodriver.Tab.activate"]], "add_handler() (tab method)": [[59, "nodriver.Tab.add_handler"]], "aopen() (tab method)": [[59, "nodriver.Tab.aopen"]], "attached (tab attribute)": [[59, "nodriver.Tab.attached"]], "back() (tab method)": [[59, "nodriver.Tab.back"]], "bring_to_front() (tab method)": [[59, "nodriver.Tab.bring_to_front"]], "browser (tab attribute)": [[59, "nodriver.Tab.browser"]], "close() (tab method)": [[59, "nodriver.Tab.close"]], "closed (tab property)": [[59, "nodriver.Tab.closed"]], "download_file() (tab method)": [[59, "nodriver.Tab.download_file"]], "evaluate() (tab method)": [[59, "nodriver.Tab.evaluate"]], "feed_cdp() (tab method)": [[59, "nodriver.Tab.feed_cdp"]], "find() (tab method)": [[59, "nodriver.Tab.find"]], "find_all() (tab method)": [[59, "nodriver.Tab.find_all"]], "find_element_by_text() (tab method)": [[59, "nodriver.Tab.find_element_by_text"]], "find_elements_by_text() (tab method)": [[59, "nodriver.Tab.find_elements_by_text"]], "forward() (tab method)": [[59, "nodriver.Tab.forward"]], "fullscreen() (tab method)": [[59, "nodriver.Tab.fullscreen"]], "get() (tab method)": [[59, "nodriver.Tab.get"]], "get_all_linked_sources() (tab method)": [[59, "nodriver.Tab.get_all_linked_sources"]], "get_all_urls() (tab method)": [[59, "nodriver.Tab.get_all_urls"]], "get_content() (tab method)": [[59, "nodriver.Tab.get_content"]], "get_local_storage() (tab method)": [[59, "nodriver.Tab.get_local_storage"]], "get_window() (tab method)": [[59, "nodriver.Tab.get_window"]], "inspector_open() (tab method)": [[59, "nodriver.Tab.inspector_open"]], "inspector_url (tab property)": [[59, "nodriver.Tab.inspector_url"]], "js_dumps() (tab method)": [[59, "nodriver.Tab.js_dumps"]], "maximize() (tab method)": [[59, "nodriver.Tab.maximize"]], "medimize() (tab method)": [[59, "nodriver.Tab.medimize"]], "minimize() (tab method)": [[59, "nodriver.Tab.minimize"]], "open_external_inspector() (tab method)": [[59, "nodriver.Tab.open_external_inspector"]], "query_selector() (tab method)": [[59, "nodriver.Tab.query_selector"]], "query_selector_all() (tab method)": [[59, "nodriver.Tab.query_selector_all"]], "reload() (tab method)": [[59, "nodriver.Tab.reload"]], "save_screenshot() (tab method)": [[59, "nodriver.Tab.save_screenshot"]], "scroll_down() (tab method)": [[59, "nodriver.Tab.scroll_down"]], "scroll_up() (tab method)": [[59, "nodriver.Tab.scroll_up"]], "select() (tab method)": [[59, "nodriver.Tab.select"]], "select_all() (tab method)": [[59, "nodriver.Tab.select_all"]], "send() (tab method)": [[59, "nodriver.Tab.send"]], "set_download_path() (tab method)": [[59, "nodriver.Tab.set_download_path"]], "set_local_storage() (tab method)": [[59, "nodriver.Tab.set_local_storage"]], "set_window_size() (tab method)": [[59, "nodriver.Tab.set_window_size"]], "set_window_state() (tab method)": [[59, "nodriver.Tab.set_window_state"]], "sleep() (tab method)": [[59, "nodriver.Tab.sleep"]], "target (tab property)": [[59, "nodriver.Tab.target"]], "update_target() (tab method)": [[59, "nodriver.Tab.update_target"]], "verify_cf() (tab method)": [[59, "nodriver.Tab.verify_cf"]], "wait() (tab method)": [[59, "nodriver.Tab.wait"]], "wait_for() (tab method)": [[59, "nodriver.Tab.wait_for"]], "websocket (tab attribute)": [[59, "nodriver.Tab.websocket"]]}})
\ No newline at end of file
diff --git a/docs/_build/markdown/readme.md b/docs/_build/markdown/readme.md
index 4d09b71..704f511 100644
--- a/docs/_build/markdown/readme.md
+++ b/docs/_build/markdown/readme.md
@@ -1,6 +1,6 @@
# NODRIVER
-## [CLICK HERE FOR DOCS](https://ultrafunkamsterdam.github.io/nodriver/)
+## for docs click [here](https://ultrafunkamsterdam.github.io/nodriver)
**This package provides next level webscraping and browser automation
using a relatively simple interface.**
@@ -42,37 +42,48 @@ to fully customizable everything using the entire array of
to a nodriver.Browser instance and contintue from there
* packed with helpers and utility methods for most used and important operations
-
+lets you inspect the tab without breaking your connection
-#### Installation
+**tab.get_local_storage()**
-Since it’s a part of undetected-chromedriver, installation goes via
+get localstorage content
-```default
-pip install undetected-chromedriver
-```
+**tab.set_local_storage(dict)**
+
+set localstorage content
+
+**tab.add_handler(someEvent, callback)**
+
+callback may accept a single argument (event), or 2 arguments (event, tab).
+
+**start(expert=True)**
+
+does some hacking for more experienced users. It disables web security and origin-trials, as well as ensures shadow-roots are always open.
+
+### Some examples of what the api looks like
----
+> * ``elem.text``
+> * ``elem.text_all``
+> * ``elem.parent.parent.parent.attrs``
+> * ``anchor_elem.href and anchor_elem['href']``
+> * ``anchor_elem.href = 'someotherthing'; await anchor_elem.save()``
+> * ``elem.children[-1].children[0].children[4].parent.parent``
+> * ``await html5video_element.record_video()``
+> * ``await html5video_element('pause')``
+> * ``await html5video_element.apply('''(el) => el.currentTime = 0''')``
+> * ``tab = await browser.get(url, new_tab=True)``
+> * ``tab_win = await browser.get(url, new_window=True)``
+> * ``first = await tab.find('search text')``
+> * ``best = await tab.find('search text', best_match=True)``
+> * ``all_results = await tab.find_all('search text')``
+> * ``first_submit_button = await tab.select(selector='button[type=submit]')``
+> * ``inputs_in_form = await tab.select_all('form input')``
-In case you don’t want undetected-chromedriver, this package can be installed
-using
+### Installation
```default
pip install nodriver
@@ -80,7 +91,7 @@ pip install nodriver
-#### usage example
+### usage example
The aim of this project (just like undetected-chromedriver, somewhere long ago)
is to keep it short and simple, so you can quickly open an editor or interactive session,
diff --git a/docs/nodriver/cdp/bluetooth_emulation.rst b/docs/nodriver/cdp/bluetooth_emulation.rst
new file mode 100644
index 0000000..cd0dcb6
--- /dev/null
+++ b/docs/nodriver/cdp/bluetooth_emulation.rst
@@ -0,0 +1,66 @@
+BluetoothEmulation
+==================
+
+This domain allows configuring virtual Bluetooth devices to test
+the web-bluetooth API.
+
+*This CDP domain is experimental.*
+
+.. module:: nodriver.cdp.bluetooth_emulation
+
+* Types_
+* Commands_
+* Events_
+
+Types
+-----
+
+Generally, you do not need to instantiate CDP types
+yourself. Instead, the API creates objects for you as return
+values from commands, and then you can use those objects as
+arguments to other commands.
+
+.. autoclass:: CentralState
+ :members:
+ :undoc-members:
+ :exclude-members: from_json, to_json
+
+.. autoclass:: ManufacturerData
+ :members:
+ :undoc-members:
+ :exclude-members: from_json, to_json
+
+.. autoclass:: ScanRecord
+ :members:
+ :undoc-members:
+ :exclude-members: from_json, to_json
+
+.. autoclass:: ScanEntry
+ :members:
+ :undoc-members:
+ :exclude-members: from_json, to_json
+
+Commands
+--------
+
+Each command is a generator function. The return
+type ``Generator[x, y, z]`` indicates that the generator
+*yields* arguments of type ``x``, it must be resumed with
+an argument of type ``y``, and it returns type ``z``. In
+this library, types ``x`` and ``y`` are the same for all
+commands, and ``z`` is the return type you should pay attention
+to. For more information, see
+:ref:`Getting Started: Commands `.
+
+.. autofunction:: disable
+
+.. autofunction:: enable
+
+.. autofunction:: simulate_advertisement
+
+.. autofunction:: simulate_preconnected_peripheral
+
+Events
+------
+
+*There are no events in this module.*
diff --git a/docs/nodriver/cdp/css.rst b/docs/nodriver/cdp/css.rst
index 4da17a8..1494caa 100644
--- a/docs/nodriver/cdp/css.rst
+++ b/docs/nodriver/cdp/css.rst
@@ -149,6 +149,11 @@ arguments to other commands.
:undoc-members:
:exclude-members: from_json, to_json
+.. autoclass:: CSSStartingStyle
+ :members:
+ :undoc-members:
+ :exclude-members: from_json, to_json
+
.. autoclass:: CSSLayerData
:members:
:undoc-members:
@@ -174,11 +179,6 @@ arguments to other commands.
:undoc-members:
:exclude-members: from_json, to_json
-.. autoclass:: CSSPositionFallbackRule
- :members:
- :undoc-members:
- :exclude-members: from_json, to_json
-
.. autoclass:: CSSPositionTryRule
:members:
:undoc-members:
@@ -288,6 +288,8 @@ to. For more information, see
.. autofunction:: track_computed_style_updates
+.. autofunction:: track_computed_style_updates_for_node
+
Events
------
@@ -319,3 +321,8 @@ you use the event's attributes.
:members:
:undoc-members:
:exclude-members: from_json, to_json
+
+.. autoclass:: ComputedStyleUpdated
+ :members:
+ :undoc-members:
+ :exclude-members: from_json, to_json
diff --git a/docs/nodriver/cdp/debugger.rst b/docs/nodriver/cdp/debugger.rst
index c66e9a0..83ec8c9 100644
--- a/docs/nodriver/cdp/debugger.rst
+++ b/docs/nodriver/cdp/debugger.rst
@@ -124,6 +124,8 @@ to. For more information, see
.. autofunction:: set_async_call_stack_depth
+.. autofunction:: set_blackbox_execution_contexts
+
.. autofunction:: set_blackbox_patterns
.. autofunction:: set_blackboxed_ranges
diff --git a/docs/nodriver/cdp/dom.rst b/docs/nodriver/cdp/dom.rst
index c5c468e..cd65501 100644
--- a/docs/nodriver/cdp/dom.rst
+++ b/docs/nodriver/cdp/dom.rst
@@ -73,6 +73,11 @@ arguments to other commands.
:undoc-members:
:exclude-members: from_json, to_json
+.. autoclass:: DetachedElementInfo
+ :members:
+ :undoc-members:
+ :exclude-members: from_json, to_json
+
.. autoclass:: RGBA
:members:
:undoc-members:
@@ -139,6 +144,8 @@ to. For more information, see
.. autofunction:: get_content_quads
+.. autofunction:: get_detached_dom_nodes
+
.. autofunction:: get_document
.. autofunction:: get_element_by_relation
@@ -279,6 +286,11 @@ you use the event's attributes.
:undoc-members:
:exclude-members: from_json, to_json
+.. autoclass:: ScrollableFlagUpdated
+ :members:
+ :undoc-members:
+ :exclude-members: from_json, to_json
+
.. autoclass:: PseudoElementRemoved
:members:
:undoc-members:
diff --git a/docs/nodriver/cdp/emulation.rst b/docs/nodriver/cdp/emulation.rst
index 868eaa2..0cf0fc8 100644
--- a/docs/nodriver/cdp/emulation.rst
+++ b/docs/nodriver/cdp/emulation.rst
@@ -82,6 +82,21 @@ arguments to other commands.
:undoc-members:
:exclude-members: from_json, to_json
+.. autoclass:: PressureSource
+ :members:
+ :undoc-members:
+ :exclude-members: from_json, to_json
+
+.. autoclass:: PressureState
+ :members:
+ :undoc-members:
+ :exclude-members: from_json, to_json
+
+.. autoclass:: PressureMetadata
+ :members:
+ :undoc-members:
+ :exclude-members: from_json, to_json
+
.. autoclass:: DisabledImageType
:members:
:undoc-members:
@@ -149,6 +164,10 @@ to. For more information, see
.. autofunction:: set_page_scale_factor
+.. autofunction:: set_pressure_source_override_enabled
+
+.. autofunction:: set_pressure_state_override
+
.. autofunction:: set_script_execution_disabled
.. autofunction:: set_scrollbars_hidden
diff --git a/docs/nodriver/cdp/extensions.rst b/docs/nodriver/cdp/extensions.rst
index 6c1011e..e6d488a 100644
--- a/docs/nodriver/cdp/extensions.rst
+++ b/docs/nodriver/cdp/extensions.rst
@@ -1,9 +1,7 @@
Extensions
==========
-Defines commands and events for browser extensions. Available if the client
-is connected using the --remote-debugging-pipe flag and
-the --enable-unsafe-extension-debugging flag is set.
+Defines commands and events for browser extensions.
*This CDP domain is experimental.*
@@ -16,7 +14,15 @@ the --enable-unsafe-extension-debugging flag is set.
Types
-----
-*There are no types in this module.*
+Generally, you do not need to instantiate CDP types
+yourself. Instead, the API creates objects for you as return
+values from commands, and then you can use those objects as
+arguments to other commands.
+
+.. autoclass:: StorageArea
+ :members:
+ :undoc-members:
+ :exclude-members: from_json, to_json
Commands
--------
@@ -30,8 +36,16 @@ commands, and ``z`` is the return type you should pay attention
to. For more information, see
:ref:`Getting Started: Commands `.
+.. autofunction:: clear_storage_items
+
+.. autofunction:: get_storage_items
+
.. autofunction:: load_unpacked
+.. autofunction:: remove_storage_items
+
+.. autofunction:: set_storage_items
+
Events
------
diff --git a/docs/nodriver/cdp/file_system.rst b/docs/nodriver/cdp/file_system.rst
new file mode 100644
index 0000000..f098ebc
--- /dev/null
+++ b/docs/nodriver/cdp/file_system.rst
@@ -0,0 +1,52 @@
+FileSystem
+==========
+
+*This CDP domain is experimental.*
+
+.. module:: nodriver.cdp.file_system
+
+* Types_
+* Commands_
+* Events_
+
+Types
+-----
+
+Generally, you do not need to instantiate CDP types
+yourself. Instead, the API creates objects for you as return
+values from commands, and then you can use those objects as
+arguments to other commands.
+
+.. autoclass:: File
+ :members:
+ :undoc-members:
+ :exclude-members: from_json, to_json
+
+.. autoclass:: Directory
+ :members:
+ :undoc-members:
+ :exclude-members: from_json, to_json
+
+.. autoclass:: BucketFileSystemLocator
+ :members:
+ :undoc-members:
+ :exclude-members: from_json, to_json
+
+Commands
+--------
+
+Each command is a generator function. The return
+type ``Generator[x, y, z]`` indicates that the generator
+*yields* arguments of type ``x``, it must be resumed with
+an argument of type ``y``, and it returns type ``z``. In
+this library, types ``x`` and ``y`` are the same for all
+commands, and ``z`` is the return type you should pay attention
+to. For more information, see
+:ref:`Getting Started: Commands `.
+
+.. autofunction:: get_directory
+
+Events
+------
+
+*There are no events in this module.*
diff --git a/docs/nodriver/cdp/memory.rst b/docs/nodriver/cdp/memory.rst
index cb21e6c..3242124 100644
--- a/docs/nodriver/cdp/memory.rst
+++ b/docs/nodriver/cdp/memory.rst
@@ -37,6 +37,11 @@ arguments to other commands.
:undoc-members:
:exclude-members: from_json, to_json
+.. autoclass:: DOMCounter
+ :members:
+ :undoc-members:
+ :exclude-members: from_json, to_json
+
Commands
--------
@@ -57,6 +62,8 @@ to. For more information, see
.. autofunction:: get_dom_counters
+.. autofunction:: get_dom_counters_for_leak_detection
+
.. autofunction:: get_sampling_profile
.. autofunction:: prepare_for_leak_detection
diff --git a/docs/nodriver/cdp/page.rst b/docs/nodriver/cdp/page.rst
index 9662191..58af514 100644
--- a/docs/nodriver/cdp/page.rst
+++ b/docs/nodriver/cdp/page.rst
@@ -476,6 +476,11 @@ you use the event's attributes.
:undoc-members:
:exclude-members: from_json, to_json
+.. autoclass:: FrameSubtreeWillBeDetached
+ :members:
+ :undoc-members:
+ :exclude-members: from_json, to_json
+
.. autoclass:: FrameNavigated
:members:
:undoc-members:
diff --git a/docs/nodriver/cdp/storage.rst b/docs/nodriver/cdp/storage.rst
index 6da7f90..e3fd54b 100644
--- a/docs/nodriver/cdp/storage.rst
+++ b/docs/nodriver/cdp/storage.rst
@@ -157,6 +157,21 @@ arguments to other commands.
:undoc-members:
:exclude-members: from_json, to_json
+.. autoclass:: AttributionReportingAggregatableDebugReportingData
+ :members:
+ :undoc-members:
+ :exclude-members: from_json, to_json
+
+.. autoclass:: AttributionReportingAggregatableDebugReportingConfig
+ :members:
+ :undoc-members:
+ :exclude-members: from_json, to_json
+
+.. autoclass:: AttributionScopesData
+ :members:
+ :undoc-members:
+ :exclude-members: from_json, to_json
+
.. autoclass:: AttributionReportingSourceRegistration
:members:
:undoc-members:
diff --git a/docs/nodriver/cdp/web_authn.rst b/docs/nodriver/cdp/web_authn.rst
index b5df442..9753b1e 100644
--- a/docs/nodriver/cdp/web_authn.rst
+++ b/docs/nodriver/cdp/web_authn.rst
@@ -100,6 +100,16 @@ you use the event's attributes.
:undoc-members:
:exclude-members: from_json, to_json
+.. autoclass:: CredentialDeleted
+ :members:
+ :undoc-members:
+ :exclude-members: from_json, to_json
+
+.. autoclass:: CredentialUpdated
+ :members:
+ :undoc-members:
+ :exclude-members: from_json, to_json
+
.. autoclass:: CredentialAsserted
:members:
:undoc-members:
diff --git a/docs/readme.rst b/docs/readme.rst
index 39cc8ad..a879641 100644
--- a/docs/readme.rst
+++ b/docs/readme.rst
@@ -4,8 +4,11 @@
NODRIVER
##################
-`CLICK HERE FOR DOCS `_
-____
+**************
+for docs click `here`_
+**************
+
+.. _here: https://ultrafunkamsterdam.github.io/nodriver
**This package provides next level webscraping and browser automation
using a relatively simple interface.**
@@ -31,7 +34,7 @@ to fully customizable everything using the entire array of
Some features
-^^^^^^^^^^^^^^^^^^^^^^
+=============
* A blazing fast undetected chrome (-ish) automation library
@@ -58,7 +61,32 @@ Some features
* packed with helpers and utility methods for most used and important operations
+what is new
+=============
+**tab.open_external_debugger()**
+
+lets you inspect the tab without breaking your connection
+
+**tab.get_local_storage()**
+
+get localstorage content
+
+**tab.set_local_storage(dict)**
+
+set localstorage content
+
+**tab.add_handler(someEvent, callback)**
+
+callback may accept a single argument (event), or 2 arguments (event, tab).
+
+**start(expert=True)**
+
+does some hacking for more experienced users. It disables web security and origin-trials, as well as ensures shadow-roots are always open.
+
+Some examples of what the api looks like
+=============
..
+
* ```elem.text```
* ```elem.text_all```
@@ -82,16 +110,6 @@ Some features
Installation
=============
-Since it's a part of undetected-chromedriver, installation goes via
-
-.. code-block::
-
- pip install undetected-chromedriver
-
---------
-
-In case you don't want undetected-chromedriver, this package can be installed
-using
.. code-block::
diff --git a/example/blocking_resource_url.py b/example/blocking_resource_url.py
deleted file mode 100644
index e69de29..0000000
diff --git a/nodriver/core/element.py b/nodriver/core/element.py
index 249aa1e..211d769 100644
--- a/nodriver/core/element.py
+++ b/nodriver/core/element.py
@@ -510,12 +510,12 @@ async def get_position(self, abs=False) -> Position:
)
async def mouse_click(
- self,
- button: str = "left",
- buttons: typing.Optional[int] = 1,
- modifiers: typing.Optional[int] = 0,
- hold: bool = False,
- _until_event: typing.Optional[type] = None,
+ self,
+ button: str = "left",
+ buttons: typing.Optional[int] = 1,
+ modifiers: typing.Optional[int] = 0,
+ hold: bool = False,
+ _until_event: typing.Optional[type] = None,
):
"""native click (on element) . note: this likely does not work atm, use click() instead
@@ -586,10 +586,10 @@ async def mouse_move(self):
)
async def mouse_drag(
- self,
- destination: typing.Union[Element, typing.Tuple[int, int]],
- relative: bool = False,
- steps: int = 1,
+ self,
+ destination: typing.Union[Element, typing.Tuple[int, int]],
+ relative: bool = False,
+ steps: int = 1,
):
"""
drag an element to another element or target coordinates. dragging of elements should be supported by the site of course
@@ -817,10 +817,10 @@ async def query_selector(self, selector):
#
async def save_screenshot(
- self,
- filename: typing.Optional[PathLike] = "auto",
- format: typing.Optional[str] = "jpeg",
- scale: typing.Optional[typing.Union[int, float]] = 1,
+ self,
+ filename: typing.Optional[PathLike] = "auto",
+ format: typing.Optional[str] = "jpeg",
+ scale: typing.Optional[typing.Union[int, float]] = 1,
):
"""
Saves a screenshot of this element (only)
@@ -997,10 +997,10 @@ async def highlight_overlay(self):
setattr(self, "_is_highlighted", 1)
async def record_video(
- self,
- filename: typing.Optional[str] = None,
- folder: typing.Optional[str] = None,
- duration: typing.Optional[typing.Union[int, float]] = None,
+ self,
+ filename: typing.Optional[str] = None,
+ folder: typing.Optional[str] = None,
+ duration: typing.Optional[typing.Union[int, float]] = None,
):
"""
experimental option.
diff --git a/nodriver/core/tab.py b/nodriver/core/tab.py
index 9bfb395..befb0b9 100644
--- a/nodriver/core/tab.py
+++ b/nodriver/core/tab.py
@@ -121,11 +121,11 @@ class Tab(Connection):
_download_behavior: List[str] = None
def __init__(
- self,
- websocket_url: str,
- target: cdp.target.TargetInfo,
- browser: Optional["nodriver.Browser"] = None,
- **kwargs,
+ self,
+ websocket_url: str,
+ target: cdp.target.TargetInfo,
+ browser: Optional["nodriver.Browser"] = None,
+ **kwargs,
):
super().__init__(websocket_url, target, browser, **kwargs)
self.browser = browser
@@ -157,11 +157,11 @@ async def open_external_inspector(self):
webbrowser.open(self.inspector_url)
async def find(
- self,
- text: str,
- best_match: bool = True,
- return_enclosing_element=True,
- timeout: Union[int, float] = 10,
+ self,
+ text: str,
+ best_match: bool = True,
+ return_enclosing_element=True,
+ timeout: Union[int, float] = 10,
):
"""
find single element by text
@@ -216,9 +216,9 @@ async def find(
return item
async def select(
- self,
- selector: str,
- timeout: Union[int, float] = 10,
+ self,
+ selector: str,
+ timeout: Union[int, float] = 10,
) -> nodriver.Element:
"""
find single element by css selector.
@@ -248,9 +248,9 @@ async def select(
return item
async def find_all(
- self,
- text: str,
- timeout: Union[int, float] = 10,
+ self,
+ text: str,
+ timeout: Union[int, float] = 10,
) -> List[nodriver.Element]:
"""
find multiple elements by text
@@ -279,7 +279,7 @@ async def find_all(
return items
async def select_all(
- self, selector: str, timeout: Union[int, float] = 10, include_frames=False
+ self, selector: str, timeout: Union[int, float] = 10, include_frames=False
) -> List[nodriver.Element]:
"""
find multiple elements by css selector.
@@ -316,7 +316,7 @@ async def select_all(
return items
async def get(
- self, url="chrome://welcome", new_tab: bool = False, new_window: bool = False
+ self, url="chrome://welcome", new_tab: bool = False, new_window: bool = False
):
"""top level get. utilizes the first tab to retrieve given url.
@@ -344,9 +344,9 @@ async def get(
return self
async def query_selector_all(
- self,
- selector: str,
- _node: Optional[Union[cdp.dom.Node, "element.Element"]] = None,
+ self,
+ selector: str,
+ _node: Optional[Union[cdp.dom.Node, "element.Element"]] = None,
):
"""
equivalent of javascripts document.querySelectorAll.
@@ -407,9 +407,9 @@ async def query_selector_all(
return items
async def query_selector(
- self,
- selector: str,
- _node: Optional[Union[cdp.dom.Node, element.Element]] = None,
+ self,
+ selector: str,
+ _node: Optional[Union[cdp.dom.Node, element.Element]] = None,
):
"""
find single element based on css selector string
@@ -456,9 +456,9 @@ async def query_selector(
return element.create(node, self, doc)
async def find_elements_by_text(
- self,
- text: str,
- tag_hint: Optional[str] = None,
+ self,
+ text: str,
+ tag_hint: Optional[str] = None,
) -> List[element.Element]:
"""
returns element which match the given text.
@@ -527,7 +527,7 @@ async def find_elements_by_text(
iframe_text_nodes = util.filter_recurse_all(
iframe_elem,
lambda node: node.node_type == 3 # noqa
- and text.lower() in node.node_value.lower(),
+ and text.lower() in node.node_value.lower(),
)
if iframe_text_nodes:
iframe_text_elems = [
@@ -541,10 +541,10 @@ async def find_elements_by_text(
return items or []
async def find_element_by_text(
- self,
- text: str,
- best_match: Optional[bool] = False,
- return_enclosing_element: Optional[bool] = True,
+ self,
+ text: str,
+ best_match: Optional[bool] = False,
+ return_enclosing_element: Optional[bool] = True,
) -> Union[element.Element, None]:
"""
finds and returns the first element containing , or best match
@@ -607,7 +607,7 @@ async def find_element_by_text(
iframe_text_nodes = util.filter_recurse_all(
iframe_elem,
lambda node: node.node_type == 3 # noqa
- and text.lower() in node.node_value.lower(),
+ and text.lower() in node.node_value.lower(),
)
if iframe_text_nodes:
iframe_text_elems = [
@@ -647,9 +647,9 @@ async def forward(self):
await self.send(cdp.runtime.evaluate("window.history.forward()"))
async def reload(
- self,
- ignore_cache: Optional[bool] = True,
- script_to_evaluate_on_load: Optional[str] = None,
+ self,
+ ignore_cache: Optional[bool] = True,
+ script_to_evaluate_on_load: Optional[str] = None,
):
"""
Reloads the page
@@ -669,7 +669,7 @@ async def reload(
)
async def evaluate(
- self, expression: str, await_promise=False, return_by_value=True
+ self, expression: str, await_promise=False, return_by_value=True
):
remote_object, errors = await self.send(
cdp.runtime.evaluate(
@@ -692,7 +692,7 @@ async def evaluate(
return remote_object, errors
async def js_dumps(
- self, obj_name: str, return_by_value: Optional[bool] = True
+ self, obj_name: str, return_by_value: Optional[bool] = True
) -> typing.Union[
typing.Dict,
typing.Tuple[cdp.runtime.RemoteObject, cdp.runtime.ExceptionDetails],
@@ -734,7 +734,7 @@ async def js_dumps(
'
"""
js_code_a = (
- """
+ """
function ___dump(obj, _d = 0) {
let _typesA = ['object', 'function'];
let _typesB = ['number', 'string', 'boolean'];
@@ -807,10 +807,10 @@ async def js_dumps(
}
___dumpY( %s )
"""
- % obj_name
+ % obj_name
)
js_code_b = (
- """
+ """
((obj, visited = new WeakSet()) => {
if (visited.has(obj)) {
return {}
@@ -836,7 +836,7 @@ async def js_dumps(
return result;
})(%s)
"""
- % obj_name
+ % obj_name
)
# we're purposely not calling self.evaluate here to prevent infinite loop on certain expressions
@@ -951,7 +951,7 @@ async def bring_to_front(self):
await self.activate()
async def set_window_state(
- self, left=0, top=0, width=1280, height=720, state="normal"
+ self, left=0, top=0, width=1280, height=720, state="normal"
):
"""
sets the window size or state.
@@ -1065,10 +1065,10 @@ async def scroll_up(self, amount=25):
)
async def wait_for(
- self,
- selector: Optional[str] = "",
- text: Optional[str] = "",
- timeout: Optional[Union[int, float]] = 10,
+ self,
+ selector: Optional[str] = "",
+ text: Optional[str] = "",
+ timeout: Optional[Union[int, float]] = 10,
) -> element.Element:
"""
variant on query_selector_all and find_elements_by_text
@@ -1172,10 +1172,10 @@ async def download_file(self, url: str, filename: Optional[PathLike] = None):
)
async def save_screenshot(
- self,
- filename: Optional[PathLike] = "auto",
- format: Optional[str] = "jpeg",
- full_page: Optional[bool] = False,
+ self,
+ filename: Optional[PathLike] = "auto",
+ format: Optional[str] = "jpeg",
+ full_page: Optional[bool] = False,
) -> str:
"""
Saves a screenshot of the page.
@@ -1357,10 +1357,10 @@ async def set_local_storage(self, items: dict):
)
def __call__(
- self,
- text: Optional[str] = "",
- selector: Optional[str] = "",
- timeout: Optional[Union[int, float]] = 10,
+ self,
+ text: Optional[str] = "",
+ selector: Optional[str] = "",
+ timeout: Optional[Union[int, float]] = 10,
):
"""
alias to query_selector_all or find_elements_by_text, depending
@@ -1417,8 +1417,12 @@ async def get_cf_label(tab: Tab):
# return elem
# else:
# return elems
- return await tab.evaluate("""
- [...document.querySelectorAll('*')].filter( e => e.shadowRoot)?.[0].shadowRoot.children[0].contentDocument.children[0].children[1].shadowRoot.children[1].children[0].querySelector('label')""", return_by_value=False)
+ return await tab.evaluate(
+ """
+ [...document.querySelectorAll('*')].filter( e => e.shadowRoot)?.[0].shadowRoot.children[0].contentDocument.children[0].children[1].shadowRoot.children[1].children[0].querySelector('label')""",
+ return_by_value=False,
+ )
+
async def click_cf_label(tab: Tab):
obj, _ = await get_cf_label(tab)
@@ -1433,4 +1437,4 @@ async def click_cf_label(tab: Tab):
user_gesture=True,
return_by_value=True,
)
- )
\ No newline at end of file
+ )
diff --git a/pyproject.toml b/pyproject.toml
index 89bb437..d3fe2cb 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,7 +1,7 @@
[project]
name = "nodriver" # Required
-version = "0.37" # Required
+version = "0.38" # Required
description = """