diff --git a/docs/_build/html/_modules/index.html b/docs/_build/html/_modules/index.html index c83fd8f..9c71737 100644 --- a/docs/_build/html/_modules/index.html +++ b/docs/_build/html/_modules/index.html @@ -317,6 +317,7 @@

All modules for which code is available

  • nodriver.core._contradict
  • nodriver.core.browser
  • nodriver.core.config
  • +
  • nodriver.core.connection
  • nodriver.core.element
  • nodriver.core.tab
  • diff --git a/docs/_build/html/_modules/nodriver/core/tab.html b/docs/_build/html/_modules/nodriver/core/tab.html index 8bd805c..2808fe6 100644 --- a/docs/_build/html/_modules/nodriver/core/tab.html +++ b/docs/_build/html/_modules/nodriver/core/tab.html @@ -1676,6 +1676,62 @@

    Source code for nodriver.core.tab

             await checkbox.mouse_click()
    +
    +[docs] + async def get_local_storage(self): + """ + get local storage items as dict of strings (careful!, proper deserialization needs to be done if needed) + + :return: + :rtype: + """ + if not self.target.url: + await self + + # there must be a better way... + origin = "/".join(self.url.split('/', 3)[:-1]) + + items = await self.send( + cdp.dom_storage.get_dom_storage_items( + cdp.dom_storage.StorageId( + is_local_storage=True, + security_origin=origin)) + ) + retval = {} + for item in items: + retval[item[0]] = item[1] + return retval
    + + +
    +[docs] + async def set_local_storage(self, items: dict): + """ + set local storage. + dict items must be strings. simple types will be converted to strings automatically. + + :param items: dict containing {key:str, value:str} + :type items: dict[str,str] + :return: + :rtype: + """ + if not self.target.url: + await self + # there must be a better way... + origin = "/".join(self.url.split('/', 3)[:-1]) + + await asyncio.gather(*[self.send( + cdp.dom_storage.set_dom_storage_item( + storage_id=cdp.dom_storage.StorageId( + is_local_storage=True, + security_origin=origin + ), + key=str(key), + value=str(val), + ) + ) for key, val in items.items()])
    + + def __call__( self, text: Optional[str] = "", diff --git a/docs/_build/html/genindex.html b/docs/_build/html/genindex.html index f84635c..2966534 100644 --- a/docs/_build/html/genindex.html +++ b/docs/_build/html/genindex.html @@ -3936,6 +3936,8 @@

    G

  • get_layers_for_node() (in module nodriver.cdp.css)
  • get_layout_metrics() (in module nodriver.cdp.page) +
  • +
  • get_local_storage() (Tab method)
  • get_location_for_selector() (in module nodriver.cdp.css)
  • @@ -9124,6 +9126,8 @@

    S

  • set_lifecycle_events_enabled() (in module nodriver.cdp.page)
  • set_local_fonts_enabled() (in module nodriver.cdp.css) +
  • +
  • set_local_storage() (Tab method)
  • set_locale_override() (in module nodriver.cdp.emulation)
  • diff --git a/docs/_build/html/index.html b/docs/_build/html/index.html index 2685fbc..7423af2 100644 --- a/docs/_build/html/index.html +++ b/docs/_build/html/index.html @@ -374,6 +374,7 @@

    Main objectsTab.get_all_linked_sources()
  • Tab.get_all_urls()
  • Tab.get_content()
  • +
  • Tab.get_local_storage()
  • Tab.get_window()
  • Tab.inspector_open()
  • Tab.inspector_url
  • @@ -392,6 +393,7 @@

    Main objectsTab.select_all()
  • Tab.send()
  • Tab.set_download_path()
  • +
  • Tab.set_local_storage()
  • Tab.set_window_size()
  • Tab.set_window_state()
  • Tab.sleep()
  • diff --git a/docs/_build/html/nodriver/classes/tab.html b/docs/_build/html/nodriver/classes/tab.html index 8ab413c..c25b6c4 100644 --- a/docs/_build/html/nodriver/classes/tab.html +++ b/docs/_build/html/nodriver/classes/tab.html @@ -615,6 +615,20 @@

    +
    +async get_local_storage()[source]#
    +

    get local storage items as dict of strings (careful!, proper deserialization needs to be done if needed)

    +
    +
    Returns:
    +

    +
    +
    Return type:
    +

    +
    +
    +
    +
    async get_window()[source]#
    @@ -896,6 +910,24 @@

    +
    +async set_local_storage(items)[source]#
    +

    set local storage. +dict items must be strings. simple types will be converted to strings automatically.

    +
    +
    Parameters:
    +

    items (dict[str,str]) – dict containing {key:str, value:str}

    +
    +
    Returns:
    +

    +
    +
    Return type:
    +

    +
    +
    +

    +
    async set_window_size(left=0, top=0, width=1280, height=1024)[source]#
    @@ -1103,6 +1135,7 @@

    Tab.get_all_linked_sources()
  • Tab.get_all_urls()
  • Tab.get_content()
  • +
  • Tab.get_local_storage()
  • Tab.get_window()
  • Tab.inspector_open()
  • Tab.inspector_url
  • @@ -1121,6 +1154,7 @@

    Tab.select_all()
  • Tab.send()
  • Tab.set_download_path()
  • +
  • Tab.set_local_storage()
  • Tab.set_window_size()
  • Tab.set_window_state()
  • Tab.sleep()
  • diff --git a/docs/_build/html/objects.inv b/docs/_build/html/objects.inv index 3e9327b..e3df713 100644 Binary files a/docs/_build/html/objects.inv and b/docs/_build/html/objects.inv differ diff --git a/docs/_build/html/searchindex.js b/docs/_build/html/searchindex.js index 63f4c3d..ed5a20f 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/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/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/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/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", "Browser", "CacheStorage", "Cast", "Console", "CSS", "Database", "Debugger", "DeviceAccess", "DeviceOrientation", "DOM", "DOMDebugger", "DOMSnapshot", "DOMStorage", "Emulation", "EventBreakpoints", "Extensions", "FedCm", "Fetch", "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], "packag": [0, 56, 57, 58, 59], "provid": [0, 2, 4, 16, 17, 18, 24, 25, 31, 32, 35, 36, 37, 42, 43, 47, 48, 49, 51, 55, 56, 57, 59], "next": [0, 11, 13, 20, 23, 27, 43, 57, 58, 59], "level": [0, 2, 4, 10, 32, 33, 34, 35, 37, 43, 45, 48, 51, 54, 57, 58, 59], "webscrap": [0, 59], "browser": [0, 1, 2, 9, 11, 20, 22, 23, 24, 33, 34, 35, 37, 42, 43, 47, 48, 49, 50, 55, 57, 58, 59], "autom": [0, 7, 16, 20, 37, 53, 59], "us": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 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, 58, 59], "rel": [0, 16, 20, 28, 35, 37, 41, 47, 55, 57, 59], "simpl": [0, 11, 41, 58, 59], "interfac": [0, 17, 40, 53, 57, 59], "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], "offici": [0, 59], "successor": [0, 59], "undetect": [0, 58, 59], "chromedriv": [0, 58, 59], "python": [0, 57, 59], "No": [0, 45, 59], "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, 55, 56, 57, 59], "webdriv": [0, 59], "selenium": [0, 54, 57, 59], "direct": [0, 3, 4, 11, 16, 20, 37, 59], "commun": [0, 49, 59], "even": [0, 23, 43, 45, 54, 56, 59], "better": [0, 35, 59], "resist": [0, 59], "against": [0, 16, 49, 59], "web": [0, 2, 6, 9, 11, 20, 35, 36, 37, 39, 42, 52, 59], "applicatinon": [0, 59], "firewal": [0, 59], "waf": [0, 59], "": [0, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 23, 24, 26, 28, 29, 31, 32, 33, 35, 36, 37, 38, 39, 40, 41, 42, 43, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59], "while": [0, 13, 26, 28, 30, 31, 35, 37, 38, 43, 59], "perform": [0, 1, 2, 7, 13, 16, 28, 39, 43, 57, 59], "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], "massiv": [0, 59], "boost": [0, 59], "modul": [0, 2, 4, 5, 6, 7, 8, 11, 13, 15, 16, 17, 18, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 34, 35, 36, 37, 40, 42, 44, 45, 46, 47, 48, 50, 51, 52, 53, 57, 59], "contrari": [0, 59], "fulli": [0, 54, 59], "asynchron": [0, 43, 54, 59], "what": [0, 2, 20, 23, 24, 26, 33, 35, 47, 57, 58, 59], "make": [0, 7, 13, 24, 35, 37, 43, 49, 54, 55, 57, 59], "differ": [0, 4, 7, 11, 20, 24, 33, 35, 36, 37, 43, 47, 59], "from": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 51, 52, 53, 54, 55, 56, 57, 58, 59], "other": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 23, 24, 25, 26, 27, 28, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 51, 52, 53, 54, 55, 58, 59], "known": [0, 13, 16, 32, 35, 48, 51, 54, 57, 59], "optim": [0, 25, 37, 41, 59], "stai": [0, 13, 52, 59], "most": [0, 8, 13, 16, 26, 27, 35, 37, 43, 57, 59], "anti": [0, 59], "bot": [0, 59], "solut": [0, 37, 59], "anoth": [0, 11, 13, 24, 30, 35, 43, 55, 57, 59], "focu": [0, 16, 20, 37, 55, 58, 59], "point": [0, 13, 16, 18, 20, 28, 31, 34, 35, 41, 42, 54, 55, 56, 59], "usabl": [0, 59], "prototyp": [0, 43, 59], "so": [0, 4, 5, 10, 13, 23, 32, 35, 43, 54, 55, 57, 58, 59], "expect": [0, 7, 13, 24, 37, 43, 58, 59], "lot": [0, 54, 55, 57, 59], "work": [0, 16, 20, 36, 55, 56, 57, 58, 59], "method": [0, 2, 7, 8, 11, 16, 24, 28, 30, 35, 37, 38, 39, 43, 47, 48, 49, 50, 54, 55, 56, 59], "paramet": [0, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 31, 32, 34, 35, 36, 37, 38, 39, 41, 42, 43, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 59], "have": [0, 2, 4, 7, 11, 13, 16, 17, 18, 20, 24, 28, 33, 35, 41, 42, 43, 45, 47, 49, 51, 53, 55, 57, 59], "best": [0, 20, 57, 59], "practic": [0, 59], "default": [0, 2, 4, 7, 8, 11, 13, 16, 17, 18, 20, 24, 25, 26, 27, 28, 31, 35, 36, 37, 42, 43, 45, 47, 49, 51, 53, 55, 56, 57, 59], "1": [0, 2, 4, 5, 6, 7, 8, 10, 11, 13, 16, 17, 18, 20, 23, 24, 25, 28, 31, 34, 35, 36, 37, 38, 40, 41, 42, 45, 46, 47, 48, 49, 51, 52, 53, 54, 55, 57, 58, 59], "2": [0, 5, 18, 20, 28, 35, 45, 48, 55, 56, 58, 59], "line": [0, 4, 5, 7, 10, 11, 13, 16, 17, 26, 32, 33, 35, 36, 37, 41, 43, 48, 58, 59], "up": [0, 2, 11, 20, 23, 28, 35, 43, 53, 57, 58, 59], "run": [0, 4, 13, 20, 25, 31, 35, 37, 38, 40, 41, 43, 46, 47, 48, 49, 52, 54, 57, 58, 59], "config": [0, 32, 36, 43, 54, 58, 59], "conveni": [0, 54, 57, 59], "import": [0, 4, 11, 16, 18, 35, 54, 57, 58, 59], "It": [0, 4, 13, 16, 26, 35, 37, 40, 43, 56, 57, 59], "also": [0, 4, 7, 9, 11, 13, 16, 18, 20, 25, 26, 35, 36, 37, 39, 40, 42, 43, 47, 49, 55, 56, 57, 59], "easi": [0, 37, 59], "customiz": [0, 59], "everyth": [0, 49, 59], "entir": [0, 2, 11, 16, 17, 35, 37, 55, 57, 59], "arrai": [0, 5, 8, 11, 13, 16, 17, 18, 26, 27, 31, 34, 35, 36, 37, 41, 43, 45, 47, 48, 49, 59], "domain": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 42, 43, 44, 46, 47, 48, 50, 52, 53, 57, 59], "event": [0, 54, 55, 57, 58, 59], "avail": [0, 7, 9, 11, 13, 16, 18, 20, 22, 24, 35, 37, 39, 43, 47, 48, 49, 53, 56, 57, 59], "A": [0, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 16, 18, 20, 24, 25, 26, 27, 28, 30, 31, 33, 34, 35, 36, 37, 40, 41, 42, 43, 45, 47, 48, 49, 51, 52, 58, 59, 60], "blaze": [0, 59], "fast": [0, 20, 59], "chrome": [0, 2, 5, 7, 25, 35, 37, 42, 43, 49, 51, 54, 57, 59], "ish": [0, 59], "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, 59], "binari": [0, 35, 59], "depend": [0, 4, 11, 16, 28, 35, 37, 39, 47, 48, 49, 52, 59], "equal": [0, 17, 18, 28, 47, 59], "bizarr": [0, 59], "increas": [0, 11, 28, 35, 39, 41, 59], "less": [0, 33, 35, 59], "detect": [0, 36, 37, 54, 57, 59], "code": [0, 4, 5, 8, 12, 13, 17, 21, 24, 28, 33, 35, 41, 43, 45, 48, 49, 58, 59], "fresh": [0, 35, 59], "profil": [0, 1, 5, 26, 31, 34, 47, 48, 49, 58, 59], "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, 57, 58, 59], "clean": [0, 58, 59], "exit": [0, 54, 59], "save": [0, 5, 7, 37, 51, 54, 55, 57, 59], "load": [0, 2, 4, 11, 22, 24, 34, 35, 37, 40, 42, 45, 47, 54, 56, 57, 59], "cooki": [0, 4, 35, 37, 47, 58, 59], "file": [0, 7, 16, 22, 28, 30, 33, 35, 37, 42, 55, 56, 57, 59], "repeat": [0, 28, 37, 59], "tediou": [0, 59], "login": [0, 57, 59], "step": [0, 13, 23, 31, 36, 55, 59], "smart": [0, 37, 59], "element": [0, 2, 3, 11, 16, 18, 20, 31, 33, 35, 36, 37, 39, 40, 43, 48, 57, 59], "lookup": [0, 35, 43, 56, 59], "selector": [0, 11, 16, 36, 55, 59], "text": [0, 2, 5, 8, 9, 10, 11, 13, 16, 18, 20, 24, 28, 32, 35, 37, 40, 43, 45, 55, 58, 59], "includ": [0, 2, 4, 11, 16, 18, 20, 26, 28, 35, 36, 37, 40, 43, 47, 49, 51, 55, 57, 59], "ifram": [0, 4, 16, 17, 18, 35, 37, 54, 57, 59], "content": [0, 2, 4, 8, 11, 13, 16, 18, 20, 24, 31, 35, 36, 37, 43, 45, 47, 49, 55, 57, 59], "could": [0, 4, 13, 35, 37, 55, 56, 57, 58, 59], "wait": [0, 35, 37, 42, 43, 54, 55, 57, 58, 59], "condit": [0, 11, 13, 16, 30, 35, 54, 57, 59], "appear": [0, 14, 16, 20, 35, 36, 57, 58, 59], "sinc": [0, 7, 8, 11, 13, 16, 17, 18, 20, 25, 26, 34, 35, 36, 37, 38, 39, 41, 43, 45, 48, 49, 57, 58, 59], "retri": [0, 35, 57, 59], "durat": [0, 3, 28, 31, 38, 39, 47, 52, 55, 59], "timeout": [0, 13, 37, 43, 57, 59], "until": [0, 2, 11, 13, 24, 35, 37, 47, 57, 59], "found": [0, 4, 9, 11, 16, 35, 56, 57, 58, 59], "singl": [0, 2, 11, 13, 20, 24, 26, 40, 47, 48, 53, 57, 59], "tab": [0, 9, 37, 42, 49, 54, 55, 58, 59], "find": [0, 2, 4, 11, 16, 58, 59], "accept": [0, 11, 35, 37, 42, 50, 55, 57, 58, 59], "best_match": [0, 58, 59], "flag": [0, 4, 11, 17, 20, 22, 26, 27, 35, 37, 42, 43, 53, 57, 59], "which": [0, 2, 4, 7, 11, 13, 16, 17, 18, 19, 20, 24, 26, 28, 31, 33, 35, 37, 39, 40, 42, 43, 46, 47, 49, 54, 55, 56, 57, 58, 59], "naiv": [0, 57, 59], "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, 59], "first": [0, 11, 13, 16, 20, 26, 31, 35, 40, 41, 49, 54, 56, 57, 59], "match": [0, 2, 11, 13, 16, 24, 35, 37, 43, 45, 49, 53, 57, 59], "candid": [0, 28, 47, 59], "closest": [0, 16, 57, 59], "length": [0, 3, 11, 13, 18, 20, 35, 47, 57, 58, 59], "descript": [0, 2, 6, 11, 13, 16, 35, 37, 42, 43, 44, 45, 48, 59], "__repr__": [0, 59], "repres": [0, 3, 4, 5, 11, 13, 16, 18, 19, 24, 28, 33, 35, 36, 40, 42, 43, 45, 47, 48, 54, 55, 59], "html": [0, 5, 11, 16, 28, 35, 37, 40, 53, 55, 57, 59], "util": [0, 54, 57, 59], "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, 57, 59], "convert": [0, 16, 47, 56, 59], "undetected_chromedriv": [0, 59], "instanc": [0, 3, 5, 43, 54, 59], "contintu": [0, 59], "pack": [0, 59], "helper": [0, 59], "oper": [0, 4, 6, 11, 13, 16, 17, 21, 28, 30, 35, 47, 49, 57, 59], "quickstart": 0, "guid": [0, 7, 37, 51], "instal": [0, 22, 37, 42, 46], "usag": [0, 4, 11, 26, 37, 43, 47, 48, 55], "exampl": [0, 4, 5, 11, 25, 28, 37, 40, 41, 43, 48, 49, 55, 57], "complet": [0, 2, 13, 16, 18, 25, 35, 37], "custom": [0, 7, 11, 37], "option": [0, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 16, 17, 18, 19, 20, 23, 24, 25, 26, 27, 28, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 45, 46, 47, 48, 49, 51, 52, 53, 55, 57], "altern": [0, 2, 24, 35, 43], "class": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 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], "creat": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 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, 56, 57, 58, 59], "target": [0, 1, 3, 4, 7, 11, 16, 20, 25, 29, 35, 36, 37, 39, 40, 42, 43, 45, 47, 54, 55, 57], "connect": [0, 22, 29, 35, 43, 45, 50, 52, 54, 57], "websocket_url": [0, 54, 57], "main_tab": [0, 54], "stop": [0, 9, 11, 13, 17, 21, 26, 32, 34, 37, 40, 41, 46, 51, 54, 55, 58, 59], "sleep": [0, 54, 57, 58, 59], "grant_all_permiss": [0, 54], "tile_window": [0, 54], "update_target": [0, 54, 57], "aclos": [0, 57], "activ": [0, 9, 11, 13, 20, 26, 28, 33, 35, 37, 40, 46, 47, 49, 54, 57], "add_handl": [0, 57], "aopen": [0, 57], "attach": [0, 18, 33, 35, 37, 42, 43, 49, 57], "back": [0, 4, 13, 28, 30, 31, 37, 57], "bring_to_front": [0, 37, 57, 58, 59], "close": [0, 7, 16, 23, 30, 35, 37, 42, 49, 52, 54, 57, 58, 59], "download_fil": [0, 57], "evalu": [0, 13, 26, 35, 37, 43, 57], "find_al": [0, 57], "find_element_by_text": [0, 57], "find_elements_by_text": [0, 55, 57], "forward": [0, 20, 28, 35, 37, 57], "fullscreen": [0, 7, 37, 57], "get_all_linked_sourc": [0, 57], "get_all_url": [0, 57], "get_cont": [0, 57, 58, 59], "get_window": [0, 57], "inspector_open": [0, 57], "inspector_url": [0, 57], "js_dump": [0, 57], "maxim": [0, 7, 35, 57], "medim": [0, 57], "minim": [0, 7, 26, 57], "open_external_inspector": [0, 57], "query_selector": [0, 16, 55, 57], "query_selector_al": [0, 16, 55, 57], "reload": [0, 13, 29, 37, 43, 57, 58, 59], "save_screenshot": [0, 55, 57, 58, 59], "scroll_down": [0, 57, 58, 59], "scroll_up": [0, 57], "select": [0, 2, 14, 16, 18, 28, 33, 36, 37, 55, 58, 59], "select_al": [0, 58, 59], "send": [0, 4, 10, 16, 25, 26, 28, 32, 33, 35, 37, 40, 41, 47, 49, 52, 55, 58, 59], "set_download_path": [0, 57], "set_window_s": [0, 57], "set_window_st": [0, 57], "verify_cf": [0, 57], "wait_for": [0, 57], "websocket": [0, 35, 37, 57], "tag": [0, 11, 13, 18, 20, 37, 40, 46, 51, 55, 57], "tag_nam": [0, 55], "node_id": [0, 2, 11, 16, 17, 26, 36, 39, 40, 52, 55], "backend_node_id": [0, 2, 3, 16, 17, 18, 31, 36, 37, 40, 55], "node_typ": [0, 16, 18, 52, 55], "node_nam": [0, 16, 18, 55], "local_nam": [0, 16, 55], "node_valu": [0, 16, 18, 55], "parent_id": [0, 2, 16, 37, 43, 55], "child_node_count": [0, 16, 55], "attribut": [0, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 23, 24, 26, 28, 29, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 43, 45, 46, 47, 48, 49, 50, 51, 52, 53, 55, 56], "document_url": [0, 16, 18, 35, 55], "base_url": [0, 16, 18, 28, 55], "public_id": [0, 16, 18, 55], "system_id": [0, 16, 18, 55], "internal_subset": [0, 16, 55], "xml_version": [0, 16, 55], "valu": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 23, 24, 25, 26, 27, 28, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 51, 52, 53, 55, 56, 57], "pseudo_typ": [0, 11, 16, 18, 55], "pseudo_identifi": [0, 11, 16, 18, 55], "shadow_root_typ": [0, 16, 18, 55], "frame_id": [0, 2, 4, 5, 7, 11, 16, 18, 24, 35, 36, 37, 39, 47, 55], "content_docu": [0, 16, 55], "shadow_root": [0, 16, 55], "template_cont": [0, 16, 55], "pseudo_el": [0, 11, 16, 55], "imported_docu": [0, 16, 55], "distributed_nod": [0, 16, 55], "is_svg": [0, 16, 55], "compatibility_mod": [0, 16, 55], "assigned_slot": [0, 16, 55], "save_to_dom": [0, 55], "remove_from_dom": [0, 55], "updat": [0, 2, 3, 4, 6, 11, 16, 20, 25, 26, 35, 37, 40, 41, 43, 47, 55, 56, 57], "node": [0, 2, 3, 5, 11, 16, 17, 18, 26, 31, 34, 36, 37, 40, 41, 52, 55, 57], "tree": [0, 2, 11, 16, 18, 26, 31, 37, 47, 55], "attr": [0, 16, 55], "parent": [0, 2, 11, 16, 18, 31, 37, 43, 54, 55], "children": [0, 2, 16, 17, 26, 36, 37, 41, 55], "remote_object": [0, 55], "object_id": [0, 2, 13, 16, 17, 26, 30, 36, 43, 55], "click": [18, 28, 37, 42, 55, 58, 59], "get_js_attribut": [0, 55], "appli": [0, 2, 4, 7, 11, 13, 20, 24, 31, 37, 51, 55], "get_posit": [0, 55], "mouse_click": [0, 55, 58, 59], "mouse_mov": [0, 55], "mouse_drag": [0, 55], "scroll_into_view": [0, 55], "clear_input": [0, 55], "send_kei": [0, 55, 58, 59], "send_fil": [0, 55], "select_opt": [0, 55], "set_valu": [0, 55], "set_text": [0, 55], "get_html": [0, 55], "text_al": [0, 55], "flash": [0, 7, 55, 58, 59], "highlight_overlai": [0, 55], "record_video": [0, 55], "is_record": [0, 6, 55], "browser_arg": [0, 54, 56, 58], "user_data_dir": [0, 54, 56, 58], "uses_custom_data_dir": [0, 56], "add_extens": [0, 56], "add_argu": [0, 56], "contradict": 0, "clear": [0, 4, 6, 15, 19, 20, 27, 32, 35, 37, 43, 47, 49, 53, 55, 56], "copi": [0, 16, 28, 56], "fromkei": [0, 56], "item": [0, 4, 7, 8, 11, 12, 13, 16, 18, 19, 24, 25, 27, 28, 30, 31, 34, 35, 36, 37, 41, 42, 43, 47, 48, 51, 56, 57], "kei": [0, 6, 8, 11, 19, 27, 28, 35, 37, 40, 42, 43, 45, 47, 53, 55, 56, 58, 59], "pop": [0, 16, 56], "popitem": [0, 56], "setdefault": [0, 56], "cdict": [0, 56], "access": [0, 1, 4, 16, 26, 32, 36, 37, 47, 49, 56], "type": [0, 54, 55, 56, 57, 58, 59], "axnodeid": [0, 2], "axvaluetyp": [0, 2], "boolean": [0, 2, 13, 43], "tristat": [0, 2], "boolean_or_undefin": [0, 2], "idref": [0, 2], "idref_list": [0, 2], "integ": [0, 2, 16, 17, 26, 27, 43, 47], "node_list": [0, 2], "number": [0, 2, 5, 7, 8, 10, 11, 13, 16, 17, 18, 20, 26, 27, 28, 30, 31, 32, 33, 34, 35, 36, 37, 39, 41, 43, 47, 50, 51, 52, 57, 58, 59], "string": [0, 2, 4, 7, 8, 11, 13, 16, 18, 20, 24, 25, 27, 28, 31, 34, 35, 37, 43, 45, 47, 48, 49, 51, 53, 55, 57, 58, 59], "computed_str": [0, 2], "token": [0, 2, 35, 37, 47], "token_list": [0, 2], "dom_rel": [0, 2], "role": [0, 2, 47, 58, 59], "internal_rol": [0, 2], "value_undefin": [0, 2], "axvaluesourcetyp": [0, 2], "implicit": [0, 2, 11, 16], "style": [0, 2, 3, 11, 16, 18, 20, 33, 36, 37, 55], "placehold": [0, 2], "related_el": [0, 2], "axvaluenativesourcetyp": [0, 2], "figcapt": [0, 2], "label": [0, 2, 35, 36, 37, 43], "labelfor": [0, 2], "labelwrap": [0, 2], "legend": [0, 2], "rubyannot": [0, 2], "tablecapt": [0, 2], "titl": [0, 2, 11, 18, 23, 28, 36, 37, 38, 41, 45, 49, 58, 59], "axvaluesourc": [0, 2], "type_": [0, 2, 3, 4, 13, 17, 20, 27, 28, 31, 35, 37, 39, 43, 47, 48, 49], "attribute_valu": [0, 2], "supersed": [0, 2, 20], "native_sourc": [0, 2], "native_source_valu": [0, 2], "invalid": [0, 2, 13, 16, 35], "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, 11, 12, 13, 14, 16, 17, 18, 20, 21, 23, 24, 26, 27, 28, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 51, 52, 53, 56, 57, 58, 59], "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], "axpropertynam": [0, 2], "busi": [0, 2], "disabl": [0, 2, 3, 4, 5, 6, 9, 10, 11, 12, 13, 14, 16, 18, 19, 20, 21, 23, 24, 25, 26, 27, 29, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 43, 45, 46, 47, 52, 53], "edit": [0, 2, 11, 13, 16, 28], "focus": [0, 2, 16, 20, 49], "hidden": [0, 2, 20, 37, 55], "hidden_root": [0, 2], "keyshortcut": [0, 2], "settabl": [0, 2], "roledescript": [0, 2], "live": [0, 2, 13], "atom": [0, 2], "relev": [0, 2, 17, 36, 40], "root": [0, 2, 11, 16, 17, 18, 26, 31, 33, 37, 41, 47, 54], "autocomplet": [0, 2, 5, 56], "has_popup": [0, 2], "multiselect": [0, 2], "orient": [0, 2, 3, 15, 16, 20, 37], "multilin": [0, 2], "readonli": [0, 2], "requir": [0, 2, 7, 11, 16, 25, 27, 37, 42, 55], "valuemin": [0, 2], "valuemax": [0, 2], "valuetext": [0, 2], "check": [0, 2, 4, 13, 18, 42, 57], "expand": [0, 2], "modal": [0, 2], "press": [0, 2, 28, 37, 55], "activedescend": [0, 2], "control": [0, 2, 7, 28, 36, 37, 42, 43, 49, 51, 54, 57], "describedbi": [0, 2], "detail": [0, 2, 4, 7, 13, 16, 18, 24, 26, 33, 35, 37, 39, 41, 43, 45, 47, 49, 51, 57], "errormessag": [0, 2, 40], "flowto": [0, 2], "labelledbi": [0, 2], "own": [0, 2, 16, 18, 28, 31, 41, 43], "url": [0, 2, 4, 7, 8, 10, 11, 13, 16, 17, 18, 23, 24, 28, 31, 32, 35, 37, 39, 40, 41, 42, 43, 45, 47, 49, 54, 57], "axnod": [0, 2], "ignor": [0, 2, 4, 11, 16, 18, 28, 35, 37, 42, 45, 49, 51, 53, 57], "ignored_reason": [0, 2], "chrome_rol": [0, 2], "properti": [0, 2, 4, 11, 13, 16, 18, 33, 37, 40, 43, 52, 53, 54, 55, 56, 57], "child_id": [0, 2], "command": [0, 55], "enabl": [0, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 45, 46, 47, 49, 51, 52, 53, 55], "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, 11, 25], "id_": [0, 2, 3, 5, 9, 12, 14, 26, 28, 35, 37, 40, 41, 43, 47, 48], "paused_st": [0, 3], "play_stat": [0, 3], "playback_r": [0, 3], "start_tim": [0, 3, 41], "current_tim": [0, 3, 52], "css_id": [0, 3], "view_or_scroll_timelin": [0, 3], "vieworscrolltimelin": [0, 3], "axi": [0, 3, 11, 28, 36], "source_node_id": [0, 3], "start_offset": [0, 3, 11, 41], "end_offset": [0, 3, 11, 41], "subject_node_id": [0, 3], "animationeffect": [0, 3], "delai": [0, 3, 20, 23, 28, 37, 51], "end_delai": [0, 3], "iteration_start": [0, 3], "iter": [0, 3, 16, 18, 19, 31, 49, 56], "fill": [0, 3, 5, 20, 36, 45, 58, 59], "eas": [0, 3], "keyframes_rul": [0, 3], "keyframesrul": [0, 3], "keyfram": [0, 3, 11], "keyframestyl": [0, 3], "offset": [0, 3, 7, 11, 13, 18, 20, 30, 31, 37, 41, 57], "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, 28], "affectedcooki": [0, 4], "path": [0, 4, 7, 8, 16, 22, 27, 35, 37, 55, 56, 57, 58], "affectedrequest": [0, 4], "request_id": [0, 4, 24, 35, 40, 47], "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, 35, 47, 54], "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, 7, 8, 9, 11, 14, 16, 18, 20, 24, 25, 27, 32, 35, 36, 37, 43, 45, 47, 50, 51, 54, 57], "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, 52, 57], "beacon": [0, 4], "csp_report": [0, 4], "download": [0, 4, 7, 11, 35, 37, 40, 55, 57], "event_sourc": [0, 4, 35], "favicon": [0, 4], "font": [0, 4, 11, 35, 37], "form": [0, 4, 5, 13, 16, 35, 37, 55, 57], "frame": [0, 2, 4, 5, 7, 11, 13, 16, 18, 20, 24, 25, 27, 28, 35, 36, 37, 39, 40, 43, 47, 48, 49], "imag": [0, 4, 7, 11, 16, 20, 25, 31, 35, 37, 39, 48, 55], "json": [0, 4, 7, 8, 13, 24, 25, 31, 35, 37, 40, 43, 49, 51, 53, 55, 56], "manifest": [0, 4, 35, 36, 37, 42, 56], "ping": [0, 4, 35], "plugin_data": [0, 4], "plugin_resourc": [0, 4], "prefetch": [0, 4, 35, 40], "resourc": [0, 4, 7, 10, 11, 13, 17, 20, 24, 32, 35, 37, 40, 45, 54], "script": [0, 4, 11, 13, 17, 18, 20, 35, 37, 40, 41, 43, 46, 47, 55, 57, 58, 59], "service_work": [0, 4, 47], "shared_work": [0, 4, 37], "speculation_rul": [0, 4], "stylesheet": [0, 4, 11, 35], "track": [0, 4, 11, 12, 13, 16, 19, 26, 28, 35, 36, 37, 43, 45, 47], "video": [0, 4, 33, 48, 55, 57], "worker": [0, 4, 6, 13, 32, 35, 37, 43, 49], "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, 24, 35], "blockedbyresponsereason": [0, 4], "coep_frame_resource_needs_coep_head": [0, 4, 35], "coop_sandboxed_i_frame_cannot_navigate_to_coop_pag": [0, 4], "corp_not_same_origin": [0, 4, 35], "corp_not_same_origin_after_defaulted_to_same_origin_by_coep": [0, 4, 35], "corp_not_same_origin_after_defaulted_to_same_origin_by_dip": [0, 4, 35], "corp_not_same_origin_after_defaulted_to_same_origin_by_coep_and_dip": [0, 4, 35], "corp_not_same_sit": [0, 4, 35], "blockedbyresponseissuedetail": [0, 4], "reason": [0, 2, 4, 13, 24, 29, 31, 35, 37, 40, 41, 43, 49, 55], "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, 48], "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, 13, 17, 32, 35, 37, 43, 46], "column_numb": [0, 4, 13, 17, 35, 37, 43, 46], "script_id": [0, 4, 13, 17, 37, 41, 43], "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, 37], "font_weight": [0, 4, 11], "corsissuedetail": [0, 4], "cors_error_statu": [0, 4, 35], "locat": [0, 4, 11, 13, 16, 24, 26, 28, 35, 37, 41, 42, 43, 49], "initiator_origin": [0, 4], "resource_ip_address_spac": [0, 4, 35], "client_security_st": [0, 4, 35], "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, 17], "invalid_paramet": [0, 4], "quirksmodeissuedetail": [0, 4], "is_limited_quirks_mod": [0, 4], "document_node_id": [0, 4], "loader_id": [0, 4, 35, 37, 40], "navigatoruseragentissuedetail": [0, 4], "shareddictionaryissuedetail": [0, 4], "shared_dictionary_error": [0, 4], "genericissueerrortyp": [0, 4], "cross_origin_portal_post_message_error": [0, 4], "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, 33, 40, 45], "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, 7, 14, 24, 28, 35, 36, 37, 40, 43, 45, 49], "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": [0, 4], "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, 9, 10, 11, 13, 24, 28, 32, 35, 37, 43, 45, 47, 49, 51], "autofil": [0, 1, 37], "creditcard": [0, 5], "expiry_month": [0, 5], "expiry_year": [0, 5], "cvc": [0, 5], "addressfield": [0, 5], "field": [0, 4, 5, 7, 11, 24, 28, 35, 37, 39, 43, 45, 49, 52, 55, 58, 59], "address": [0, 5, 34, 35], "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, 13, 23, 28, 32, 35, 36, 37, 40, 41, 45, 51, 53, 55], "addressformfil": [0, 5], "filled_field": [0, 5], "address_ui": [0, 5], "backgroundservic": [0, 1], "servicenam": [0, 6], "background_fetch": [0, 6, 7], "background_sync": [0, 6, 7], "push_messag": [0, 6], "notif": [0, 3, 5, 6, 7, 10, 16, 20, 29, 32, 34, 35, 36, 37, 43, 47, 49, 54], "payment_handl": [0, 6, 7], "periodic_background_sync": [0, 6, 7], "eventmetadata": [0, 6], "backgroundserviceev": [0, 6], "timestamp": [0, 6, 11, 20, 25, 26, 28, 32, 33, 35, 37, 38, 41, 43], "origin": [0, 3, 4, 6, 7, 8, 10, 11, 17, 19, 20, 24, 27, 35, 37, 40, 43, 46, 47, 49], "service_worker_registration_id": [0, 6], "servic": [0, 6, 35, 47, 49, 51], "event_nam": [0, 6, 17, 21, 35], "instance_id": [0, 6], "event_metadata": [0, 6], "storage_kei": [0, 6, 8, 19, 27, 47], "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, 7, 47, 49], "windowid": [0, 7], "windowst": [0, 7], "normal": [0, 7, 11, 20, 23, 28, 43, 54, 57], "bound": [0, 7, 16, 18, 27, 37, 50, 57], "left": [0, 7, 28, 30, 31, 37, 55, 57], "top": [0, 7, 13, 16, 28, 31, 35, 37, 41, 43, 54, 57], "width": [0, 7, 11, 16, 18, 20, 31, 36, 37, 48, 49, 57], "height": [0, 7, 11, 16, 18, 20, 31, 36, 37, 48, 49, 57], "window_st": [0, 7], "permissiontyp": [0, 7], "accessibility_ev": [0, 7], "audio_captur": [0, 7], "captured_surface_control": [0, 7, 37], "clipboard_read_writ": [0, 7], "clipboard_sanitized_writ": [0, 7], "display_captur": [0, 7, 37], "durable_storag": [0, 7], "geoloc": [0, 7, 20, 37, 54], "idle_detect": [0, 7, 37], "local_font": [0, 7, 37], "midi": [0, 7, 37, 54], "midi_sysex": [0, 7], "nfc": [0, 7, 53, 54], "protected_media_identifi": [0, 7], "sensor": [0, 7, 20, 37, 54], "storage_access": [0, 7, 35, 37], "speaker_select": [0, 7, 37], "top_level_storage_access": [0, 7, 35], "video_captur": [0, 7], "video_capture_pan_tilt_zoom": [0, 7], "wake_lock_screen": [0, 7], "wake_lock_system": [0, 7], "window_manag": [0, 7, 37], "permissionset": [0, 7], "grant": [0, 4, 7, 37, 49, 54], "deni": [0, 7, 37], "prompt": [0, 7, 14, 37], "permissiondescriptor": [0, 7], "sysex": [0, 7], "user_visible_onli": [0, 7], "allow_without_sanit": [0, 7], "allow_without_gestur": [0, 7], "pan_tilt_zoom": [0, 7], "browsercommandid": [0, 7], "open_tab_search": [0, 7], "close_tab_search": [0, 7], "bucket": [0, 7, 8, 27, 47, 51], "low": [0, 7, 35, 48], "high": [0, 7, 35], "count": [0, 7, 8, 16, 26, 27, 28, 35, 37, 41, 47], "histogram": [0, 7], "sum_": [0, 7], "add_privacy_sandbox_enrollment_overrid": [0, 7], "cancel_download": [0, 7], "crash": [0, 7, 29, 37, 49, 55, 57], "crash_gpu_process": [0, 7], "execute_browser_command": [0, 7], "get_browser_command_lin": [0, 7], "get_histogram": [0, 7], "get_vers": [0, 7], "get_window_bound": [0, 7], "get_window_for_target": [0, 7], "grant_permiss": [0, 7], "reset_permiss": [0, 7], "set_dock_til": [0, 7], "set_download_behavior": [0, 7, 37], "set_permiss": [0, 7], "set_window_bound": [0, 7], "downloadwillbegin": [0, 7, 37], "suggested_filenam": [0, 7, 37], "downloadprogress": [0, 7, 37], "total_byt": [0, 7, 37], "received_byt": [0, 7, 37], "state": [0, 2, 3, 4, 6, 7, 11, 13, 16, 20, 24, 26, 35, 37, 40, 42, 43, 45, 47, 48, 53, 57], "cachestorag": [0, 1], "cacheid": [0, 8], "cachedresponsetyp": [0, 8], "basic": [0, 8, 24, 35], "cor": [0, 4, 8, 35], "error": [0, 2, 4, 5, 8, 9, 12, 13, 16, 20, 23, 24, 33, 35, 37, 38, 40, 42, 43, 45, 46, 49, 57], "opaque_respons": [0, 8], "opaque_redirect": [0, 8], "dataentri": [0, 8, 27], "request_url": [0, 8, 35, 45], "request_method": [0, 8], "request_head": [0, 8, 35], "response_tim": [0, 8, 35], "response_statu": [0, 8], "response_status_text": [0, 8, 24], "response_typ": [0, 8], "response_head": [0, 8, 24, 35], "cach": [0, 8, 35, 37, 46, 47, 57], "cache_id": [0, 8], "security_origin": [0, 8, 19, 27, 37], "cache_nam": [0, 8, 47], "storage_bucket": [0, 8, 27, 47], "header": [0, 4, 8, 11, 20, 24, 35, 37, 40, 43, 46], "cachedrespons": [0, 8], "bodi": [0, 4, 8, 11, 13, 24, 35, 43], "delete_cach": [0, 8], "delete_entri": [0, 8], "request_cache_nam": [0, 8], "request_cached_respons": [0, 8], "request_entri": [0, 8], "cast": [0, 1], "sink": [0, 9, 17], "session": [0, 7, 9, 16, 19, 35, 47, 49, 54, 58, 59], "set_sink_to_us": [0, 9], "start_desktop_mirror": [0, 9], "start_tab_mirror": [0, 9], "stop_cast": [0, 9], "sinksupd": [0, 9], "issueupd": [0, 9], "issue_messag": [0, 9], "consol": [0, 1, 4, 16, 26, 41, 43, 57], "consolemessag": [0, 10], "column": [0, 10, 11, 13, 17, 35, 36, 37, 43], "clear_messag": [0, 10], "messagead": [0, 10], "messag": [0, 4, 9, 10, 12, 16, 32, 33, 35, 36, 37, 43, 46, 49, 51], "css": [0, 1, 3, 4, 16, 20, 28, 36, 37, 57], "stylesheetid": [0, 11], "stylesheetorigin": [0, 11], "inject": [0, 11, 37, 49], "user_ag": [0, 11, 16, 20, 35], "inspector": [0, 1, 4, 11, 35, 57], "regular": [0, 11, 17, 21, 24, 55, 57], "pseudoelementmatch": [0, 11], "inheritedstyleentri": [0, 11], "matched_css_rul": [0, 11], "inline_styl": [0, 11], "inheritedpseudoelementmatch": [0, 11], "rulematch": [0, 11], "rule": [0, 3, 4, 11, 13, 35, 40, 43], "matching_selector": [0, 11], "range_": [0, 11], "specif": [0, 4, 6, 7, 11, 13, 33, 35, 40, 42, 43, 47, 49, 53], "b": [0, 11, 16, 37, 53, 60], "c": [0, 7, 11, 20, 33, 35, 42, 55], "selectorlist": [0, 11], "cssstylesheethead": [0, 11], "style_sheet_id": [0, 11], "source_url": [0, 11, 43, 46], "is_inlin": [0, 11], "is_mut": [0, 11], "is_construct": [0, 11], "start_lin": [0, 11, 13], "start_column": [0, 11, 13], "end_lin": [0, 11, 13], "end_column": [0, 11, 13], "source_map_url": [0, 11, 13], "owner_nod": [0, 11], "has_source_url": [0, 11, 13], "loading_fail": [0, 11], "cssrule": [0, 11], "selector_list": [0, 11], "nesting_selector": [0, 11], "media": [0, 1, 11, 20, 35, 37, 42], "container_queri": [0, 11], "support": [0, 7, 11, 13, 20, 24, 25, 28, 30, 35, 37, 39, 42, 44, 48, 49, 51, 52, 53, 55], "layer": [0, 11, 16, 24, 31, 36], "scope": [0, 11, 13, 35, 37, 42, 43, 53, 58, 59], "rule_typ": [0, 11], "cssruletyp": [0, 11], "media_rul": [0, 11], "supports_rul": [0, 11], "container_rul": [0, 11], "layer_rul": [0, 11], "scope_rul": [0, 11], "style_rul": [0, 11], "ruleusag": [0, 11], "sourcerang": [0, 11], "shorthandentri": [0, 11], "csscomputedstyleproperti": [0, 11, 16], "cssstyle": [0, 11], "css_properti": [0, 11], "shorthand_entri": [0, 11], "css_text": [0, 11], "cssproperti": [0, 11], "parsed_ok": [0, 11], "longhand_properti": [0, 11], "cssmedia": [0, 11], "media_list": [0, 11], "mediaqueri": [0, 11], "express": [0, 11, 13, 43, 57], "mediaqueryexpress": [0, 11], "unit": [0, 11], "value_rang": [0, 11], "computed_length": [0, 11], "csscontainerqueri": [0, 11], "physical_ax": [0, 11, 16], "logical_ax": [0, 11, 16], "csssupport": [0, 11], "cssscope": [0, 11], "csslayer": [0, 11], "csslayerdata": [0, 11], "order": [0, 11, 18, 20, 26, 33, 36, 37, 42, 47, 56], "sub_lay": [0, 11], "platformfontusag": [0, 11], "family_nam": [0, 5, 11], "post_script_nam": [0, 11], "is_custom_font": [0, 11], "glyph_count": [0, 11], "fontvariationaxi": [0, 11], "min_valu": [0, 11, 52], "max_valu": [0, 11, 52], "default_valu": [0, 11, 52], "fontfac": [0, 11], "font_famili": [0, 11, 37], "font_styl": [0, 11], "font_vari": [0, 11], "font_stretch": [0, 11], "font_displai": [0, 11], "unicode_rang": [0, 11], "src": [0, 4, 7, 11, 28, 35, 37, 49, 57, 58, 59], "platform_font_famili": [0, 11], "font_variation_ax": [0, 11], "csstryrul": [0, 11], "csspositionfallbackrul": [0, 11], "try_rul": [0, 11], "csspositiontryrul": [0, 11], "csskeyframesrul": [0, 11], "animation_nam": [0, 11], "csspropertyregistr": [0, 11], "property_nam": [0, 11], "inherit": [0, 11, 16, 43, 56], "syntax": [0, 11, 35], "initial_valu": [0, 11, 40], "cssfontpalettevaluesrul": [0, 11], "font_palette_nam": [0, 11], "csspropertyrul": [0, 11], "csskeyframerul": [0, 11], "key_text": [0, 11], "styledeclarationedit": [0, 11], "add_rul": [0, 11], "collect_class_nam": [0, 11], "create_style_sheet": [0, 11], "force_pseudo_st": [0, 11], "get_background_color": [0, 11], "get_computed_style_for_nod": [0, 11], "get_inline_styles_for_nod": [0, 11], "get_layers_for_nod": [0, 11], "get_location_for_selector": [0, 11], "get_matched_styles_for_nod": [0, 11], "get_media_queri": [0, 11], "get_platform_fonts_for_nod": [0, 11], "get_style_sheet_text": [0, 11], "set_container_query_text": [0, 11], "set_effective_property_value_for_nod": [0, 11], "set_keyframe_kei": [0, 11], "set_local_fonts_en": [0, 11], "set_media_text": [0, 11], "set_property_rule_property_nam": [0, 11], "set_rule_selector": [0, 11], "set_scope_text": [0, 11], "set_style_sheet_text": [0, 11], "set_style_text": [0, 11], "set_supports_text": [0, 11], "start_rule_usage_track": [0, 11], "stop_rule_usage_track": [0, 11], "take_computed_style_upd": [0, 11], "take_coverage_delta": [0, 11], "track_computed_style_upd": [0, 11], "fontsupd": [0, 11], "mediaqueryresultchang": [0, 11], "stylesheetad": [0, 11], "stylesheetchang": [0, 11], "stylesheetremov": [0, 11], "databas": [0, 1, 27, 47], "databaseid": [0, 12], "version": [0, 7, 12, 13, 16, 17, 18, 20, 25, 27, 35, 36, 37, 38, 44, 45, 46, 48, 49], "execute_sql": [0, 12], "get_database_table_nam": [0, 12], "adddatabas": [0, 12], "debugg": [0, 1, 21, 37, 43], "breakpointid": [0, 13], "callframeid": [0, 13], "scriptposit": [0, 13], "locationrang": [0, 13], "end": [0, 3, 4, 11, 13, 16, 28, 30, 31, 35, 37, 41, 43, 47, 51, 55], "callfram": [0, 13, 26, 41, 43], "call_frame_id": [0, 13], "function_nam": [0, 13, 41, 43], "scope_chain": [0, 13], "function_loc": [0, 13], "return_valu": [0, 13], "can_be_restart": [0, 13], "object_": [0, 13, 43], "start_loc": [0, 13], "end_loc": [0, 13], "searchmatch": [0, 13, 35, 37], "line_cont": [0, 13], "breakloc": [0, 13], "wasmdisassemblychunk": [0, 13], "bytecode_offset": [0, 13], "scriptlanguag": [0, 13], "java_script": [0, 13], "web_assembli": [0, 13], "debugsymbol": [0, 13], "external_url": [0, 13], "continue_to_loc": [0, 13], "disassemble_wasm_modul": [0, 13], "evaluate_on_call_fram": [0, 13], "get_possible_breakpoint": [0, 13], "get_script_sourc": [0, 13], "get_stack_trac": [0, 13], "get_wasm_bytecod": [0, 13], "next_wasm_disassembly_chunk": [0, 13], "paus": [0, 3, 13, 20, 24, 26, 37, 43, 49, 55], "pause_on_async_cal": [0, 13], "remove_breakpoint": [0, 13], "restart_fram": [0, 13], "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], "search_in_cont": [0, 13], "set_async_call_stack_depth": [0, 13, 43], "set_blackbox_pattern": [0, 13], "set_blackboxed_rang": [0, 13], "set_breakpoint": [0, 13], "set_breakpoint_by_url": [0, 13], "set_breakpoint_on_function_cal": [0, 13], "set_breakpoints_act": [0, 13], "set_instrumentation_breakpoint": [0, 13, 17, 21], "set_pause_on_except": [0, 13], "set_return_valu": [0, 13], "set_script_sourc": [0, 13], "set_skip_all_paus": [0, 13], "set_variable_valu": [0, 13], "step_into": [0, 13], "step_out": [0, 13], "step_ov": [0, 13], "breakpointresolv": [0, 13], "breakpoint_id": [0, 13], "call_fram": [0, 13, 26, 41, 43], "data": [0, 2, 5, 6, 8, 11, 13, 16, 18, 20, 24, 25, 27, 28, 30, 31, 33, 35, 36, 37, 41, 43, 46, 47, 51, 52], "hit_breakpoint": [0, 13], "async_stack_trac": [0, 13], "async_stack_trace_id": [0, 13], "async_call_stack_trace_id": [0, 13], "scriptfailedtopars": [0, 13], "execution_context_id": [0, 13, 16, 43], "hash_": [0, 13], "execution_context_aux_data": [0, 13], "is_modul": [0, 13], "stack_trac": [0, 13, 32, 43], "code_offset": [0, 13], "script_languag": [0, 13], "embedder_nam": [0, 13], "scriptpars": [0, 13], "is_live_edit": [0, 13], "debug_symbol": [0, 13], "deviceaccess": [0, 1], "requestid": [0, 4, 14, 24, 32, 35, 40, 47], "deviceid": [0, 14], "promptdevic": [0, 14], "cancel_prompt": [0, 14], "select_prompt": [0, 14], "devicerequestprompt": [0, 14], "devic": [0, 9, 14, 15, 20, 28, 36, 37, 48, 53], "deviceorient": [0, 1], "clear_device_orientation_overrid": [0, 15, 37], "set_device_orientation_overrid": [0, 15, 37], "dom": [0, 1, 2, 5, 7, 11, 13, 17, 18, 19, 28, 36, 37, 39, 43, 54, 55, 57], "nodeid": [0, 2, 11, 16, 17, 36], "backendnodeid": [0, 2, 3, 4, 5, 11, 16, 17, 18, 31, 36, 37, 39, 40], "backendnod": [0, 16], "pseudotyp": [0, 11, 16, 18], "first_lin": [0, 16], "first_lett": [0, 16], "befor": [0, 4, 13, 16, 20, 23, 24, 25, 26, 30, 31, 35, 37, 38, 39, 41, 47, 55, 58, 59], "after": [0, 4, 11, 13, 16, 20, 24, 28, 29, 35, 36, 37, 43, 54, 57], "marker": [0, 16, 28, 51], "backdrop": [0, 16], "search_text": [0, 16], "target_text": [0, 16], "spelling_error": [0, 16], "grammar_error": [0, 16], "highlight": [0, 16, 36, 55], "first_line_inherit": [0, 16], "scroll_mark": [0, 16], "scroll_marker_group": [0, 16], "scrollbar": [0, 16, 20, 37], "scrollbar_thumb": [0, 16], "scrollbar_button": [0, 16], "scrollbar_track": [0, 16], "scrollbar_track_piec": [0, 16], "scrollbar_corn": [0, 16], "resiz": [0, 11, 16, 20, 36], "input_list_button": [0, 16], "view_transit": [0, 16], "view_transition_group": [0, 16], "view_transition_image_pair": [0, 16], "view_transition_old": [0, 16], "view_transition_new": [0, 16], "shadowroottyp": [0, 16, 18], "open_": [0, 16], "compatibilitymod": [0, 16], "quirks_mod": [0, 16], "limited_quirks_mod": [0, 16], "no_quirks_mod": [0, 16], "physicalax": [0, 11, 16], "horizont": [0, 16, 18, 20, 37], "vertic": [0, 16, 18, 20, 37], "both": [0, 16, 28, 35, 37], "logicalax": [0, 11, 16], "inlin": [0, 11, 16, 18, 37, 40, 57], "block": [0, 4, 16, 31, 35, 37, 41, 43, 48, 55, 57], "scrollorient": [0, 3, 16], "rgba": [0, 16, 20, 36], "r": [0, 16], "g": [0, 2, 4, 5, 11, 16, 20, 28, 35, 37, 43, 45, 48, 51], "quad": [0, 16, 36], "boxmodel": [0, 16], "pad": [0, 16, 36], "border": [0, 16, 36], "margin": [0, 16, 36, 37], "shape_outsid": [0, 16], "shapeoutsideinfo": [0, 16], "shape": [0, 16, 36], "margin_shap": [0, 16], "rect": [0, 16, 18, 31, 36, 37, 39], "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, 55, 56, 57], "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, 55], "collect_class_names_from_subtre": [0, 16], "copy_to": [0, 16], "describe_nod": [0, 16], "discard_search_result": [0, 16], "get_anchor_el": [0, 16], "get_attribut": [0, 16], "get_box_model": [0, 16], "get_container_for_nod": [0, 16], "get_content_quad": [0, 16], "get_docu": [0, 16], "get_element_by_rel": [0, 16], "get_file_info": [0, 16], "get_flattened_docu": [0, 16], "get_frame_own": [0, 16], "get_node_for_loc": [0, 16], "get_node_stack_trac": [0, 16], "get_nodes_for_subtree_by_styl": [0, 16], "get_outer_html": [0, 16], "get_querying_descendants_for_contain": [0, 16], "get_relayout_boundari": [0, 16], "get_search_result": [0, 16], "get_top_layer_el": [0, 16], "hide_highlight": [0, 16, 36], "highlight_nod": [0, 16, 36], "highlight_rect": [0, 16, 36], "mark_undoable_st": [0, 16], "move_to": [0, 16], "perform_search": [0, 16], "push_node_by_path_to_frontend": [0, 16], "push_nodes_by_backend_ids_to_frontend": [0, 16], "redo": [0, 16], "remove_attribut": [0, 16], "remove_nod": [0, 16], "request_child_nod": [0, 16], "request_nod": [0, 16], "resolve_nod": [0, 16], "scroll_into_view_if_need": [0, 16], "set_attribute_valu": [0, 16], "set_attributes_as_text": [0, 16], "set_file_input_fil": [0, 16], "set_inspected_nod": [0, 16], "set_node_nam": [0, 16], "set_node_stack_traces_en": [0, 16], "set_node_valu": [0, 16], "set_outer_html": [0, 16], "undo": [0, 16], "attributemodifi": [0, 16], "attributeremov": [0, 16], "characterdatamodifi": [0, 16], "character_data": [0, 16], "childnodecountupd": [0, 16], "childnodeinsert": [0, 16], "parent_node_id": [0, 16], "previous_node_id": [0, 16], "childnoderemov": [0, 16], "distributednodesupd": [0, 16], "insertion_point_id": [0, 16], "documentupd": [0, 16], "inlinestyleinvalid": [0, 16], "pseudoelementad": [0, 16], "toplayerelementsupd": [0, 16], "pseudoelementremov": [0, 16], "pseudo_element_id": [0, 16], "setchildnod": [0, 16], "shadowrootpop": [0, 16], "host_id": [0, 16], "root_id": [0, 16], "shadowrootpush": [0, 16], "domdebugg": [0, 1], "dombreakpointtyp": [0, 17], "subtree_modifi": [0, 17], "attribute_modifi": [0, 17], "node_remov": [0, 17], "cspviolationtyp": [0, 17], "trustedtype_sink_viol": [0, 17], "trustedtype_policy_viol": [0, 17], "eventlisten": [0, 17, 18], "use_captur": [0, 17], "passiv": [0, 17], "onc": [0, 13, 16, 17, 21, 22, 35, 37, 43], "handler": [0, 17, 35, 37, 42, 43, 57], "original_handl": [0, 17], "get_event_listen": [0, 17], "remove_dom_breakpoint": [0, 17], "remove_event_listener_breakpoint": [0, 17], "remove_instrumentation_breakpoint": [0, 17, 21], "remove_xhr_breakpoint": [0, 17], "set_break_on_csp_viol": [0, 17], "set_dom_breakpoint": [0, 17], "set_event_listener_breakpoint": [0, 17], "set_xhr_breakpoint": [0, 17], "domsnapshot": [0, 1, 16], "domnod": [0, 16, 18], "text_valu": [0, 18], "input_valu": [0, 18], "input_check": [0, 18], "option_select": [0, 18], "child_node_index": [0, 18], "pseudo_element_index": [0, 18], "layout_node_index": [0, 18], "content_languag": [0, 18], "document_encod": [0, 18], "content_document_index": [0, 18], "is_click": [0, 18], "event_listen": [0, 18], "current_source_url": [0, 18], "origin_url": [0, 18], "scroll_offset_x": [0, 18, 37], "scroll_offset_i": [0, 18, 37], "inlinetextbox": [0, 18], "bounding_box": [0, 18], "start_character_index": [0, 18], "num_charact": [0, 18], "layouttreenod": [0, 18], "dom_node_index": [0, 18], "layout_text": [0, 18], "inline_text_nod": [0, 18], "style_index": [0, 18], "paint_ord": [0, 18], "is_stacking_context": [0, 18], "computedstyl": [0, 18], "namevalu": [0, 18], "stringindex": [0, 18], "arrayofstr": [0, 18], "rarestringdata": [0, 18], "index": [0, 16, 18, 26, 27, 35, 37, 43], "rarebooleandata": [0, 18], "rareintegerdata": [0, 18], "rectangl": [0, 16, 18, 31, 36, 37], "documentsnapshot": [0, 18], "encoding_nam": [0, 18], "layout": [0, 4, 16, 18, 25, 28, 31, 36, 37, 39], "text_box": [0, 18], "content_width": [0, 18], "content_height": [0, 18], "nodetreesnapshot": [0, 18], "parent_index": [0, 18], "layouttreesnapshot": [0, 18], "node_index": [0, 18], "stacking_context": [0, 18], "offset_rect": [0, 18], "scroll_rect": [0, 18, 31], "client_rect": [0, 18], "blended_background_color": [0, 18], "text_color_opac": [0, 18], "textboxsnapshot": [0, 18], "layout_index": [0, 18], "capture_snapshot": [0, 18, 37], "get_snapshot": [0, 18], "domstorag": [0, 1], "serializedstoragekei": [0, 19, 47], "storageid": [0, 19], "is_local_storag": [0, 19], "get_dom_storage_item": [0, 19], "remove_dom_storage_item": [0, 19], "set_dom_storage_item": [0, 19], "domstorageitemad": [0, 19], "storage_id": [0, 19], "new_valu": [0, 13, 19], "domstorageitemremov": [0, 19], "domstorageitemupd": [0, 19], "old_valu": [0, 19], "domstorageitemsclear": [0, 19], "emul": [0, 1, 28, 35, 36, 37], "screenorient": [0, 20, 37], "angl": [0, 20, 28], "displayfeatur": [0, 20], "mask_length": [0, 20], "devicepostur": [0, 20], "mediafeatur": [0, 20], "virtualtimepolici": [0, 20], "advanc": [0, 20], "pause_if_network_fetches_pend": [0, 20], "useragentbrandvers": [0, 20], "brand": [0, 20], "useragentmetadata": [0, 20, 35], "platform": [0, 6, 7, 11, 20, 28, 35, 36, 37, 39, 48, 51, 52], "platform_vers": [0, 20], "architectur": [0, 20], "model": [0, 16, 20, 37, 48], "mobil": [0, 20, 37], "full_version_list": [0, 20], "full_vers": [0, 20], "bit": [0, 20, 28, 37, 47, 53, 55], "wow64": [0, 20, 37], "sensortyp": [0, 20], "absolute_orient": [0, 20], "acceleromet": [0, 20, 37], "ambient_light": [0, 20], "graviti": [0, 20], "gyroscop": [0, 20, 37], "linear_acceler": [0, 20], "magnetomet": [0, 20, 37], "proxim": [0, 20], "relative_orient": [0, 20], "sensormetadata": [0, 20], "minimum_frequ": [0, 20], "maximum_frequ": [0, 20], "sensorreadingsingl": [0, 20], "sensorreadingxyz": [0, 20], "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], "sensorreadingquaternion": [0, 20], "w": [0, 20], "sensorread": [0, 20], "xyz": [0, 20], "quaternion": [0, 20], "disabledimagetyp": [0, 20], "avif": [0, 20], "webp": [0, 20, 25, 48], "can_emul": [0, 20], "clear_device_metrics_overrid": [0, 20, 37], "clear_device_posture_overrid": [0, 20], "clear_geolocation_overrid": [0, 20, 37], "clear_idle_overrid": [0, 20], "get_overridden_sensor_inform": [0, 20], "reset_page_scale_factor": [0, 20], "set_auto_dark_mode_overrid": [0, 20], "set_automation_overrid": [0, 20], "set_cpu_throttling_r": [0, 20], "set_default_background_color_overrid": [0, 20], "set_device_metrics_overrid": [0, 20, 37], "set_device_posture_overrid": [0, 20], "set_disabled_image_typ": [0, 20], "set_document_cookie_dis": [0, 20], "set_emit_touch_events_for_mous": [0, 20], "set_emulated_media": [0, 20], "set_emulated_vision_defici": [0, 20], "set_focus_emulation_en": [0, 20], "set_geolocation_overrid": [0, 20, 37], "set_hardware_concurrency_overrid": [0, 20], "set_idle_overrid": [0, 20], "set_locale_overrid": [0, 20], "set_navigator_overrid": [0, 20], "set_page_scale_factor": [0, 20], "set_script_execution_dis": [0, 20], "set_scrollbars_hidden": [0, 20], "set_sensor_override_en": [0, 20], "set_sensor_override_read": [0, 20], "set_timezone_overrid": [0, 20], "set_touch_emulation_en": [0, 20, 37], "set_user_agent_overrid": [0, 20, 35], "set_virtual_time_polici": [0, 20], "set_visible_s": [0, 20], "virtualtimebudgetexpir": [0, 20], "eventbreakpoint": [0, 1], "extens": [0, 1, 11, 36, 37, 42, 53, 56], "load_unpack": [0, 22], "fedcm": [0, 1], "loginst": [0, 23], "sign_in": [0, 23], "sign_up": [0, 23], "dialogtyp": [0, 23, 37], "account_choos": [0, 23], "auto_reauthn": [0, 23], "confirm_idp_login": [0, 23], "dialogbutton": [0, 23], "confirm_idp_login_continu": [0, 23], "error_got_it": [0, 23], "error_more_detail": [0, 23], "accounturltyp": [0, 23], "terms_of_servic": [0, 23], "privacy_polici": [0, 23], "account": [0, 23, 37, 58, 59], "account_id": [0, 23], "email": [0, 23, 58, 59], "given_nam": [0, 5, 23], "picture_url": [0, 23], "idp_config_url": [0, 23], "idp_login_url": [0, 23], "login_st": [0, 23], "terms_of_service_url": [0, 23], "privacy_policy_url": [0, 23], "click_dialog_button": [0, 23], "dismiss_dialog": [0, 23], "open_url": [0, 23], "reset_cooldown": [0, 23], "select_account": [0, 23], "dialogshown": [0, 23], "dialog_id": [0, 23], "dialog_typ": [0, 23], "subtitl": [0, 23], "dialogclos": [0, 23], "fetch": [0, 1, 2, 8, 20, 27, 35, 37, 47, 52], "requeststag": [0, 24], "respons": [0, 4, 8, 14, 16, 24, 25, 35, 37, 46, 49, 53], "requestpattern": [0, 24, 35], "url_pattern": [0, 24, 35], "request_stag": [0, 24], "headerentri": [0, 24], "authchalleng": [0, 24, 35], "scheme": [0, 24, 35, 37], "realm": [0, 24, 35], "authchallengerespons": [0, 24, 35], "usernam": [0, 24, 35], "password": [0, 5, 24, 35], "continue_request": [0, 24], "continue_respons": [0, 24], "continue_with_auth": [0, 24], "fail_request": [0, 24], "fulfill_request": [0, 24], "get_response_bodi": [0, 24, 35], "take_response_body_as_stream": [0, 24], "requestpaus": [0, 24, 35], "response_error_reason": [0, 24, 35], "response_status_cod": [0, 24, 35], "network_id": [0, 24], "redirected_request_id": [0, 24], "authrequir": [0, 24], "auth_challeng": [0, 24, 35], "headlessexperiment": [0, 1], "screenshotparam": [0, 25], "format_": [0, 25, 37], "qualiti": [0, 4, 25, 37], "optimize_for_spe": [0, 25, 37], "begin_fram": [0, 25], "heapprofil": [0, 1], "heapsnapshotobjectid": [0, 26], "samplingheapprofilenod": [0, 26], "self_siz": [0, 26], "samplingheapprofilesampl": [0, 26], "size": [0, 4, 7, 11, 13, 20, 25, 26, 30, 34, 35, 36, 37, 39, 43, 47, 48, 51, 52, 53, 55, 57], "ordin": [0, 26], "samplingheapprofil": [0, 26], "head": [0, 26, 57], "sampl": [0, 7, 26, 34, 41, 51, 52], "add_inspected_heap_object": [0, 26], "collect_garbag": [0, 26], "get_heap_object_id": [0, 26], "get_object_by_heap_object_id": [0, 26], "get_sampling_profil": [0, 26, 34], "start_sampl": [0, 26, 34], "start_tracking_heap_object": [0, 26], "stop_sampl": [0, 26, 34], "stop_tracking_heap_object": [0, 26], "take_heap_snapshot": [0, 26], "addheapsnapshotchunk": [0, 26], "chunk": [0, 13, 26, 30, 35], "heapstatsupd": [0, 26], "stats_upd": [0, 26], "lastseenobjectid": [0, 26], "last_seen_object_id": [0, 26], "reportheapsnapshotprogress": [0, 26], "done": [0, 5, 7, 26, 37, 47, 57], "total": [0, 4, 7, 13, 16, 26, 34, 35, 37, 43, 47, 51, 57], "finish": [0, 2, 4, 26, 35, 42, 52, 58], "resetprofil": [0, 26], "indexeddb": [0, 1, 47], "databasewithobjectstor": [0, 27], "object_stor": [0, 27], "objectstor": [0, 27, 47], "key_path": [0, 27], "auto_incr": [0, 27], "objectstoreindex": [0, 27], "uniqu": [0, 2, 3, 4, 7, 8, 12, 13, 16, 24, 26, 27, 28, 31, 33, 35, 37, 40, 41, 43, 49, 52], "multi_entri": [0, 27], "date": [0, 27, 35, 37, 45, 57], "keyrang": [0, 27], "lower_open": [0, 27], "upper_open": [0, 27], "lower": [0, 27], "upper": [0, 27], "primary_kei": [0, 27], "keypath": [0, 27], "clear_object_stor": [0, 27], "delete_databas": [0, 27], "delete_object_store_entri": [0, 27], "get_metadata": [0, 27], "request_data": [0, 27], "request_databas": [0, 27], "request_database_nam": [0, 27], "input": [0, 1, 16, 18, 20, 30, 37, 42, 43, 55, 58, 59, 60], "touchpoint": [0, 28], "radius_x": [0, 28], "radius_i": [0, 28], "rotation_angl": [0, 28], "forc": [0, 11, 13, 20, 28, 31, 37, 51], "tangential_pressur": [0, 28], "tilt_x": [0, 28], "tilt_i": [0, 28], "twist": [0, 28], "gesturesourcetyp": [0, 28], "touch": [0, 20, 28, 37], "mous": [0, 18, 20, 28, 37, 55], "mousebutton": [0, 28], "none": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 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, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57], "middl": [0, 28], "right": [0, 28, 33, 37], "timesinceepoch": [0, 6, 20, 28, 35, 37, 39, 45, 47], "dragdataitem": [0, 28], "mime_typ": [0, 28, 35, 37], "dragdata": [0, 28], "drag_operations_mask": [0, 28], "cancel_drag": [0, 28], "dispatch_drag_ev": [0, 28], "dispatch_key_ev": [0, 28], "dispatch_mouse_ev": [0, 28], "dispatch_touch_ev": [0, 28], "emulate_touch_from_mouse_ev": [0, 28], "ime_set_composit": [0, 28], "insert_text": [0, 28], "set_ignore_input_ev": [0, 28], "set_intercept_drag": [0, 28], "synthesize_pinch_gestur": [0, 28], "synthesize_scroll_gestur": [0, 28], "synthesize_tap_gestur": [0, 28], "dragintercept": [0, 28], "detach": [0, 29, 37, 49], "targetcrash": [0, 29, 49], "targetreloadedaftercrash": [0, 29], "io": [0, 1, 7, 20, 23, 24, 35, 37, 39, 40, 47, 52, 53], "streamhandl": [0, 24, 30, 35, 37, 51], "read": [0, 8, 11, 13, 16, 20, 24, 30, 35, 37, 57], "resolve_blob": [0, 30], "layertre": [0, 1], "layerid": [0, 31], "snapshotid": [0, 31], "scrollrect": [0, 18, 31], "stickypositionconstraint": [0, 31], "sticky_box_rect": [0, 31], "containing_block_rect": [0, 31], "nearest_layer_shifting_sticky_box": [0, 31], "nearest_layer_shifting_containing_block": [0, 31], "picturetil": [0, 31], "pictur": [0, 31, 37], "layer_id": [0, 31], "offset_x": [0, 31, 37], "offset_i": [0, 31, 37], "paint_count": [0, 31], "draws_cont": [0, 31], "parent_layer_id": [0, 31], "transform": [0, 31], "anchor_x": [0, 31], "anchor_i": [0, 31], "anchor_z": [0, 31], "invis": [0, 31], "sticky_position_constraint": [0, 31], "paintprofil": [0, 31], "compositing_reason": [0, 31], "load_snapshot": [0, 31], "make_snapshot": [0, 31], "profile_snapshot": [0, 31], "release_snapshot": [0, 31], "replay_snapshot": [0, 31], "snapshot_command_log": [0, 31], "layerpaint": [0, 31], "clip": [0, 31, 37], "layertreedidchang": [0, 31], "log": [0, 1, 10, 31, 33, 35, 51, 58, 59], "logentri": [0, 32], "categori": [0, 32, 45, 51], "network_request_id": [0, 32], "worker_id": [0, 32], "arg": [0, 32, 43, 56, 58], "violationset": [0, 32], "threshold": [0, 32], "start_violations_report": [0, 32], "stop_violations_report": [0, 32], "entryad": [0, 32], "entri": [0, 8, 24, 27, 32, 33, 35, 37, 43, 46, 47, 49, 54], "playerid": [0, 33], "playermessag": [0, 33], "playerproperti": [0, 33], "playerev": [0, 33], "playererrorsourceloc": [0, 33], "playererror": [0, 33], "stack": [0, 13, 16, 18, 24, 32, 33, 34, 35, 37, 41, 43, 51], "caus": [0, 2, 4, 7, 13, 24, 26, 33, 35, 36, 37, 40, 42, 49, 54], "playerpropertieschang": [0, 33], "player_id": [0, 33], "playereventsad": [0, 33], "playermessageslog": [0, 33], "playererrorsrais": [0, 33], "playerscr": [0, 33], "player": [0, 33], "memori": [0, 1, 26, 37, 43, 51], "pressurelevel": [0, 34], "moder": [0, 34], "critic": [0, 34, 37], "samplingprofilenod": [0, 34], "samplingprofil": [0, 34], "uuid": [0, 30, 34], "base_address": [0, 34], "forcibly_purge_java_script_memori": [0, 34], "get_all_time_sampling_profil": [0, 34], "get_browser_sampling_profil": [0, 34], "get_dom_count": [0, 34], "prepare_for_leak_detect": [0, 34], "set_pressure_notifications_suppress": [0, 34], "simulate_pressure_notif": [0, 34], "network": [0, 1, 4, 11, 24, 32, 40, 43, 45, 47, 57], "resourcetyp": [0, 24, 35, 37], "document": [0, 2, 3, 4, 11, 16, 18, 20, 28, 34, 35, 37, 39, 40, 57], "text_track": [0, 35], "xhr": [0, 17, 35, 37], "web_socket": [0, 35, 37], "signed_exchang": [0, 35], "csp_violation_report": [0, 35], "preflight": [0, 35], "loaderid": [0, 4, 35, 37, 40], "interceptionid": [0, 35], "errorreason": [0, 24, 35], "fail": [0, 4, 11, 13, 24, 25, 35, 37, 42, 53], "abort": [0, 23, 35], "timed_out": [0, 35], "access_deni": [0, 35], "connection_clos": [0, 35], "connection_reset": [0, 35], "connection_refus": [0, 35], "connection_abort": [0, 35], "connection_fail": [0, 35], "name_not_resolv": [0, 35], "internet_disconnect": [0, 35], "address_unreach": [0, 35], "blocked_by_cli": [0, 35, 40], "blocked_by_respons": [0, 4, 35], "monotonictim": [0, 35, 37], "connectiontyp": [0, 35], "cellular2g": [0, 35], "cellular3g": [0, 35], "cellular4g": [0, 35], "bluetooth": [0, 35, 37], "ethernet": [0, 35], "wifi": [0, 35], "wimax": [0, 35], "cookiesamesit": [0, 35], "strict": [0, 35, 47], "lax": [0, 35], "cookieprior": [0, 35], "medium": [0, 35], "cookiesourceschem": [0, 35], "unset": [0, 35, 42, 57], "non_secur": [0, 35], "secur": [0, 1, 8, 19, 27, 35, 37, 43, 47], "resourcetim": [0, 35], "request_tim": [0, 35], "proxy_start": [0, 35], "proxy_end": [0, 35], "dns_start": [0, 35], "dns_end": [0, 35], "connect_start": [0, 35], "connect_end": [0, 35], "ssl_start": [0, 35], "ssl_end": [0, 35], "worker_start": [0, 35], "worker_readi": [0, 35], "worker_fetch_start": [0, 35], "worker_respond_with_settl": [0, 35], "send_start": [0, 35], "send_end": [0, 35], "push_start": [0, 35], "push_end": [0, 35], "receive_headers_start": [0, 35], "receive_headers_end": [0, 35], "worker_router_evaluation_start": [0, 35], "worker_cache_lookup_start": [0, 35], "resourceprior": [0, 35], "very_low": [0, 35], "very_high": [0, 35], "postdataentri": [0, 35], "bytes_": [0, 35], "initial_prior": [0, 35], "referrer_polici": [0, 35, 37], "url_frag": [0, 35, 37], "post_data": [0, 24, 35], "has_post_data": [0, 35], "post_data_entri": [0, 35], "mixed_content_typ": [0, 35, 45], "is_link_preload": [0, 35], "trust_token_param": [0, 35], "is_same_sit": [0, 35], "signedcertificatetimestamp": [0, 35], "statu": [0, 4, 7, 8, 13, 24, 35, 37, 40, 46, 48, 49], "log_descript": [0, 35], "log_id": [0, 35], "hash_algorithm": [0, 35], "signature_algorithm": [0, 35], "signature_data": [0, 35], "securitydetail": [0, 35], "protocol": [0, 7, 24, 35, 37, 44, 45, 49, 51, 52, 53, 57], "key_exchang": [0, 35, 45], "cipher": [0, 35, 45], "certificate_id": [0, 35], "subject_nam": [0, 35, 45], "san_list": [0, 35], "issuer": [0, 35, 45, 47], "valid_from": [0, 35, 45], "valid_to": [0, 35, 45], "signed_certificate_timestamp_list": [0, 35], "certificate_transparency_compli": [0, 35], "encrypted_client_hello": [0, 35], "key_exchange_group": [0, 35, 45], "mac": [0, 35, 45, 48], "server_signature_algorithm": [0, 35], "certificatetransparencycompli": [0, 35], "unknown": [0, 35, 37, 45, 48], "not_compli": [0, 35], "compliant": [0, 35], "blockedreason": [0, 35], "csp": [0, 4, 17, 35, 37, 43], "mixed_cont": [0, 35, 40], "subresource_filt": [0, 35], "content_typ": [0, 35], "coop_sandboxed_iframe_cannot_navigate_to_coop_pag": [0, 35], "corserror": [0, 35], "disallowed_by_mod": [0, 35], "invalid_respons": [0, 35], "wildcard_origin_not_allow": [0, 35], "missing_allow_origin_head": [0, 35], "multiple_allow_origin_valu": [0, 35], "invalid_allow_origin_valu": [0, 35], "allow_origin_mismatch": [0, 35], "invalid_allow_credenti": [0, 35], "cors_disabled_schem": [0, 35], "preflight_invalid_statu": [0, 35], "preflight_disallowed_redirect": [0, 35], "preflight_wildcard_origin_not_allow": [0, 35], "preflight_missing_allow_origin_head": [0, 35], "preflight_multiple_allow_origin_valu": [0, 35], "preflight_invalid_allow_origin_valu": [0, 35], "preflight_allow_origin_mismatch": [0, 35], "preflight_invalid_allow_credenti": [0, 35], "preflight_missing_allow_extern": [0, 35], "preflight_invalid_allow_extern": [0, 35], "preflight_missing_allow_private_network": [0, 35], "preflight_invalid_allow_private_network": [0, 35], "invalid_allow_methods_preflight_respons": [0, 35], "invalid_allow_headers_preflight_respons": [0, 35], "method_disallowed_by_preflight_respons": [0, 35], "header_disallowed_by_preflight_respons": [0, 35], "redirect_contains_credenti": [0, 35], "insecure_private_network": [0, 35], "invalid_private_network_access": [0, 35], "unexpected_private_network_access": [0, 35], "no_cors_redirect_mode_not_follow": [0, 35], "preflight_missing_private_network_access_id": [0, 35], "preflight_missing_private_network_access_nam": [0, 35], "private_network_access_permission_unavail": [0, 35], "private_network_access_permission_deni": [0, 35], "corserrorstatu": [0, 4, 35], "cors_error": [0, 35], "failed_paramet": [0, 35], "serviceworkerresponsesourc": [0, 35], "cache_storag": [0, 35, 47], "http_cach": [0, 35], "fallback_cod": [0, 35], "trusttokenparam": [0, 35], "refresh_polici": [0, 35], "trusttokenoperationtyp": [0, 35], "issuanc": [0, 35, 37], "redempt": [0, 35, 37, 47], "sign": [0, 23, 35, 42, 47, 58, 59], "alternateprotocolusag": [0, 35], "alternative_job_won_without_rac": [0, 35], "alternative_job_won_rac": [0, 35], "main_job_won_rac": [0, 35], "mapping_miss": [0, 35], "broken": [0, 35, 45], "dns_alpn_h3_job_won_without_rac": [0, 35], "dns_alpn_h3_job_won_rac": [0, 35], "unspecified_reason": [0, 35], "serviceworkerroutersourc": [0, 35], "fetch_ev": [0, 35], "race_network_and_fetch_handl": [0, 35], "serviceworkerrouterinfo": [0, 35], "rule_id_match": [0, 35], "matched_source_typ": [0, 35], "actual_source_typ": [0, 35], "status_text": [0, 35], "charset": [0, 35], "connection_reus": [0, 35], "connection_id": [0, 35, 50], "encoded_data_length": [0, 35], "security_st": [0, 35, 45], "headers_text": [0, 35], "request_headers_text": [0, 35], "remote_ip_address": [0, 35], "remote_port": [0, 35], "from_disk_cach": [0, 35], "from_service_work": [0, 35], "from_prefetch_cach": [0, 35], "from_early_hint": [0, 35], "service_worker_router_info": [0, 35], "time": [0, 2, 3, 4, 11, 13, 20, 23, 25, 26, 28, 31, 32, 33, 35, 38, 39, 41, 43, 45, 46, 47, 49, 52, 54, 55, 57], "service_worker_response_sourc": [0, 35], "cache_storage_cache_nam": [0, 35], "alternate_protocol_usag": [0, 35], "security_detail": [0, 35], "websocketrequest": [0, 35], "websocketrespons": [0, 35], "websocketfram": [0, 35], "opcod": [0, 35], "mask": [0, 20, 35, 36], "payload_data": [0, 35], "cachedresourc": [0, 35], "body_s": [0, 35], "initi": [0, 6, 13, 20, 24, 25, 35, 37, 40, 41, 42, 43, 49, 55], "cookiepartitionkei": [0, 35], "top_level_sit": [0, 35], "has_cross_site_ancestor": [0, 35], "http_onli": [0, 35], "prioriti": [0, 2, 11, 35, 45, 47], "same_parti": [0, 35], "source_schem": [0, 35], "source_port": [0, 35], "expir": [0, 35, 37, 45, 47], "same_sit": [0, 35], "partition_kei": [0, 35], "partition_key_opaqu": [0, 35], "setcookieblockedreason": [0, 35], "secure_onli": [0, 35], "same_site_strict": [0, 35], "same_site_lax": [0, 35], "same_site_unspecified_treated_as_lax": [0, 35], "same_site_none_insecur": [0, 35], "user_prefer": [0, 35], "third_party_phaseout": [0, 35], "third_party_blocked_in_first_party_set": [0, 35], "syntax_error": [0, 35], "scheme_not_support": [0, 35], "overwrite_secur": [0, 35], "invalid_domain": [0, 35], "invalid_prefix": [0, 35], "unknown_error": [0, 35], "schemeful_same_site_strict": [0, 35], "schemeful_same_site_lax": [0, 35], "schemeful_same_site_unspecified_treated_as_lax": [0, 35], "same_party_from_cross_party_context": [0, 35], "same_party_conflicts_with_other_attribut": [0, 35], "name_value_pair_exceeds_max_s": [0, 35], "disallowed_charact": [0, 35], "no_cookie_cont": [0, 35], "cookieblockedreason": [0, 35], "not_on_path": [0, 35], "domain_mismatch": [0, 35], "cookieexemptionreason": [0, 35], "user_set": [0, 35], "tpcd_metadata": [0, 35], "tpcd_deprecation_tri": [0, 35], "tpcd_heurist": [0, 35], "enterprise_polici": [0, 35], "cors_opt_in": [0, 35], "blockedsetcookiewithreason": [0, 35], "blocked_reason": [0, 35], "cookie_lin": [0, 35], "exemptedsetcookiewithreason": [0, 35], "exemption_reason": [0, 35], "associatedcooki": [0, 35], "cookieparam": [0, 35, 47], "interceptionstag": [0, 35], "headers_receiv": [0, 35], "interception_stag": [0, 35], "signedexchangesignatur": [0, 35], "signatur": [0, 35, 45, 53], "integr": [0, 33, 35, 51], "validity_url": [0, 35], "cert_url": [0, 35], "cert_sha256": [0, 35], "certif": [0, 35, 45], "signedexchangehead": [0, 35], "response_cod": [0, 24, 35], "header_integr": [0, 35], "signedexchangeerrorfield": [0, 35], "signature_sig": [0, 35], "signature_integr": [0, 35], "signature_cert_url": [0, 35], "signature_cert_sha256": [0, 35], "signature_validity_url": [0, 35], "signature_timestamp": [0, 35], "signedexchangeerror": [0, 35], "signature_index": [0, 35], "error_field": [0, 35], "signedexchangeinfo": [0, 35], "outer_respons": [0, 35], "contentencod": [0, 35], "deflat": [0, 35], "gzip": [0, 35, 51], "br": [0, 35], "zstd": [0, 35], "privatenetworkrequestpolici": [0, 35], "allow": [0, 4, 5, 7, 13, 17, 20, 23, 24, 27, 28, 33, 35, 37, 40, 41, 42, 43, 45, 49, 52, 53, 57], "block_from_insecure_to_more_priv": [0, 35], "warn_from_insecure_to_more_priv": [0, 35], "preflight_block": [0, 35], "preflight_warn": [0, 35], "ipaddressspac": [0, 4, 35], "local": [0, 11, 13, 19, 20, 35, 37, 42, 47], "privat": [0, 35, 37, 43, 53], "public": [0, 4, 35, 37], "connecttim": [0, 35], "clientsecurityst": [0, 4, 35], "initiator_is_secure_context": [0, 35], "initiator_ip_address_spac": [0, 35], "private_network_request_polici": [0, 35], "crossoriginopenerpolicyvalu": [0, 35], "same_origin": [0, 35, 37], "same_origin_allow_popup": [0, 35], "restrict_properti": [0, 35], "unsafe_non": [0, 35], "same_origin_plus_coep": [0, 35], "restrict_properties_plus_coep": [0, 35], "crossoriginopenerpolicystatu": [0, 35], "report_only_valu": [0, 35], "reporting_endpoint": [0, 35], "report_only_reporting_endpoint": [0, 35], "crossoriginembedderpolicyvalu": [0, 35], "credentialless": [0, 35], "require_corp": [0, 35], "crossoriginembedderpolicystatu": [0, 35], "contentsecuritypolicysourc": [0, 35], "http": [0, 4, 7, 8, 11, 16, 20, 23, 24, 25, 28, 35, 37, 39, 40, 42, 45, 47, 49, 52, 53, 57, 58, 59], "meta": [0, 20, 28, 35, 37, 43, 55, 57], "contentsecuritypolicystatu": [0, 35], "effective_direct": [0, 35], "is_enforc": [0, 35], "securityisolationstatu": [0, 35], "coop": [0, 4, 35], "coep": [0, 4, 35], "reportstatu": [0, 35], "queu": [0, 35], "pend": [0, 20, 35, 37, 40, 47, 51], "marked_for_remov": [0, 35], "success": [0, 4, 13, 35, 37, 40, 47, 51, 53], "reportid": [0, 35], "reportingapireport": [0, 35], "initiator_url": [0, 35], "destin": [0, 35, 37, 52, 55], "depth": [0, 2, 13, 16, 17, 35, 43], "completed_attempt": [0, 35], "reportingapiendpoint": [0, 35], "group_nam": [0, 35], "loadnetworkresourcepageresult": [0, 35], "net_error": [0, 35], "net_error_nam": [0, 35], "http_status_cod": [0, 35], "stream": [0, 13, 24, 30, 35, 37, 51], "loadnetworkresourceopt": [0, 35], "disable_cach": [0, 35], "include_credenti": [0, 35], "can_clear_browser_cach": [0, 35], "can_clear_browser_cooki": [0, 35], "can_emulate_network_condit": [0, 35], "clear_accepted_encodings_overrid": [0, 35], "clear_browser_cach": [0, 35], "clear_browser_cooki": [0, 35], "continue_intercepted_request": [0, 35], "delete_cooki": [0, 35, 37], "emulate_network_condit": [0, 35], "enable_reporting_api": [0, 35], "get_all_cooki": [0, 35], "get_certif": [0, 35], "get_cooki": [0, 35, 47], "get_request_post_data": [0, 35], "get_response_body_for_intercept": [0, 35], "get_security_isolation_statu": [0, 35], "load_network_resourc": [0, 35], "replay_xhr": [0, 35], "search_in_response_bodi": [0, 35], "set_accepted_encod": [0, 35], "set_attach_debug_stack": [0, 35], "set_blocked_ur_l": [0, 35], "set_bypass_service_work": [0, 35], "set_cache_dis": [0, 35], "set_extra_http_head": [0, 35], "set_request_intercept": [0, 35], "stream_resource_cont": [0, 35], "take_response_body_for_interception_as_stream": [0, 35], "datareceiv": [0, 35], "data_length": [0, 35], "eventsourcemessagereceiv": [0, 35], "event_id": [0, 35, 45, 47], "loadingfail": [0, 35, 47], "error_text": [0, 35], "loadingfinish": [0, 35, 47], "requestintercept": [0, 35], "interception_id": [0, 35], "is_navigation_request": [0, 35], "is_download": [0, 35], "redirect_url": [0, 35], "requestservedfromcach": [0, 35], "requestwillbes": [0, 24, 35, 47, 57], "wall_tim": [0, 35], "redirect_has_extra_info": [0, 35], "redirect_respons": [0, 35], "has_user_gestur": [0, 35], "resourcechangedprior": [0, 35], "new_prior": [0, 35], "signedexchangereceiv": [0, 35], "info": [0, 4, 35, 36, 45, 48], "responsereceiv": [0, 35], "has_extra_info": [0, 35], "websocketclos": [0, 35], "websocketcr": [0, 35], "websocketframeerror": [0, 35], "error_messag": [0, 35, 40, 46], "websocketframereceiv": [0, 35], "websocketframes": [0, 35], "websockethandshakeresponsereceiv": [0, 35], "websocketwillsendhandshakerequest": [0, 35], "webtransportcr": [0, 35], "transport_id": [0, 35], "webtransportconnectionestablish": [0, 35], "webtransportclos": [0, 35], "requestwillbesentextrainfo": [0, 35], "associated_cooki": [0, 35], "connect_tim": [0, 35], "site_has_cookie_in_other_partit": [0, 35], "responsereceivedextrainfo": [0, 35], "blocked_cooki": [0, 35], "status_cod": [0, 35], "cookie_partition_kei": [0, 35], "cookie_partition_key_opaqu": [0, 35], "exempted_cooki": [0, 35], "responsereceivedearlyhint": [0, 35], "trusttokenoperationdon": [0, 35], "top_level_origin": [0, 35], "issuer_origin": [0, 35, 47], "issued_token_count": [0, 35], "policyupd": [0, 35], "subresourcewebbundlemetadatareceiv": [0, 35], "subresourcewebbundlemetadataerror": [0, 35], "subresourcewebbundleinnerresponsepars": [0, 35], "inner_request_id": [0, 35], "inner_request_url": [0, 35], "bundle_request_id": [0, 35], "subresourcewebbundleinnerresponseerror": [0, 35], "reportingapireportad": [0, 35], "report": [0, 4, 10, 11, 13, 17, 20, 21, 24, 25, 26, 32, 33, 35, 37, 38, 39, 41, 43, 47, 49, 51, 57], "reportingapireportupd": [0, 35], "reportingapiendpointschangedfororigin": [0, 35], "endpoint": [0, 35, 37, 47], "overlai": [0, 1, 20, 37], "sourceorderconfig": [0, 36], "parent_outline_color": [0, 36], "child_outline_color": [0, 36], "gridhighlightconfig": [0, 36], "show_grid_extension_lin": [0, 36], "show_positive_line_numb": [0, 36], "show_negative_line_numb": [0, 36], "show_area_nam": [0, 36], "show_line_nam": [0, 36], "show_track_s": [0, 36], "grid_border_color": [0, 36], "cell_border_color": [0, 36], "row_line_color": [0, 36], "column_line_color": [0, 36], "grid_border_dash": [0, 36], "cell_border_dash": [0, 36], "row_line_dash": [0, 36], "column_line_dash": [0, 36], "row_gap_color": [0, 36], "row_hatch_color": [0, 36], "column_gap_color": [0, 36], "column_hatch_color": [0, 36], "area_border_color": [0, 36], "grid_background_color": [0, 36], "flexcontainerhighlightconfig": [0, 36], "container_bord": [0, 36], "line_separ": [0, 36], "item_separ": [0, 36], "main_distributed_spac": [0, 36], "cross_distributed_spac": [0, 36], "row_gap_spac": [0, 36], "column_gap_spac": [0, 36], "cross_align": [0, 36], "flexitemhighlightconfig": [0, 36], "base_size_box": [0, 36], "base_size_bord": [0, 36], "flexibility_arrow": [0, 36], "linestyl": [0, 36], "color": [0, 11, 16, 18, 20, 36, 37], "pattern": [0, 13, 24, 35, 36], "boxstyl": [0, 36], "fill_color": [0, 36], "hatch_color": [0, 36], "contrastalgorithm": [0, 36], "aa": [0, 36], "aaa": [0, 4, 36], "apca": [0, 36], "highlightconfig": [0, 36], "show_info": [0, 36], "show_styl": [0, 36], "show_rul": [0, 36], "show_accessibility_info": [0, 36], "show_extension_lin": [0, 36], "content_color": [0, 36], "padding_color": [0, 36], "border_color": [0, 36], "margin_color": [0, 36], "event_target_color": [0, 36], "shape_color": [0, 36], "shape_margin_color": [0, 36], "css_grid_color": [0, 36], "color_format": [0, 36], "grid_highlight_config": [0, 36], "flex_container_highlight_config": [0, 36], "flex_item_highlight_config": [0, 36], "contrast_algorithm": [0, 36], "container_query_container_highlight_config": [0, 36], "colorformat": [0, 36], "rgb": [0, 36], "hsl": [0, 36], "hwb": [0, 36], "hex_": [0, 36], "gridnodehighlightconfig": [0, 36], "flexnodehighlightconfig": [0, 36], "scrollsnapcontainerhighlightconfig": [0, 36], "snapport_bord": [0, 36], "snap_area_bord": [0, 36], "scroll_margin_color": [0, 36], "scroll_padding_color": [0, 36], "scrollsnaphighlightconfig": [0, 36], "scroll_snap_container_highlight_config": [0, 36], "hingeconfig": [0, 36], "outline_color": [0, 36], "windowcontrolsoverlayconfig": [0, 36], "show_css": [0, 36], "selected_platform": [0, 36], "theme_color": [0, 36, 37], "containerqueryhighlightconfig": [0, 36], "containerquerycontainerhighlightconfig": [0, 36], "descendant_bord": [0, 36], "isolatedelementhighlightconfig": [0, 36], "isolation_mode_highlight_config": [0, 36], "isolationmodehighlightconfig": [0, 36], "resizer_color": [0, 36], "resizer_handle_color": [0, 36], "mask_color": [0, 36], "inspectmod": [0, 36], "search_for_nod": [0, 36], "search_for_ua_shadow_dom": [0, 36], "capture_area_screenshot": [0, 36], "show_dist": [0, 36], "get_grid_highlight_objects_for_test": [0, 36], "get_highlight_object_for_test": [0, 36], "get_source_order_highlight_object_for_test": [0, 36], "highlight_fram": [0, 36], "highlight_quad": [0, 36], "highlight_source_ord": [0, 36], "set_inspect_mod": [0, 36], "set_paused_in_debugger_messag": [0, 36], "set_show_ad_highlight": [0, 36], "set_show_container_query_overlai": [0, 36], "set_show_debug_bord": [0, 36], "set_show_flex_overlai": [0, 36], "set_show_fps_count": [0, 36], "set_show_grid_overlai": [0, 36], "set_show_hing": [0, 36], "set_show_hit_test_bord": [0, 36], "set_show_isolated_el": [0, 36], "set_show_layout_shift_region": [0, 36], "set_show_paint_rect": [0, 36], "set_show_scroll_bottleneck_rect": [0, 36], "set_show_scroll_snap_overlai": [0, 36], "set_show_viewport_size_on_res": [0, 36], "set_show_web_vit": [0, 36], "set_show_window_controls_overlai": [0, 36], "inspectnoderequest": [0, 36], "nodehighlightrequest": [0, 36], "screenshotrequest": [0, 36], "viewport": [0, 11, 16, 20, 28, 36, 37, 57], "inspectmodecancel": [0, 36], "page": [0, 1, 2, 3, 4, 7, 9, 11, 13, 16, 18, 20, 24, 28, 35, 36, 42, 43, 45, 47, 49, 54, 57, 58, 59], "frameid": [0, 2, 4, 5, 7, 11, 13, 16, 18, 24, 35, 36, 37, 39, 40, 43, 47, 49], "adframetyp": [0, 37], "child": [0, 2, 5, 11, 16, 18, 26, 36, 37, 41, 47, 49], "adframeexplan": [0, 37], "parent_is_ad": [0, 37], "created_by_ad_script": [0, 37], "matched_blocking_rul": [0, 37], "adframestatu": [0, 37], "ad_frame_typ": [0, 37], "explan": [0, 37, 45], "adscriptid": [0, 37], "debugger_id": [0, 37, 43], "securecontexttyp": [0, 37], "secure_localhost": [0, 37], "insecure_schem": [0, 37], "insecure_ancestor": [0, 37], "crossoriginisolatedcontexttyp": [0, 37], "isol": [0, 4, 13, 35, 36, 37, 41, 42, 43], "not_isol": [0, 37], "not_isolated_feature_dis": [0, 37], "gatedapifeatur": [0, 37], "shared_array_buff": [0, 37], "shared_array_buffers_transfer_allow": [0, 37], "performance_measure_memori": [0, 37], "performance_profil": [0, 37], "permissionspolicyfeatur": [0, 37], "ambient_light_sensor": [0, 37], "attribution_report": [0, 37], "autoplai": [0, 37], "browsing_top": [0, 37], "camera": [0, 7, 37], "ch_dpr": [0, 37], "ch_device_memori": [0, 37], "ch_downlink": [0, 37], "ch_ect": [0, 37], "ch_prefers_color_schem": [0, 37], "ch_prefers_reduced_mot": [0, 37], "ch_prefers_reduced_transpar": [0, 37], "ch_rtt": [0, 37], "ch_save_data": [0, 37], "ch_ua": [0, 37], "ch_ua_arch": [0, 37], "ch_ua_bit": [0, 37], "ch_ua_platform": [0, 37], "ch_ua_model": [0, 37], "ch_ua_mobil": [0, 37], "ch_ua_form_factor": [0, 37], "ch_ua_full_vers": [0, 37], "ch_ua_full_version_list": [0, 37], "ch_ua_platform_vers": [0, 37], "ch_ua_wow64": [0, 37], "ch_viewport_height": [0, 37], "ch_viewport_width": [0, 37], "ch_width": [0, 37], "clipboard_read": [0, 37], "clipboard_writ": [0, 37], "compute_pressur": [0, 37], "cross_origin_isol": [0, 37], "deferred_fetch": [0, 37], "direct_socket": [0, 37], "document_domain": [0, 37], "encrypted_media": [0, 37], "execution_while_out_of_viewport": [0, 37], "execution_while_not_rend": [0, 37], "focus_without_user_activ": [0, 37], "frobul": [0, 37], "gamepad": [0, 37], "hid": [0, 37], "identity_credentials_get": [0, 37], "interest_cohort": [0, 37], "join_ad_interest_group": [0, 37], "keyboard_map": [0, 37], "microphon": [0, 37], "otp_credenti": [0, 37], "payment": [0, 37], "picture_in_pictur": [0, 37], "private_aggreg": [0, 37], "private_state_token_issu": [0, 37], "private_state_token_redempt": [0, 37], "publickey_credentials_cr": [0, 37], "publickey_credentials_get": [0, 37], "run_ad_auct": [0, 37], "screen_wake_lock": [0, 37], "serial": [0, 31, 37, 43, 47, 51], "shared_autofil": [0, 37], "shared_storag": [0, 37, 47], "shared_storage_select_url": [0, 37], "smart_card": [0, 37], "sub_app": [0, 37], "sync_xhr": [0, 37], "unload": [0, 37], "usb": [0, 37, 53], "usb_unrestrict": [0, 37], "vertical_scrol": [0, 37], "web_print": [0, 37], "web_shar": [0, 37], "xr_spatial_track": [0, 37], "permissionspolicyblockreason": [0, 37], "iframe_attribut": [0, 37], "in_fenced_frame_tre": [0, 37], "in_isolated_app": [0, 37], "permissionspolicyblockloc": [0, 37], "block_reason": [0, 37], "permissionspolicyfeaturest": [0, 37], "origintrialtokenstatu": [0, 37], "not_support": [0, 37, 40], "insecur": [0, 37, 45], "wrong_origin": [0, 37], "invalid_signatur": [0, 37], "malform": [0, 4, 37], "wrong_vers": [0, 37], "feature_dis": [0, 37], "token_dis": [0, 37], "feature_disabled_for_us": [0, 37], "unknown_tri": [0, 37], "origintrialstatu": [0, 37], "valid_token_not_provid": [0, 37], "os_not_support": [0, 37], "trial_not_allow": [0, 37], "origintrialusagerestrict": [0, 37], "subset": [0, 18, 37], "origintrialtoken": [0, 37], "match_sub_domain": [0, 37], "trial_nam": [0, 37], "expiry_tim": [0, 37], "is_third_parti": [0, 37], "usage_restrict": [0, 37], "origintrialtokenwithstatu": [0, 37], "raw_token_text": [0, 37], "parsed_token": [0, 37], "origintri": [0, 37], "tokens_with_statu": [0, 37], "domain_and_registri": [0, 37], "secure_context_typ": [0, 37], "cross_origin_isolated_context_typ": [0, 37], "gated_api_featur": [0, 37], "unreachable_url": [0, 37], "ad_frame_statu": [0, 37], "frameresourc": [0, 37], "last_modifi": [0, 37], "content_s": [0, 37], "frameresourcetre": [0, 37], "child_fram": [0, 37], "frametre": [0, 37], "scriptidentifi": [0, 37], "transitiontyp": [0, 37], "link": [0, 4, 11, 16, 28, 35, 37, 40, 42, 47, 57], "address_bar": [0, 37], "auto_bookmark": [0, 37], "auto_subfram": [0, 37], "manual_subfram": [0, 37], "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, 57], "auto_toplevel": [0, 37], "form_submit": [0, 37], "keyword": [0, 37], "keyword_gener": [0, 37], "navigationentri": [0, 37], "user_typed_url": [0, 37], "transition_typ": [0, 37], "screencastframemetadata": [0, 37], "offset_top": [0, 37], "page_scale_factor": [0, 20, 37], "device_width": [0, 37], "device_height": [0, 37], "alert": [0, 37, 55], "confirm": [0, 37], "beforeunload": [0, 37, 49], "appmanifesterror": [0, 37], "appmanifestparsedproperti": [0, 37], "layoutviewport": [0, 37], "page_x": [0, 37], "page_i": [0, 37], "client_width": [0, 37], "client_height": [0, 37], "visualviewport": [0, 37, 57], "scale": [0, 20, 28, 31, 37, 55], "zoom": [0, 28, 37], "fontfamili": [0, 37], "standard": [0, 24, 27, 37], "fix": [0, 36, 37, 45, 55], "serif": [0, 37], "sans_serif": [0, 37], "cursiv": [0, 37], "fantasi": [0, 37], "math": [0, 37], "scriptfontfamili": [0, 37], "fontsiz": [0, 37], "clientnavigationreason": [0, 37], "form_submission_get": [0, 37], "form_submission_post": [0, 37], "http_header_refresh": [0, 37], "script_initi": [0, 37], "meta_tag_refresh": [0, 37], "page_block_interstiti": [0, 37], "anchor_click": [0, 37], "clientnavigationdisposit": [0, 37], "current_tab": [0, 37], "new_tab": [0, 37, 54, 57, 58, 59], "new_window": [0, 37, 49, 54, 57, 58, 59], "installabilityerrorargu": [0, 37], "installabilityerror": [0, 37], "error_id": [0, 37], "error_argu": [0, 37], "referrerpolici": [0, 37], "no_referr": [0, 37], "no_referrer_when_downgrad": [0, 37], "origin_when_cross_origin": [0, 37], "strict_origin": [0, 37], "strict_origin_when_cross_origin": [0, 37], "unsafe_url": [0, 37], "compilationcacheparam": [0, 37], "eager": [0, 37], "filefilt": [0, 37], "filehandl": [0, 37, 42], "action": [0, 7, 16, 23, 37, 40, 42, 45, 55, 56, 57], "launch_typ": [0, 37], "icon": [0, 37], "imageresourc": [0, 37], "launchhandl": [0, 37], "client_mod": [0, 37], "protocolhandl": [0, 37], "relatedappl": [0, 37], "scopeextens": [0, 37], "has_origin_wildcard": [0, 37], "screenshot": [0, 20, 25, 36, 37, 55, 57], "form_factor": [0, 37], "sharetarget": [0, 37], "enctyp": [0, 37], "shortcut": [0, 28, 37], "webappmanifest": [0, 37], "background_color": [0, 37], "dir_": [0, 37], "displai": [0, 5, 11, 14, 20, 24, 25, 35, 36, 37, 40, 55], "display_overrid": [0, 37], "file_handl": [0, 37], "lang": [0, 37, 56, 58], "launch_handl": [0, 37], "prefer_related_appl": [0, 37], "protocol_handl": [0, 37], "related_appl": [0, 37], "scope_extens": [0, 37], "share_target": [0, 37], "short_nam": [0, 37], "start_url": [0, 37], "autoresponsemod": [0, 37], "auto_accept": [0, 37], "auto_reject": [0, 37], "auto_opt_out": [0, 37], "navigationtyp": [0, 37], "navig": [0, 4, 18, 20, 35, 37, 40, 43, 47, 49, 54, 57, 58], "back_forward_cache_restor": [0, 37], "backforwardcachenotrestoredreason": [0, 37], "not_primary_main_fram": [0, 37], "back_forward_cache_dis": [0, 37], "related_active_contents_exist": [0, 37], "http_status_not_ok": [0, 37], "scheme_not_http_or_http": [0, 37], "was_granted_media_access": [0, 37], "disable_for_render_frame_host_cal": [0, 37], "domain_not_allow": [0, 37], "http_method_not_get": [0, 37], "subframe_is_navig": [0, 37], "cache_limit": [0, 37], "java_script_execut": [0, 37], "renderer_process_kil": [0, 37, 40], "renderer_process_crash": [0, 37, 40], "scheduler_tracked_feature_us": [0, 37], "conflicting_browsing_inst": [0, 37], "cache_flush": [0, 37], "service_worker_version_activ": [0, 37], "session_restor": [0, 37], "service_worker_post_messag": [0, 37], "entered_back_forward_cache_before_service_worker_host_ad": [0, 37], "render_frame_host_reused_same_sit": [0, 37], "render_frame_host_reused_cross_sit": [0, 37], "service_worker_claim": [0, 37], "ignore_event_and_evict": [0, 37], "have_inner_cont": [0, 37], "timeout_putting_in_cach": [0, 37], "back_forward_cache_disabled_by_low_memori": [0, 37], "back_forward_cache_disabled_by_command_lin": [0, 37], "network_request_datapipe_drained_as_bytes_consum": [0, 37], "network_request_redirect": [0, 37], "network_request_timeout": [0, 37], "network_exceeds_buffer_limit": [0, 37], "navigation_cancelled_while_restor": [0, 37], "not_most_recent_navigation_entri": [0, 37], "back_forward_cache_disabled_for_prerend": [0, 37], "user_agent_override_diff": [0, 37], "foreground_cache_limit": [0, 37], "browsing_instance_not_swap": [0, 37], "back_forward_cache_disabled_for_deleg": [0, 37], "unload_handler_exists_in_main_fram": [0, 37], "unload_handler_exists_in_sub_fram": [0, 37], "service_worker_unregistr": [0, 37], "cache_control_no_stor": [0, 37], "cache_control_no_store_cookie_modifi": [0, 37], "cache_control_no_store_http_only_cookie_modifi": [0, 37], "no_response_head": [0, 37], "activation_navigations_disallowed_for_bug1234857": [0, 37], "error_docu": [0, 37], "fenced_frames_embedd": [0, 37], "cookie_dis": [0, 37], "http_auth_requir": [0, 37], "cookie_flush": [0, 37], "broadcast_channel_on_messag": [0, 37], "web_view_settings_chang": [0, 37], "web_view_java_script_object_chang": [0, 37], "web_view_message_listener_inject": [0, 37], "web_view_safe_browsing_allowlist_chang": [0, 37], "web_view_document_start_javascript_chang": [0, 37], "web_transport": [0, 37], "web_rtc": [0, 37], "main_resource_has_cache_control_no_stor": [0, 37], "main_resource_has_cache_control_no_cach": [0, 37], "subresource_has_cache_control_no_stor": [0, 37], "subresource_has_cache_control_no_cach": [0, 37], "contains_plugin": [0, 37], "document_load": [0, 37], "outstanding_network_request_oth": [0, 37], "requested_midi_permiss": [0, 37], "requested_audio_capture_permiss": [0, 37], "requested_video_capture_permiss": [0, 37], "requested_back_forward_cache_blocked_sensor": [0, 37], "requested_background_work_permiss": [0, 37], "broadcast_channel": [0, 37], "web_xr": [0, 37], "web_lock": [0, 37], "web_hid": [0, 37], "requested_storage_access_gr": [0, 37], "web_nfc": [0, 37], "outstanding_network_request_fetch": [0, 37], "outstanding_network_request_xhr": [0, 37], "app_bann": [0, 37], "print": [0, 4, 33, 37, 57, 58, 59], "web_databas": [0, 37], "portal": [0, 37, 49], "speech_recogn": [0, 37], "idle_manag": [0, 37], "payment_manag": [0, 37], "speech_synthesi": [0, 37], "keyboard_lock": [0, 37], "web_otp_servic": [0, 37], "outstanding_network_request_direct_socket": [0, 37], "injected_javascript": [0, 37], "injected_style_sheet": [0, 37], "keepalive_request": [0, 37], "indexed_db_ev": [0, 37], "dummi": [0, 37], "js_network_request_received_cache_control_no_store_resourc": [0, 37], "web_rtc_sticki": [0, 37], "web_transport_sticki": [0, 37], "web_socket_sticki": [0, 37], "live_media_stream_track": [0, 37], "unload_handl": [0, 37], "parser_abort": [0, 37], "content_security_handl": [0, 37], "content_web_authentication_api": [0, 37], "content_file_choos": [0, 37], "content_seri": [0, 37], "content_file_system_access": [0, 37], "content_media_devices_dispatcher_host": [0, 37], "content_web_bluetooth": [0, 37], "content_web_usb": [0, 37], "content_media_session_servic": [0, 37], "content_screen_read": [0, 37], "embedder_popup_blocker_tab_help": [0, 37], "embedder_safe_browsing_triggered_popup_block": [0, 37], "embedder_safe_browsing_threat_detail": [0, 37], "embedder_app_banner_manag": [0, 37], "embedder_dom_distiller_viewer_sourc": [0, 37], "embedder_dom_distiller_self_deleting_request_deleg": [0, 37], "embedder_oom_intervention_tab_help": [0, 37], "embedder_offline_pag": [0, 37], "embedder_chrome_password_manager_client_bind_credential_manag": [0, 37], "embedder_permission_request_manag": [0, 37], "embedder_modal_dialog": [0, 37], "embedder_extens": [0, 37], "embedder_extension_messag": [0, 37], "embedder_extension_messaging_for_open_port": [0, 37], "embedder_extension_sent_message_to_cached_fram": [0, 37], "requested_by_web_view_cli": [0, 37], "backforwardcachenotrestoredreasontyp": [0, 37], "support_pend": [0, 37], "page_support_need": [0, 37], "circumstanti": [0, 37], "backforwardcacheblockingdetail": [0, 37], "backforwardcachenotrestoredexplan": [0, 37], "context": [0, 2, 4, 7, 11, 13, 16, 17, 18, 23, 28, 33, 35, 37, 43, 47, 49, 52], "backforwardcachenotrestoredexplanationtre": [0, 37], "add_compilation_cach": [0, 37], "add_script_to_evaluate_on_load": [0, 37], "add_script_to_evaluate_on_new_docu": [0, 37], "capture_screenshot": [0, 37], "clear_compilation_cach": [0, 37], "create_isolated_world": [0, 37], "generate_test_report": [0, 37], "get_ad_script_id": [0, 37], "get_app_id": [0, 37], "get_app_manifest": [0, 37], "get_frame_tre": [0, 37], "get_installability_error": [0, 37], "get_layout_metr": [0, 37], "get_manifest_icon": [0, 37], "get_navigation_histori": [0, 37], "get_origin_tri": [0, 37], "get_permissions_policy_st": [0, 37], "get_resource_cont": [0, 37], "get_resource_tre": [0, 37], "handle_java_script_dialog": [0, 37], "navigate_to_history_entri": [0, 37], "print_to_pdf": [0, 37], "produce_compilation_cach": [0, 37], "remove_script_to_evaluate_on_load": [0, 37], "remove_script_to_evaluate_on_new_docu": [0, 37], "reset_navigation_histori": [0, 37], "screencast_frame_ack": [0, 37], "search_in_resourc": [0, 37], "set_ad_blocking_en": [0, 37], "set_bypass_csp": [0, 37], "set_document_cont": [0, 37], "set_font_famili": [0, 37], "set_font_s": [0, 37], "set_intercept_file_chooser_dialog": [0, 37], "set_lifecycle_events_en": [0, 37], "set_prerendering_allow": [0, 37], "set_rph_registration_mod": [0, 37], "set_spc_transaction_mod": [0, 37], "set_web_lifecycle_st": [0, 37], "start_screencast": [0, 37], "stop_load": [0, 37], "stop_screencast": [0, 37], "wait_for_debugg": [0, 37], "domcontenteventfir": [0, 37], "filechooseropen": [0, 37], "mode": [0, 3, 4, 13, 16, 20, 25, 31, 36, 37, 42, 43, 49, 51, 57], "frameattach": [0, 37], "parent_frame_id": [0, 37], "frameclearedschedulednavig": [0, 37], "framedetach": [0, 37], "framenavig": [0, 37], "documentopen": [0, 37], "frameres": [0, 37], "framerequestednavig": [0, 37], "disposit": [0, 37], "frameschedulednavig": [0, 37], "framestartedload": [0, 37], "framestoppedload": [0, 37], "interstitialhidden": [0, 37], "interstitialshown": [0, 37], "javascriptdialogclos": [0, 37], "result": [0, 11, 13, 16, 20, 24, 25, 26, 31, 35, 36, 37, 41, 42, 43, 47, 51, 57], "user_input": [0, 37], "javascriptdialogopen": [0, 37], "has_browser_handl": [0, 37], "default_prompt": [0, 37], "lifecycleev": [0, 37], "backforwardcachenotus": [0, 37], "not_restored_explan": [0, 37], "not_restored_explanations_tre": [0, 37], "loadeventfir": [0, 37], "navigatedwithindocu": [0, 37], "screencastfram": [0, 37], "metadata": [0, 4, 20, 27, 37, 47], "session_id": [0, 37, 49], "screencastvisibilitychang": [0, 37], "visibl": [0, 3, 11, 16, 20, 25, 31, 37, 43, 45, 54, 55], "windowopen": [0, 37], "window_nam": [0, 37], "window_featur": [0, 37], "user_gestur": [0, 37, 43], "compilationcacheproduc": [0, 37], "metric": [0, 20, 36, 37, 38], "get_metr": [0, 38], "set_time_domain": [0, 38], "performancetimelin": [0, 1], "largestcontentfulpaint": [0, 39], "render_tim": [0, 39], "load_tim": [0, 39], "element_id": [0, 39], "layoutshiftattribut": [0, 39], "previous_rect": [0, 39], "current_rect": [0, 39], "layoutshift": [0, 39], "had_recent_input": [0, 39], "last_input_tim": [0, 39], "timelineev": [0, 39], "lcp_detail": [0, 39], "layout_shift_detail": [0, 39], "timelineeventad": [0, 39], "preload": [0, 1, 35], "rulesetid": [0, 40], "ruleset": [0, 40], "source_text": [0, 40], "ruleseterrortyp": [0, 40], "source_is_not_json_object": [0, 40], "invalid_rules_skip": [0, 40], "speculationact": [0, 40], "prerend": [0, 37, 40, 49], "speculationtargethint": [0, 40], "blank": [0, 40, 49], "self": [0, 36, 40, 57], "preloadingattemptkei": [0, 40], "target_hint": [0, 40], "preloadingattemptsourc": [0, 40], "rule_set_id": [0, 40], "prerenderfinalstatu": [0, 40], "destroi": [0, 40, 43, 49, 52], "low_end_devic": [0, 40], "invalid_scheme_redirect": [0, 40], "invalid_scheme_navig": [0, 40], "navigation_request_blocked_by_csp": [0, 40], "main_frame_navig": [0, 40], "mojo_binder_polici": [0, 40], "trigger_destroi": [0, 40], "navigation_not_commit": [0, 40], "navigation_bad_http_statu": [0, 40], "client_cert_request": [0, 40], "navigation_request_network_error": [0, 40], "cancel_all_hosts_for_test": [0, 40], "did_fail_load": [0, 40], "ssl_certificate_error": [0, 40], "login_auth_request": [0, 40], "ua_change_requires_reload": [0, 40], "audio_output_device_request": [0, 40], "trigger_background": [0, 40], "memory_limit_exceed": [0, 40], "data_saver_en": [0, 40], "trigger_url_has_effective_url": [0, 40], "activated_before_start": [0, 40], "inactive_page_restrict": [0, 40], "start_fail": [0, 40], "timeout_background": [0, 40], "cross_site_redirect_in_initial_navig": [0, 40], "cross_site_navigation_in_initial_navig": [0, 40], "same_site_cross_origin_redirect_not_opt_in_in_initial_navig": [0, 40], "same_site_cross_origin_navigation_not_opt_in_in_initial_navig": [0, 40], "activation_navigation_parameter_mismatch": [0, 40], "activated_in_background": [0, 40], "embedder_host_disallow": [0, 40], "activation_navigation_destroyed_before_success": [0, 40], "tab_closed_by_user_gestur": [0, 40], "tab_closed_without_user_gestur": [0, 40], "primary_main_frame_renderer_process_crash": [0, 40], "primary_main_frame_renderer_process_kil": [0, 40], "activation_frame_policy_not_compat": [0, 40], "preloading_dis": [0, 40], "battery_saver_en": [0, 40], "activated_during_main_frame_navig": [0, 40], "preloading_unsupported_by_web_cont": [0, 40], "cross_site_redirect_in_main_frame_navig": [0, 40], "cross_site_navigation_in_main_frame_navig": [0, 40], "same_site_cross_origin_redirect_not_opt_in_in_main_frame_navig": [0, 40], "same_site_cross_origin_navigation_not_opt_in_in_main_frame_navig": [0, 40], "memory_pressure_on_trigg": [0, 40], "memory_pressure_after_trigg": [0, 40], "prerendering_disabled_by_dev_tool": [0, 40], "speculation_rule_remov": [0, 40], "activated_with_auxiliary_browsing_context": [0, 40], "max_num_of_running_eager_prerenders_exceed": [0, 40], "max_num_of_running_non_eager_prerenders_exceed": [0, 40], "max_num_of_running_embedder_prerenders_exceed": [0, 40], "prerendering_url_has_effective_url": [0, 40], "redirected_prerendering_url_has_effective_url": [0, 40], "activation_url_has_effective_url": [0, 40], "java_script_interface_ad": [0, 40], "java_script_interface_remov": [0, 40], "all_prerendering_cancel": [0, 40], "preloadingstatu": [0, 40], "readi": [0, 40], "failur": [0, 4, 35, 40], "prefetchstatu": [0, 40], "prefetch_allow": [0, 40], "prefetch_failed_ineligible_redirect": [0, 40], "prefetch_failed_invalid_redirect": [0, 40], "prefetch_failed_mime_not_support": [0, 40], "prefetch_failed_net_error": [0, 40], "prefetch_failed_non2_xx": [0, 40], "prefetch_failed_per_page_limit_exceed": [0, 40], "prefetch_evicted_after_candidate_remov": [0, 40], "prefetch_evicted_for_newer_prefetch": [0, 40], "prefetch_heldback": [0, 40], "prefetch_ineligible_retry_aft": [0, 40], "prefetch_is_privacy_decoi": [0, 40], "prefetch_is_stal": [0, 40], "prefetch_not_eligible_browser_context_off_the_record": [0, 40], "prefetch_not_eligible_data_saver_en": [0, 40], "prefetch_not_eligible_existing_proxi": [0, 40], "prefetch_not_eligible_host_is_non_uniqu": [0, 40], "prefetch_not_eligible_non_default_storage_partit": [0, 40], "prefetch_not_eligible_same_site_cross_origin_prefetch_required_proxi": [0, 40], "prefetch_not_eligible_scheme_is_not_http": [0, 40], "prefetch_not_eligible_user_has_cooki": [0, 40], "prefetch_not_eligible_user_has_service_work": [0, 40], "prefetch_not_eligible_battery_saver_en": [0, 40], "prefetch_not_eligible_preloading_dis": [0, 40], "prefetch_not_finished_in_tim": [0, 40], "prefetch_not_start": [0, 40], "prefetch_not_used_cookies_chang": [0, 40], "prefetch_proxy_not_avail": [0, 40], "prefetch_response_us": [0, 40], "prefetch_successful_but_not_us": [0, 40], "prefetch_not_used_probe_fail": [0, 40], "prerendermismatchedhead": [0, 40], "header_nam": [0, 40], "activation_valu": [0, 40], "rulesetupd": [0, 40], "rule_set": [0, 40], "rulesetremov": [0, 40], "preloadenabledstateupd": [0, 40], "disabled_by_prefer": [0, 40], "disabled_by_data_sav": [0, 40], "disabled_by_battery_sav": [0, 40], "disabled_by_holdback_prefetch_speculation_rul": [0, 40], "disabled_by_holdback_prerender_speculation_rul": [0, 40], "prefetchstatusupd": [0, 40], "initiating_frame_id": [0, 40], "prefetch_url": [0, 40], "prefetch_statu": [0, 40], "prerenderstatusupd": [0, 40], "prerender_statu": [0, 40], "disallowed_mojo_interfac": [0, 40], "mismatched_head": [0, 40], "preloadingattemptsourcesupd": [0, 40], "preloading_attempt_sourc": [0, 40], "profilenod": [0, 41], "hit_count": [0, 41], "deopt_reason": [0, 41], "position_tick": [0, 41], "end_tim": [0, 41], "time_delta": [0, 41], "positiontickinfo": [0, 41], "tick": [0, 35, 41], "coveragerang": [0, 41], "functioncoverag": [0, 41], "rang": [0, 11, 13, 16, 25, 27, 28, 37, 41, 51], "is_block_coverag": [0, 41], "scriptcoverag": [0, 41], "get_best_effort_coverag": [0, 41], "set_sampling_interv": [0, 41], "start_precise_coverag": [0, 41], "stop_precise_coverag": [0, 41], "take_precise_coverag": [0, 41], "consoleprofilefinish": [0, 41], "consoleprofilestart": [0, 41], "precisecoveragedeltaupd": [0, 41], "occas": [0, 41], "pwa": [0, 1, 36, 37], "filehandleraccept": [0, 42], "media_typ": [0, 42], "file_extens": [0, 42], "display_nam": [0, 42], "displaymod": [0, 42], "standalon": [0, 42], "change_app_user_set": [0, 42], "get_os_app_st": [0, 42], "launch": [0, 37, 42, 48, 54], "launch_files_in_app": [0, 42], "open_current_page_in_app": [0, 42], "uninstal": [0, 42], "runtim": [0, 1, 10, 13, 37, 49], "scriptid": [0, 4, 13, 17, 37, 41, 43], "serializationopt": [0, 43], "max_depth": [0, 13, 43], "additional_paramet": [0, 43], "deepserializedvalu": [0, 43], "weak_local_object_refer": [0, 43], "remoteobjectid": [0, 2, 13, 16, 17, 26, 30, 36, 43, 55], "unserializablevalu": [0, 43], "remoteobject": [0, 3, 13, 16, 17, 26, 27, 32, 43, 55, 57], "subtyp": [0, 2, 43, 49], "class_nam": [0, 43], "unserializable_valu": [0, 43], "deep_serialized_valu": [0, 43], "preview": [0, 13, 43], "custom_preview": [0, 43], "custompreview": [0, 43], "body_getter_id": [0, 43], "objectpreview": [0, 43], "overflow": [0, 43], "propertypreview": [0, 43], "value_preview": [0, 43], "entrypreview": [0, 43], "propertydescriptor": [0, 43], "configur": [0, 20, 32, 35, 36, 37, 43, 51, 53], "enumer": [0, 11, 13, 43], "writabl": [0, 43], "set_": [0, 43], "was_thrown": [0, 43], "is_own": [0, 43], "symbol": [0, 13, 16, 26, 43], "internalpropertydescriptor": [0, 43], "privatepropertydescriptor": [0, 43], "callargu": [0, 13, 43], "executioncontextid": [0, 13, 16, 37, 43], "executioncontextdescript": [0, 37, 43], "unique_id": [0, 43], "aux_data": [0, 43], "exceptiondetail": [0, 13, 43, 57], "exception_id": [0, 43], "except": [0, 4, 13, 28, 43, 57], "exception_meta_data": [0, 43], "timedelta": [0, 13, 43], "stacktrac": [0, 13, 16, 32, 35, 37, 43], "uniquedebuggerid": [0, 13, 37, 43], "stacktraceid": [0, 13, 43], "add_bind": [0, 43], "await_promis": [0, 43, 57], "call_function_on": [0, 43], "compile_script": [0, 43], "discard_console_entri": [0, 43], "get_exception_detail": [0, 43], "get_heap_usag": [0, 43], "get_isolate_id": [0, 43], "get_properti": [0, 43], "global_lexical_scope_nam": [0, 43], "query_object": [0, 43], "release_object": [0, 43], "release_object_group": [0, 43], "remove_bind": [0, 43], "run_if_waiting_for_debugg": [0, 43], "run_script": [0, 43], "set_custom_object_formatter_en": [0, 43], "set_max_call_stack_size_to_captur": [0, 43], "terminate_execut": [0, 43], "bindingcal": [0, 43], "payload": [0, 35, 43], "consoleapical": [0, 43], "exceptionrevok": [0, 43], "exceptionthrown": [0, 43], "exception_detail": [0, 43], "executioncontextcr": [0, 43], "executioncontextdestroi": [0, 43], "execution_context_unique_id": [0, 43], "executioncontextsclear": [0, 43], "inspectrequest": [0, 43], "hint": [0, 4, 20, 35, 37, 40, 43, 55], "schema": [0, 1], "get_domain": [0, 44], "certificateid": [0, 35, 45], "mixedcontenttyp": [0, 35, 45], "blockabl": [0, 45], "optionally_block": [0, 45], "securityst": [0, 35, 45], "neutral": [0, 45], "insecure_broken": [0, 45], "certificatesecurityst": [0, 45], "certificate_has_weak_signatur": [0, 45], "certificate_has_sha1_signatur": [0, 45], "modern_ssl": [0, 45], "obsolete_ssl_protocol": [0, 45], "obsolete_ssl_key_exchang": [0, 45], "obsolete_ssl_ciph": [0, 45], "obsolete_ssl_signatur": [0, 45], "certificate_network_error": [0, 45], "safetytipstatu": [0, 45], "bad_reput": [0, 45], "lookalik": [0, 45, 57], "safetytipinfo": [0, 45], "safety_tip_statu": [0, 45], "safe_url": [0, 45], "visiblesecurityst": [0, 45], "security_state_issue_id": [0, 45], "certificate_security_st": [0, 45], "safety_tip_info": [0, 45], "securitystateexplan": [0, 45], "summari": [0, 45], "recommend": [0, 37, 45, 53, 58], "insecurecontentstatu": [0, 45], "ran_mixed_cont": [0, 45], "displayed_mixed_cont": [0, 45], "contained_mixed_form": [0, 45], "ran_content_with_cert_error": [0, 45], "displayed_content_with_cert_error": [0, 45], "ran_insecure_content_styl": [0, 45], "displayed_insecure_content_styl": [0, 45], "certificateerroract": [0, 45], "continu": [0, 13, 20, 24, 35, 45, 58, 59], "handle_certificate_error": [0, 45], "set_ignore_certificate_error": [0, 45], "set_override_certificate_error": [0, 45], "certificateerror": [0, 45], "visiblesecuritystatechang": [0, 45], "visible_security_st": [0, 45], "securitystatechang": [0, 45], "scheme_is_cryptograph": [0, 45], "insecure_content_statu": [0, 45], "servicework": [0, 1, 4, 35, 57], "registrationid": [0, 6, 46], "serviceworkerregistr": [0, 46], "registration_id": [0, 46], "scope_url": [0, 46], "is_delet": [0, 46], "serviceworkerversionrunningstatu": [0, 46], "serviceworkerversionstatu": [0, 46], "new": [0, 2, 4, 6, 7, 10, 11, 13, 16, 18, 20, 25, 26, 32, 33, 35, 37, 41, 42, 43, 46, 49, 52, 54, 56, 57], "redund": [0, 46], "serviceworkervers": [0, 46], "version_id": [0, 46], "script_url": [0, 46], "running_statu": [0, 46], "script_last_modifi": [0, 46], "script_response_tim": [0, 46], "controlled_cli": [0, 46], "target_id": [0, 7, 46, 49], "router_rul": [0, 46], "serviceworkererrormessag": [0, 46], "deliver_push_messag": [0, 46], "dispatch_periodic_sync_ev": [0, 46], "dispatch_sync_ev": [0, 46], "inspect_work": [0, 46], "set_force_update_on_page_load": [0, 46], "skip_wait": [0, 46], "start_work": [0, 46], "stop_all_work": [0, 46], "stop_work": [0, 46], "unregist": [0, 46, 47], "update_registr": [0, 46], "workererrorreport": [0, 46], "workerregistrationupd": [0, 46], "registr": [0, 4, 11, 46, 47], "workerversionupd": [0, 46], "storag": [0, 1, 6, 8, 19, 27, 30, 35, 37, 53], "storagetyp": [0, 47], "appcach": [0, 47], "file_system": [0, 47], "local_storag": [0, 47], "shader_cach": [0, 47], "websql": [0, 47], "interest_group": [0, 47], "all_": [0, 47], "usagefortyp": [0, 47], "storage_typ": [0, 47], "trusttoken": [0, 35, 47], "interestgroupauctionid": [0, 47], "interestgroupaccesstyp": [0, 47], "join": [0, 33, 37, 47, 58, 59], "leav": [0, 7, 13, 47, 58], "bid": [0, 47], "win": [0, 47], "additional_bid": [0, 47], "additional_bid_win": [0, 47], "top_level_bid": [0, 47], "top_level_additional_bid": [0, 47], "interestgroupauctioneventtyp": [0, 47], "config_resolv": [0, 47], "interestgroupauctionfetchtyp": [0, 47], "bidder_j": [0, 47], "bidder_wasm": [0, 47], "seller_j": [0, 47], "bidder_trusted_sign": [0, 47], "seller_trusted_sign": [0, 47], "sharedstorageaccesstyp": [0, 47], "document_add_modul": [0, 47], "document_select_url": [0, 47], "document_run": [0, 47], "document_set": [0, 47], "document_append": [0, 47], "document_delet": [0, 47], "document_clear": [0, 47], "document_get": [0, 47], "worklet_set": [0, 47], "worklet_append": [0, 47], "worklet_delet": [0, 47], "worklet_clear": [0, 47], "worklet_get": [0, 47], "worklet_kei": [0, 47], "worklet_entri": [0, 47], "worklet_length": [0, 47], "worklet_remaining_budget": [0, 47], "header_set": [0, 47], "header_append": [0, 47], "header_delet": [0, 47], "header_clear": [0, 47], "sharedstorageentri": [0, 47], "sharedstoragemetadata": [0, 47], "creation_tim": [0, 47], "remaining_budget": [0, 47], "bytes_us": [0, 47], "sharedstoragereportingmetadata": [0, 47], "event_typ": [0, 39, 47], "reporting_url": [0, 47], "sharedstorageurlwithmetadata": [0, 47], "reporting_metadata": [0, 47], "sharedstorageaccessparam": [0, 47], "script_source_url": [0, 47], "operation_nam": [0, 47], "serialized_data": [0, 47], "urls_with_metadata": [0, 47], "ignore_if_pres": [0, 47], "storagebucketsdur": [0, 47], "relax": [0, 47], "storagebucket": [0, 8, 27, 47], "storagebucketinfo": [0, 47], "quota": [0, 47], "persist": [0, 36, 43, 47], "durabl": [0, 47], "attributionreportingsourcetyp": [0, 47], "unsignedint64asbase10": [0, 47], "unsignedint128asbase16": [0, 47], "signedint64asbase10": [0, 47], "attributionreportingfilterdataentri": [0, 47], "attributionreportingfilterconfig": [0, 47], "filter_valu": [0, 47], "lookback_window": [0, 47], "attributionreportingfilterpair": [0, 47], "filter": [0, 16, 18, 24, 35, 37, 39, 40, 47, 49, 51], "not_filt": [0, 47], "attributionreportingaggregationkeysentri": [0, 47], "attributionreportingeventreportwindow": [0, 47], "attributionreportingtriggerspec": [0, 47], "trigger_data": [0, 47], "event_report_window": [0, 47], "attributionreportingtriggerdatamatch": [0, 47], "exact": [0, 18, 35, 47], "modulu": [0, 47], "attributionreportingsourceregistr": [0, 47], "expiri": [0, 5, 47], "trigger_spec": [0, 47], "aggregatable_report_window": [0, 47], "source_origin": [0, 47], "reporting_origin": [0, 47], "destination_sit": [0, 47], "filter_data": [0, 47], "aggregation_kei": [0, 47], "trigger_data_match": [0, 47], "debug_kei": [0, 47], "attributionreportingsourceregistrationresult": [0, 47], "internal_error": [0, 47], "insufficient_source_capac": [0, 47], "insufficient_unique_destination_capac": [0, 47], "excessive_reporting_origin": [0, 47], "prohibited_by_browser_polici": [0, 47], "success_nois": [0, 47], "destination_reporting_limit_reach": [0, 47], "destination_global_limit_reach": [0, 47], "destination_both_limits_reach": [0, 47], "reporting_origins_per_site_limit_reach": [0, 47], "exceeds_max_channel_capac": [0, 47], "exceeds_max_trigger_state_cardin": [0, 47], "destination_per_day_reporting_limit_reach": [0, 47], "attributionreportingsourceregistrationtimeconfig": [0, 47], "exclud": [0, 13, 26, 37, 47, 49, 51], "attributionreportingaggregatablevaluedictentri": [0, 47], "attributionreportingaggregatablevalueentri": [0, 47], "attributionreportingeventtriggerdata": [0, 47], "dedup_kei": [0, 47], "attributionreportingaggregatabletriggerdata": [0, 47], "key_piec": [0, 47], "source_kei": [0, 47], "attributionreportingaggregatablededupkei": [0, 47], "attributionreportingtriggerregistr": [0, 47], "aggregatable_dedup_kei": [0, 47], "event_trigger_data": [0, 47], "aggregatable_trigger_data": [0, 47], "aggregatable_valu": [0, 47], "debug_report": [0, 47], "source_registration_time_config": [0, 47], "aggregation_coordinator_origin": [0, 47], "trigger_context_id": [0, 47], "attributionreportingeventlevelresult": [0, 47], "success_dropped_lower_prior": [0, 47], "no_capacity_for_attribution_destin": [0, 47], "no_matching_sourc": [0, 47], "dedupl": [0, 47], "excessive_attribut": [0, 47], "priority_too_low": [0, 47], "never_attributed_sourc": [0, 47], "no_matching_source_filter_data": [0, 47], "no_matching_configur": [0, 47], "excessive_report": [0, 47], "falsely_attributed_sourc": [0, 47], "report_window_pass": [0, 47], "not_regist": [0, 47], "report_window_not_start": [0, 47], "no_matching_trigger_data": [0, 47], "attributionreportingaggregatableresult": [0, 47], "no_histogram": [0, 47], "insufficient_budget": [0, 47], "relatedwebsiteset": [0, 47], "primary_sit": [0, 47], "associated_sit": [0, 47], "service_sit": [0, 47], "clear_cooki": [0, 47], "clear_data_for_origin": [0, 47], "clear_data_for_storage_kei": [0, 47], "clear_shared_storage_entri": [0, 47], "clear_trust_token": [0, 47], "delete_shared_storage_entri": [0, 47], "delete_storage_bucket": [0, 47], "get_interest_group_detail": [0, 47], "get_related_website_set": [0, 47], "get_shared_storage_entri": [0, 47], "get_shared_storage_metadata": [0, 47], "get_storage_key_for_fram": [0, 47], "get_trust_token": [0, 47], "get_usage_and_quota": [0, 47], "override_quota_for_origin": [0, 47], "reset_shared_storage_budget": [0, 47], "run_bounce_tracking_mitig": [0, 47], "send_pending_attribution_report": [0, 47], "set_attribution_reporting_local_testing_mod": [0, 47], "set_attribution_reporting_track": [0, 47], "set_interest_group_auction_track": [0, 47], "set_interest_group_track": [0, 47], "set_shared_storage_entri": [0, 47], "set_shared_storage_track": [0, 47], "set_storage_bucket_track": [0, 47], "track_cache_storage_for_origin": [0, 47], "track_cache_storage_for_storage_kei": [0, 47], "track_indexed_db_for_origin": [0, 47], "track_indexed_db_for_storage_kei": [0, 47], "untrack_cache_storage_for_origin": [0, 47], "untrack_cache_storage_for_storage_kei": [0, 47], "untrack_indexed_db_for_origin": [0, 47], "untrack_indexed_db_for_storage_kei": [0, 47], "cachestoragecontentupd": [0, 47], "bucket_id": [0, 47], "cachestoragelistupd": [0, 47], "indexeddbcontentupd": [0, 47], "database_nam": [0, 27, 47], "object_store_nam": [0, 27, 47], "indexeddblistupd": [0, 47], "interestgroupaccess": [0, 47], "access_tim": [0, 47], "owner_origin": [0, 47], "component_seller_origin": [0, 47], "bid_curr": [0, 47], "unique_auction_id": [0, 47], "interestgroupauctioneventoccur": [0, 47], "event_tim": [0, 47], "parent_auction_id": [0, 47], "auction_config": [0, 47], "interestgroupauctionnetworkrequestcr": [0, 47], "auction": [0, 37, 47], "sharedstorageaccess": [0, 47], "main_frame_id": [0, 47], "param": [0, 47, 52, 57], "storagebucketcreatedorupd": [0, 47], "bucket_info": [0, 47], "storagebucketdelet": [0, 47], "attributionreportingsourceregist": [0, 47], "attributionreportingtriggerregist": [0, 47], "event_level": [0, 47], "aggregat": [0, 47], "systeminfo": [0, 1], "gpudevic": [0, 48], "vendor_id": [0, 48], "device_id": [0, 14, 48], "vendor_str": [0, 48], "device_str": [0, 48], "driver_vendor": [0, 48], "driver_vers": [0, 48], "sub_sys_id": [0, 48], "revis": [0, 7, 48], "videodecodeacceleratorcap": [0, 48], "max_resolut": [0, 48], "min_resolut": [0, 48], "videoencodeacceleratorcap": [0, 48], "max_framerate_numer": [0, 48], "max_framerate_denomin": [0, 48], "subsamplingformat": [0, 48], "yuv420": [0, 48], "yuv422": [0, 48], "yuv444": [0, 48], "imagetyp": [0, 48], "jpeg": [0, 25, 37, 48, 55, 57], "imagedecodeacceleratorcap": [0, 48], "image_typ": [0, 20, 48], "max_dimens": [0, 48], "min_dimens": [0, 48], "subsampl": [0, 48], "gpuinfo": [0, 48], "driver_bug_workaround": [0, 48], "video_decod": [0, 48], "video_encod": [0, 48], "image_decod": [0, 48], "aux_attribut": [0, 48], "feature_statu": [0, 48], "processinfo": [0, 48], "cpu_tim": [0, 48], "get_feature_st": [0, 48], "get_info": [0, 48], "get_process_info": [0, 48], "targetid": [0, 7, 42, 46, 49], "sessionid": [0, 49], "targetinfo": [0, 49, 57], "can_access_open": [0, 49], "opener_id": [0, 49], "opener_frame_id": [0, 49], "browser_context_id": [0, 7, 47, 49], "filterentri": [0, 49], "targetfilt": [0, 49], "remoteloc": [0, 49], "host": [0, 7, 16, 20, 31, 35, 49, 54, 56], "port": [0, 35, 49, 50, 54, 56], "activate_target": [0, 49], "attach_to_browser_target": [0, 49], "attach_to_target": [0, 49], "auto_attach_rel": [0, 49], "close_target": [0, 49], "create_browser_context": [0, 49], "create_target": [0, 49], "detach_from_target": [0, 49], "dispose_browser_context": [0, 49], "expose_dev_tools_protocol": [0, 49], "get_browser_context": [0, 49], "get_target_info": [0, 49], "get_target": [0, 49], "send_message_to_target": [0, 49], "set_auto_attach": [0, 49], "set_discover_target": [0, 49], "set_remote_loc": [0, 49], "attachedtotarget": [0, 49], "target_info": [0, 49], "waiting_for_debugg": [0, 49], "detachedfromtarget": [0, 49], "receivedmessagefromtarget": [0, 49], "targetcr": [0, 49], "targetdestroi": [0, 49], "error_cod": [0, 49], "targetinfochang": [0, 49], "tether": [0, 1], "bind": [0, 43, 49, 50], "unbind": [0, 50], "trace": [0, 1, 13, 16, 32, 33, 35, 37, 43], "memorydumpconfig": [0, 51], "traceconfig": [0, 51], "record_mod": [0, 51], "trace_buffer_size_in_kb": [0, 51], "enable_sampl": [0, 51], "enable_systrac": [0, 51], "enable_argument_filt": [0, 51], "included_categori": [0, 51], "excluded_categori": [0, 51], "synthetic_delai": [0, 51], "memory_dump_config": [0, 51], "streamformat": [0, 51], "proto": [0, 42, 51], "streamcompress": [0, 51], "memorydumplevelofdetail": [0, 51], "background": [0, 6, 11, 18, 20, 25, 36, 37, 49, 51, 54, 57], "light": [0, 20, 37, 51], "tracingbackend": [0, 51], "auto": [0, 27, 28, 37, 49, 51, 55, 57], "system": [0, 20, 28, 37, 43, 48, 51, 57], "get_categori": [0, 51], "record_clock_sync_mark": [0, 51], "request_memory_dump": [0, 51], "bufferusag": [0, 51], "percent_ful": [0, 51], "event_count": [0, 51], "datacollect": [0, 51], "tracingcomplet": [0, 51], "data_loss_occur": [0, 51], "trace_format": [0, 51], "stream_compress": [0, 51], "webaudio": [0, 1], "graphobjectid": [0, 52], "contexttyp": [0, 52], "realtim": [0, 52], "offlin": [0, 35, 52], "contextst": [0, 52], "suspend": [0, 52], "nodetyp": [0, 16, 18, 52], "channelcountmod": [0, 52], "clamped_max": [0, 52], "explicit": [0, 2, 20, 37, 52], "max_": [0, 52], "channelinterpret": [0, 52], "discret": [0, 30, 37, 52, 53], "speaker": [0, 37, 52], "paramtyp": [0, 52], "automationr": [0, 52], "a_rat": [0, 52], "k_rate": [0, 52], "contextrealtimedata": [0, 52], "render_capac": [0, 52], "callback_interval_mean": [0, 52], "callback_interval_vari": [0, 52], "baseaudiocontext": [0, 52], "context_id": [0, 43, 52], "context_typ": [0, 52], "context_st": [0, 52], "callback_buffer_s": [0, 52], "max_output_channel_count": [0, 52], "sample_r": [0, 52], "realtime_data": [0, 52], "audiolisten": [0, 52], "listener_id": [0, 52], "audionod": [0, 52], "number_of_input": [0, 52], "number_of_output": [0, 52], "channel_count": [0, 52], "channel_count_mod": [0, 52], "channel_interpret": [0, 52], "audioparam": [0, 52], "param_id": [0, 52], "param_typ": [0, 52], "rate": [0, 3, 20, 52], "get_realtime_data": [0, 52], "contextcr": [0, 52], "contextwillbedestroi": [0, 52], "contextchang": [0, 52], "audiolistenercr": [0, 52], "listen": [0, 17, 18, 52, 57], "audiolistenerwillbedestroi": [0, 52], "audionodecr": [0, 52], "audionodewillbedestroi": [0, 52], "audioparamcr": [0, 52], "audioparamwillbedestroi": [0, 52], "nodesconnect": [0, 52], "source_id": [0, 52], "destination_id": [0, 52], "source_output_index": [0, 52], "destination_input_index": [0, 52], "nodesdisconnect": [0, 52], "nodeparamconnect": [0, 52], "nodeparamdisconnect": [0, 52], "webauthn": [0, 1], "authenticatorid": [0, 53], "authenticatorprotocol": [0, 53], "u2f": [0, 53], "ctap2": [0, 53], "ctap2vers": [0, 53], "ctap2_0": [0, 53], "ctap2_1": [0, 53], "authenticatortransport": [0, 53], "ble": [0, 53], "cabl": [0, 53], "intern": [0, 3, 26, 37, 43, 45, 53, 55, 57], "virtualauthenticatoropt": [0, 53], "transport": [0, 35, 45, 53], "ctap2_vers": [0, 53], "has_resident_kei": [0, 53], "has_user_verif": [0, 53], "has_large_blob": [0, 53], "has_cred_blob": [0, 53], "has_min_pin_length": [0, 53], "has_prf": [0, 53], "automatic_presence_simul": [0, 53], "is_user_verifi": [0, 53], "default_backup_elig": [0, 53], "default_backup_st": [0, 53], "credenti": [0, 37, 53], "credential_id": [0, 53], "is_resident_credenti": [0, 53], "private_kei": [0, 53], "sign_count": [0, 53], "rp_id": [0, 53], "user_handl": [0, 53], "large_blob": [0, 53], "backup_elig": [0, 53], "backup_st": [0, 53], "add_credenti": [0, 53], "add_virtual_authent": [0, 53], "clear_credenti": [0, 53], "get_credenti": [0, 53], "remove_credenti": [0, 53], "remove_virtual_authent": [0, 53], "set_automatic_presence_simul": [0, 53], "set_credential_properti": [0, 53], "set_response_override_bit": [0, 53], "set_user_verifi": [0, 53], "credentialad": [0, 53], "authenticator_id": [0, 53], "credentialassert": [0, 53], "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, 59], "experiment": [2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 45, 46, 47, 48, 49, 50, 51, 52, 53, 55], "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], "do": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 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, 55, 57], "need": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 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, 55, 58, 59], "instanti": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 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], "yourself": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 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], "instead": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 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, 55, 56, 57, 58, 59], "api": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 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, 57], "object": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 23, 24, 25, 26, 27, 28, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 51, 52, 53, 54, 55, 56, 57], "can": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 23, 24, 25, 26, 27, 28, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 51, 52, 53, 54, 55, 57, 58, 59], "those": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 23, 24, 25, 26, 27, 28, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 51, 52, 53, 55, 57], "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], "identifi": [2, 4, 5, 6, 7, 8, 11, 12, 13, 16, 17, 18, 19, 20, 24, 26, 28, 31, 32, 35, 36, 37, 39, 40, 41, 42, 43, 47, 49], "qualnam": [2, 4, 5, 6, 7, 8, 11, 13, 16, 17, 20, 23, 24, 28, 34, 35, 36, 37, 40, 42, 45, 46, 47, 48, 51, 52, 53], "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, 59], "boundari": [2, 4, 5, 6, 7, 8, 11, 13, 16, 17, 20, 23, 24, 28, 31, 34, 35, 36, 37, 40, 42, 43, 45, 46, 47, 48, 51, 52, 53], "enum": [2, 4, 11, 13, 18, 20, 33, 37, 47, 52], "possibl": [2, 4, 13, 37, 40, 47, 49, 57], "booleanorundefin": 2, "idreflist": 2, "nodelist": 2, "computedstr": 2, "tokenlist": 2, "domrel": 2, "internalrol": 2, "valueundefin": 2, "relatedel": 2, "nativ": [2, 17, 21, 28, 34, 37, 55, 56], "particular": [2, 3, 13, 17, 21, 43, 47], "comput": [2, 11, 16, 18, 37], "ax": [2, 11, 16], "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, 58, 59], "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, 55, 56, 57, 58, 59], "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, 55, 57], "bool": [2, 3, 4, 6, 7, 11, 13, 16, 17, 18, 19, 20, 23, 24, 25, 26, 27, 28, 30, 31, 34, 35, 36, 37, 39, 40, 41, 42, 43, 45, 46, 47, 48, 49, 51, 53, 54, 55, 56, 57], "whether": [2, 4, 5, 7, 11, 13, 16, 17, 18, 19, 20, 23, 25, 28, 31, 35, 36, 37, 41, 43, 45, 47, 49, 51, 53, 57], "higher": [2, 11], "markup": [2, 16, 28, 37], "e": [2, 3, 4, 5, 11, 13, 20, 23, 25, 28, 35, 37, 40, 43, 45, 48, 49, 51, 56], "list": [2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 16, 17, 18, 19, 20, 23, 24, 26, 27, 28, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 51, 53, 54, 55, 56, 57], "being": [2, 4, 7, 10, 12, 13, 19, 21, 23, 26, 31, 32, 33, 35, 37, 39, 40, 41, 45, 47, 58, 59], "relat": [2, 4, 5, 6, 11, 16, 18, 20, 28, 35, 36, 37, 39, 47, 48, 49], "current": [2, 3, 4, 7, 9, 11, 13, 16, 18, 20, 25, 26, 27, 28, 33, 35, 37, 38, 39, 40, 41, 42, 43, 47, 49, 52, 54, 55, 57], "One": [2, 4, 28, 47], "applic": [2, 11, 26, 35, 39, 45], "contribut": [2, 26, 45], "everi": [2, 4, 6, 11, 35, 37, 43], "region": [2, 36, 37], "widget": 2, "relationship": 2, "between": [2, 11, 16, 18, 25, 26, 28, 34, 36, 41, 49, 54], "than": [2, 16, 17, 20, 31, 35, 37, 43, 49, 56, 57], "sibl": [2, 16], "hiddenroot": 2, "haspopup": 2, "collect": [2, 4, 10, 11, 13, 16, 18, 26, 32, 34, 37, 38, 41, 43, 51], "why": [2, 4, 13, 29, 31, 35, 37, 43], "raw": [2, 4, 26, 35], "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], "id": [2, 3, 4, 5, 6, 7, 8, 11, 12, 13, 14, 16, 17, 18, 22, 24, 26, 30, 31, 33, 35, 36, 37, 39, 40, 41, 42, 43, 45, 47, 48, 49, 50, 51, 52, 53], "backend": [2, 11, 13, 16, 20, 26, 27, 31, 35, 36, 37, 41, 43, 51], "associ": [2, 6, 7, 11, 13, 16, 18, 28, 31, 32, 35, 37, 40, 43, 47, 48, 53], "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], "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], "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], "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], "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, 56, 59], "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], "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, 55, 57], "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, 57], "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], "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], "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, 57], "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], "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, 57, 58, 59], "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, 56, 57], "remain": [2, 47], "consist": [2, 5, 11, 37, 49, 51], "call": [2, 4, 6, 7, 11, 13, 16, 20, 23, 24, 31, 32, 33, 34, 35, 36, 37, 38, 41, 42, 43, 47, 49, 55, 57], "turn": [2, 20, 49, 51], "impact": [2, 42], "ancestor": [2, 11, 16, 35], "been": [2, 3, 4, 6, 10, 11, 13, 16, 18, 22, 23, 26, 28, 29, 35, 37, 41, 45, 47, 49, 51, 52], "previous": [2, 11, 13, 20, 37, 39, 45], "javascript": [2, 13, 16, 17, 18, 20, 21, 32, 35, 36, 37, 41, 43, 51, 55, 57], "wrapper": [2, 13, 16, 30, 36], "whose": [2, 3, 11, 47], "resid": 2, "If": [2, 4, 5, 7, 8, 11, 13, 16, 17, 20, 24, 25, 26, 27, 33, 34, 35, 37, 40, 42, 43, 45, 47, 49, 51, 53, 56], "omit": [2, 4, 7, 11, 13, 16, 20, 24, 35, 36, 37, 40, 43, 45, 49], "int": [2, 4, 7, 8, 10, 11, 12, 13, 16, 17, 18, 20, 23, 24, 25, 26, 27, 28, 30, 31, 32, 33, 34, 35, 36, 37, 41, 42, 43, 45, 46, 47, 48, 49, 50, 53, 54, 55, 57], "maximum": [2, 7, 11, 13, 16, 17, 20, 30, 31, 37, 43, 48, 53, 57], "descend": [2, 16, 36], "retriev": [2, 7, 11, 16, 17, 18, 26, 34, 38, 43, 49, 53, 54, 55, 57], "full": [2, 11, 18, 20, 33, 37, 43, 45, 52, 55, 57], "fetch_rel": 2, "partial": 2, "exist": [2, 3, 4, 6, 11, 13, 16, 20, 23, 35, 37, 42, 43, 47, 49, 52, 58], "true": [2, 4, 7, 11, 13, 16, 18, 20, 24, 25, 26, 27, 28, 34, 35, 36, 37, 43, 45, 47, 49, 51, 53, 54, 55, 56, 58, 59, 60], "plu": 2, "its": [2, 11, 13, 16, 19, 24, 28, 31, 35, 37, 41, 42, 43, 47, 48, 51, 57], "accessible_nam": 2, "queri": [2, 7, 11, 12, 13, 16, 19, 20, 28, 35, 36, 37, 47, 48, 49, 55], "subtre": [2, 16, 17], "specifi": [2, 4, 5, 7, 8, 11, 13, 16, 18, 20, 24, 27, 30, 31, 35, 36, 37, 39, 40, 41, 43, 47, 48, 49, 50, 51, 53, 56, 57, 58], "doe": [2, 3, 4, 5, 10, 11, 13, 16, 20, 37, 42, 43, 45, 55, 56, 58, 59], "neither": [2, 43], "accessiblenam": 2, "mirror": [2, 9, 16, 43], "sent": [2, 12, 13, 16, 19, 20, 24, 26, 35, 37, 39, 41, 43, 45, 47, 51, 57], "assist": 2, "technologi": [2, 35], "when": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 16, 17, 18, 23, 24, 25, 26, 28, 29, 31, 32, 33, 35, 36, 37, 39, 40, 41, 43, 45, 47, 49, 51, 53, 54, 55, 57, 58, 59], "ha": [2, 3, 4, 6, 7, 10, 11, 13, 16, 18, 20, 22, 23, 24, 26, 27, 28, 29, 31, 35, 36, 37, 40, 41, 42, 45, 47, 49, 52, 55, 56, 57], "chang": [2, 9, 11, 13, 16, 18, 20, 26, 28, 35, 37, 41, 42, 43, 45, 47, 49, 52, 58], "plai": [3, 55], "float": [3, 4, 7, 8, 11, 13, 15, 16, 18, 20, 25, 26, 27, 28, 31, 32, 34, 35, 37, 38, 39, 41, 43, 46, 47, 48, 51, 52, 54, 55, 57], "playback": [3, 9], "millisecond": [3, 13, 20, 25, 28, 35, 43, 51], "base": [3, 10, 11, 13, 16, 17, 18, 20, 28, 33, 34, 35, 36, 37, 41, 43, 54, 56, 57], "percentag": [3, 57], "0": [3, 4, 11, 13, 16, 17, 18, 20, 24, 25, 28, 33, 35, 37, 43, 48, 51, 54, 55, 57, 58, 59], "100": [3, 11, 25, 35, 37, 52, 55], "scroll": [3, 16, 18, 28, 31, 36, 37, 55, 57], "driven": 3, "transit": [3, 16, 37], "view": [3, 16, 20, 37, 55, 56, 57], "timelin": [3, 39], "contain": [3, 4, 5, 7, 8, 11, 13, 16, 18, 20, 24, 28, 29, 31, 35, 36, 37, 41, 43, 51, 54, 56, 57], "posit": [3, 4, 7, 11, 13, 16, 18, 20, 24, 28, 31, 35, 36, 37, 41, 55, 57], "pixel": [3, 7, 16, 20, 28, 36, 37, 39, 48, 57], "princip": 3, "box": [3, 16, 18, 24, 31, 35, 36], "scrollport": 3, "defin": [3, 5, 6, 7, 11, 13, 16, 18, 22, 28, 35, 36, 37, 42, 45, 48, 50], "progress": [3, 7, 37], "scrolltimelin": 3, "releas": [3, 13, 16, 26, 28, 31, 41, 43], "set": [3, 4, 5, 6, 7, 9, 11, 13, 16, 17, 18, 20, 21, 22, 23, 24, 25, 27, 28, 30, 31, 32, 33, 35, 36, 37, 38, 40, 42, 43, 45, 47, 49, 51, 53, 55, 56, 57, 58], "longer": [3, 16, 36, 37, 45], "manipul": [3, 13], "seek": [3, 30], "animation_id": 3, "remot": [3, 9, 22, 26, 29, 30, 35, 43, 49], "correspond": [3, 13, 16, 18, 23, 24, 26, 33, 35, 37, 40, 42, 43, 47, 56], "within": [3, 11, 13, 16, 28, 31, 33, 35, 39], "wa": [3, 4, 5, 11, 13, 17, 18, 20, 23, 24, 25, 28, 31, 32, 33, 35, 37, 40, 41, 42, 43, 45, 46, 47, 49, 50, 54], "investig": 4, "violat": [4, 17, 32], "improv": 4, "about": [4, 5, 7, 11, 16, 25, 26, 29, 31, 35, 37, 40, 43, 45, 47, 48, 49, 55], "affect": [4, 18, 20, 24, 35], "follow": [4, 5, 7, 8, 11, 12, 13, 16, 18, 20, 24, 25, 27, 30, 31, 34, 35, 37, 41, 42, 43, 47, 48, 49, 51, 55, 56, 57], "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, 40], "front": [4, 11, 16, 37], "difficult": 4, "With": 4, "we": [4, 11, 13, 31, 33, 35, 40, 49, 57, 58, 59], "convei": 4, "without": [4, 7, 13, 26, 35, 37, 42, 47, 49], "site": [4, 7, 35, 37, 42, 47, 55], "mai": [4, 7, 11, 13, 16, 18, 20, 24, 25, 26, 30, 35, 36, 37, 39, 41, 42, 43, 47, 49, 52, 57, 58, 59], "addit": [4, 6, 11, 13, 16, 28, 35, 48, 49, 54], "rawcookielin": 4, "problem": [4, 13, 55], "where": [4, 5, 8, 11, 13, 16, 30, 31, 33, 34, 35, 37, 40, 41, 43, 55], "syntact": 4, "semant": [4, 35], "wai": [4, 24, 35, 42, 43, 54, 57], "valid": [4, 7, 11, 13, 16, 18, 27, 28, 35, 37, 40, 45, 46], "mixedcontentblock": 4, "mixedcontentautomaticallyupgrad": 4, "mixedcontentwarn": 4, "attributionsrc": 4, "cspreport": 4, "eventsourc": [4, 35], "plugindata": 4, "pluginresourc": 4, "sharedwork": [4, 37], "speculationrul": 4, "xmlhttprequest": [4, 17, 35], "mix": [4, 35, 45], "resolv": [4, 11, 13, 16, 35, 43, 53, 55], "unsaf": [4, 22, 43], "j": [4, 23, 33, 55, 57], "mark": [4, 16, 35, 41], "becaus": [4, 33, 35, 37, 47, 49, 51, 55, 58, 59], "map": [4, 11, 13, 35, 37, 43, 53], "blink": [4, 7, 28, 35, 37], "mojom": [4, 40, 51], "requestcontexttyp": 4, "replac": [4, 11, 13, 16, 20, 28, 35, 40, 56], "requestdestin": 4, "alwai": [4, 13, 16, 20, 33, 35, 37, 45, 49, 57, 58, 59], "submiss": [4, 37], "necessarili": 4, "These": [4, 23, 28, 47], "refin": [4, 35], "net": [4, 24, 35], "coepframeresourceneedscoephead": 4, "coopsandboxediframecannotnavigatetocooppag": 4, "corpnotsameorigin": 4, "corpnotsameoriginafterdefaultedtosameoriginbycoep": 4, "corpnotsameoriginafterdefaultedtosameoriginbydip": 4, "corpnotsameoriginafterdefaultedtosameoriginbycoepanddip": 4, "corpnotsamesit": 4, "onli": [4, 7, 8, 9, 11, 13, 16, 18, 20, 23, 24, 25, 26, 28, 30, 31, 35, 37, 40, 41, 43, 45, 47, 48, 49, 51, 54, 55, 57], "extend": [4, 24, 35, 42], "some": [4, 11, 16, 24, 30, 35, 36, 42, 43, 47, 49, 51, 52, 55, 58], "futur": [4, 25, 35, 43], "heavyadblock": 4, "heavyadwarn": 4, "networktotallimit": 4, "cputotallimit": 4, "cpupeaklimit": 4, "either": [4, 13, 16, 20, 23, 24, 30, 35, 36, 37, 40, 41, 42, 43, 51, 56, 57], "warn": [4, 43, 45], "ad": [4, 9, 10, 11, 16, 17, 32, 35, 36, 37, 39, 40, 43, 47, 49, 53, 57], "cpu": [4, 20, 41, 48], "peak": 4, "kinlineviol": 4, "kevalviol": 4, "kurlviol": 4, "ktrustedtypessinkviol": 4, "ktrustedtypespolicyviol": 4, "kwasmevalviol": 4, "transferissu": 4, "creationissu": 4, "aris": 4, "sab": 4, "transfer": [4, 37, 51], "cross": [4, 35, 36, 37, 43, 49], "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, 28, 36, 51], "explain": [4, 37, 45], "github": [4, 7, 20, 23, 35, 37, 39, 40, 47, 52, 53, 58, 59], "com": [4, 16, 37, 39, 40, 42, 43, 49, 57, 58, 59], "wicg": [4, 20, 35, 37, 39, 40, 47], "quirk": 4, "limit": [4, 13, 35], "fals": [4, 7, 11, 13, 16, 17, 18, 25, 28, 35, 36, 37, 45, 47, 49, 53, 54, 55, 56, 57, 58, 60], "mean": [4, 10, 16, 24, 26, 28, 32, 35, 36, 37, 43, 45, 52], "crossoriginportalpostmessageerror": 4, "formlabelfornameerror": 4, "formduplicateidforinputerror": 4, "forminputwithnolabelerror": 4, "formautocompleteattributeemptyerror": 4, "formemptyidandnameattributesforinputerror": 4, "formarialabelledbytononexistingid": 4, "forminputassignedautocompletevaluetoidornameattributeerror": 4, "formlabelhasneitherfornornestedinput": 4, "formlabelformatchesnonexistingiderror": 4, "forminputhaswrongbutwellintendedautocompletevalueerror": 4, "responsewasblockedbyorb": 4, "concret": [4, 58, 59], "errortyp": [4, 40], "aggreg": [4, 35, 37], "frontend": [4, 37], "deprec": [4, 10, 13, 16, 17, 18, 20, 25, 26, 35, 36, 37, 38, 43, 44, 45, 49, 51], "chromium": [4, 7, 20, 28, 33, 35, 37, 49, 54], "org": [4, 7, 11, 16, 20, 28, 35, 37, 42, 45, 49, 53], "main": [4, 7, 28, 31, 35, 36, 37, 40, 46, 48, 49, 57, 58, 59], "third_parti": [4, 7, 28, 35, 37], "render": [4, 5, 7, 11, 16, 18, 20, 25, 28, 34, 35, 37, 52], "core": [4, 28, 35, 37, 56, 57], "readm": 4, "md": [4, 37, 40], "json5": [4, 37], "redirect": [4, 24, 35], "chain": [4, 11, 13, 43, 45], "tracker": [4, 47], "thei": [4, 6, 11, 33, 35, 42, 43, 53, 57], "don": [4, 41, 54, 58, 59], "t": [4, 13, 24, 28, 35, 36, 37, 40, 41, 43, 47, 54, 56, 57, 58, 59], "receiv": [4, 5, 7, 11, 13, 16, 24, 33, 35, 37, 46, 47, 49, 55, 57], "user": [4, 7, 11, 14, 16, 20, 23, 28, 35, 36, 37, 40, 42, 43, 45, 53, 55, 57], "interact": [4, 9, 16, 23, 28, 42, 57, 58, 59], "note": [4, 7, 13, 16, 18, 20, 24, 25, 33, 35, 37, 38, 39, 40, 42, 43, 45, 47, 51, 54, 55, 57], "etld": 4, "test": [4, 16, 23, 36, 37, 53], "80": 4, "bounc": [4, 47], "would": [4, 18, 20, 23, 28, 35, 37, 39, 43, 51, 55, 57], "third": [4, 26], "parti": [4, 35, 53], "permit": [4, 21], "due": [4, 24, 35, 36, 37, 41, 43, 58, 59], "global": [4, 7, 13, 18, 37, 43, 47, 51], "web_pag": 4, "metatagallowlistinvalidorigin": 4, "metatagmodifiedhtml": 4, "feder": 4, "authent": [4, 24, 35, 53], "alongsid": 4, "requestidtokenstatu": 4, "devtool": [4, 7, 11, 30, 45, 47, 49, 55, 57], "inspector_issu": 4, "case": [4, 11, 13, 16, 25, 35, 37, 40, 43, 47, 55, 56, 57, 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": 4, "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, 10, 11, 12, 13, 16, 18, 19, 20, 22, 24, 32, 35, 36, 37, 40, 43, 45, 49, 53], "old": [4, 13, 16], "featur": [4, 6, 7, 11, 20, 35, 37, 48], "encourag": 4, "ones": [4, 13, 35, 40, 42], "guidanc": 4, "lateimportrul": 4, "requestfail": 4, "referenc": [4, 13, 43], "couldn": 4, "invalidsyntax": 4, "invalidinitialvalu": 4, "invalidinherit": 4, "invalidnam": 4, "lead": [4, 57], "discard": [4, 16, 26, 30, 43], "pars": [4, 11, 13, 16, 35, 37], "one": [4, 8, 11, 13, 16, 20, 23, 24, 25, 26, 27, 28, 31, 33, 35, 37, 42, 43, 45, 49, 51, 53, 57, 58, 59], "kind": [4, 11], "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, 47], "hold": [4, 11, 13, 16, 26, 35, 37, 41, 51, 55], "pleas": [4, 35, 36, 37, 57], "add": [4, 36, 43, 47, 49, 53, 56, 57], "entiti": [4, 48], "etc": [4, 5, 13, 16, 20, 28, 33, 35, 37, 43, 48, 56], "refer": [4, 13, 16, 18, 26, 28, 37, 43, 54, 57], "report_aaa": 4, "contrast": [4, 13, 36], "wcag": 4, "prevent": [4, 10, 12, 19, 20, 28, 32, 35, 37, 41, 43, 57], "further": [4, 10, 13, 32, 43, 58, 59], "far": [4, 10, 32, 35], "encod": [4, 7, 8, 13, 18, 24, 25, 30, 31, 34, 35, 37, 48, 51, 53], "size_onli": 4, "were": [4, 5, 11, 16, 26, 28, 30, 35, 43, 46, 47, 51], "re": [4, 16, 33, 43, 57, 58, 59], "tupl": [4, 7, 8, 11, 12, 13, 16, 18, 24, 25, 27, 30, 31, 34, 35, 37, 41, 42, 43, 47, 48, 51, 55, 56, 57], "base64": [4, 7, 8, 13, 24, 25, 30, 31, 35, 37, 51, 53], "sizeonli": 4, "pass": [4, 6, 7, 8, 11, 13, 16, 18, 24, 25, 26, 31, 33, 35, 37, 39, 41, 49, 51, 53], "over": [4, 7, 8, 13, 24, 25, 28, 31, 35, 36, 37, 45, 49, 51, 53], "originals": 4, "encodeds": 4, "16": [5, 18, 25, 28], "digit": 5, "credit": 5, "card": [5, 37], "owner": [5, 11, 16, 18, 36], "month": [5, 58, 59], "4": [5, 23, 28, 37, 48, 55], "year": [5, 58, 59], "3": [5, 13, 16, 17, 18, 20, 25, 35, 36, 37, 38, 45, 49, 58, 59], "verif": [5, 53, 58, 59], "jon": 5, "how": [5, 24, 31, 35, 51, 57], "like": [5, 13, 24, 35, 41, 43, 55, 56, 57, 58, 59], "ui": [5, 33, 43, 45, 53], "two": [5, 23, 35, 52], "dimension": 5, "inner": 5, "surfac": [5, 9, 37], "give_nam": 5, "citi": 5, "munich": 5, "zip": 5, "81456": 5, "dimens": [5, 20, 37, 48], "represent": [5, 11, 24, 33, 35, 43], "heurist": [5, 37], "autocompleteattribut": 5, "autofillinf": 5, "actual": [5, 7, 11, 13, 16, 35, 37, 45, 47, 54, 57, 58, 59], "strategi": 5, "belong": [5, 6, 11, 16, 37, 43, 49], "develop": [5, 35, 40], "verifi": [5, 23], "implement": [5, 11, 16, 33, 43, 58, 59], "fieldid": 5, "cannot": [5, 7, 13, 35, 36, 42, 43], "serv": [5, 35, 37, 43], "anchor": [5, 16, 18, 31, 37], "out": [5, 13, 20, 28, 37, 40, 43, 49, 56, 58, 59], "emit": [5, 7, 28, 35, 37, 40], "2d": 5, "independ": [6, 36, 37], "share": [6, 18, 37, 40, 47], "backgroundfetch": [6, 7, 54], "backgroundsync": [6, 7, 54], "pushmessag": 6, "paymenthandl": [6, 7, 54], "periodicbackgroundsync": [6, 7, 54], "pair": [6, 16, 18, 24, 35, 47, 56], "along": [6, 20, 24, 28, 31, 35, 37, 43, 47], "second": [6, 8, 11, 25, 26, 28, 31, 35, 37, 39, 40, 41, 47, 48, 52, 54, 55, 57, 58, 59], "group": [6, 13, 16, 26, 35, 37, 43, 45, 47], "togeth": [6, 18, 43], "store": [6, 8, 27, 28, 35, 47, 51, 53, 55], "should_record": 6, "record": [6, 8, 11, 26, 27, 35, 39, 41, 47, 51, 55], "afterward": 6, "manag": [7, 37], "window": [7, 11, 20, 28, 36, 37, 40, 42, 48, 49, 54, 57], "edg": 7, "screen": [7, 20, 36, 37, 54, 57], "accessibilityev": [7, 54], "audiocaptur": [7, 54], "capturedsurfacecontrol": 7, "clipboardreadwrit": [7, 54], "clipboardsanitizedwrit": [7, 54], "displaycaptur": [7, 54], "durablestorag": [7, 54], "idledetect": [7, 54], "localfont": [7, 54], "midisysex": [7, 54], "protectedmediaidentifi": [7, 54], "storageaccess": [7, 35, 54], "speakerselect": 7, "toplevelstorageaccess": [7, 35, 54], "videocaptur": [7, 54], "videocapturepantiltzoom": [7, 54], "wakelockscreen": [7, 54], "wakelocksystem": [7, 54], "windowmanag": [7, 54], "definit": [7, 37, 42, 55], "permiss": [7, 37, 54], "w3c": [7, 20, 37, 39, 53], "permission_descriptor": 7, "idl": [7, 20, 35, 37, 39, 57], "push": [7, 11, 16, 35], "uservisibleonli": 7, "clipboard": [7, 37], "allowwithoutsanit": 7, "allowwithoutgestur": 7, "pantiltzoom": 7, "executebrowsercommand": 7, "opentabsearch": 7, "closetabsearch": 7, "minimum": [7, 11, 20, 31, 35, 37, 48], "inclus": [7, 11], "exclus": [7, 11, 13, 24, 43, 49], "sum": 7, "privaci": 7, "sandbox": [7, 35, 54, 56], "enrol": 7, "browsercontext": [7, 49], "gracefulli": 7, "thread": [7, 31, 37, 48], "gpu": [7, 48], "process": [7, 28, 34, 35, 36, 37, 42, 43, 45, 48, 54, 58, 59], "command_id": 7, "invok": [7, 21, 47], "telemetri": 7, "switch": [7, 20], "commandlin": [7, 48], "delta": [7, 28, 41], "last": [7, 11, 13, 16, 26, 30, 31, 34, 37, 41, 46, 47, 56], "substr": [7, 8, 17, 18], "extract": [7, 37], "empti": [7, 8, 9, 11, 13, 20, 24, 27, 28, 35, 36, 37, 39, 43, 45, 48, 49, 56], "absent": [7, 11, 16, 24, 31, 35], "protocolvers": 7, "product": 7, "userag": 7, "agent": [7, 11, 16, 18, 20, 30, 33, 35, 43, 51], "jsversion": 7, "v8": [7, 13, 34, 43], "window_id": 7, "restor": [7, 20, 28, 33, 37], "part": [7, 37, 49, 58, 59], "given": [7, 11, 13, 16, 17, 18, 20, 24, 26, 27, 28, 31, 35, 36, 37, 42, 43, 47, 48, 49, 53, 54, 55, 56, 57], "reject": [7, 23, 43], "overrid": [7, 13, 15, 20, 24, 33, 35, 37, 39, 42, 43, 45, 47, 53], "reset": [7, 20, 23, 37, 41, 42, 47, 53], "badge_label": 7, "dock": 7, "tile": [7, 31], "png": [7, 25, 37, 55, 57], "behavior": [7, 13, 24, 28, 35, 37], "download_path": [7, 37], "events_en": 7, "otherwis": [7, 13, 20, 24, 25, 35, 37, 47, 48, 51, 53, 55, 56], "allowandnam": 7, "accord": [7, 16, 18, 37, 42, 47], "descriptor": [7, 11, 36, 43], "combin": 7, "unspecifi": [7, 35], "unchang": 7, "fire": [7, 9, 11, 13, 16, 20, 24, 29, 35, 36, 37, 40, 45, 54, 55, 57], "begin": [7, 11, 13, 18, 24, 35, 37], "suggest": [7, 35, 37, 45], "disk": [7, 35, 37], "byte": [7, 13, 26, 30, 34, 35, 37, 43, 47, 53], "opaquerespons": 8, "opaqueredirect": 8, "epoch": [8, 35, 39, 43], "opaqu": [8, 35, 53], "delet": [8, 27, 35, 37, 43, 47, 49], "spec": [8, 37, 47, 52, 53], "At": [8, 27], "least": [8, 27, 28, 51], "securityorigin": [8, 27], "storagekei": [8, 27, 47], "skip_count": [8, 27], "page_s": [8, 27], "path_filt": 8, "skip": [8, 13, 16, 27, 57], "present": [8, 9, 11, 13, 16, 18, 24, 31, 35, 37, 39, 47, 49, 53, 56], "cachedataentri": 8, "returncount": 8, "pathfilt": 8, "There": [8, 15, 17, 18, 21, 22, 25, 27, 29, 30, 34, 42, 44, 45, 48, 50], "describ": [9, 13, 16, 20, 26, 28, 43, 45, 48], "observ": [9, 20, 24, 35], "presentation_url": 9, "compat": [9, 13, 16], "presentationurl": 9, "well": [9, 16, 18, 49, 55, 57, 58, 59], "remov": [9, 11, 13, 16, 17, 21, 25, 33, 35, 37, 43, 47, 53, 55, 56], "sink_nam": 9, "choos": [9, 51], "via": [9, 11, 13, 16, 18, 26, 28, 35, 37, 40, 42, 43, 49, 51, 58, 59], "sdk": 9, "desktop": 9, "whenev": [9, 11, 33, 35, 57], "softwar": 9, "outstand": 9, "issuemessag": 9, "sever": [10, 13, 16, 32, 45], "noth": [10, 20, 56, 57], "expos": [11, 13, 16, 26, 35, 39, 43, 51], "write": [11, 16, 37], "subsequ": [11, 13, 24, 49], "structur": [11, 16, 37, 40], "interchang": 11, "fornod": 11, "keep": [11, 16, 33, 51, 54, 57, 58, 59], "getstylesheet": 11, "pseudo": [11, 16, 18], "ident": [11, 31, 35, 37, 42], "delimit": 11, "comma": [11, 47], "underli": [11, 35], "draft": [11, 35], "csswg": 11, "compon": [11, 16, 35, 56], "metainform": 11, "construct": [11, 52], "cssstylesheet": 11, "non": [11, 13, 16, 24, 36, 37, 39, 43, 47, 49, 51], "denot": [11, 13], "parser": [11, 16, 35], "written": 11, "mutabl": 11, "becom": [11, 16, 27, 31, 35, 55], "modifi": [11, 13, 16, 17, 19, 24, 28, 35, 37, 46, 47, 55], "cssom": 11, "them": [11, 16, 20, 24, 33, 37, 43, 47, 49, 54, 55], "immedi": [11, 16, 20, 37, 41, 42, 43, 47, 53], "creation": [11, 13, 16, 35, 37, 43, 49], "through": [11, 13, 21, 33, 40, 49, 55], "zero": [11, 24, 35, 51, 53], "charact": [11, 18, 24, 35], "sourceurl": [11, 13], "come": [11, 20, 28, 40, 43, 56], "comment": [11, 24, 42], "sheet": 11, "declar": [11, 43, 51, 55], "came": 11, "sort": [11, 13], "distanc": [11, 28, 36], "involv": [11, 47], "innermost": 11, "go": [11, 33, 37, 57, 58, 59], "outward": 11, "cascad": 11, "hierarchi": [11, 37, 54], "dure": [11, 13, 25, 35, 37, 40, 43, 47], "mediarul": 11, "supportsrul": 11, "containerrul": 11, "layerrul": 11, "scoperul": 11, "stylerul": 11, "coverag": [11, 41], "shorthand": 11, "annot": 11, "impli": [11, 37, 43], "enclos": 11, "understood": [11, 35], "longhand": 11, "importrul": 11, "linkedsheet": 11, "inlinesheet": 11, "satisfi": 11, "physic": [11, 16, 20, 28, 35], "logic": [11, 13, 16], "determin": [11, 18, 24, 26, 35, 36, 37, 39, 43, 49], "sub": [11, 16, 37, 47, 48], "amount": [11, 47, 57], "glyph": 11, "famili": [11, 37], "postscript": 11, "variat": 11, "variabl": [11, 13, 43], "k": [11, 52, 56, 58, 59], "human": [11, 43], "readabl": [11, 43], "languag": [11, 13, 18, 20, 35, 58], "en": [11, 56, 58], "www": [11, 16, 35, 37, 42, 45, 57, 58, 59], "w3": [11, 16, 35, 45], "tr": [11, 16, 35, 45], "2008": 11, "rec": 11, "css2": 11, "20080411": 11, "platformfontfamili": 11, "fontvariationax": 11, "variant": [11, 13, 57], "weight": 11, "stretch": 11, "unicod": 11, "try": [11, 13, 57], "fallback": [11, 35], "prelud": 11, "dash": [11, 36], "registerproperti": 11, "palett": 11, "mutat": [11, 13], "rule_text": 11, "node_for_property_syntax_valid": 11, "insert": [11, 16, 27, 28, 56], "ruletext": 11, "regist": [11, 37, 42, 47, 52], "static": [11, 35, 58, 59], "produc": [11, 20, 24, 30, 37, 39, 43], "incorrect": 11, "var": 11, "newli": [11, 43], "special": 11, "assum": [11, 13, 35, 37, 49], "forced_pseudo_class": 11, "ensur": [11, 57], "backgroundcolor": 11, "behind": 11, "undefin": [11, 16, 24, 43], "flat": [11, 16, 49], "simpli": 11, "gradient": 11, "anyth": [11, 43], "complic": 11, "had": [11, 18, 24, 35, 40], "computedfonts": 11, "12px": 11, "computedfontweight": 11, "explicitli": [11, 43, 51], "implicitli": [11, 16], "inlinestyl": 11, "attributesstyl": 11, "20": [11, 49], "engin": [11, 35], "getlayersfornod": 11, "nearest": [11, 16, 31], "shadow": [11, 16, 17, 18, 37], "selector_text": 11, "getlocationforselector": 11, "matchedcssrul": 11, "pseudoel": 11, "inheritedpseudoel": 11, "parentlayoutnodeid": 11, "textnod": 11, "statist": [11, 26, 41], "emploi": 11, "textual": [11, 24], "modif": [11, 16, 35], "takecoveragedelta": 11, "instrument": [11, 13, 17, 21, 35], "poll": [11, 41], "batch": [11, 16, 33], "obtain": [11, 18, 30, 35], "becam": 11, "monoton": [11, 35, 39, 41], "properties_to_track": 11, "takecomputedstyleupd": 11, "occur": [11, 21, 28, 30, 35, 40, 45, 47, 49, 52, 58, 59], "successfulli": [11, 16, 25, 50], "consid": [11, 13, 35, 49, 57], "metainfo": 11, "now": [12, 13, 16, 19, 20, 33, 35, 37, 45, 58, 59], "deliv": [12, 19, 33, 35, 37, 51], "database_id": 12, "columnnam": 12, "sqlerror": 12, "debug": [13, 17, 22, 29, 35, 36, 49, 53, 57], "capabl": [13, 37, 48], "breakpoint": [13, 17, 21, 43], "execut": [13, 16, 17, 20, 34, 35, 37, 38, 41, 43], "explor": 13, "virtual": [13, 20, 28, 53], "machin": [13, 48], "favor": [13, 26, 37, 43], "vm": 13, "restart": 13, "here": [13, 35, 43, 55, 58], "guarante": [13, 35, 37, 42, 43, 57], "restartfram": 13, "veri": [13, 31, 55, 57], "rest": [13, 16, 58, 59], "artifici": [13, 26], "transient": 13, "search": [13, 16, 35, 37, 57], "disassembl": 13, "bytecod": 13, "webassembli": 13, "wasm": 13, "extern": [13, 37, 40], "target_call_fram": 13, "reach": [13, 52], "streamid": 13, "larg": [13, 26, 47, 53], "disassembli": 13, "totalnumberoflin": 13, "functionbodyoffset": 13, "format": [13, 16, 25, 36, 37, 48, 51, 53, 55, 57], "start1": 13, "end1": 13, "start2": 13, "end2": 13, "max_scripts_cache_s": 13, "heap": [13, 26, 34, 43], "put": 13, "object_group": [13, 16, 26, 43], "include_command_line_api": [13, 37, 43], "silent": [13, 43], "return_by_valu": [13, 43, 55, 57], "generate_preview": [13, 43], "throw_on_side_effect": [13, 43], "rapid": 13, "handl": [13, 24, 28, 30, 35, 36, 37, 42, 43, 45, 51, 54, 57, 58, 59], "releaseobjectgroup": 13, "thrown": [13, 37, 43], "setpauseonexcept": [13, 43], "throw": [13, 43], "side": [13, 25, 28, 43], "effect": [13, 25, 36, 43, 47, 49, 55], "termin": [13, 29, 43, 49], "restrict_to_funct": 13, "nest": [13, 43], "scriptsourc": 13, "stack_trace_id": 13, "getscriptsourc": 13, "stream_id": 13, "statement": 13, "parent_stack_trace_id": 13, "async": [13, 35, 43, 54, 55, 57, 58, 59], "schedul": [13, 20, 37, 47], "immediatli": 13, "To": [13, 20, 35, 55], "ward": 13, "miss": [13, 16, 20, 37], "variou": [13, 36], "stepinto": 13, "asyncstacktrac": 13, "asyncstacktraceid": 13, "terminate_on_resum": 13, "upon": [13, 16, 17, 20, 30, 32, 35, 36, 37, 57], "terminateexecut": 13, "case_sensit": [13, 35, 37], "is_regex": [13, 35, 37], "sensit": [13, 26, 35, 37], "treat": [13, 35, 37, 43, 55], "regex": [13, 35, 37], "previou": [13, 16, 20, 28, 39, 49], "blackbox": 13, "final": [13, 18, 28, 40, 47], "resort": 13, "unsuccess": 13, "regexp": 13, "blacklist": 13, "interv": [13, 25, 26, 34, 41, 51, 52], "isn": [13, 35, 40, 43, 57], "actualloc": 13, "url_regex": 13, "script_hash": 13, "surviv": [13, 37, 43], "urlregex": 13, "hash": [13, 35], "deactiv": 13, "uncaught": 13, "caught": 13, "break": 13, "script_sourc": [13, 37], "dry_run": 13, "allow_top_frame_edit": 13, "automat": [13, 20, 43, 49, 58], "dry": 13, "long": [13, 26, 27, 35, 58, 59], "happen": [13, 16, 23, 24, 31, 36, 37, 43, 47, 49, 55, 57], "stackchang": 13, "ok": 13, "compileerror": 13, "interrupt": 13, "scope_numb": 13, "variable_nam": 13, "manual": [13, 36, 37, 57], "closur": 13, "catch": 13, "break_on_async_cal": 13, "skip_list": 13, "task": [13, 20, 57], "skiplist": 13, "criteria": 13, "auxiliari": [13, 43], "hit": [13, 16, 21, 35, 36], "never": [13, 16, 58, 59], "sha": 13, "256": [13, 53], "embedd": [13, 37, 41, 43, 53], "isdefault": [13, 43], "es6": 13, "section": [13, 35, 57], "suppli": [13, 24], "uncollect": 13, "open": [14, 16, 27, 37, 42, 43, 49, 54, 57, 58, 59], "respond": [14, 18, 24], "selectprompt": 14, "cancelprompt": 14, "overridden": [15, 20, 24, 35, 37, 45, 47], "alpha": [15, 16, 37], "beta": [15, 37], "gamma": [15, 37], "mock": [15, 20, 35, 37], "twice": 16, "friendli": [16, 37, 43], "nodenam": [16, 18], "letter": 16, "spell": 16, "grammar": 16, "thumb": 16, "button": [16, 23, 28, 55, 57, 58, 59], "piec": 16, "corner": [16, 56, 57], "quirksmod": 16, "limitedquirksmod": 16, "noquirksmod": 16, "containerselector": 16, "term": [16, 37], "awar": 16, "localnam": 16, "nodevalu": [16, 18], "name1": 16, "value1": 16, "name2": 16, "value2": 16, "frameown": [16, 18], "documenttyp": [16, 18], "publicid": [16, 18], "systemid": [16, 18], "internalsubset": 16, "xml": 16, "fragment": [16, 26, 31, 35, 37], "templat": [16, 18, 37], "crbug": [16, 37, 40, 42, 43, 49], "937746": 16, "htmlimport": 16, "distribut": [16, 26, 36], "svg": 16, "red": [16, 55], "255": 16, "green": 16, "blue": 16, "clock": [16, 51], "wise": 16, "outsid": [16, 36, 58, 59], "coordin": [16, 18, 28, 31, 36, 55], "target_node_id": 16, "insert_before_node_id": 16, "deep": [16, 35, 43], "place": [16, 47], "drop": [16, 28, 35], "targetnodeid": 16, "clone": 16, "pierc": [16, 17], "larger": [16, 17], "travers": [16, 17], "search_id": 16, "getsearchresult": 16, "include_whitespac": 16, "whitespac": [16, 56], "anchor_specifi": 16, "interleav": 16, "container_nam": 16, "containernam": 16, "null": [16, 33, 36, 40, 52], "might": [16, 18, 33, 35, 36, 43, 55, 57], "multipl": [16, 26, 27, 33, 35, 36, 40, 43, 47, 49, 55, 57], "caller": [16, 23], "certain": [16, 41, 57], "design": [16, 25], "capturesnapshot": [16, 18], "include_user_agent_shadow_dom": 16, "ignore_pointer_events_non": 16, "ua": [16, 18, 20, 35, 37], "pointer": [16, 28], "As": 16, "computed_styl": [16, 18], "outer": [16, 35, 43], "relayout": 16, "from_index": 16, "to_index": 16, "fromindex": 16, "toindex": 16, "therefor": [16, 55, 57], "hide": [16, 36], "undoabl": 16, "move": [16, 28, 33, 55], "cancelsearch": 16, "plain": 16, "xpath": 16, "searchid": 16, "resultcount": 16, "fixm": 16, "proprietari": 16, "queryselector": [16, 55], "queryselectoral": [16, 55, 57], "undon": 16, "down": [16, 55, 57], "seri": [16, 24, 51], "alreadi": [16, 35, 47, 55], "exactli": [16, 24, 35, 43], "objectid": [16, 36, 43], "center": 16, "similar": [16, 22, 42, 49, 57], "scrollintoview": 16, "Will": [16, 43, 48], "deriv": [16, 42], "captur": [16, 25, 31, 36, 37, 43, 55, 57], "getnodestacktrac": 16, "outer_html": 16, "ttribut": 16, "domcharacterdatamodifi": 16, "domnodeinsert": 16, "domnoderemov": 16, "want": [16, 31, 55, 57, 58, 59], "popul": [16, 35, 43], "trustedtyp": [17, 57], "polici": [17, 20, 35, 37, 43], "usecaptur": 17, "setdombreakpoint": 17, "target_nam": 17, "eventtarget": 17, "facilit": 18, "snapshot": [18, 26, 31, 37], "textarea": 18, "radio": 18, "checkbox": 18, "getsnapshot": 18, "natur": [18, 55], "srcset": 18, "post": [18, 24, 35], "regard": 18, "stabl": 18, "textbox": 18, "surrog": 18, "utf": [18, 35], "layoutobject": 18, "layouttext": 18, "paint": [18, 31, 36, 37, 39], "includepaintord": 18, "whitelist": 18, "tabl": 18, "rare": 18, "flatten": [18, 49], "absolut": [18, 20, 22, 36, 47, 57], "includedomrect": 18, "blend": 18, "overlap": 18, "opac": 18, "include_paint_ord": 18, "include_dom_rect": 18, "include_blended_background_color": 18, "include_text_color_opac": 18, "white": 18, "offsetrect": 18, "clientrect": 18, "achiev": 18, "computed_style_whitelist": 18, "include_event_listen": 18, "include_user_agent_shadow_tre": 18, "cachedstoragearea": 19, "environ": [20, 43], "area": [20, 28, 36, 37, 40], "split": 20, "postur": 20, "pauseifnetworkfetchespend": 20, "sec": [20, 35, 39], "ch": [20, 35, 37], "ambient": [20, 37], "linear": 20, "acceler": [20, 28, 48], "tell": [20, 35, 43], "setdevicemetricsoverrid": 20, "setdevicepostureoverrid": 20, "again": [20, 33, 42, 55, 57, 58, 59], "factor": [20, 28, 37, 45], "dark": [20, 36], "theme": [20, 36], "throttl": [20, 35], "slow": 20, "slowdown": 20, "2x": 20, "device_scale_factor": [20, 37], "screen_width": [20, 37], "screen_height": [20, 37], "position_x": [20, 37], "position_i": [20, 37], "dont_set_visible_s": [20, 37], "screen_orient": [20, 37], "display_featur": 20, "device_postur": 20, "innerwidth": [20, 37], "innerheight": [20, 37], "10000000": [20, 37], "autos": [20, 37], "reli": [20, 37, 53], "setvisibles": [20, 37], "multi": [20, 43], "segment": 20, "off": [20, 49, 58, 59], "foldabl": 20, "coooki": 20, "gestur": [20, 28, 35, 37], "vision": 20, "defici": 20, "effort": 20, "physiolog": 20, "accur": [20, 41], "medic": 20, "recogn": 20, "simul": [20, 34], "latitud": [20, 37], "longitud": [20, 37], "accuraci": [20, 37], "unavail": [20, 37], "hardware_concurr": 20, "hardwar": [20, 52], "concurr": 20, "is_user_act": 20, "is_screen_unlock": 20, "isuseract": 20, "isscreenunlock": 20, "icu": 20, "en_u": 20, "rather": [20, 31, 37, 54], "real": [20, 52, 53], "attempt": [20, 35, 40, 57], "setsensoroverrideen": 20, "timezone_id": 20, "timezon": 20, "dep": 20, "git": 20, "faee8bc70570192d82d2978a71e2a615788597d1": 20, "misc": 20, "metazon": 20, "txt": 20, "max_touch_point": 20, "accept_languag": [20, 35], "user_agent_metadata": [20, 35], "useragentdata": [20, 35], "budget": [20, 47], "max_virtual_time_task_starvation_count": 20, "initial_virtual_tim": 20, "synthet": 20, "mani": [20, 31, 35, 55, 56, 57], "elaps": 20, "deadlock": 20, "Not": [20, 28, 35, 37], "android": 20, "dip": [20, 28, 35, 36, 37, 49], "similarli": [21, 24], "pipe": 22, "unpack": [22, 58, 59], "filesystem": 22, "cli": 22, "dialog": [23, 24, 35, 37], "ever": [23, 55, 57], "rp": 23, "signin": 23, "signup": 23, "accountchoos": 23, "autoreauthn": 23, "confirmidplogin": 23, "confirmidplogincontinu": 23, "errorgotit": 23, "errormoredetail": 23, "termsofservic": 23, "privacypolici": 23, "identityrequestaccount": 23, "dialog_button": 23, "trigger_cooldown": 23, "disable_rejection_delai": 23, "promis": [23, 35, 43], "unimport": 23, "fedidcg": 23, "account_index": 23, "account_url_typ": 23, "cooldown": 23, "show": [23, 26, 36, 37, 43, 57, 58, 59], "recent": [23, 57], "dismiss": [23, 37], "primarili": 23, "appropri": [23, 28, 47], "below": [23, 37, 43], "let": [24, 33, 43, 57, 58, 59], "substitut": 24, "stage": [24, 25, 35], "intercept": [24, 35, 37, 53], "wildcard": [24, 35], "escap": [24, 35], "backslash": [24, 35], "equival": [24, 35, 57], "author": [24, 35], "challeng": [24, 35], "401": [24, 35], "407": [24, 35], "digest": [24, 35], "decis": [24, 35], "defer": [24, 35, 37], "popup": [24, 35], "possibli": [24, 35], "providecredenti": [24, 35], "intercept_respons": 24, "hop": 24, "response_phras": 24, "binary_response_head": 24, "responsecod": 24, "phrase": [24, 45], "separ": [24, 33, 35, 36, 45, 47], "prefer": [24, 28, 37, 42, 57], "abov": [24, 37, 57], "unless": [24, 43, 57], "utf8": 24, "transmit": [24, 35], "auth_challenge_respons": [24, 35], "handle_auth_request": 24, "failrequest": [24, 35], "fulfillrequest": [24, 35], "continuerequest": [24, 35], "continuewithauth": 24, "fetchrequest": 24, "error_reason": [24, 35], "server": [24, 35, 37, 46, 47, 49], "mutual": [24, 43], "takeresponsebodyforinterceptionasstream": 24, "_redirect": 24, "received_": 24, "differenti": 24, "presenc": [24, 47, 53], "base64encod": [24, 30, 35, 37], "headersreceiv": [24, 35], "sequenti": [24, 30, 35, 49], "getresponsebodi": 24, "responseerrorreason": 24, "responsestatuscod": 24, "distinguish": [24, 35, 41], "301": 24, "302": 24, "303": 24, "307": 24, "308": 24, "redirectedrequestid": 24, "networkid": 24, "handleauthrequest": 24, "encount": [24, 35, 37], "headless": [25, 49, 54, 56, 57, 58], "compress": [25, 35, 37, 51], "speed": [25, 28, 37, 58, 59], "frame_time_tick": 25, "no_display_upd": 25, "beginfram": [25, 49], "beginframecontrol": 25, "compositor": 25, "draw": [25, 36], "goo": 25, "gle": 25, "timetick": 25, "uptim": 25, "60": 25, "666": 25, "commit": [25, 28, 37], "drawn": 25, "onto": 25, "visual": [25, 37, 58, 59], "hasdamag": 25, "damag": 25, "thu": [25, 35, 57], "diagnost": 25, "screenshotdata": 25, "taken": [25, 26, 41], "rtype": [25, 37, 55, 57], "callsit": [26, 41], "alloc": [26, 34, 43], "across": [26, 43, 48], "startsampl": [26, 34], "stopsampl": 26, "heap_object_id": 26, "sampling_interv": [26, 34], "include_objects_collected_by_major_gc": 26, "include_objects_collected_by_minor_gc": 26, "averag": [26, 34], "poisson": 26, "32768": 26, "By": 26, "still": [26, 35, 37, 40, 57], "aliv": 26, "getsamplingprofil": 26, "steadi": 26, "instruct": 26, "major": [26, 28], "gc": 26, "temporari": [26, 30, 35], "minor": 26, "tune": 26, "latenc": [26, 35], "track_alloc": 26, "report_progress": 26, "treat_global_objects_as_root": 26, "capture_numeric_valu": 26, "expose_intern": 26, "exposeintern": 26, "numer": [26, 33, 48], "triplet": 26, "regularli": 26, "seen": 26, "unsign": 27, "increment": [27, 39, 53], "primari": [27, 47, 48], "key_rang": 27, "entriescount": 27, "keygeneratorvalu": 27, "autoincr": 27, "index_nam": 27, "objectstoredataentri": 27, "hasmor": 27, "proce": [28, 30], "toward": 28, "bottom": [28, 37], "radiu": 28, "rotat": 28, "tangenti": 28, "pressur": [28, 34, 37], "plane": 28, "stylu": 28, "degre": 28, "90": 28, "tiltx": 28, "tilti": 28, "clockwis": 28, "pen": 28, "359": 28, "utc": [28, 35], "januari": [28, 35, 58, 59], "1970": [28, 35], "mime": 28, "drag": [28, 55], "mimetyp": [28, 35, 37, 42], "uri": [28, 35], "filenam": [28, 55, 57], "dispatch": 28, "alt": [28, 55], "ctrl": [28, 55], "shift": [28, 31, 36, 37, 39, 55], "8": [28, 35, 37, 53, 55, 58, 59], "unmodified_text": 28, "key_identifi": 28, "windows_virtual_key_cod": 28, "native_virtual_key_cod": 28, "auto_repeat": 28, "is_keypad": 28, "is_system_kei": 28, "keyboard": [28, 37], "keyup": 28, "rawkeydown": 28, "u": [28, 33, 36, 56, 57, 58], "0041": 28, "keya": 28, "altgr": 28, "keypad": 28, "selectal": 28, "execcommand": 28, "nsstandardkeybindingrespond": 28, "editor_command_nam": 28, "h": [28, 33, 35, 51], "click_count": 28, "delta_x": 28, "delta_i": 28, "pointer_typ": 28, "wheel": 28, "touch_point": 28, "touchend": 28, "touchcancel": 28, "touchstart": 28, "touchmov": 28, "per": [28, 31, 33, 35, 37, 43, 45, 47, 48, 49, 58, 59], "compar": [28, 43, 57], "sequenc": [28, 51, 53], "selection_start": 28, "selection_end": 28, "replacement_start": 28, "replacement_end": 28, "im": 28, "imecommitcomposit": 28, "imesetcomposit": 28, "composit": [28, 31], "doesn": [28, 36, 47], "emoji": 28, "directli": [28, 55, 56], "dispatchdragev": 28, "scale_factor": 28, "relative_spe": 28, "gesture_source_typ": 28, "synthes": [28, 51], "pinch": 28, "period": 28, "800": 28, "x_distanc": 28, "y_distanc": 28, "x_overscrol": 28, "y_overscrol": 28, "prevent_fl": 28, "repeat_count": 28, "repeat_delay_m": 28, "interaction_marker_nam": 28, "fling": 28, "swipe": 28, "250": 28, "tap_count": 28, "tap": 28, "touchdown": 28, "touchup": 28, "m": [28, 35], "50": [28, 55, 57], "doubl": [28, 55], "setinterceptdrag": 28, "output": [30, 52, 60], "blob": [30, 37, 40, 53], "eof": 30, "itself": [31, 35, 43, 55], "sticki": 31, "constraint": 31, "purpos": [31, 35, 53], "matrix": 31, "compositingreason": 31, "compositingreasonid": 31, "inspect": [31, 33, 36, 37, 43, 49, 52], "compos": [31, 57], "snapshot_id": 31, "min_repeat_count": 31, "min_dur": 31, "clip_rect": 31, "replai": [31, 35], "from_step": 31, "to_step": 31, "bitmap": 31, "till": 31, "canva": 31, "medialogrecord": 33, "kmessag": 33, "sync": [33, 37, 51], "medialogmessagelevel": 33, "thing": [33, 57], "dvlog": 33, "pipelinestatu": 33, "soon": [33, 51], "howev": [33, 35, 55, 57], "awai": 33, "introduc": 33, "hopefulli": 33, "kmediapropertychang": 33, "kmediaeventtrigg": 33, "kmediaerror": 33, "pipelinestatuscod": 33, "pipeline_statu": 33, "potenti": [33, 35, 37, 47], "ie": [33, 57], "decodererror": 33, "windowserror": 33, "extra": [33, 35, 37, 54], "hresult": 33, "codec": [33, 48], "propvalu": 33, "congest": 33, "chronolog": 33, "decim": 34, "hexadecim": 34, "0x": 34, "prefix": 34, "oomintervent": 34, "purg": 34, "startup": 34, "jseventlisten": 34, "suppress": [34, 47], "suppress_random": 34, "random": [34, 58, 59], "perceiv": 35, "texttrack": 35, "signedexchang": 35, "cspviolationreport": 35, "loader": [35, 37], "timedout": 35, "accessdeni": 35, "connectionclos": 35, "connectionreset": 35, "connectionrefus": 35, "connectionabort": 35, "connectionfail": 35, "namenotresolv": 35, "internetdisconnect": 35, "addressunreach": 35, "blockedbycli": [35, 40], "blockedbyrespons": 35, "arbitrari": 35, "past": [35, 58, 59], "supposedli": 35, "samesit": 35, "tool": 35, "ietf": 35, "west": 35, "00": 35, "legaci": [35, 51], "abil": 35, "nonsecur": 35, "requesttim": 35, "baselin": 35, "proxi": [35, 49], "dn": 35, "ssl": [35, 45], "handshak": 35, "settl": 35, "respondwith": 35, "rout": 35, "verylow": 35, "veryhigh": 35, "referr": [35, 37], "postdata": 35, "too": [35, 49, 56], "individu": [35, 37], "sct": 35, "unlik": [35, 37, 42, 43], "algorithm": [35, 36, 45], "tl": [35, 45], "quic": [35, 45], "exchang": [35, 45], "subject": [35, 45], "san": 35, "ip": 35, "ca": [35, 45], "compli": 35, "transpar": [35, 36, 37], "encrypt": [35, 37], "clienthello": 35, "ec": [35, 45], "dh": [35, 45], "aead": [35, 45], "signatureschem": 35, "subresourc": 35, "corp": 35, "disallowedbymod": 35, "invalidrespons": 35, "wildcardoriginnotallow": 35, "missingalloworiginhead": 35, "multiplealloworiginvalu": 35, "invalidalloworiginvalu": 35, "alloworiginmismatch": 35, "invalidallowcredenti": 35, "corsdisabledschem": 35, "preflightinvalidstatu": 35, "preflightdisallowedredirect": 35, "preflightwildcardoriginnotallow": 35, "preflightmissingalloworiginhead": 35, "preflightmultiplealloworiginvalu": 35, "preflightinvalidalloworiginvalu": 35, "preflightalloworiginmismatch": 35, "preflightinvalidallowcredenti": 35, "preflightmissingallowextern": 35, "preflightinvalidallowextern": 35, "preflightmissingallowprivatenetwork": 35, "preflightinvalidallowprivatenetwork": 35, "invalidallowmethodspreflightrespons": 35, "invalidallowheaderspreflightrespons": 35, "methoddisallowedbypreflightrespons": 35, "headerdisallowedbypreflightrespons": 35, "redirectcontainscredenti": 35, "insecureprivatenetwork": 35, "invalidprivatenetworkaccess": 35, "unexpectedprivatenetworkaccess": 35, "nocorsredirectmodenotfollow": 35, "preflightmissingprivatenetworkaccessid": 35, "preflightmissingprivatenetworkaccessnam": 35, "privatenetworkaccesspermissionunavail": 35, "privatenetworkaccesspermissiondeni": 35, "trust": [35, 47], "trust_token": 35, "srr": 35, "whom": 35, "alternativejobwonwithoutrac": 35, "alternativejobwonrac": 35, "mainjobwonrac": 35, "mappingmiss": 35, "dnsalpnh3jobwonwithoutrac": 35, "dnsalpnh3jobwonrac": 35, "unspecifiedreason": 35, "router": 35, "race": [35, 37], "reus": [35, 43], "matchedsourcetyp": 35, "matchedsourc": 35, "just": [35, 55, 56, 57, 58, 59], "payloaddata": 35, "visit": 35, "toplevelsit": 35, "sameparti": 35, "65535": 35, "unix": 35, "partit": 35, "secureonli": 35, "samesitestrict": 35, "samesitelax": 35, "samesiteunspecifiedtreatedaslax": 35, "samesitenoneinsecur": 35, "userprefer": 35, "thirdpartyphaseout": 35, "thirdpartyblockedinfirstpartyset": 35, "syntaxerror": 35, "schemenotsupport": 35, "overwritesecur": 35, "invaliddomain": 35, "invalidprefix": 35, "unknownerror": 35, "schemefulsamesitestrict": 35, "schemefulsamesitelax": 35, "schemefulsamesiteunspecifiedtreatedaslax": 35, "samepartyfromcrosspartycontext": 35, "samepartyconflictswithotherattribut": 35, "namevaluepairexceedsmaxs": 35, "disallowedcharact": 35, "nocookiecont": 35, "notonpath": 35, "domainmismatch": 35, "3pcd": 35, "exempt": 35, "userset": 35, "tpcdmetadata": 35, "tpcddeprecationtri": 35, "tpcdheurist": 35, "enterprisepolici": 35, "corsoptin": 35, "sometim": [35, 54, 58, 59], "webpackag": 35, "yasskin": 35, "httpbi": 35, "impl": 35, "rfc": 35, "hex": [35, 36], "cert": 35, "sha256": 35, "cbor": 35, "signaturesig": 35, "signatureintegr": 35, "signaturecerturl": 35, "signaturecertsha256": 35, "signaturevalidityurl": 35, "signaturetimestamp": 35, "blockfrominsecuretomorepriv": 35, "warnfrominsecuretomorepriv": 35, "preflightblock": 35, "preflightwarn": 35, "sameorigin": [35, 37], "sameoriginallowpopup": 35, "restrictproperti": 35, "unsafenon": 35, "sameoriginpluscoep": 35, "restrictpropertiespluscoep": 35, "requirecorp": 35, "markedforremov": 35, "upload": [35, 55], "deliveri": 35, "made": [35, 43, 57], "later": [35, 43], "corb": 35, "setacceptedencod": 35, "raw_respons": 35, "isnavigationrequest": 35, "partitionkei": 35, "download_throughput": 35, "upload_throughput": 35, "connection_typ": 35, "packet_loss": 35, "packet_queue_length": 35, "packet_reord": 35, "internet": 35, "disconnect": [35, 49, 52], "throughput": 35, "webrtc": [35, 37], "packet": 35, "loss": 35, "percent": 35, "queue": 35, "packetreord": 35, "max_total_buffer_s": 35, "max_resource_buffer_s": 35, "max_post_data_s": 35, "buffer": [35, 39, 51, 52], "preserv": 35, "longest": 35, "getcooki": 35, "der": 35, "subfram": 35, "multipart": 35, "mandatori": 35, "withcredenti": 35, "bypass": [35, 37, 43, 49], "toggl": [35, 37], "cache_dis": 35, "overwrit": [35, 56], "continueinterceptedrequest": 35, "datalength": 35, "net_error_list": 35, "likewis": 35, "auth": 35, "redirectrespons": 35, "webtransport": [35, 37], "dispos": [35, 49], "latter": 35, "wire": 35, "proper": 35, "space": [35, 36], "establish": 35, "correct": [35, 57], "200": [35, 51, 55, 58, 59], "304": 35, "serializ": [35, 43, 56, 57], "103": 35, "earli": 35, "common": 35, "succeed": [35, 51], "alreadyexist": 35, "signifi": 35, "und": 35, "preemptiv": 35, "wbn": 35, "bundl": [35, 42, 47], "webpag": [35, 37, 57], "webbundl": 35, "And": 35, "enablereportingapi": 35, "atop": 36, "outlin": [36, 37], "grid": 36, "cell": 36, "ruler": 36, "shown": [36, 37, 45, 58, 59], "neg": 36, "rowlinecolor": 36, "columnlinecolor": 36, "row": 36, "rowlinedash": 36, "columnlinedash": 36, "gap": 36, "hatch": 36, "flex": 36, "justifi": 36, "align": 36, "arrow": [36, 55], "grew": 36, "shrank": 36, "solid": 36, "tooltip": 36, "a11i": 36, "ratio": [36, 37], "snapport": 36, "snap": 36, "dual": 36, "hing": 36, "bar": [36, 37], "app": [36, 37, 42], "cover": [36, 41], "searchfornod": 36, "searchforuashadowdom": 36, "captureareascreenshot": 36, "showdist": 36, "include_dist": 36, "include_styl": 36, "viewer": 36, "content_outline_color": 36, "reliabl": [36, 43], "highlightnod": 36, "highlight_config": 36, "respect": [36, 43, 47], "source_order_config": 36, "enter": [36, 37], "hover": [36, 55], "container_query_highlight_config": 36, "flex_node_highlight_config": 36, "fp": [36, 48], "counter": [36, 41, 53], "grid_node_highlight_config": 36, "hinge_config": 36, "hidehing": 36, "isolated_element_highlight_config": 36, "bottleneck": 36, "scroll_snap_highlight_config": 36, "vital": 36, "window_controls_overlay_config": 36, "setinspectmod": 36, "ask": [36, 58, 59], "parentisad": 37, "createdbyadscript": 37, "matchedblockingrul": 37, "securelocalhost": 37, "insecureschem": 37, "insecureancestor": 37, "notisol": 37, "notisolatedfeaturedis": 37, "sharedarraybuff": 37, "sharedarraybufferstransferallow": 37, "performancemeasurememori": 37, "performanceprofil": 37, "permissions_polici": 37, "permissions_policy_featur": 37, "brows": [37, 47, 55, 57], "topic": 37, "dpr": 37, "downlink": 37, "ect": 37, "reduc": 37, "motion": 37, "rtt": 37, "arch": 37, "socket": 37, "interest": [37, 47], "cohort": 37, "otp": 37, "publickei": 37, "wake": 37, "lock": 37, "unrestrict": 37, "xr": 37, "spatial": 37, "iframeattribut": 37, "infencedframetre": 37, "inisolatedapp": 37, "trial": 37, "notsupport": [37, 40], "wrongorigin": 37, "invalidsignatur": 37, "wrongvers": 37, "featuredis": 37, "tokendis": 37, "featuredisabledforus": 37, "unknowntri": 37, "validtokennotprovid": 37, "osnotsupport": 37, "trialnotallow": 37, "parsedtoken": 37, "parsabl": 37, "take": [37, 43, 45, 47, 57], "suffix": 37, "googl": 37, "co": 37, "uk": 37, "gate": 37, "histori": [37, 57], "screencast": 37, "swap": 37, "pare": 37, "recover": 37, "ideal": 37, "sansserif": 37, "formsubmissionget": 37, "formsubmissionpost": 37, "httpheaderrefresh": 37, "scriptiniti": 37, "metatagrefresh": 37, "pageblockinterstiti": 37, "anchorclick": 37, "currenttab": 37, "newtab": 37, "newwindow": 37, "64": [37, 53], "suitabl": [37, 57], "noreferr": 37, "noreferrerwhendowngrad": 37, "originwhencrossorigin": 37, "strictorigin": 37, "strictoriginwhencrossorigin": 37, "unsafeurl": 37, "compil": [37, 43], "producecompilationcach": 37, "won": [37, 56, 57, 58], "comparison": 37, "mimic": 37, "understand": 37, "emb": 37, "sharetargetparam": 37, "experi": [37, 53, 57], "todo": [37, 40, 42, 58], "1231886": 37, "incub": 37, "gh": 37, "autoaccept": 37, "autoreject": 37, "autooptout": 37, "backforwardcacherestor": 37, "notprimarymainfram": 37, "backforwardcachedis": 37, "relatedactivecontentsexist": 37, "httpstatusnotok": 37, "schemenothttporhttp": 37, "wasgrantedmediaaccess": 37, "disableforrenderframehostcal": 37, "domainnotallow": 37, "httpmethodnotget": 37, "subframeisnavig": 37, "cachelimit": 37, "javascriptexecut": 37, "rendererprocesskil": [37, 40], "rendererprocesscrash": [37, 40], "schedulertrackedfeatureus": 37, "conflictingbrowsinginst": 37, "cacheflush": 37, "serviceworkerversionactiv": 37, "sessionrestor": 37, "serviceworkerpostmessag": 37, "enteredbackforwardcachebeforeserviceworkerhostad": 37, "renderframehostreused_samesit": 37, "renderframehostreused_crosssit": 37, "serviceworkerclaim": 37, "ignoreeventandevict": 37, "haveinnercont": 37, "timeoutputtingincach": 37, "backforwardcachedisabledbylowmemori": 37, "backforwardcachedisabledbycommandlin": 37, "networkrequestdatapipedrainedasbytesconsum": 37, "networkrequestredirect": 37, "networkrequesttimeout": 37, "networkexceedsbufferlimit": 37, "navigationcancelledwhilerestor": 37, "notmostrecentnavigationentri": 37, "backforwardcachedisabledforprerend": 37, "useragentoverridediff": 37, "foregroundcachelimit": 37, "browsinginstancenotswap": 37, "backforwardcachedisabledfordeleg": 37, "unloadhandlerexistsinmainfram": 37, "unloadhandlerexistsinsubfram": 37, "serviceworkerunregistr": 37, "cachecontrolnostor": 37, "cachecontrolnostorecookiemodifi": 37, "cachecontrolnostorehttponlycookiemodifi": 37, "noresponsehead": 37, "activationnavigationsdisallowedforbug1234857": 37, "errordocu": 37, "fencedframesembedd": 37, "cookiedis": 37, "httpauthrequir": 37, "cookieflush": 37, "broadcastchannelonmessag": 37, "webviewsettingschang": 37, "webviewjavascriptobjectchang": 37, "webviewmessagelistenerinject": 37, "webviewsafebrowsingallowlistchang": 37, "webviewdocumentstartjavascriptchang": 37, "mainresourcehascachecontrolnostor": 37, "mainresourcehascachecontrolnocach": 37, "subresourcehascachecontrolnostor": 37, "subresourcehascachecontrolnocach": 37, "containsplugin": 37, "documentload": 37, "outstandingnetworkrequestoth": 37, "requestedmidipermiss": 37, "requestedaudiocapturepermiss": 37, "requestedvideocapturepermiss": 37, "requestedbackforwardcacheblockedsensor": 37, "requestedbackgroundworkpermiss": 37, "broadcastchannel": 37, "webxr": 37, "weblock": 37, "webhid": 37, "webshar": 37, "requestedstorageaccessgr": 37, "webnfc": 37, "outstandingnetworkrequestfetch": 37, "outstandingnetworkrequestxhr": 37, "appbann": 37, "webdatabas": 37, "pictureinpictur": 37, "speechrecogn": 37, "idlemanag": 37, "paymentmanag": 37, "speechsynthesi": 37, "keyboardlock": 37, "webotpservic": 37, "outstandingnetworkrequestdirectsocket": 37, "injectedjavascript": 37, "injectedstylesheet": 37, "keepaliverequest": 37, "indexeddbev": 37, "jsnetworkrequestreceivedcachecontrolnostoreresourc": 37, "webrtcsticki": 37, "webtransportsticki": 37, "websocketsticki": 37, "smartcard": 37, "livemediastreamtrack": 37, "unloadhandl": 37, "parserabort": 37, "contentsecurityhandl": 37, "contentwebauthenticationapi": 37, "contentfilechoos": 37, "contentseri": 37, "contentfilesystemaccess": 37, "contentmediadevicesdispatcherhost": 37, "contentwebbluetooth": 37, "contentwebusb": 37, "contentmediasessionservic": 37, "contentscreenread": 37, "embedderpopupblockertabhelp": 37, "embeddersafebrowsingtriggeredpopupblock": 37, "embeddersafebrowsingthreatdetail": 37, "embedderappbannermanag": 37, "embedderdomdistillerviewersourc": 37, "embedderdomdistillerselfdeletingrequestdeleg": 37, "embedderoominterventiontabhelp": 37, "embedderofflinepag": 37, "embedderchromepasswordmanagerclientbindcredentialmanag": 37, "embedderpermissionrequestmanag": 37, "embeddermodaldialog": 37, "embedderextens": 37, "embedderextensionmessag": 37, "embedderextensionmessagingforopenport": 37, "embedderextensionsentmessagetocachedfram": 37, "requestedbywebviewcli": 37, "supportpend": 37, "pagesupportneed": 37, "blockag": 37, "anonym": [37, 43], "seed": 37, "addscripttoevaluateonnewdocu": [37, 43], "world_nam": 37, "run_immedi": 37, "world": [37, 43], "bring": 37, "from_surfac": 37, "capture_beyond_viewport": 37, "beyond": [37, 41], "mhtml": 37, "tri": [37, 43], "hook": [37, 49], "minidump": 37, "grant_univeral_access": 37, "univers": 37, "power": [37, 57], "caution": 37, "cookie_nam": 37, "cook": 37, "webappenablemanifestid": 37, "appid": 37, "recommendedid": 37, "manifest_id": [37, 42], "manifestid": [37, 42], "csslayoutviewport": 37, "cssvisualviewport": 37, "contents": 37, "scrollabl": 37, "dp": 37, "csscontents": 37, "fact": 37, "currentindex": 37, "prompt_text": 37, "onbeforeunload": 37, "intend": [37, 43], "errortext": 37, "entry_id": 37, "landscap": 37, "display_header_foot": 37, "print_background": 37, "paper_width": 37, "paper_height": 37, "margin_top": 37, "margin_bottom": 37, "margin_left": 37, "margin_right": 37, "page_rang": 37, "header_templ": 37, "footer_templ": 37, "prefer_css_page_s": 37, "transfer_mod": [37, 51], "generate_tagged_pdf": 37, "generate_document_outlin": 37, "pdf": 37, "paper": 37, "footer": 37, "graphic": [37, 48], "inch": 37, "5": [37, 55], "11": [37, 58, 59], "1cm": 37, "13": 37, "quietli": 37, "cap": 37, "greater": 37, "pagenumb": 37, "totalpag": 37, "span": [37, 57], "headertempl": 37, "fit": [37, 43], "choic": [37, 58, 59], "returnasstream": [37, 51], "append": 37, "ignore_cach": [37, 57], "script_to_evaluate_on_load": [37, 57], "refresh": 37, "dataurl": 37, "accident": [37, 43], "unintend": 37, "removescripttoevaluateonnewdocu": 37, "acknowledg": 37, "for_script": 37, "chooser": 37, "lifecycl": 37, "is_allow": 37, "short": [37, 45, 55, 58, 59], "1440085": 37, "doc": 37, "d": [37, 56, 57], "12hvmfxyj5jc": 37, "ejr5omwsa2bqtjsbgglki6ziyx0_wpa": 37, "puppet": 37, "whatwg": 37, "multipag": 37, "rph": 37, "transact": 37, "sctn": [37, 53], "spc": 37, "max_width": 37, "max_height": 37, "every_nth_fram": 37, "n": [37, 55], "th": 37, "runifwaitingfordebugg": [37, 49], "interceptfilechoos": 37, "interstiti": 37, "iff": [37, 40, 43, 51], "act": [37, 57], "engag": 37, "stall": 37, "handlejavascriptdialog": 37, "bfcach": 37, "backforwardcach": 37, "startscreencast": 37, "setgeneratecompilationcach": 37, "time_domain": 38, "performanceobserv": 39, "largest_contentful_paint": 39, "trim": 39, "instabl": 39, "layout_shift": 39, "score": 39, "performanceentri": 39, "entrytyp": 39, "lifetim": [39, 52], "reportperformancetimelin": 39, "speculationruleset": 40, "textcont": 40, "nav": 40, "specul": 40, "1425354": 40, "sourceisnotjsonobject": 40, "invalidrulesskip": 40, "although": [40, 57], "prefetchwithsubresourc": 40, "href": [40, 57], "finalstatu": 40, "prerender2": 40, "lowenddevic": 40, "invalidschemeredirect": 40, "invalidschemenavig": 40, "navigationrequestblockedbycsp": 40, "mainframenavig": 40, "mojobinderpolici": 40, "triggerdestroi": 40, "navigationnotcommit": 40, "navigationbadhttpstatu": 40, "clientcertrequest": 40, "navigationrequestnetworkerror": 40, "cancelallhostsfortest": 40, "didfailload": 40, "sslcertificateerror": 40, "loginauthrequest": 40, "uachangerequiresreload": 40, "audiooutputdevicerequest": 40, "mixedcont": 40, "triggerbackground": 40, "memorylimitexceed": 40, "datasaveren": 40, "triggerurlhaseffectiveurl": 40, "activatedbeforestart": 40, "inactivepagerestrict": 40, "startfail": 40, "timeoutbackground": 40, "crosssiteredirectininitialnavig": 40, "crosssitenavigationininitialnavig": 40, "samesitecrossoriginredirectnotoptinininitialnavig": 40, "samesitecrossoriginnavigationnotoptinininitialnavig": 40, "activationnavigationparametermismatch": 40, "activatedinbackground": 40, "embedderhostdisallow": 40, "activationnavigationdestroyedbeforesuccess": 40, "tabclosedbyusergestur": 40, "tabclosedwithoutusergestur": 40, "primarymainframerendererprocesscrash": 40, "primarymainframerendererprocesskil": 40, "activationframepolicynotcompat": 40, "preloadingdis": 40, "batterysaveren": 40, "activatedduringmainframenavig": 40, "preloadingunsupportedbywebcont": 40, "crosssiteredirectinmainframenavig": 40, "crosssitenavigationinmainframenavig": 40, "samesitecrossoriginredirectnotoptininmainframenavig": 40, "samesitecrossoriginnavigationnotoptininmainframenavig": 40, "memorypressureontrigg": 40, "memorypressureaftertrigg": 40, "prerenderingdisabledbydevtool": 40, "speculationruleremov": 40, "activatedwithauxiliarybrowsingcontext": 40, "maxnumofrunningeagerprerendersexceed": 40, "maxnumofrunningnoneagerprerendersexceed": 40, "maxnumofrunningembedderprerendersexceed": 40, "prerenderingurlhaseffectiveurl": 40, "redirectedprerenderingurlhaseffectiveurl": 40, "activationurlhaseffectiveurl": 40, "javascriptinterfacead": 40, "javascriptinterfaceremov": 40, "allprerenderingcancel": 40, "preloadingtriggeringoutcom": 40, "1384419": 40, "revisit": 40, "aren": 40, "prefetchallow": 40, "prefetchfailedineligibleredirect": 40, "prefetchfailedinvalidredirect": 40, "prefetchfailedmimenotsupport": 40, "prefetchfailedneterror": 40, "prefetchfailednon2xx": 40, "prefetchfailedperpagelimitexceed": 40, "prefetchevictedaftercandidateremov": 40, "prefetchevictedfornewerprefetch": 40, "prefetchheldback": 40, "prefetchineligibleretryaft": 40, "prefetchisprivacydecoi": 40, "prefetchisstal": 40, "prefetchnoteligiblebrowsercontextofftherecord": 40, "prefetchnoteligibledatasaveren": 40, "prefetchnoteligibleexistingproxi": 40, "prefetchnoteligiblehostisnonuniqu": 40, "prefetchnoteligiblenondefaultstoragepartit": 40, "prefetchnoteligiblesamesitecrossoriginprefetchrequiredproxi": 40, "prefetchnoteligibleschemeisnothttp": 40, "prefetchnoteligibleuserhascooki": 40, "prefetchnoteligibleuserhasservicework": 40, "prefetchnoteligiblebatterysaveren": 40, "prefetchnoteligiblepreloadingdis": 40, "prefetchnotfinishedintim": 40, "prefetchnotstart": 40, "prefetchnotusedcookieschang": 40, "prefetchproxynotavail": 40, "prefetchresponseus": 40, "prefetchsuccessfulbutnotus": 40, "prefetchnotusedprobefail": 40, "mismatch": 40, "upsert": 40, "give": 40, "mojo": 40, "incompat": 40, "deoptim": 41, "microsecond": 41, "adjac": 41, "starttim": 41, "insid": 41, "granular": 41, "incomplet": 41, "garbag": [41, 51], "call_count": 41, "allow_triggered_upd": 41, "precis": 41, "unnecessari": 41, "profileend": 41, "takeprecisecoverag": 41, "trig": 41, "replica": 42, "crsrc": 42, "web_appl": 42, "web_app_os_integration_st": 42, "drc": 42, "9910d3be894c8f142c977ba1023f30a656bc13fc": 42, "l": 42, "67": 42, "iana": 42, "assign": [42, 49, 56, 58, 59], "xhtml": 42, "link_captur": 42, "display_mod": 42, "unrecogn": 42, "desktoppwaslinkcapturingwithscopeextens": 42, "webappenablescopeextens": 42, "linkcaptur": 42, "339453269": 42, "chromeo": 42, "yet": [42, 49], "o": [42, 48, 51, 56], "webapp": 42, "commonli": 42, "dev": 42, "learn": 42, "badgecount": 42, "install_url_or_bundle_url": 42, "install_url": 42, "iwa": 42, "337872319": 42, "meet": 42, "swbn": 42, "regardless": [42, 47], "allowlist": 42, "attachtotarget": [42, 49], "339454034": 42, "maintain": [43, 47], "generatepreview": 43, "returnbyvalu": 43, "maxnodedepth": 43, "includeshadowtre": 43, "met": 43, "primit": 43, "stringifi": [43, 55], "nan": 43, "infin": 43, "bigint": 43, "liter": 43, "sure": [43, 54, 55], "constructor": 43, "abbrevi": 43, "formatt": 43, "ml": 43, "hasbodi": 43, "bodygetterid": 43, "did": [43, 45], "accessor": 43, "getter": 43, "setter": 43, "convent": 43, "unserializ": 43, "dictionari": [43, 48, 56], "assert": [43, 53], "preced": 43, "debuggerid": 43, "execution_context_nam": 43, "executioncontextnam": 43, "unclear": 43, "bug": [43, 48], "1169639": 43, "executioncontext": 43, "worldnam": 43, "promise_object_id": 43, "strace": 43, "function_declar": 43, "unique_context_id": 43, "serialization_opt": 43, "overriden": 43, "await": [43, 54, 55, 58, 59], "objectgroup": 43, "contextid": 43, "persist_script": 43, "disable_break": 43, "repl_mod": 43, "allow_unsafe_eval_blocked_by_csp": 43, "uniquecontextid": 43, "offer": 43, "disablebreak": 43, "replmod": 43, "themselv": 43, "eval": 43, "settimeout": 43, "setinterv": 43, "callabl": [43, 57], "error_object_id": 43, "portion": 43, "useds": 43, "totals": 43, "own_properti": 43, "accessor_properties_onli": 43, "non_indexed_properties_onli": 43, "internalproperti": 43, "privateproperti": 43, "const": 43, "prototype_object_id": 43, "unsubscrib": 43, "getstacktrac": 43, "parentid": 43, "logger": 43, "unnam": 43, "unhandl": 43, "revok": 43, "weak": 45, "sha1": 45, "modern": 45, "obsolet": 45, "highest": 45, "badreput": 45, "safeti": 45, "tip": 45, "reput": 45, "answer": 45, "handlecertificateerror": 45, "cryptograph": 45, "last_chanc": 46, "force_update_on_page_load": 46, "protect": 47, "audienc": 47, "additionalbid": 47, "additionalbidwin": 47, "toplevelbid": 47, "topleveladditionalbid": 47, "configresolv": 47, "bidderj": 47, "bidderwasm": 47, "sellerj": 47, "biddertrustedsign": 47, "sellertrustedsign": 47, "documentaddmodul": 47, "documentselecturl": 47, "documentrun": 47, "documentset": 47, "documentappend": 47, "documentdelet": 47, "documentclear": 47, "documentget": 47, "workletset": 47, "workletappend": 47, "workletdelet": 47, "workletclear": 47, "workletget": 47, "workletkei": 47, "workletentri": 47, "workletlength": 47, "workletremainingbudget": 47, "headerset": 47, "headerappend": 47, "headerdelet": 47, "headerclear": 47, "entropi": 47, "selecturl": 47, "absenc": 47, "vari": 47, "uint32": 47, "internalerror": 47, "insufficientsourcecapac": 47, "insufficientuniquedestinationcapac": 47, "excessivereportingorigin": 47, "prohibitedbybrowserpolici": 47, "successnois": 47, "destinationreportinglimitreach": 47, "destinationgloballimitreach": 47, "destinationbothlimitsreach": 47, "reportingoriginspersitelimitreach": 47, "exceedsmaxchannelcapac": 47, "exceedsmaxtriggerstatecardin": 47, "destinationperdayreportinglimitreach": 47, "successdroppedlowerprior": 47, "nocapacityforattributiondestin": 47, "nomatchingsourc": 47, "excessiveattribut": 47, "prioritytoolow": 47, "neverattributedsourc": 47, "nomatchingsourcefilterdata": 47, "nomatchingconfigur": 47, "excessivereport": 47, "falselyattributedsourc": 47, "reportwindowpass": 47, "notregist": 47, "reportwindownotstart": 47, "nomatchingtriggerdata": 47, "nohistogram": 47, "insufficientbudget": 47, "websit": 47, "cctld": 47, "issuerorigin": 47, "intact": 47, "turtledov": 47, "dictdef": 47, "generatebidinterestgroup": 47, "expirationtim": 47, "lifetimem": 47, "joiningorigin": 47, "overrideact": 47, "usagebreakdown": 47, "quota_s": 47, "quotas": 47, "ownerorigin": 47, "withdraw": 47, "nois": 47, "ignoreifpres": 47, "notifi": [47, 49, 52], "somethingbid": 47, "interestgroupauctionev": 47, "worklet": 47, "signal": [47, 51], "care": 47, "wrap": [47, 51], "processor": 48, "pci": 48, "vendor": 48, "driver": [48, 58, 59], "sy": 48, "decod": 48, "vp9": 48, "framer": 48, "h264": 48, "fraction": [48, 51], "denomin": 48, "24": 48, "24000": 48, "1001": 48, "yuv": 48, "workaround": 48, "cumul": 48, "feature_st": 48, "modelnam": 48, "On": 48, "macbookpro": 48, "modelvers": 48, "10": [48, 57, 58, 59], "discoveri": 49, "devtools_agent_host_impl": 49, "cc": 49, "ss": 49, "q": 49, "f": [49, 56], "22": 49, "ktypetab": 49, "5b": 49, "5d": 49, "plan": 49, "eventu": 49, "retir": 49, "991325": 49, "wait_for_debugger_on_start": 49, "filter_": 49, "monitor": 49, "setautoattach": 49, "dispose_on_detach": 49, "proxy_serv": 49, "proxy_bypass_list": 49, "origins_with_universal_network_access": 49, "incognito": 49, "unlimit": 49, "constitut": 49, "enable_begin_frame_control": 49, "for_tab": 49, "maco": 49, "foreground": 49, "binding_nam": 49, "channel": [49, 52], "bindingnam": 49, "onmessag": 49, "handlemessag": 49, "callback": [49, 52, 57], "createbrowsercontext": 49, "auto_attach": 49, "autoattachrel": 49, "watch": 49, "discov": 49, "setdiscovertarget": 49, "detachfromtarget": 49, "got": 50, "dump": [51, 56, 57], "infra": 51, "kilobyt": 51, "mb": 51, "memory_dump_request_arg": 51, "memory_instrument": 51, "perfetto": 51, "perfettoconfig": 51, "sync_id": 51, "determinist": 51, "level_of_detail": 51, "dumpguid": 51, "buffer_usage_reporting_interv": 51, "stream_format": 51, "trace_config": 51, "perfetto_config": 51, "tracing_backend": 51, "reportev": 51, "protobuf": 51, "approxim": 51, "flush": 51, "lost": 51, "ring": 51, "graph": 52, "audiocontext": 52, "audiocontextst": 52, "clamp": 52, "max": [52, 57], "spent": 52, "divid": 52, "quantum": 52, "multipli": 52, "capac": 52, "glitch": 52, "varianc": 52, "outgo": 52, "largeblob": 53, "credblob": 53, "fidoalli": 53, "fido": 53, "v2": 53, "rd": 53, "20201208": 53, "minpinlength": 53, "p": [53, 58, 59], "20210615": 53, "prf": 53, "succe": 53, "backup": 53, "elig": 53, "BE": 53, "ecdsa": 53, "pkc": 53, "defaultbackupelig": 53, "defaultbackupst": 53, "enable_ui": 53, "demo": 53, "closer": 53, "is_bogus_signatur": 53, "is_bad_uv": 53, "is_bad_up": 53, "isbogussignatur": 53, "isbaduv": 53, "isbadup": 53, "uv": 53, "filepath": 54, "dat": 54, "export": 54, "requests_style_cooki": 54, "get_al": 54, "requests_cookie_format": 54, "kwarg": [54, 56, 57], "usual": [54, 55], "nodriv": [54, 56, 57, 58], "besid": 54, "your": [54, 57], "under": [54, 57], "know": 54, "__init__": 54, "stubborn": 54, "correctli": 54, "kill": 54, "classmethod": 54, "browser_executable_path": [54, 56, 58], "cookiejar": 54, "especi": [54, 57], "union": [54, 55, 56, 57], "alia": [54, 57], "welcom": [54, 57], "safest": [54, 57], "max_column": 54, "word": 55, "_node": [55, 57], "opbject": 55, "seper": [55, 58], "quit": [55, 57], "expens": [55, 57], "advis": 55, "bunch": [55, 57], "js_function": 55, "eg": [55, 57], "elem": [55, 58, 59], "blabla": 55, "consolelog": 55, "myfunct": 55, "ab": 55, "_until_ev": 55, "atm": 55, "mouseov": 55, "cours": 55, "100px": 55, "200px": 55, "look": 55, "slower": [55, 57], "smooth": 55, "stuck": [55, 57], "py": 55, "meth": 55, "keystrok": 55, "rn": 55, "spacebar": 55, "wonder": 55, "file_path": 55, "needl": 55, "sai": [55, 58, 59], "fileinputel": 55, "temp": 55, "myuser": 55, "lol": 55, "gif": 55, "often": 55, "concaten": 55, "runtimeerror": 55, "rais": [55, 56, 57], "pathlik": [55, 57], "half": [55, 57], "dot": [55, 56], "coord": 55, "folder": [55, 56, 57, 58, 59], "desir": [55, 57], "html5": 55, "videoel": 55, "extension_path": 56, "crx": 56, "built": 56, "_contradict": 56, "AND": 56, "notat": 56, "obj": 56, "snake_cas": 56, "hyphen": 56, "underscor": 56, "_": 56, "recurs": 56, "shallow": 56, "els": 56, "v": 56, "keyerror": 56, "lifo": 56, "lack": 56, "factori": 56, "mechan": 57, "much": 57, "someth": [57, 60], "ll": [57, 58], "yoururlher": 57, "build": 57, "combo": 57, "consum": 57, "luckili": 57, "whole": 57, "pick": 57, "help": 57, "probabl": 57, "thousand": 57, "stuff": 57, "hood": 57, "breath": 57, "oftentim": 57, "faster": 57, "easili": 57, "craft": 57, "THE": 57, "realli": 57, "namespac": 57, "event_type_or_domain": 57, "traffic": 57, "coroutin": 57, "lamba": 57, "lambda": [57, 58, 59], "crazi": 57, "moduletyp": 57, "kw": 57, "return_enclosing_el": 57, "tremend": 57, "tag_hint": 57, "narrow": 57, "div": 57, "img": 57, "obj_nam": 57, "complex": 57, "thruth": 57, "returnvalu": 57, "pageyoffset": 57, "screenx": 57, "screeni": 57, "outerwidth": 57, "1050": 57, "outerheight": 57, "832": 57, "devicepixelratio": 57, "screenleft": 57, "screentop": 57, "stylemedia": 57, "onsearch": 57, "issecurecontext": 57, "timeorigin": 57, "1707823094767": 57, "9": 57, "connectstart": 57, "navigationstart": 57, "1707823094768": 57, "handi": 57, "w3school": 57, "cssref": 57, "css_selector": 57, "php": 57, "haven": 57, "full_pag": 57, "25": 57, "mayb": 57, "quarter": 57, "1000": 57, "10x": 57, "include_fram": 57, "cdp_obj": 57, "_is_upd": 57, "infinit": 57, "loop": [57, 58, 59], "register": 57, "1280": 57, "1024": 57, "720": 57, "min": 57, "mini": 57, "mi": 57, "ma": 57, "maxi": 57, "fu": 57, "nor": 57, "timespan": 57, "matter": 57, "timeouterror": 57, "asyncio": [57, 58, 59], "websocketclientprotocol": 57, "goe": [58, 59], "pip": [58, 59], "Or": 58, "aim": [58, 59], "project": [58, 59], "somewher": [58, 59], "ago": [58, 59], "quickli": [58, 59], "editor": [58, 59], "few": [58, 59], "uc": [58, 59], "def": [58, 59], "nowsecur": [58, 59], "nl": [58, 59], "__name__": [58, 59], "__main__": [58, 59], "me": [58, 59], "run_until_complet": [58, 59], "150": [58, 59], "page2": [58, 59], "twitter": [58, 59], "page3": [58, 59], "ultrafunkamsterdam": [58, 59], "boilerpl": 58, "iso": 58, "somewebsit": 58, "basicconfig": [58, 59], "30": [58, 59], "februari": [58, 59], "march": [58, 59], "april": [58, 59], "june": [58, 59], "juli": [58, 59], "august": [58, 59], "septemb": [58, 59], "octob": [58, 59], "novemb": [58, 59], "decemb": [58, 59], "create_account": [58, 59], "phone": [58, 59], "small": [58, 59], "use_mail_instead": [58, 59], "randstr": [58, 59], "ascii_lett": [58, 59], "dai": [58, 59], "sel_month": [58, 59], "sel_dai": [58, 59], "sel_year": [58, 59], "randint": [58, 59], "bother": [58, 59], "leap": [58, 59], "28": [58, 59], "ag": [58, 59], "restrict": [58, 59], "1980": [58, 59], "2005": [58, 59], "nag": [58, 59], "cookie_bar_accept": [58, 59], "next_btn": [58, 59], "btn": [58, 59], "revers": [58, 59], "sign_up_btn": [58, 59], "mail": [58, 59], "quick": 59, "02": 55, "08": 55, "2024": 55, "programatt": 55}, "objects": {"nodriver": [[54, 0, 1, "", "Browser"], [56, 0, 1, "", "Config"], [55, 0, 1, "", "Element"], [57, 0, 1, "", "Tab"]], "nodriver.Browser": [[54, 1, 1, "", "config"], [54, 1, 1, "", "connection"], [54, 2, 1, "", "cookies"], [54, 3, 1, "", "create"], [54, 3, 1, "", "get"], [54, 3, 1, "", "grant_all_permissions"], [54, 2, 1, "", "main_tab"], [54, 3, 1, "", "sleep"], [54, 3, 1, "", "start"], [54, 3, 1, "", "stop"], [54, 2, 1, "", "stopped"], [54, 2, 1, "", "tabs"], [54, 1, 1, "", "targets"], [54, 3, 1, "", "tile_windows"], [54, 3, 1, "", "update_targets"], [54, 3, 1, "", "wait"], [54, 2, 1, "", "websocket_url"]], "nodriver.Config": [[56, 3, 1, "", "add_argument"], [56, 3, 1, "", "add_extension"], [56, 2, 1, "", "browser_args"], [56, 2, 1, "", "user_data_dir"], [56, 2, 1, "", "uses_custom_data_dir"]], "nodriver.Element": [[55, 3, 1, "", "apply"], [55, 2, 1, "", "assigned_slot"], [55, 2, 1, "", "attributes"], [55, 2, 1, "", "attrs"], [55, 2, 1, "", "backend_node_id"], [55, 2, 1, "", "base_url"], [55, 2, 1, "", "child_node_count"], [55, 2, 1, "", "children"], [55, 3, 1, "", "clear_input"], [55, 3, 1, "", "click"], [55, 2, 1, "", "compatibility_mode"], [55, 2, 1, "", "content_document"], [55, 2, 1, "", "distributed_nodes"], [55, 2, 1, "", "document_url"], [55, 3, 1, "", "flash"], [55, 3, 1, "", "focus"], [55, 2, 1, "", "frame_id"], [55, 3, 1, "", "get_html"], [55, 3, 1, "", "get_js_attributes"], [55, 3, 1, "", "get_position"], [55, 3, 1, "", "highlight_overlay"], [55, 2, 1, "", "imported_document"], [55, 2, 1, "", "internal_subset"], [55, 3, 1, "", "is_recording"], [55, 2, 1, "", "is_svg"], [55, 2, 1, "", "local_name"], [55, 3, 1, "", "mouse_click"], [55, 3, 1, "", "mouse_drag"], [55, 3, 1, "", "mouse_move"], [55, 2, 1, "", "node"], [55, 2, 1, "", "node_id"], [55, 2, 1, "", "node_name"], [55, 2, 1, "", "node_type"], [55, 2, 1, "", "node_value"], [55, 2, 1, "", "object_id"], [55, 2, 1, "", "parent"], [55, 2, 1, "", "parent_id"], [55, 2, 1, "", "pseudo_elements"], [55, 2, 1, "", "pseudo_identifier"], [55, 2, 1, "", "pseudo_type"], [55, 2, 1, "", "public_id"], [55, 3, 1, "", "query_selector"], [55, 3, 1, "", "query_selector_all"], [55, 3, 1, "", "record_video"], [55, 2, 1, "", "remote_object"], [55, 3, 1, "", "remove_from_dom"], [55, 3, 1, "", "save_screenshot"], [55, 3, 1, "", "save_to_dom"], [55, 3, 1, "", "scroll_into_view"], [55, 3, 1, "", "select_option"], [55, 3, 1, "", "send_file"], [55, 3, 1, "", "send_keys"], [55, 3, 1, "", "set_text"], [55, 3, 1, "", "set_value"], [55, 2, 1, "", "shadow_root_type"], [55, 2, 1, "", "shadow_roots"], [55, 2, 1, "", "system_id"], [55, 2, 1, "", "tab"], [55, 2, 1, "", "tag"], [55, 2, 1, "", "tag_name"], [55, 2, 1, "", "template_content"], [55, 2, 1, "", "text"], [55, 2, 1, "", "text_all"], [55, 2, 1, "", "tree"], [55, 3, 1, "", "update"], [55, 2, 1, "", "value"], [55, 2, 1, "", "xml_version"]], "nodriver.Tab": [[57, 3, 1, "", "aclose"], [57, 3, 1, "", "activate"], [57, 3, 1, "", "add_handler"], [57, 3, 1, "", "aopen"], [57, 1, 1, "", "attached"], [57, 3, 1, "", "back"], [57, 3, 1, "", "bring_to_front"], [57, 1, 1, "", "browser"], [57, 3, 1, "", "close"], [57, 2, 1, "", "closed"], [57, 3, 1, "", "download_file"], [57, 3, 1, "", "evaluate"], [57, 3, 1, "", "find"], [57, 3, 1, "", "find_all"], [57, 3, 1, "", "find_element_by_text"], [57, 3, 1, "", "find_elements_by_text"], [57, 3, 1, "", "forward"], [57, 3, 1, "", "fullscreen"], [57, 3, 1, "", "get"], [57, 3, 1, "", "get_all_linked_sources"], [57, 3, 1, "", "get_all_urls"], [57, 3, 1, "", "get_content"], [57, 3, 1, "", "get_window"], [57, 3, 1, "", "inspector_open"], [57, 2, 1, "", "inspector_url"], [57, 3, 1, "", "js_dumps"], [57, 3, 1, "", "maximize"], [57, 3, 1, "", "medimize"], [57, 3, 1, "", "minimize"], [57, 3, 1, "", "open_external_inspector"], [57, 3, 1, "", "query_selector"], [57, 3, 1, "", "query_selector_all"], [57, 3, 1, "", "reload"], [57, 3, 1, "", "save_screenshot"], [57, 3, 1, "", "scroll_down"], [57, 3, 1, "", "scroll_up"], [57, 3, 1, "", "select"], [57, 3, 1, "", "select_all"], [57, 3, 1, "", "send"], [57, 3, 1, "", "set_download_path"], [57, 3, 1, "", "set_window_size"], [57, 3, 1, "", "set_window_state"], [57, 3, 1, "", "sleep"], [57, 2, 1, "", "target"], [57, 3, 1, "", "update_target"], [57, 3, 1, "", "verify_cf"], [57, 3, 1, "", "wait"], [57, 3, 1, "", "wait_for"], [57, 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, "-", "browser"], [8, 4, 0, "-", "cache_storage"], [9, 4, 0, "-", "cast"], [10, 4, 0, "-", "console"], [11, 4, 0, "-", "css"], [12, 4, 0, "-", "database"], [13, 4, 0, "-", "debugger"], [14, 4, 0, "-", "device_access"], [15, 4, 0, "-", "device_orientation"], [16, 4, 0, "-", "dom"], [17, 4, 0, "-", "dom_debugger"], [18, 4, 0, "-", "dom_snapshot"], [19, 4, 0, "-", "dom_storage"], [20, 4, 0, "-", "emulation"], [21, 4, 0, "-", "event_breakpoints"], [22, 4, 0, "-", "extensions"], [23, 4, 0, "-", "fed_cm"], [24, 4, 0, "-", "fetch"], [25, 4, 0, "-", "headless_experimental"], [26, 4, 0, "-", "heap_profiler"], [27, 4, 0, "-", "indexed_db"], [28, 4, 0, "-", "input_"], [29, 4, 0, "-", "inspector"], [30, 4, 0, "-", "io"], [31, 4, 0, "-", "layer_tree"], [32, 4, 0, "-", "log"], [33, 4, 0, "-", "media"], [34, 4, 0, "-", "memory"], [35, 4, 0, "-", "network"], [36, 4, 0, "-", "overlay"], [37, 4, 0, "-", "page"], [38, 4, 0, "-", "performance"], [39, 4, 0, "-", "performance_timeline"], [40, 4, 0, "-", "preload"], [41, 4, 0, "-", "profiler"], [42, 4, 0, "-", "pwa"], [43, 4, 0, "-", "runtime"], [44, 4, 0, "-", "schema"], [45, 4, 0, "-", "security"], [46, 4, 0, "-", "service_worker"], [47, 4, 0, "-", "storage"], [48, 4, 0, "-", "system_info"], [49, 4, 0, "-", "target"], [50, 4, 0, "-", "tethering"], [51, 4, 0, "-", "tracing"], [52, 4, 0, "-", "web_audio"], [53, 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, "", "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_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_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_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_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_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_BUTTON_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, "", "CROSS_ORIGIN_PORTAL_POST_MESSAGE_ERROR"], [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.browser": [[7, 0, 1, "", "Bounds"], [7, 0, 1, "", "BrowserCommandId"], [7, 0, 1, "", "BrowserContextID"], [7, 0, 1, "", "Bucket"], [7, 0, 1, "", "DownloadProgress"], [7, 0, 1, "", "DownloadWillBegin"], [7, 0, 1, "", "Histogram"], [7, 0, 1, "", "PermissionDescriptor"], [7, 0, 1, "", "PermissionSetting"], [7, 0, 1, "", "PermissionType"], [7, 0, 1, "", "WindowID"], [7, 0, 1, "", "WindowState"], [7, 5, 1, "", "add_privacy_sandbox_enrollment_override"], [7, 5, 1, "", "cancel_download"], [7, 5, 1, "", "close"], [7, 5, 1, "", "crash"], [7, 5, 1, "", "crash_gpu_process"], [7, 5, 1, "", "execute_browser_command"], [7, 5, 1, "", "get_browser_command_line"], [7, 5, 1, "", "get_histogram"], [7, 5, 1, "", "get_histograms"], [7, 5, 1, "", "get_version"], [7, 5, 1, "", "get_window_bounds"], [7, 5, 1, "", "get_window_for_target"], [7, 5, 1, "", "grant_permissions"], [7, 5, 1, "", "reset_permissions"], [7, 5, 1, "", "set_dock_tile"], [7, 5, 1, "", "set_download_behavior"], [7, 5, 1, "", "set_permission"], [7, 5, 1, "", "set_window_bounds"]], "nodriver.cdp.browser.Bounds": [[7, 1, 1, "", "height"], [7, 1, 1, "", "left"], [7, 1, 1, "", "top"], [7, 1, 1, "", "width"], [7, 1, 1, "", "window_state"]], "nodriver.cdp.browser.BrowserCommandId": [[7, 1, 1, "", "CLOSE_TAB_SEARCH"], [7, 1, 1, "", "OPEN_TAB_SEARCH"]], "nodriver.cdp.browser.Bucket": [[7, 1, 1, "", "count"], [7, 1, 1, "", "high"], [7, 1, 1, "", "low"]], "nodriver.cdp.browser.DownloadProgress": [[7, 1, 1, "", "guid"], [7, 1, 1, "", "received_bytes"], [7, 1, 1, "", "state"], [7, 1, 1, "", "total_bytes"]], "nodriver.cdp.browser.DownloadWillBegin": [[7, 1, 1, "", "frame_id"], [7, 1, 1, "", "guid"], [7, 1, 1, "", "suggested_filename"], [7, 1, 1, "", "url"]], "nodriver.cdp.browser.Histogram": [[7, 1, 1, "", "buckets"], [7, 1, 1, "", "count"], [7, 1, 1, "", "name"], [7, 1, 1, "", "sum_"]], "nodriver.cdp.browser.PermissionDescriptor": [[7, 1, 1, "", "allow_without_gesture"], [7, 1, 1, "", "allow_without_sanitization"], [7, 1, 1, "", "name"], [7, 1, 1, "", "pan_tilt_zoom"], [7, 1, 1, "", "sysex"], [7, 1, 1, "", "user_visible_only"]], "nodriver.cdp.browser.PermissionSetting": [[7, 1, 1, "", "DENIED"], [7, 1, 1, "", "GRANTED"], [7, 1, 1, "", "PROMPT"]], "nodriver.cdp.browser.PermissionType": [[7, 1, 1, "", "ACCESSIBILITY_EVENTS"], [7, 1, 1, "", "AUDIO_CAPTURE"], [7, 1, 1, "", "BACKGROUND_FETCH"], [7, 1, 1, "", "BACKGROUND_SYNC"], [7, 1, 1, "", "CAPTURED_SURFACE_CONTROL"], [7, 1, 1, "", "CLIPBOARD_READ_WRITE"], [7, 1, 1, "", "CLIPBOARD_SANITIZED_WRITE"], [7, 1, 1, "", "DISPLAY_CAPTURE"], [7, 1, 1, "", "DURABLE_STORAGE"], [7, 1, 1, "", "FLASH"], [7, 1, 1, "", "GEOLOCATION"], [7, 1, 1, "", "IDLE_DETECTION"], [7, 1, 1, "", "LOCAL_FONTS"], [7, 1, 1, "", "MIDI"], [7, 1, 1, "", "MIDI_SYSEX"], [7, 1, 1, "", "NFC"], [7, 1, 1, "", "NOTIFICATIONS"], [7, 1, 1, "", "PAYMENT_HANDLER"], [7, 1, 1, "", "PERIODIC_BACKGROUND_SYNC"], [7, 1, 1, "", "PROTECTED_MEDIA_IDENTIFIER"], [7, 1, 1, "", "SENSORS"], [7, 1, 1, "", "SPEAKER_SELECTION"], [7, 1, 1, "", "STORAGE_ACCESS"], [7, 1, 1, "", "TOP_LEVEL_STORAGE_ACCESS"], [7, 1, 1, "", "VIDEO_CAPTURE"], [7, 1, 1, "", "VIDEO_CAPTURE_PAN_TILT_ZOOM"], [7, 1, 1, "", "WAKE_LOCK_SCREEN"], [7, 1, 1, "", "WAKE_LOCK_SYSTEM"], [7, 1, 1, "", "WINDOW_MANAGEMENT"]], "nodriver.cdp.browser.WindowState": [[7, 1, 1, "", "FULLSCREEN"], [7, 1, 1, "", "MAXIMIZED"], [7, 1, 1, "", "MINIMIZED"], [7, 1, 1, "", "NORMAL"]], "nodriver.cdp.cache_storage": [[8, 0, 1, "", "Cache"], [8, 0, 1, "", "CacheId"], [8, 0, 1, "", "CachedResponse"], [8, 0, 1, "", "CachedResponseType"], [8, 0, 1, "", "DataEntry"], [8, 0, 1, "", "Header"], [8, 5, 1, "", "delete_cache"], [8, 5, 1, "", "delete_entry"], [8, 5, 1, "", "request_cache_names"], [8, 5, 1, "", "request_cached_response"], [8, 5, 1, "", "request_entries"]], "nodriver.cdp.cache_storage.Cache": [[8, 1, 1, "", "cache_id"], [8, 1, 1, "", "cache_name"], [8, 1, 1, "", "security_origin"], [8, 1, 1, "", "storage_bucket"], [8, 1, 1, "", "storage_key"]], "nodriver.cdp.cache_storage.CachedResponse": [[8, 1, 1, "", "body"]], "nodriver.cdp.cache_storage.CachedResponseType": [[8, 1, 1, "", "BASIC"], [8, 1, 1, "", "CORS"], [8, 1, 1, "", "DEFAULT"], [8, 1, 1, "", "ERROR"], [8, 1, 1, "", "OPAQUE_REDIRECT"], [8, 1, 1, "", "OPAQUE_RESPONSE"]], "nodriver.cdp.cache_storage.DataEntry": [[8, 1, 1, "", "request_headers"], [8, 1, 1, "", "request_method"], [8, 1, 1, "", "request_url"], [8, 1, 1, "", "response_headers"], [8, 1, 1, "", "response_status"], [8, 1, 1, "", "response_status_text"], [8, 1, 1, "", "response_time"], [8, 1, 1, "", "response_type"]], "nodriver.cdp.cache_storage.Header": [[8, 1, 1, "", "name"], [8, 1, 1, "", "value"]], "nodriver.cdp.cast": [[9, 0, 1, "", "IssueUpdated"], [9, 0, 1, "", "Sink"], [9, 0, 1, "", "SinksUpdated"], [9, 5, 1, "", "disable"], [9, 5, 1, "", "enable"], [9, 5, 1, "", "set_sink_to_use"], [9, 5, 1, "", "start_desktop_mirroring"], [9, 5, 1, "", "start_tab_mirroring"], [9, 5, 1, "", "stop_casting"]], "nodriver.cdp.cast.IssueUpdated": [[9, 1, 1, "", "issue_message"]], "nodriver.cdp.cast.Sink": [[9, 1, 1, "", "id_"], [9, 1, 1, "", "name"], [9, 1, 1, "", "session"]], "nodriver.cdp.cast.SinksUpdated": [[9, 1, 1, "", "sinks"]], "nodriver.cdp.console": [[10, 0, 1, "", "ConsoleMessage"], [10, 0, 1, "", "MessageAdded"], [10, 5, 1, "", "clear_messages"], [10, 5, 1, "", "disable"], [10, 5, 1, "", "enable"]], "nodriver.cdp.console.ConsoleMessage": [[10, 1, 1, "", "column"], [10, 1, 1, "", "level"], [10, 1, 1, "", "line"], [10, 1, 1, "", "source"], [10, 1, 1, "", "text"], [10, 1, 1, "", "url"]], "nodriver.cdp.console.MessageAdded": [[10, 1, 1, "", "message"]], "nodriver.cdp.css": [[11, 0, 1, "", "CSSComputedStyleProperty"], [11, 0, 1, "", "CSSContainerQuery"], [11, 0, 1, "", "CSSFontPaletteValuesRule"], [11, 0, 1, "", "CSSKeyframeRule"], [11, 0, 1, "", "CSSKeyframesRule"], [11, 0, 1, "", "CSSLayer"], [11, 0, 1, "", "CSSLayerData"], [11, 0, 1, "", "CSSMedia"], [11, 0, 1, "", "CSSPositionFallbackRule"], [11, 0, 1, "", "CSSPositionTryRule"], [11, 0, 1, "", "CSSProperty"], [11, 0, 1, "", "CSSPropertyRegistration"], [11, 0, 1, "", "CSSPropertyRule"], [11, 0, 1, "", "CSSRule"], [11, 0, 1, "", "CSSRuleType"], [11, 0, 1, "", "CSSScope"], [11, 0, 1, "", "CSSStyle"], [11, 0, 1, "", "CSSStyleSheetHeader"], [11, 0, 1, "", "CSSSupports"], [11, 0, 1, "", "CSSTryRule"], [11, 0, 1, "", "FontFace"], [11, 0, 1, "", "FontVariationAxis"], [11, 0, 1, "", "FontsUpdated"], [11, 0, 1, "", "InheritedPseudoElementMatches"], [11, 0, 1, "", "InheritedStyleEntry"], [11, 0, 1, "", "MediaQuery"], [11, 0, 1, "", "MediaQueryExpression"], [11, 0, 1, "", "MediaQueryResultChanged"], [11, 0, 1, "", "PlatformFontUsage"], [11, 0, 1, "", "PseudoElementMatches"], [11, 0, 1, "", "RuleMatch"], [11, 0, 1, "", "RuleUsage"], [11, 0, 1, "", "SelectorList"], [11, 0, 1, "", "ShorthandEntry"], [11, 0, 1, "", "SourceRange"], [11, 0, 1, "", "Specificity"], [11, 0, 1, "", "StyleDeclarationEdit"], [11, 0, 1, "", "StyleSheetAdded"], [11, 0, 1, "", "StyleSheetChanged"], [11, 0, 1, "", "StyleSheetId"], [11, 0, 1, "", "StyleSheetOrigin"], [11, 0, 1, "", "StyleSheetRemoved"], [11, 0, 1, "", "Value"], [11, 5, 1, "", "add_rule"], [11, 5, 1, "", "collect_class_names"], [11, 5, 1, "", "create_style_sheet"], [11, 5, 1, "", "disable"], [11, 5, 1, "", "enable"], [11, 5, 1, "", "force_pseudo_state"], [11, 5, 1, "", "get_background_colors"], [11, 5, 1, "", "get_computed_style_for_node"], [11, 5, 1, "", "get_inline_styles_for_node"], [11, 5, 1, "", "get_layers_for_node"], [11, 5, 1, "", "get_location_for_selector"], [11, 5, 1, "", "get_matched_styles_for_node"], [11, 5, 1, "", "get_media_queries"], [11, 5, 1, "", "get_platform_fonts_for_node"], [11, 5, 1, "", "get_style_sheet_text"], [11, 5, 1, "", "set_container_query_text"], [11, 5, 1, "", "set_effective_property_value_for_node"], [11, 5, 1, "", "set_keyframe_key"], [11, 5, 1, "", "set_local_fonts_enabled"], [11, 5, 1, "", "set_media_text"], [11, 5, 1, "", "set_property_rule_property_name"], [11, 5, 1, "", "set_rule_selector"], [11, 5, 1, "", "set_scope_text"], [11, 5, 1, "", "set_style_sheet_text"], [11, 5, 1, "", "set_style_texts"], [11, 5, 1, "", "set_supports_text"], [11, 5, 1, "", "start_rule_usage_tracking"], [11, 5, 1, "", "stop_rule_usage_tracking"], [11, 5, 1, "", "take_computed_style_updates"], [11, 5, 1, "", "take_coverage_delta"], [11, 5, 1, "", "track_computed_style_updates"]], "nodriver.cdp.css.CSSComputedStyleProperty": [[11, 1, 1, "", "name"], [11, 1, 1, "", "value"]], "nodriver.cdp.css.CSSContainerQuery": [[11, 1, 1, "", "logical_axes"], [11, 1, 1, "", "name"], [11, 1, 1, "", "physical_axes"], [11, 1, 1, "", "range_"], [11, 1, 1, "", "style_sheet_id"], [11, 1, 1, "", "text"]], "nodriver.cdp.css.CSSFontPaletteValuesRule": [[11, 1, 1, "", "font_palette_name"], [11, 1, 1, "", "origin"], [11, 1, 1, "", "style"], [11, 1, 1, "", "style_sheet_id"]], "nodriver.cdp.css.CSSKeyframeRule": [[11, 1, 1, "", "key_text"], [11, 1, 1, "", "origin"], [11, 1, 1, "", "style"], [11, 1, 1, "", "style_sheet_id"]], "nodriver.cdp.css.CSSKeyframesRule": [[11, 1, 1, "", "animation_name"], [11, 1, 1, "", "keyframes"]], "nodriver.cdp.css.CSSLayer": [[11, 1, 1, "", "range_"], [11, 1, 1, "", "style_sheet_id"], [11, 1, 1, "", "text"]], "nodriver.cdp.css.CSSLayerData": [[11, 1, 1, "", "name"], [11, 1, 1, "", "order"], [11, 1, 1, "", "sub_layers"]], "nodriver.cdp.css.CSSMedia": [[11, 1, 1, "", "media_list"], [11, 1, 1, "", "range_"], [11, 1, 1, "", "source"], [11, 1, 1, "", "source_url"], [11, 1, 1, "", "style_sheet_id"], [11, 1, 1, "", "text"]], "nodriver.cdp.css.CSSPositionFallbackRule": [[11, 1, 1, "", "name"], [11, 1, 1, "", "try_rules"]], "nodriver.cdp.css.CSSPositionTryRule": [[11, 1, 1, "", "name"], [11, 1, 1, "", "origin"], [11, 1, 1, "", "style"], [11, 1, 1, "", "style_sheet_id"]], "nodriver.cdp.css.CSSProperty": [[11, 1, 1, "", "disabled"], [11, 1, 1, "", "implicit"], [11, 1, 1, "", "important"], [11, 1, 1, "", "longhand_properties"], [11, 1, 1, "", "name"], [11, 1, 1, "", "parsed_ok"], [11, 1, 1, "", "range_"], [11, 1, 1, "", "text"], [11, 1, 1, "", "value"]], "nodriver.cdp.css.CSSPropertyRegistration": [[11, 1, 1, "", "inherits"], [11, 1, 1, "", "initial_value"], [11, 1, 1, "", "property_name"], [11, 1, 1, "", "syntax"]], "nodriver.cdp.css.CSSPropertyRule": [[11, 1, 1, "", "origin"], [11, 1, 1, "", "property_name"], [11, 1, 1, "", "style"], [11, 1, 1, "", "style_sheet_id"]], "nodriver.cdp.css.CSSRule": [[11, 1, 1, "", "container_queries"], [11, 1, 1, "", "layers"], [11, 1, 1, "", "media"], [11, 1, 1, "", "nesting_selectors"], [11, 1, 1, "", "origin"], [11, 1, 1, "", "rule_types"], [11, 1, 1, "", "scopes"], [11, 1, 1, "", "selector_list"], [11, 1, 1, "", "style"], [11, 1, 1, "", "style_sheet_id"], [11, 1, 1, "", "supports"]], "nodriver.cdp.css.CSSRuleType": [[11, 1, 1, "", "CONTAINER_RULE"], [11, 1, 1, "", "LAYER_RULE"], [11, 1, 1, "", "MEDIA_RULE"], [11, 1, 1, "", "SCOPE_RULE"], [11, 1, 1, "", "STYLE_RULE"], [11, 1, 1, "", "SUPPORTS_RULE"]], "nodriver.cdp.css.CSSScope": [[11, 1, 1, "", "range_"], [11, 1, 1, "", "style_sheet_id"], [11, 1, 1, "", "text"]], "nodriver.cdp.css.CSSStyle": [[11, 1, 1, "", "css_properties"], [11, 1, 1, "", "css_text"], [11, 1, 1, "", "range_"], [11, 1, 1, "", "shorthand_entries"], [11, 1, 1, "", "style_sheet_id"]], "nodriver.cdp.css.CSSStyleSheetHeader": [[11, 1, 1, "", "disabled"], [11, 1, 1, "", "end_column"], [11, 1, 1, "", "end_line"], [11, 1, 1, "", "frame_id"], [11, 1, 1, "", "has_source_url"], [11, 1, 1, "", "is_constructed"], [11, 1, 1, "", "is_inline"], [11, 1, 1, "", "is_mutable"], [11, 1, 1, "", "length"], [11, 1, 1, "", "loading_failed"], [11, 1, 1, "", "origin"], [11, 1, 1, "", "owner_node"], [11, 1, 1, "", "source_map_url"], [11, 1, 1, "", "source_url"], [11, 1, 1, "", "start_column"], [11, 1, 1, "", "start_line"], [11, 1, 1, "", "style_sheet_id"], [11, 1, 1, "", "title"]], "nodriver.cdp.css.CSSSupports": [[11, 1, 1, "", "active"], [11, 1, 1, "", "range_"], [11, 1, 1, "", "style_sheet_id"], [11, 1, 1, "", "text"]], "nodriver.cdp.css.CSSTryRule": [[11, 1, 1, "", "origin"], [11, 1, 1, "", "style"], [11, 1, 1, "", "style_sheet_id"]], "nodriver.cdp.css.FontFace": [[11, 1, 1, "", "font_display"], [11, 1, 1, "", "font_family"], [11, 1, 1, "", "font_stretch"], [11, 1, 1, "", "font_style"], [11, 1, 1, "", "font_variant"], [11, 1, 1, "", "font_variation_axes"], [11, 1, 1, "", "font_weight"], [11, 1, 1, "", "platform_font_family"], [11, 1, 1, "", "src"], [11, 1, 1, "", "unicode_range"]], "nodriver.cdp.css.FontVariationAxis": [[11, 1, 1, "", "default_value"], [11, 1, 1, "", "max_value"], [11, 1, 1, "", "min_value"], [11, 1, 1, "", "name"], [11, 1, 1, "", "tag"]], "nodriver.cdp.css.FontsUpdated": [[11, 1, 1, "", "font"]], "nodriver.cdp.css.InheritedPseudoElementMatches": [[11, 1, 1, "", "pseudo_elements"]], "nodriver.cdp.css.InheritedStyleEntry": [[11, 1, 1, "", "inline_style"], [11, 1, 1, "", "matched_css_rules"]], "nodriver.cdp.css.MediaQuery": [[11, 1, 1, "", "active"], [11, 1, 1, "", "expressions"]], "nodriver.cdp.css.MediaQueryExpression": [[11, 1, 1, "", "computed_length"], [11, 1, 1, "", "feature"], [11, 1, 1, "", "unit"], [11, 1, 1, "", "value"], [11, 1, 1, "", "value_range"]], "nodriver.cdp.css.PlatformFontUsage": [[11, 1, 1, "", "family_name"], [11, 1, 1, "", "glyph_count"], [11, 1, 1, "", "is_custom_font"], [11, 1, 1, "", "post_script_name"]], "nodriver.cdp.css.PseudoElementMatches": [[11, 1, 1, "", "matches"], [11, 1, 1, "", "pseudo_identifier"], [11, 1, 1, "", "pseudo_type"]], "nodriver.cdp.css.RuleMatch": [[11, 1, 1, "", "matching_selectors"], [11, 1, 1, "", "rule"]], "nodriver.cdp.css.RuleUsage": [[11, 1, 1, "", "end_offset"], [11, 1, 1, "", "start_offset"], [11, 1, 1, "", "style_sheet_id"], [11, 1, 1, "", "used"]], "nodriver.cdp.css.SelectorList": [[11, 1, 1, "", "selectors"], [11, 1, 1, "", "text"]], "nodriver.cdp.css.ShorthandEntry": [[11, 1, 1, "", "important"], [11, 1, 1, "", "name"], [11, 1, 1, "", "value"]], "nodriver.cdp.css.SourceRange": [[11, 1, 1, "", "end_column"], [11, 1, 1, "", "end_line"], [11, 1, 1, "", "start_column"], [11, 1, 1, "", "start_line"]], "nodriver.cdp.css.Specificity": [[11, 1, 1, "", "a"], [11, 1, 1, "", "b"], [11, 1, 1, "", "c"]], "nodriver.cdp.css.StyleDeclarationEdit": [[11, 1, 1, "", "range_"], [11, 1, 1, "", "style_sheet_id"], [11, 1, 1, "", "text"]], "nodriver.cdp.css.StyleSheetAdded": [[11, 1, 1, "", "header"]], "nodriver.cdp.css.StyleSheetChanged": [[11, 1, 1, "", "style_sheet_id"]], "nodriver.cdp.css.StyleSheetOrigin": [[11, 1, 1, "", "INJECTED"], [11, 1, 1, "", "INSPECTOR"], [11, 1, 1, "", "REGULAR"], [11, 1, 1, "", "USER_AGENT"]], "nodriver.cdp.css.StyleSheetRemoved": [[11, 1, 1, "", "style_sheet_id"]], "nodriver.cdp.css.Value": [[11, 1, 1, "", "range_"], [11, 1, 1, "", "specificity"], [11, 1, 1, "", "text"]], "nodriver.cdp.database": [[12, 0, 1, "", "AddDatabase"], [12, 0, 1, "", "Database"], [12, 0, 1, "", "DatabaseId"], [12, 0, 1, "", "Error"], [12, 5, 1, "", "disable"], [12, 5, 1, "", "enable"], [12, 5, 1, "", "execute_sql"], [12, 5, 1, "", "get_database_table_names"]], "nodriver.cdp.database.AddDatabase": [[12, 1, 1, "", "database"]], "nodriver.cdp.database.Database": [[12, 1, 1, "", "domain"], [12, 1, 1, "", "id_"], [12, 1, 1, "", "name"], [12, 1, 1, "", "version"]], "nodriver.cdp.database.Error": [[12, 1, 1, "", "code"], [12, 1, 1, "", "message"]], "nodriver.cdp.debugger": [[13, 0, 1, "", "BreakLocation"], [13, 0, 1, "", "BreakpointId"], [13, 0, 1, "", "BreakpointResolved"], [13, 0, 1, "", "CallFrame"], [13, 0, 1, "", "CallFrameId"], [13, 0, 1, "", "DebugSymbols"], [13, 0, 1, "", "Location"], [13, 0, 1, "", "LocationRange"], [13, 0, 1, "", "Paused"], [13, 0, 1, "", "Resumed"], [13, 0, 1, "", "Scope"], [13, 0, 1, "", "ScriptFailedToParse"], [13, 0, 1, "", "ScriptLanguage"], [13, 0, 1, "", "ScriptParsed"], [13, 0, 1, "", "ScriptPosition"], [13, 0, 1, "", "SearchMatch"], [13, 0, 1, "", "WasmDisassemblyChunk"], [13, 5, 1, "", "continue_to_location"], [13, 5, 1, "", "disable"], [13, 5, 1, "", "disassemble_wasm_module"], [13, 5, 1, "", "enable"], [13, 5, 1, "", "evaluate_on_call_frame"], [13, 5, 1, "", "get_possible_breakpoints"], [13, 5, 1, "", "get_script_source"], [13, 5, 1, "", "get_stack_trace"], [13, 5, 1, "", "get_wasm_bytecode"], [13, 5, 1, "", "next_wasm_disassembly_chunk"], [13, 5, 1, "", "pause"], [13, 5, 1, "", "pause_on_async_call"], [13, 5, 1, "", "remove_breakpoint"], [13, 5, 1, "", "restart_frame"], [13, 5, 1, "", "resume"], [13, 5, 1, "", "search_in_content"], [13, 5, 1, "", "set_async_call_stack_depth"], [13, 5, 1, "", "set_blackbox_patterns"], [13, 5, 1, "", "set_blackboxed_ranges"], [13, 5, 1, "", "set_breakpoint"], [13, 5, 1, "", "set_breakpoint_by_url"], [13, 5, 1, "", "set_breakpoint_on_function_call"], [13, 5, 1, "", "set_breakpoints_active"], [13, 5, 1, "", "set_instrumentation_breakpoint"], [13, 5, 1, "", "set_pause_on_exceptions"], [13, 5, 1, "", "set_return_value"], [13, 5, 1, "", "set_script_source"], [13, 5, 1, "", "set_skip_all_pauses"], [13, 5, 1, "", "set_variable_value"], [13, 5, 1, "", "step_into"], [13, 5, 1, "", "step_out"], [13, 5, 1, "", "step_over"]], "nodriver.cdp.debugger.BreakLocation": [[13, 1, 1, "", "column_number"], [13, 1, 1, "", "line_number"], [13, 1, 1, "", "script_id"], [13, 1, 1, "", "type_"]], "nodriver.cdp.debugger.BreakpointResolved": [[13, 1, 1, "", "breakpoint_id"], [13, 1, 1, "", "location"]], "nodriver.cdp.debugger.CallFrame": [[13, 1, 1, "", "call_frame_id"], [13, 1, 1, "", "can_be_restarted"], [13, 1, 1, "", "function_location"], [13, 1, 1, "", "function_name"], [13, 1, 1, "", "location"], [13, 1, 1, "", "return_value"], [13, 1, 1, "", "scope_chain"], [13, 1, 1, "", "this"], [13, 1, 1, "", "url"]], "nodriver.cdp.debugger.DebugSymbols": [[13, 1, 1, "", "external_url"], [13, 1, 1, "", "type_"]], "nodriver.cdp.debugger.Location": [[13, 1, 1, "", "column_number"], [13, 1, 1, "", "line_number"], [13, 1, 1, "", "script_id"]], "nodriver.cdp.debugger.LocationRange": [[13, 1, 1, "", "end"], [13, 1, 1, "", "script_id"], [13, 1, 1, "", "start"]], "nodriver.cdp.debugger.Paused": [[13, 1, 1, "", "async_call_stack_trace_id"], [13, 1, 1, "", "async_stack_trace"], [13, 1, 1, "", "async_stack_trace_id"], [13, 1, 1, "", "call_frames"], [13, 1, 1, "", "data"], [13, 1, 1, "", "hit_breakpoints"], [13, 1, 1, "", "reason"]], "nodriver.cdp.debugger.Scope": [[13, 1, 1, "", "end_location"], [13, 1, 1, "", "name"], [13, 1, 1, "", "object_"], [13, 1, 1, "", "start_location"], [13, 1, 1, "", "type_"]], "nodriver.cdp.debugger.ScriptFailedToParse": [[13, 1, 1, "", "code_offset"], [13, 1, 1, "", "embedder_name"], [13, 1, 1, "", "end_column"], [13, 1, 1, "", "end_line"], [13, 1, 1, "", "execution_context_aux_data"], [13, 1, 1, "", "execution_context_id"], [13, 1, 1, "", "has_source_url"], [13, 1, 1, "", "hash_"], [13, 1, 1, "", "is_module"], [13, 1, 1, "", "length"], [13, 1, 1, "", "script_id"], [13, 1, 1, "", "script_language"], [13, 1, 1, "", "source_map_url"], [13, 1, 1, "", "stack_trace"], [13, 1, 1, "", "start_column"], [13, 1, 1, "", "start_line"], [13, 1, 1, "", "url"]], "nodriver.cdp.debugger.ScriptLanguage": [[13, 1, 1, "", "JAVA_SCRIPT"], [13, 1, 1, "", "WEB_ASSEMBLY"]], "nodriver.cdp.debugger.ScriptParsed": [[13, 1, 1, "", "code_offset"], [13, 1, 1, "", "debug_symbols"], [13, 1, 1, "", "embedder_name"], [13, 1, 1, "", "end_column"], [13, 1, 1, "", "end_line"], [13, 1, 1, "", "execution_context_aux_data"], [13, 1, 1, "", "execution_context_id"], [13, 1, 1, "", "has_source_url"], [13, 1, 1, "", "hash_"], [13, 1, 1, "", "is_live_edit"], [13, 1, 1, "", "is_module"], [13, 1, 1, "", "length"], [13, 1, 1, "", "script_id"], [13, 1, 1, "", "script_language"], [13, 1, 1, "", "source_map_url"], [13, 1, 1, "", "stack_trace"], [13, 1, 1, "", "start_column"], [13, 1, 1, "", "start_line"], [13, 1, 1, "", "url"]], "nodriver.cdp.debugger.ScriptPosition": [[13, 1, 1, "", "column_number"], [13, 1, 1, "", "line_number"]], "nodriver.cdp.debugger.SearchMatch": [[13, 1, 1, "", "line_content"], [13, 1, 1, "", "line_number"]], "nodriver.cdp.debugger.WasmDisassemblyChunk": [[13, 1, 1, "", "bytecode_offsets"], [13, 1, 1, "", "lines"]], "nodriver.cdp.device_access": [[14, 0, 1, "", "DeviceId"], [14, 0, 1, "", "DeviceRequestPrompted"], [14, 0, 1, "", "PromptDevice"], [14, 0, 1, "", "RequestId"], [14, 5, 1, "", "cancel_prompt"], [14, 5, 1, "", "disable"], [14, 5, 1, "", "enable"], [14, 5, 1, "", "select_prompt"]], "nodriver.cdp.device_access.DeviceRequestPrompted": [[14, 1, 1, "", "devices"], [14, 1, 1, "", "id_"]], "nodriver.cdp.device_access.PromptDevice": [[14, 1, 1, "", "id_"], [14, 1, 1, "", "name"]], "nodriver.cdp.device_orientation": [[15, 5, 1, "", "clear_device_orientation_override"], [15, 5, 1, "", "set_device_orientation_override"]], "nodriver.cdp.dom": [[16, 0, 1, "", "AttributeModified"], [16, 0, 1, "", "AttributeRemoved"], [16, 0, 1, "", "BackendNode"], [16, 0, 1, "", "BackendNodeId"], [16, 0, 1, "", "BoxModel"], [16, 0, 1, "", "CSSComputedStyleProperty"], [16, 0, 1, "", "CharacterDataModified"], [16, 0, 1, "", "ChildNodeCountUpdated"], [16, 0, 1, "", "ChildNodeInserted"], [16, 0, 1, "", "ChildNodeRemoved"], [16, 0, 1, "", "CompatibilityMode"], [16, 0, 1, "", "DistributedNodesUpdated"], [16, 0, 1, "", "DocumentUpdated"], [16, 0, 1, "", "InlineStyleInvalidated"], [16, 0, 1, "", "LogicalAxes"], [16, 0, 1, "", "Node"], [16, 0, 1, "", "NodeId"], [16, 0, 1, "", "PhysicalAxes"], [16, 0, 1, "", "PseudoElementAdded"], [16, 0, 1, "", "PseudoElementRemoved"], [16, 0, 1, "", "PseudoType"], [16, 0, 1, "", "Quad"], [16, 0, 1, "", "RGBA"], [16, 0, 1, "", "Rect"], [16, 0, 1, "", "ScrollOrientation"], [16, 0, 1, "", "SetChildNodes"], [16, 0, 1, "", "ShadowRootPopped"], [16, 0, 1, "", "ShadowRootPushed"], [16, 0, 1, "", "ShadowRootType"], [16, 0, 1, "", "ShapeOutsideInfo"], [16, 0, 1, "", "TopLayerElementsUpdated"], [16, 5, 1, "", "collect_class_names_from_subtree"], [16, 5, 1, "", "copy_to"], [16, 5, 1, "", "describe_node"], [16, 5, 1, "", "disable"], [16, 5, 1, "", "discard_search_results"], [16, 5, 1, "", "enable"], [16, 5, 1, "", "focus"], [16, 5, 1, "", "get_anchor_element"], [16, 5, 1, "", "get_attributes"], [16, 5, 1, "", "get_box_model"], [16, 5, 1, "", "get_container_for_node"], [16, 5, 1, "", "get_content_quads"], [16, 5, 1, "", "get_document"], [16, 5, 1, "", "get_element_by_relation"], [16, 5, 1, "", "get_file_info"], [16, 5, 1, "", "get_flattened_document"], [16, 5, 1, "", "get_frame_owner"], [16, 5, 1, "", "get_node_for_location"], [16, 5, 1, "", "get_node_stack_traces"], [16, 5, 1, "", "get_nodes_for_subtree_by_style"], [16, 5, 1, "", "get_outer_html"], [16, 5, 1, "", "get_querying_descendants_for_container"], [16, 5, 1, "", "get_relayout_boundary"], [16, 5, 1, "", "get_search_results"], [16, 5, 1, "", "get_top_layer_elements"], [16, 5, 1, "", "hide_highlight"], [16, 5, 1, "", "highlight_node"], [16, 5, 1, "", "highlight_rect"], [16, 5, 1, "", "mark_undoable_state"], [16, 5, 1, "", "move_to"], [16, 5, 1, "", "perform_search"], [16, 5, 1, "", "push_node_by_path_to_frontend"], [16, 5, 1, "", "push_nodes_by_backend_ids_to_frontend"], [16, 5, 1, "", "query_selector"], [16, 5, 1, "", "query_selector_all"], [16, 5, 1, "", "redo"], [16, 5, 1, "", "remove_attribute"], [16, 5, 1, "", "remove_node"], [16, 5, 1, "", "request_child_nodes"], [16, 5, 1, "", "request_node"], [16, 5, 1, "", "resolve_node"], [16, 5, 1, "", "scroll_into_view_if_needed"], [16, 5, 1, "", "set_attribute_value"], [16, 5, 1, "", "set_attributes_as_text"], [16, 5, 1, "", "set_file_input_files"], [16, 5, 1, "", "set_inspected_node"], [16, 5, 1, "", "set_node_name"], [16, 5, 1, "", "set_node_stack_traces_enabled"], [16, 5, 1, "", "set_node_value"], [16, 5, 1, "", "set_outer_html"], [16, 5, 1, "", "undo"]], "nodriver.cdp.dom.AttributeModified": [[16, 1, 1, "", "name"], [16, 1, 1, "", "node_id"], [16, 1, 1, "", "value"]], "nodriver.cdp.dom.AttributeRemoved": [[16, 1, 1, "", "name"], [16, 1, 1, "", "node_id"]], "nodriver.cdp.dom.BackendNode": [[16, 1, 1, "", "backend_node_id"], [16, 1, 1, "", "node_name"], [16, 1, 1, "", "node_type"]], "nodriver.cdp.dom.BoxModel": [[16, 1, 1, "", "border"], [16, 1, 1, "", "content"], [16, 1, 1, "", "height"], [16, 1, 1, "", "margin"], [16, 1, 1, "", "padding"], [16, 1, 1, "", "shape_outside"], [16, 1, 1, "", "width"]], "nodriver.cdp.dom.CSSComputedStyleProperty": [[16, 1, 1, "", "name"], [16, 1, 1, "", "value"]], "nodriver.cdp.dom.CharacterDataModified": [[16, 1, 1, "", "character_data"], [16, 1, 1, "", "node_id"]], "nodriver.cdp.dom.ChildNodeCountUpdated": [[16, 1, 1, "", "child_node_count"], [16, 1, 1, "", "node_id"]], "nodriver.cdp.dom.ChildNodeInserted": [[16, 1, 1, "", "node"], [16, 1, 1, "", "parent_node_id"], [16, 1, 1, "", "previous_node_id"]], "nodriver.cdp.dom.ChildNodeRemoved": [[16, 1, 1, "", "node_id"], [16, 1, 1, "", "parent_node_id"]], "nodriver.cdp.dom.CompatibilityMode": [[16, 1, 1, "", "LIMITED_QUIRKS_MODE"], [16, 1, 1, "", "NO_QUIRKS_MODE"], [16, 1, 1, "", "QUIRKS_MODE"]], "nodriver.cdp.dom.DistributedNodesUpdated": [[16, 1, 1, "", "distributed_nodes"], [16, 1, 1, "", "insertion_point_id"]], "nodriver.cdp.dom.InlineStyleInvalidated": [[16, 1, 1, "", "node_ids"]], "nodriver.cdp.dom.LogicalAxes": [[16, 1, 1, "", "BLOCK"], [16, 1, 1, "", "BOTH"], [16, 1, 1, "", "INLINE"]], "nodriver.cdp.dom.Node": [[16, 1, 1, "", "assigned_slot"], [16, 1, 1, "", "attributes"], [16, 1, 1, "", "backend_node_id"], [16, 1, 1, "", "base_url"], [16, 1, 1, "", "child_node_count"], [16, 1, 1, "", "children"], [16, 1, 1, "", "compatibility_mode"], [16, 1, 1, "", "content_document"], [16, 1, 1, "", "distributed_nodes"], [16, 1, 1, "", "document_url"], [16, 1, 1, "", "frame_id"], [16, 1, 1, "", "imported_document"], [16, 1, 1, "", "internal_subset"], [16, 1, 1, "", "is_svg"], [16, 1, 1, "", "local_name"], [16, 1, 1, "", "name"], [16, 1, 1, "", "node_id"], [16, 1, 1, "", "node_name"], [16, 1, 1, "", "node_type"], [16, 1, 1, "", "node_value"], [16, 1, 1, "", "parent_id"], [16, 1, 1, "", "pseudo_elements"], [16, 1, 1, "", "pseudo_identifier"], [16, 1, 1, "", "pseudo_type"], [16, 1, 1, "", "public_id"], [16, 1, 1, "", "shadow_root_type"], [16, 1, 1, "", "shadow_roots"], [16, 1, 1, "", "system_id"], [16, 1, 1, "", "template_content"], [16, 1, 1, "", "value"], [16, 1, 1, "", "xml_version"]], "nodriver.cdp.dom.PhysicalAxes": [[16, 1, 1, "", "BOTH"], [16, 1, 1, "", "HORIZONTAL"], [16, 1, 1, "", "VERTICAL"]], "nodriver.cdp.dom.PseudoElementAdded": [[16, 1, 1, "", "parent_id"], [16, 1, 1, "", "pseudo_element"]], "nodriver.cdp.dom.PseudoElementRemoved": [[16, 1, 1, "", "parent_id"], [16, 1, 1, "", "pseudo_element_id"]], "nodriver.cdp.dom.PseudoType": [[16, 1, 1, "", "AFTER"], [16, 1, 1, "", "BACKDROP"], [16, 1, 1, "", "BEFORE"], [16, 1, 1, "", "FIRST_LETTER"], [16, 1, 1, "", "FIRST_LINE"], [16, 1, 1, "", "FIRST_LINE_INHERITED"], [16, 1, 1, "", "GRAMMAR_ERROR"], [16, 1, 1, "", "HIGHLIGHT"], [16, 1, 1, "", "INPUT_LIST_BUTTON"], [16, 1, 1, "", "MARKER"], [16, 1, 1, "", "RESIZER"], [16, 1, 1, "", "SCROLLBAR"], [16, 1, 1, "", "SCROLLBAR_BUTTON"], [16, 1, 1, "", "SCROLLBAR_CORNER"], [16, 1, 1, "", "SCROLLBAR_THUMB"], [16, 1, 1, "", "SCROLLBAR_TRACK"], [16, 1, 1, "", "SCROLLBAR_TRACK_PIECE"], [16, 1, 1, "", "SCROLL_MARKER"], [16, 1, 1, "", "SCROLL_MARKER_GROUP"], [16, 1, 1, "", "SEARCH_TEXT"], [16, 1, 1, "", "SELECTION"], [16, 1, 1, "", "SPELLING_ERROR"], [16, 1, 1, "", "TARGET_TEXT"], [16, 1, 1, "", "VIEW_TRANSITION"], [16, 1, 1, "", "VIEW_TRANSITION_GROUP"], [16, 1, 1, "", "VIEW_TRANSITION_IMAGE_PAIR"], [16, 1, 1, "", "VIEW_TRANSITION_NEW"], [16, 1, 1, "", "VIEW_TRANSITION_OLD"]], "nodriver.cdp.dom.RGBA": [[16, 1, 1, "", "a"], [16, 1, 1, "", "b"], [16, 1, 1, "", "g"], [16, 1, 1, "", "r"]], "nodriver.cdp.dom.Rect": [[16, 1, 1, "", "height"], [16, 1, 1, "", "width"], [16, 1, 1, "", "x"], [16, 1, 1, "", "y"]], "nodriver.cdp.dom.ScrollOrientation": [[16, 1, 1, "", "HORIZONTAL"], [16, 1, 1, "", "VERTICAL"]], "nodriver.cdp.dom.SetChildNodes": [[16, 1, 1, "", "nodes"], [16, 1, 1, "", "parent_id"]], "nodriver.cdp.dom.ShadowRootPopped": [[16, 1, 1, "", "host_id"], [16, 1, 1, "", "root_id"]], "nodriver.cdp.dom.ShadowRootPushed": [[16, 1, 1, "", "host_id"], [16, 1, 1, "", "root"]], "nodriver.cdp.dom.ShadowRootType": [[16, 1, 1, "", "CLOSED"], [16, 1, 1, "", "OPEN_"], [16, 1, 1, "", "USER_AGENT"]], "nodriver.cdp.dom.ShapeOutsideInfo": [[16, 1, 1, "", "bounds"], [16, 1, 1, "", "margin_shape"], [16, 1, 1, "", "shape"]], "nodriver.cdp.dom_debugger": [[17, 0, 1, "", "CSPViolationType"], [17, 0, 1, "", "DOMBreakpointType"], [17, 0, 1, "", "EventListener"], [17, 5, 1, "", "get_event_listeners"], [17, 5, 1, "", "remove_dom_breakpoint"], [17, 5, 1, "", "remove_event_listener_breakpoint"], [17, 5, 1, "", "remove_instrumentation_breakpoint"], [17, 5, 1, "", "remove_xhr_breakpoint"], [17, 5, 1, "", "set_break_on_csp_violation"], [17, 5, 1, "", "set_dom_breakpoint"], [17, 5, 1, "", "set_event_listener_breakpoint"], [17, 5, 1, "", "set_instrumentation_breakpoint"], [17, 5, 1, "", "set_xhr_breakpoint"]], "nodriver.cdp.dom_debugger.CSPViolationType": [[17, 1, 1, "", "TRUSTEDTYPE_POLICY_VIOLATION"], [17, 1, 1, "", "TRUSTEDTYPE_SINK_VIOLATION"]], "nodriver.cdp.dom_debugger.DOMBreakpointType": [[17, 1, 1, "", "ATTRIBUTE_MODIFIED"], [17, 1, 1, "", "NODE_REMOVED"], [17, 1, 1, "", "SUBTREE_MODIFIED"]], "nodriver.cdp.dom_debugger.EventListener": [[17, 1, 1, "", "backend_node_id"], [17, 1, 1, "", "column_number"], [17, 1, 1, "", "handler"], [17, 1, 1, "", "line_number"], [17, 1, 1, "", "once"], [17, 1, 1, "", "original_handler"], [17, 1, 1, "", "passive"], [17, 1, 1, "", "script_id"], [17, 1, 1, "", "type_"], [17, 1, 1, "", "use_capture"]], "nodriver.cdp.dom_snapshot": [[18, 0, 1, "", "ArrayOfStrings"], [18, 0, 1, "", "ComputedStyle"], [18, 0, 1, "", "DOMNode"], [18, 0, 1, "", "DocumentSnapshot"], [18, 0, 1, "", "InlineTextBox"], [18, 0, 1, "", "LayoutTreeNode"], [18, 0, 1, "", "LayoutTreeSnapshot"], [18, 0, 1, "", "NameValue"], [18, 0, 1, "", "NodeTreeSnapshot"], [18, 0, 1, "", "RareBooleanData"], [18, 0, 1, "", "RareIntegerData"], [18, 0, 1, "", "RareStringData"], [18, 0, 1, "", "Rectangle"], [18, 0, 1, "", "StringIndex"], [18, 0, 1, "", "TextBoxSnapshot"], [18, 5, 1, "", "capture_snapshot"], [18, 5, 1, "", "disable"], [18, 5, 1, "", "enable"], [18, 5, 1, "", "get_snapshot"]], "nodriver.cdp.dom_snapshot.ComputedStyle": [[18, 1, 1, "", "properties"]], "nodriver.cdp.dom_snapshot.DOMNode": [[18, 1, 1, "", "attributes"], [18, 1, 1, "", "backend_node_id"], [18, 1, 1, "", "base_url"], [18, 1, 1, "", "child_node_indexes"], [18, 1, 1, "", "content_document_index"], [18, 1, 1, "", "content_language"], [18, 1, 1, "", "current_source_url"], [18, 1, 1, "", "document_encoding"], [18, 1, 1, "", "document_url"], [18, 1, 1, "", "event_listeners"], [18, 1, 1, "", "frame_id"], [18, 1, 1, "", "input_checked"], [18, 1, 1, "", "input_value"], [18, 1, 1, "", "is_clickable"], [18, 1, 1, "", "layout_node_index"], [18, 1, 1, "", "node_name"], [18, 1, 1, "", "node_type"], [18, 1, 1, "", "node_value"], [18, 1, 1, "", "option_selected"], [18, 1, 1, "", "origin_url"], [18, 1, 1, "", "pseudo_element_indexes"], [18, 1, 1, "", "pseudo_type"], [18, 1, 1, "", "public_id"], [18, 1, 1, "", "scroll_offset_x"], [18, 1, 1, "", "scroll_offset_y"], [18, 1, 1, "", "shadow_root_type"], [18, 1, 1, "", "system_id"], [18, 1, 1, "", "text_value"]], "nodriver.cdp.dom_snapshot.DocumentSnapshot": [[18, 1, 1, "", "base_url"], [18, 1, 1, "", "content_height"], [18, 1, 1, "", "content_language"], [18, 1, 1, "", "content_width"], [18, 1, 1, "", "document_url"], [18, 1, 1, "", "encoding_name"], [18, 1, 1, "", "frame_id"], [18, 1, 1, "", "layout"], [18, 1, 1, "", "nodes"], [18, 1, 1, "", "public_id"], [18, 1, 1, "", "scroll_offset_x"], [18, 1, 1, "", "scroll_offset_y"], [18, 1, 1, "", "system_id"], [18, 1, 1, "", "text_boxes"], [18, 1, 1, "", "title"]], "nodriver.cdp.dom_snapshot.InlineTextBox": [[18, 1, 1, "", "bounding_box"], [18, 1, 1, "", "num_characters"], [18, 1, 1, "", "start_character_index"]], "nodriver.cdp.dom_snapshot.LayoutTreeNode": [[18, 1, 1, "", "bounding_box"], [18, 1, 1, "", "dom_node_index"], [18, 1, 1, "", "inline_text_nodes"], [18, 1, 1, "", "is_stacking_context"], [18, 1, 1, "", "layout_text"], [18, 1, 1, "", "paint_order"], [18, 1, 1, "", "style_index"]], "nodriver.cdp.dom_snapshot.LayoutTreeSnapshot": [[18, 1, 1, "", "blended_background_colors"], [18, 1, 1, "", "bounds"], [18, 1, 1, "", "client_rects"], [18, 1, 1, "", "node_index"], [18, 1, 1, "", "offset_rects"], [18, 1, 1, "", "paint_orders"], [18, 1, 1, "", "scroll_rects"], [18, 1, 1, "", "stacking_contexts"], [18, 1, 1, "", "styles"], [18, 1, 1, "", "text"], [18, 1, 1, "", "text_color_opacities"]], "nodriver.cdp.dom_snapshot.NameValue": [[18, 1, 1, "", "name"], [18, 1, 1, "", "value"]], "nodriver.cdp.dom_snapshot.NodeTreeSnapshot": [[18, 1, 1, "", "attributes"], [18, 1, 1, "", "backend_node_id"], [18, 1, 1, "", "content_document_index"], [18, 1, 1, "", "current_source_url"], [18, 1, 1, "", "input_checked"], [18, 1, 1, "", "input_value"], [18, 1, 1, "", "is_clickable"], [18, 1, 1, "", "node_name"], [18, 1, 1, "", "node_type"], [18, 1, 1, "", "node_value"], [18, 1, 1, "", "option_selected"], [18, 1, 1, "", "origin_url"], [18, 1, 1, "", "parent_index"], [18, 1, 1, "", "pseudo_identifier"], [18, 1, 1, "", "pseudo_type"], [18, 1, 1, "", "shadow_root_type"], [18, 1, 1, "", "text_value"]], "nodriver.cdp.dom_snapshot.RareBooleanData": [[18, 1, 1, "", "index"]], "nodriver.cdp.dom_snapshot.RareIntegerData": [[18, 1, 1, "", "index"], [18, 1, 1, "", "value"]], "nodriver.cdp.dom_snapshot.RareStringData": [[18, 1, 1, "", "index"], [18, 1, 1, "", "value"]], "nodriver.cdp.dom_snapshot.TextBoxSnapshot": [[18, 1, 1, "", "bounds"], [18, 1, 1, "", "layout_index"], [18, 1, 1, "", "length"], [18, 1, 1, "", "start"]], "nodriver.cdp.dom_storage": [[19, 0, 1, "", "DomStorageItemAdded"], [19, 0, 1, "", "DomStorageItemRemoved"], [19, 0, 1, "", "DomStorageItemUpdated"], [19, 0, 1, "", "DomStorageItemsCleared"], [19, 0, 1, "", "Item"], [19, 0, 1, "", "SerializedStorageKey"], [19, 0, 1, "", "StorageId"], [19, 5, 1, "", "clear"], [19, 5, 1, "", "disable"], [19, 5, 1, "", "enable"], [19, 5, 1, "", "get_dom_storage_items"], [19, 5, 1, "", "remove_dom_storage_item"], [19, 5, 1, "", "set_dom_storage_item"]], "nodriver.cdp.dom_storage.DomStorageItemAdded": [[19, 1, 1, "", "key"], [19, 1, 1, "", "new_value"], [19, 1, 1, "", "storage_id"]], "nodriver.cdp.dom_storage.DomStorageItemRemoved": [[19, 1, 1, "", "key"], [19, 1, 1, "", "storage_id"]], "nodriver.cdp.dom_storage.DomStorageItemUpdated": [[19, 1, 1, "", "key"], [19, 1, 1, "", "new_value"], [19, 1, 1, "", "old_value"], [19, 1, 1, "", "storage_id"]], "nodriver.cdp.dom_storage.DomStorageItemsCleared": [[19, 1, 1, "", "storage_id"]], "nodriver.cdp.dom_storage.StorageId": [[19, 1, 1, "", "is_local_storage"], [19, 1, 1, "", "security_origin"], [19, 1, 1, "", "storage_key"]], "nodriver.cdp.emulation": [[20, 0, 1, "", "DevicePosture"], [20, 0, 1, "", "DisabledImageType"], [20, 0, 1, "", "DisplayFeature"], [20, 0, 1, "", "MediaFeature"], [20, 0, 1, "", "ScreenOrientation"], [20, 0, 1, "", "SensorMetadata"], [20, 0, 1, "", "SensorReading"], [20, 0, 1, "", "SensorReadingQuaternion"], [20, 0, 1, "", "SensorReadingSingle"], [20, 0, 1, "", "SensorReadingXYZ"], [20, 0, 1, "", "SensorType"], [20, 0, 1, "", "UserAgentBrandVersion"], [20, 0, 1, "", "UserAgentMetadata"], [20, 0, 1, "", "VirtualTimeBudgetExpired"], [20, 0, 1, "", "VirtualTimePolicy"], [20, 5, 1, "", "can_emulate"], [20, 5, 1, "", "clear_device_metrics_override"], [20, 5, 1, "", "clear_device_posture_override"], [20, 5, 1, "", "clear_geolocation_override"], [20, 5, 1, "", "clear_idle_override"], [20, 5, 1, "", "get_overridden_sensor_information"], [20, 5, 1, "", "reset_page_scale_factor"], [20, 5, 1, "", "set_auto_dark_mode_override"], [20, 5, 1, "", "set_automation_override"], [20, 5, 1, "", "set_cpu_throttling_rate"], [20, 5, 1, "", "set_default_background_color_override"], [20, 5, 1, "", "set_device_metrics_override"], [20, 5, 1, "", "set_device_posture_override"], [20, 5, 1, "", "set_disabled_image_types"], [20, 5, 1, "", "set_document_cookie_disabled"], [20, 5, 1, "", "set_emit_touch_events_for_mouse"], [20, 5, 1, "", "set_emulated_media"], [20, 5, 1, "", "set_emulated_vision_deficiency"], [20, 5, 1, "", "set_focus_emulation_enabled"], [20, 5, 1, "", "set_geolocation_override"], [20, 5, 1, "", "set_hardware_concurrency_override"], [20, 5, 1, "", "set_idle_override"], [20, 5, 1, "", "set_locale_override"], [20, 5, 1, "", "set_navigator_overrides"], [20, 5, 1, "", "set_page_scale_factor"], [20, 5, 1, "", "set_script_execution_disabled"], [20, 5, 1, "", "set_scrollbars_hidden"], [20, 5, 1, "", "set_sensor_override_enabled"], [20, 5, 1, "", "set_sensor_override_readings"], [20, 5, 1, "", "set_timezone_override"], [20, 5, 1, "", "set_touch_emulation_enabled"], [20, 5, 1, "", "set_user_agent_override"], [20, 5, 1, "", "set_virtual_time_policy"], [20, 5, 1, "", "set_visible_size"]], "nodriver.cdp.emulation.DevicePosture": [[20, 1, 1, "", "type_"]], "nodriver.cdp.emulation.DisabledImageType": [[20, 1, 1, "", "AVIF"], [20, 1, 1, "", "WEBP"]], "nodriver.cdp.emulation.DisplayFeature": [[20, 1, 1, "", "mask_length"], [20, 1, 1, "", "offset"], [20, 1, 1, "", "orientation"]], "nodriver.cdp.emulation.MediaFeature": [[20, 1, 1, "", "name"], [20, 1, 1, "", "value"]], "nodriver.cdp.emulation.ScreenOrientation": [[20, 1, 1, "", "angle"], [20, 1, 1, "", "type_"]], "nodriver.cdp.emulation.SensorMetadata": [[20, 1, 1, "", "available"], [20, 1, 1, "", "maximum_frequency"], [20, 1, 1, "", "minimum_frequency"]], "nodriver.cdp.emulation.SensorReading": [[20, 1, 1, "", "quaternion"], [20, 1, 1, "", "single"], [20, 1, 1, "", "xyz"]], "nodriver.cdp.emulation.SensorReadingQuaternion": [[20, 1, 1, "", "w"], [20, 1, 1, "", "x"], [20, 1, 1, "", "y"], [20, 1, 1, "", "z"]], "nodriver.cdp.emulation.SensorReadingSingle": [[20, 1, 1, "", "value"]], "nodriver.cdp.emulation.SensorReadingXYZ": [[20, 1, 1, "", "x"], [20, 1, 1, "", "y"], [20, 1, 1, "", "z"]], "nodriver.cdp.emulation.SensorType": [[20, 1, 1, "", "ABSOLUTE_ORIENTATION"], [20, 1, 1, "", "ACCELEROMETER"], [20, 1, 1, "", "AMBIENT_LIGHT"], [20, 1, 1, "", "GRAVITY"], [20, 1, 1, "", "GYROSCOPE"], [20, 1, 1, "", "LINEAR_ACCELERATION"], [20, 1, 1, "", "MAGNETOMETER"], [20, 1, 1, "", "PROXIMITY"], [20, 1, 1, "", "RELATIVE_ORIENTATION"]], "nodriver.cdp.emulation.UserAgentBrandVersion": [[20, 1, 1, "", "brand"], [20, 1, 1, "", "version"]], "nodriver.cdp.emulation.UserAgentMetadata": [[20, 1, 1, "", "architecture"], [20, 1, 1, "", "bitness"], [20, 1, 1, "", "brands"], [20, 1, 1, "", "full_version"], [20, 1, 1, "", "full_version_list"], [20, 1, 1, "", "mobile"], [20, 1, 1, "", "model"], [20, 1, 1, "", "platform"], [20, 1, 1, "", "platform_version"], [20, 1, 1, "", "wow64"]], "nodriver.cdp.emulation.VirtualTimePolicy": [[20, 1, 1, "", "ADVANCE"], [20, 1, 1, "", "PAUSE"], [20, 1, 1, "", "PAUSE_IF_NETWORK_FETCHES_PENDING"]], "nodriver.cdp.event_breakpoints": [[21, 5, 1, "", "disable"], [21, 5, 1, "", "remove_instrumentation_breakpoint"], [21, 5, 1, "", "set_instrumentation_breakpoint"]], "nodriver.cdp.extensions": [[22, 5, 1, "", "load_unpacked"]], "nodriver.cdp.fed_cm": [[23, 0, 1, "", "Account"], [23, 0, 1, "", "AccountUrlType"], [23, 0, 1, "", "DialogButton"], [23, 0, 1, "", "DialogClosed"], [23, 0, 1, "", "DialogShown"], [23, 0, 1, "", "DialogType"], [23, 0, 1, "", "LoginState"], [23, 5, 1, "", "click_dialog_button"], [23, 5, 1, "", "disable"], [23, 5, 1, "", "dismiss_dialog"], [23, 5, 1, "", "enable"], [23, 5, 1, "", "open_url"], [23, 5, 1, "", "reset_cooldown"], [23, 5, 1, "", "select_account"]], "nodriver.cdp.fed_cm.Account": [[23, 1, 1, "", "account_id"], [23, 1, 1, "", "email"], [23, 1, 1, "", "given_name"], [23, 1, 1, "", "idp_config_url"], [23, 1, 1, "", "idp_login_url"], [23, 1, 1, "", "login_state"], [23, 1, 1, "", "name"], [23, 1, 1, "", "picture_url"], [23, 1, 1, "", "privacy_policy_url"], [23, 1, 1, "", "terms_of_service_url"]], "nodriver.cdp.fed_cm.AccountUrlType": [[23, 1, 1, "", "PRIVACY_POLICY"], [23, 1, 1, "", "TERMS_OF_SERVICE"]], "nodriver.cdp.fed_cm.DialogButton": [[23, 1, 1, "", "CONFIRM_IDP_LOGIN_CONTINUE"], [23, 1, 1, "", "ERROR_GOT_IT"], [23, 1, 1, "", "ERROR_MORE_DETAILS"]], "nodriver.cdp.fed_cm.DialogClosed": [[23, 1, 1, "", "dialog_id"]], "nodriver.cdp.fed_cm.DialogShown": [[23, 1, 1, "", "accounts"], [23, 1, 1, "", "dialog_id"], [23, 1, 1, "", "dialog_type"], [23, 1, 1, "", "subtitle"], [23, 1, 1, "", "title"]], "nodriver.cdp.fed_cm.DialogType": [[23, 1, 1, "", "ACCOUNT_CHOOSER"], [23, 1, 1, "", "AUTO_REAUTHN"], [23, 1, 1, "", "CONFIRM_IDP_LOGIN"], [23, 1, 1, "", "ERROR"]], "nodriver.cdp.fed_cm.LoginState": [[23, 1, 1, "", "SIGN_IN"], [23, 1, 1, "", "SIGN_UP"]], "nodriver.cdp.fetch": [[24, 0, 1, "", "AuthChallenge"], [24, 0, 1, "", "AuthChallengeResponse"], [24, 0, 1, "", "AuthRequired"], [24, 0, 1, "", "HeaderEntry"], [24, 0, 1, "", "RequestId"], [24, 0, 1, "", "RequestPattern"], [24, 0, 1, "", "RequestPaused"], [24, 0, 1, "", "RequestStage"], [24, 5, 1, "", "continue_request"], [24, 5, 1, "", "continue_response"], [24, 5, 1, "", "continue_with_auth"], [24, 5, 1, "", "disable"], [24, 5, 1, "", "enable"], [24, 5, 1, "", "fail_request"], [24, 5, 1, "", "fulfill_request"], [24, 5, 1, "", "get_response_body"], [24, 5, 1, "", "take_response_body_as_stream"]], "nodriver.cdp.fetch.AuthChallenge": [[24, 1, 1, "", "origin"], [24, 1, 1, "", "realm"], [24, 1, 1, "", "scheme"], [24, 1, 1, "", "source"]], "nodriver.cdp.fetch.AuthChallengeResponse": [[24, 1, 1, "", "password"], [24, 1, 1, "", "response"], [24, 1, 1, "", "username"]], "nodriver.cdp.fetch.AuthRequired": [[24, 1, 1, "", "auth_challenge"], [24, 1, 1, "", "frame_id"], [24, 1, 1, "", "request"], [24, 1, 1, "", "request_id"], [24, 1, 1, "", "resource_type"]], "nodriver.cdp.fetch.HeaderEntry": [[24, 1, 1, "", "name"], [24, 1, 1, "", "value"]], "nodriver.cdp.fetch.RequestPattern": [[24, 1, 1, "", "request_stage"], [24, 1, 1, "", "resource_type"], [24, 1, 1, "", "url_pattern"]], "nodriver.cdp.fetch.RequestPaused": [[24, 1, 1, "", "frame_id"], [24, 1, 1, "", "network_id"], [24, 1, 1, "", "redirected_request_id"], [24, 1, 1, "", "request"], [24, 1, 1, "", "request_id"], [24, 1, 1, "", "resource_type"], [24, 1, 1, "", "response_error_reason"], [24, 1, 1, "", "response_headers"], [24, 1, 1, "", "response_status_code"], [24, 1, 1, "", "response_status_text"]], "nodriver.cdp.fetch.RequestStage": [[24, 1, 1, "", "REQUEST"], [24, 1, 1, "", "RESPONSE"]], "nodriver.cdp.headless_experimental": [[25, 0, 1, "", "ScreenshotParams"], [25, 5, 1, "", "begin_frame"], [25, 5, 1, "", "disable"], [25, 5, 1, "", "enable"]], "nodriver.cdp.headless_experimental.ScreenshotParams": [[25, 1, 1, "", "format_"], [25, 1, 1, "", "optimize_for_speed"], [25, 1, 1, "", "quality"]], "nodriver.cdp.heap_profiler": [[26, 0, 1, "", "AddHeapSnapshotChunk"], [26, 0, 1, "", "HeapSnapshotObjectId"], [26, 0, 1, "", "HeapStatsUpdate"], [26, 0, 1, "", "LastSeenObjectId"], [26, 0, 1, "", "ReportHeapSnapshotProgress"], [26, 0, 1, "", "ResetProfiles"], [26, 0, 1, "", "SamplingHeapProfile"], [26, 0, 1, "", "SamplingHeapProfileNode"], [26, 0, 1, "", "SamplingHeapProfileSample"], [26, 5, 1, "", "add_inspected_heap_object"], [26, 5, 1, "", "collect_garbage"], [26, 5, 1, "", "disable"], [26, 5, 1, "", "enable"], [26, 5, 1, "", "get_heap_object_id"], [26, 5, 1, "", "get_object_by_heap_object_id"], [26, 5, 1, "", "get_sampling_profile"], [26, 5, 1, "", "start_sampling"], [26, 5, 1, "", "start_tracking_heap_objects"], [26, 5, 1, "", "stop_sampling"], [26, 5, 1, "", "stop_tracking_heap_objects"], [26, 5, 1, "", "take_heap_snapshot"]], "nodriver.cdp.heap_profiler.AddHeapSnapshotChunk": [[26, 1, 1, "", "chunk"]], "nodriver.cdp.heap_profiler.HeapStatsUpdate": [[26, 1, 1, "", "stats_update"]], "nodriver.cdp.heap_profiler.LastSeenObjectId": [[26, 1, 1, "", "last_seen_object_id"], [26, 1, 1, "", "timestamp"]], "nodriver.cdp.heap_profiler.ReportHeapSnapshotProgress": [[26, 1, 1, "", "done"], [26, 1, 1, "", "finished"], [26, 1, 1, "", "total"]], "nodriver.cdp.heap_profiler.SamplingHeapProfile": [[26, 1, 1, "", "head"], [26, 1, 1, "", "samples"]], "nodriver.cdp.heap_profiler.SamplingHeapProfileNode": [[26, 1, 1, "", "call_frame"], [26, 1, 1, "", "children"], [26, 1, 1, "", "id_"], [26, 1, 1, "", "self_size"]], "nodriver.cdp.heap_profiler.SamplingHeapProfileSample": [[26, 1, 1, "", "node_id"], [26, 1, 1, "", "ordinal"], [26, 1, 1, "", "size"]], "nodriver.cdp.indexed_db": [[27, 0, 1, "", "DataEntry"], [27, 0, 1, "", "DatabaseWithObjectStores"], [27, 0, 1, "", "Key"], [27, 0, 1, "", "KeyPath"], [27, 0, 1, "", "KeyRange"], [27, 0, 1, "", "ObjectStore"], [27, 0, 1, "", "ObjectStoreIndex"], [27, 5, 1, "", "clear_object_store"], [27, 5, 1, "", "delete_database"], [27, 5, 1, "", "delete_object_store_entries"], [27, 5, 1, "", "disable"], [27, 5, 1, "", "enable"], [27, 5, 1, "", "get_metadata"], [27, 5, 1, "", "request_data"], [27, 5, 1, "", "request_database"], [27, 5, 1, "", "request_database_names"]], "nodriver.cdp.indexed_db.DataEntry": [[27, 1, 1, "", "key"], [27, 1, 1, "", "primary_key"], [27, 1, 1, "", "value"]], "nodriver.cdp.indexed_db.DatabaseWithObjectStores": [[27, 1, 1, "", "name"], [27, 1, 1, "", "object_stores"], [27, 1, 1, "", "version"]], "nodriver.cdp.indexed_db.Key": [[27, 1, 1, "", "array"], [27, 1, 1, "", "date"], [27, 1, 1, "", "number"], [27, 1, 1, "", "string"], [27, 1, 1, "", "type_"]], "nodriver.cdp.indexed_db.KeyPath": [[27, 1, 1, "", "array"], [27, 1, 1, "", "string"], [27, 1, 1, "", "type_"]], "nodriver.cdp.indexed_db.KeyRange": [[27, 1, 1, "", "lower"], [27, 1, 1, "", "lower_open"], [27, 1, 1, "", "upper"], [27, 1, 1, "", "upper_open"]], "nodriver.cdp.indexed_db.ObjectStore": [[27, 1, 1, "", "auto_increment"], [27, 1, 1, "", "indexes"], [27, 1, 1, "", "key_path"], [27, 1, 1, "", "name"]], "nodriver.cdp.indexed_db.ObjectStoreIndex": [[27, 1, 1, "", "key_path"], [27, 1, 1, "", "multi_entry"], [27, 1, 1, "", "name"], [27, 1, 1, "", "unique"]], "nodriver.cdp.input_": [[28, 0, 1, "", "DragData"], [28, 0, 1, "", "DragDataItem"], [28, 0, 1, "", "DragIntercepted"], [28, 0, 1, "", "GestureSourceType"], [28, 0, 1, "", "MouseButton"], [28, 0, 1, "", "TimeSinceEpoch"], [28, 0, 1, "", "TouchPoint"], [28, 5, 1, "", "cancel_dragging"], [28, 5, 1, "", "dispatch_drag_event"], [28, 5, 1, "", "dispatch_key_event"], [28, 5, 1, "", "dispatch_mouse_event"], [28, 5, 1, "", "dispatch_touch_event"], [28, 5, 1, "", "emulate_touch_from_mouse_event"], [28, 5, 1, "", "ime_set_composition"], [28, 5, 1, "", "insert_text"], [28, 5, 1, "", "set_ignore_input_events"], [28, 5, 1, "", "set_intercept_drags"], [28, 5, 1, "", "synthesize_pinch_gesture"], [28, 5, 1, "", "synthesize_scroll_gesture"], [28, 5, 1, "", "synthesize_tap_gesture"]], "nodriver.cdp.input_.DragData": [[28, 1, 1, "", "drag_operations_mask"], [28, 1, 1, "", "files"], [28, 1, 1, "", "items"]], "nodriver.cdp.input_.DragDataItem": [[28, 1, 1, "", "base_url"], [28, 1, 1, "", "data"], [28, 1, 1, "", "mime_type"], [28, 1, 1, "", "title"]], "nodriver.cdp.input_.DragIntercepted": [[28, 1, 1, "", "data"]], "nodriver.cdp.input_.GestureSourceType": [[28, 1, 1, "", "DEFAULT"], [28, 1, 1, "", "MOUSE"], [28, 1, 1, "", "TOUCH"]], "nodriver.cdp.input_.MouseButton": [[28, 1, 1, "", "BACK"], [28, 1, 1, "", "FORWARD"], [28, 1, 1, "", "LEFT"], [28, 1, 1, "", "MIDDLE"], [28, 1, 1, "", "NONE"], [28, 1, 1, "", "RIGHT"]], "nodriver.cdp.input_.TouchPoint": [[28, 1, 1, "", "force"], [28, 1, 1, "", "id_"], [28, 1, 1, "", "radius_x"], [28, 1, 1, "", "radius_y"], [28, 1, 1, "", "rotation_angle"], [28, 1, 1, "", "tangential_pressure"], [28, 1, 1, "", "tilt_x"], [28, 1, 1, "", "tilt_y"], [28, 1, 1, "", "twist"], [28, 1, 1, "", "x"], [28, 1, 1, "", "y"]], "nodriver.cdp.inspector": [[29, 0, 1, "", "Detached"], [29, 0, 1, "", "TargetCrashed"], [29, 0, 1, "", "TargetReloadedAfterCrash"], [29, 5, 1, "", "disable"], [29, 5, 1, "", "enable"]], "nodriver.cdp.inspector.Detached": [[29, 1, 1, "", "reason"]], "nodriver.cdp.io": [[30, 0, 1, "", "StreamHandle"], [30, 5, 1, "", "close"], [30, 5, 1, "", "read"], [30, 5, 1, "", "resolve_blob"]], "nodriver.cdp.layer_tree": [[31, 0, 1, "", "Layer"], [31, 0, 1, "", "LayerId"], [31, 0, 1, "", "LayerPainted"], [31, 0, 1, "", "LayerTreeDidChange"], [31, 0, 1, "", "PaintProfile"], [31, 0, 1, "", "PictureTile"], [31, 0, 1, "", "ScrollRect"], [31, 0, 1, "", "SnapshotId"], [31, 0, 1, "", "StickyPositionConstraint"], [31, 5, 1, "", "compositing_reasons"], [31, 5, 1, "", "disable"], [31, 5, 1, "", "enable"], [31, 5, 1, "", "load_snapshot"], [31, 5, 1, "", "make_snapshot"], [31, 5, 1, "", "profile_snapshot"], [31, 5, 1, "", "release_snapshot"], [31, 5, 1, "", "replay_snapshot"], [31, 5, 1, "", "snapshot_command_log"]], "nodriver.cdp.layer_tree.Layer": [[31, 1, 1, "", "anchor_x"], [31, 1, 1, "", "anchor_y"], [31, 1, 1, "", "anchor_z"], [31, 1, 1, "", "backend_node_id"], [31, 1, 1, "", "draws_content"], [31, 1, 1, "", "height"], [31, 1, 1, "", "invisible"], [31, 1, 1, "", "layer_id"], [31, 1, 1, "", "offset_x"], [31, 1, 1, "", "offset_y"], [31, 1, 1, "", "paint_count"], [31, 1, 1, "", "parent_layer_id"], [31, 1, 1, "", "scroll_rects"], [31, 1, 1, "", "sticky_position_constraint"], [31, 1, 1, "", "transform"], [31, 1, 1, "", "width"]], "nodriver.cdp.layer_tree.LayerPainted": [[31, 1, 1, "", "clip"], [31, 1, 1, "", "layer_id"]], "nodriver.cdp.layer_tree.LayerTreeDidChange": [[31, 1, 1, "", "layers"]], "nodriver.cdp.layer_tree.PictureTile": [[31, 1, 1, "", "picture"], [31, 1, 1, "", "x"], [31, 1, 1, "", "y"]], "nodriver.cdp.layer_tree.ScrollRect": [[31, 1, 1, "", "rect"], [31, 1, 1, "", "type_"]], "nodriver.cdp.layer_tree.StickyPositionConstraint": [[31, 1, 1, "", "containing_block_rect"], [31, 1, 1, "", "nearest_layer_shifting_containing_block"], [31, 1, 1, "", "nearest_layer_shifting_sticky_box"], [31, 1, 1, "", "sticky_box_rect"]], "nodriver.cdp.log": [[32, 0, 1, "", "EntryAdded"], [32, 0, 1, "", "LogEntry"], [32, 0, 1, "", "ViolationSetting"], [32, 5, 1, "", "clear"], [32, 5, 1, "", "disable"], [32, 5, 1, "", "enable"], [32, 5, 1, "", "start_violations_report"], [32, 5, 1, "", "stop_violations_report"]], "nodriver.cdp.log.EntryAdded": [[32, 1, 1, "", "entry"]], "nodriver.cdp.log.LogEntry": [[32, 1, 1, "", "args"], [32, 1, 1, "", "category"], [32, 1, 1, "", "level"], [32, 1, 1, "", "line_number"], [32, 1, 1, "", "network_request_id"], [32, 1, 1, "", "source"], [32, 1, 1, "", "stack_trace"], [32, 1, 1, "", "text"], [32, 1, 1, "", "timestamp"], [32, 1, 1, "", "url"], [32, 1, 1, "", "worker_id"]], "nodriver.cdp.log.ViolationSetting": [[32, 1, 1, "", "name"], [32, 1, 1, "", "threshold"]], "nodriver.cdp.media": [[33, 0, 1, "", "PlayerError"], [33, 0, 1, "", "PlayerErrorSourceLocation"], [33, 0, 1, "", "PlayerErrorsRaised"], [33, 0, 1, "", "PlayerEvent"], [33, 0, 1, "", "PlayerEventsAdded"], [33, 0, 1, "", "PlayerId"], [33, 0, 1, "", "PlayerMessage"], [33, 0, 1, "", "PlayerMessagesLogged"], [33, 0, 1, "", "PlayerPropertiesChanged"], [33, 0, 1, "", "PlayerProperty"], [33, 0, 1, "", "PlayersCreated"], [33, 0, 1, "", "Timestamp"], [33, 5, 1, "", "disable"], [33, 5, 1, "", "enable"]], "nodriver.cdp.media.PlayerError": [[33, 1, 1, "", "cause"], [33, 1, 1, "", "code"], [33, 1, 1, "", "data"], [33, 1, 1, "", "error_type"], [33, 1, 1, "", "stack"]], "nodriver.cdp.media.PlayerErrorSourceLocation": [[33, 1, 1, "", "file"], [33, 1, 1, "", "line"]], "nodriver.cdp.media.PlayerErrorsRaised": [[33, 1, 1, "", "errors"], [33, 1, 1, "", "player_id"]], "nodriver.cdp.media.PlayerEvent": [[33, 1, 1, "", "timestamp"], [33, 1, 1, "", "value"]], "nodriver.cdp.media.PlayerEventsAdded": [[33, 1, 1, "", "events"], [33, 1, 1, "", "player_id"]], "nodriver.cdp.media.PlayerMessage": [[33, 1, 1, "", "level"], [33, 1, 1, "", "message"]], "nodriver.cdp.media.PlayerMessagesLogged": [[33, 1, 1, "", "messages"], [33, 1, 1, "", "player_id"]], "nodriver.cdp.media.PlayerPropertiesChanged": [[33, 1, 1, "", "player_id"], [33, 1, 1, "", "properties"]], "nodriver.cdp.media.PlayerProperty": [[33, 1, 1, "", "name"], [33, 1, 1, "", "value"]], "nodriver.cdp.media.PlayersCreated": [[33, 1, 1, "", "players"]], "nodriver.cdp.memory": [[34, 0, 1, "", "Module"], [34, 0, 1, "", "PressureLevel"], [34, 0, 1, "", "SamplingProfile"], [34, 0, 1, "", "SamplingProfileNode"], [34, 5, 1, "", "forcibly_purge_java_script_memory"], [34, 5, 1, "", "get_all_time_sampling_profile"], [34, 5, 1, "", "get_browser_sampling_profile"], [34, 5, 1, "", "get_dom_counters"], [34, 5, 1, "", "get_sampling_profile"], [34, 5, 1, "", "prepare_for_leak_detection"], [34, 5, 1, "", "set_pressure_notifications_suppressed"], [34, 5, 1, "", "simulate_pressure_notification"], [34, 5, 1, "", "start_sampling"], [34, 5, 1, "", "stop_sampling"]], "nodriver.cdp.memory.Module": [[34, 1, 1, "", "base_address"], [34, 1, 1, "", "name"], [34, 1, 1, "", "size"], [34, 1, 1, "", "uuid"]], "nodriver.cdp.memory.PressureLevel": [[34, 1, 1, "", "CRITICAL"], [34, 1, 1, "", "MODERATE"]], "nodriver.cdp.memory.SamplingProfile": [[34, 1, 1, "", "modules"], [34, 1, 1, "", "samples"]], "nodriver.cdp.memory.SamplingProfileNode": [[34, 1, 1, "", "size"], [34, 1, 1, "", "stack"], [34, 1, 1, "", "total"]], "nodriver.cdp.network": [[35, 0, 1, "", "AlternateProtocolUsage"], [35, 0, 1, "", "AssociatedCookie"], [35, 0, 1, "", "AuthChallenge"], [35, 0, 1, "", "AuthChallengeResponse"], [35, 0, 1, "", "BlockedReason"], [35, 0, 1, "", "BlockedSetCookieWithReason"], [35, 0, 1, "", "CachedResource"], [35, 0, 1, "", "CertificateTransparencyCompliance"], [35, 0, 1, "", "ClientSecurityState"], [35, 0, 1, "", "ConnectTiming"], [35, 0, 1, "", "ConnectionType"], [35, 0, 1, "", "ContentEncoding"], [35, 0, 1, "", "ContentSecurityPolicySource"], [35, 0, 1, "", "ContentSecurityPolicyStatus"], [35, 0, 1, "", "Cookie"], [35, 0, 1, "", "CookieBlockedReason"], [35, 0, 1, "", "CookieExemptionReason"], [35, 0, 1, "", "CookieParam"], [35, 0, 1, "", "CookiePartitionKey"], [35, 0, 1, "", "CookiePriority"], [35, 0, 1, "", "CookieSameSite"], [35, 0, 1, "", "CookieSourceScheme"], [35, 0, 1, "", "CorsError"], [35, 0, 1, "", "CorsErrorStatus"], [35, 0, 1, "", "CrossOriginEmbedderPolicyStatus"], [35, 0, 1, "", "CrossOriginEmbedderPolicyValue"], [35, 0, 1, "", "CrossOriginOpenerPolicyStatus"], [35, 0, 1, "", "CrossOriginOpenerPolicyValue"], [35, 0, 1, "", "DataReceived"], [35, 0, 1, "", "ErrorReason"], [35, 0, 1, "", "EventSourceMessageReceived"], [35, 0, 1, "", "ExemptedSetCookieWithReason"], [35, 0, 1, "", "Headers"], [35, 0, 1, "", "IPAddressSpace"], [35, 0, 1, "", "Initiator"], [35, 0, 1, "", "InterceptionId"], [35, 0, 1, "", "InterceptionStage"], [35, 0, 1, "", "LoadNetworkResourceOptions"], [35, 0, 1, "", "LoadNetworkResourcePageResult"], [35, 0, 1, "", "LoaderId"], [35, 0, 1, "", "LoadingFailed"], [35, 0, 1, "", "LoadingFinished"], [35, 0, 1, "", "MonotonicTime"], [35, 0, 1, "", "PolicyUpdated"], [35, 0, 1, "", "PostDataEntry"], [35, 0, 1, "", "PrivateNetworkRequestPolicy"], [35, 0, 1, "", "ReportId"], [35, 0, 1, "", "ReportStatus"], [35, 0, 1, "", "ReportingApiEndpoint"], [35, 0, 1, "", "ReportingApiEndpointsChangedForOrigin"], [35, 0, 1, "", "ReportingApiReport"], [35, 0, 1, "", "ReportingApiReportAdded"], [35, 0, 1, "", "ReportingApiReportUpdated"], [35, 0, 1, "", "Request"], [35, 0, 1, "", "RequestId"], [35, 0, 1, "", "RequestIntercepted"], [35, 0, 1, "", "RequestPattern"], [35, 0, 1, "", "RequestServedFromCache"], [35, 0, 1, "", "RequestWillBeSent"], [35, 0, 1, "", "RequestWillBeSentExtraInfo"], [35, 0, 1, "", "ResourceChangedPriority"], [35, 0, 1, "", "ResourcePriority"], [35, 0, 1, "", "ResourceTiming"], [35, 0, 1, "", "ResourceType"], [35, 0, 1, "", "Response"], [35, 0, 1, "", "ResponseReceived"], [35, 0, 1, "", "ResponseReceivedEarlyHints"], [35, 0, 1, "", "ResponseReceivedExtraInfo"], [35, 0, 1, "", "SecurityDetails"], [35, 0, 1, "", "SecurityIsolationStatus"], [35, 0, 1, "", "ServiceWorkerResponseSource"], [35, 0, 1, "", "ServiceWorkerRouterInfo"], [35, 0, 1, "", "ServiceWorkerRouterSource"], [35, 0, 1, "", "SetCookieBlockedReason"], [35, 0, 1, "", "SignedCertificateTimestamp"], [35, 0, 1, "", "SignedExchangeError"], [35, 0, 1, "", "SignedExchangeErrorField"], [35, 0, 1, "", "SignedExchangeHeader"], [35, 0, 1, "", "SignedExchangeInfo"], [35, 0, 1, "", "SignedExchangeReceived"], [35, 0, 1, "", "SignedExchangeSignature"], [35, 0, 1, "", "SubresourceWebBundleInnerResponseError"], [35, 0, 1, "", "SubresourceWebBundleInnerResponseParsed"], [35, 0, 1, "", "SubresourceWebBundleMetadataError"], [35, 0, 1, "", "SubresourceWebBundleMetadataReceived"], [35, 0, 1, "", "TimeSinceEpoch"], [35, 0, 1, "", "TrustTokenOperationDone"], [35, 0, 1, "", "TrustTokenOperationType"], [35, 0, 1, "", "TrustTokenParams"], [35, 0, 1, "", "WebSocketClosed"], [35, 0, 1, "", "WebSocketCreated"], [35, 0, 1, "", "WebSocketFrame"], [35, 0, 1, "", "WebSocketFrameError"], [35, 0, 1, "", "WebSocketFrameReceived"], [35, 0, 1, "", "WebSocketFrameSent"], [35, 0, 1, "", "WebSocketHandshakeResponseReceived"], [35, 0, 1, "", "WebSocketRequest"], [35, 0, 1, "", "WebSocketResponse"], [35, 0, 1, "", "WebSocketWillSendHandshakeRequest"], [35, 0, 1, "", "WebTransportClosed"], [35, 0, 1, "", "WebTransportConnectionEstablished"], [35, 0, 1, "", "WebTransportCreated"], [35, 5, 1, "", "can_clear_browser_cache"], [35, 5, 1, "", "can_clear_browser_cookies"], [35, 5, 1, "", "can_emulate_network_conditions"], [35, 5, 1, "", "clear_accepted_encodings_override"], [35, 5, 1, "", "clear_browser_cache"], [35, 5, 1, "", "clear_browser_cookies"], [35, 5, 1, "", "continue_intercepted_request"], [35, 5, 1, "", "delete_cookies"], [35, 5, 1, "", "disable"], [35, 5, 1, "", "emulate_network_conditions"], [35, 5, 1, "", "enable"], [35, 5, 1, "", "enable_reporting_api"], [35, 5, 1, "", "get_all_cookies"], [35, 5, 1, "", "get_certificate"], [35, 5, 1, "", "get_cookies"], [35, 5, 1, "", "get_request_post_data"], [35, 5, 1, "", "get_response_body"], [35, 5, 1, "", "get_response_body_for_interception"], [35, 5, 1, "", "get_security_isolation_status"], [35, 5, 1, "", "load_network_resource"], [35, 5, 1, "", "replay_xhr"], [35, 5, 1, "", "search_in_response_body"], [35, 5, 1, "", "set_accepted_encodings"], [35, 5, 1, "", "set_attach_debug_stack"], [35, 5, 1, "", "set_blocked_ur_ls"], [35, 5, 1, "", "set_bypass_service_worker"], [35, 5, 1, "", "set_cache_disabled"], [35, 5, 1, "", "set_cookie"], [35, 5, 1, "", "set_cookies"], [35, 5, 1, "", "set_extra_http_headers"], [35, 5, 1, "", "set_request_interception"], [35, 5, 1, "", "set_user_agent_override"], [35, 5, 1, "", "stream_resource_content"], [35, 5, 1, "", "take_response_body_for_interception_as_stream"]], "nodriver.cdp.network.AlternateProtocolUsage": [[35, 1, 1, "", "ALTERNATIVE_JOB_WON_RACE"], [35, 1, 1, "", "ALTERNATIVE_JOB_WON_WITHOUT_RACE"], [35, 1, 1, "", "BROKEN"], [35, 1, 1, "", "DNS_ALPN_H3_JOB_WON_RACE"], [35, 1, 1, "", "DNS_ALPN_H3_JOB_WON_WITHOUT_RACE"], [35, 1, 1, "", "MAIN_JOB_WON_RACE"], [35, 1, 1, "", "MAPPING_MISSING"], [35, 1, 1, "", "UNSPECIFIED_REASON"]], "nodriver.cdp.network.AssociatedCookie": [[35, 1, 1, "", "blocked_reasons"], [35, 1, 1, "", "cookie"], [35, 1, 1, "", "exemption_reason"]], "nodriver.cdp.network.AuthChallenge": [[35, 1, 1, "", "origin"], [35, 1, 1, "", "realm"], [35, 1, 1, "", "scheme"], [35, 1, 1, "", "source"]], "nodriver.cdp.network.AuthChallengeResponse": [[35, 1, 1, "", "password"], [35, 1, 1, "", "response"], [35, 1, 1, "", "username"]], "nodriver.cdp.network.BlockedReason": [[35, 1, 1, "", "COEP_FRAME_RESOURCE_NEEDS_COEP_HEADER"], [35, 1, 1, "", "CONTENT_TYPE"], [35, 1, 1, "", "COOP_SANDBOXED_IFRAME_CANNOT_NAVIGATE_TO_COOP_PAGE"], [35, 1, 1, "", "CORP_NOT_SAME_ORIGIN"], [35, 1, 1, "", "CORP_NOT_SAME_ORIGIN_AFTER_DEFAULTED_TO_SAME_ORIGIN_BY_COEP"], [35, 1, 1, "", "CORP_NOT_SAME_ORIGIN_AFTER_DEFAULTED_TO_SAME_ORIGIN_BY_COEP_AND_DIP"], [35, 1, 1, "", "CORP_NOT_SAME_ORIGIN_AFTER_DEFAULTED_TO_SAME_ORIGIN_BY_DIP"], [35, 1, 1, "", "CORP_NOT_SAME_SITE"], [35, 1, 1, "", "CSP"], [35, 1, 1, "", "INSPECTOR"], [35, 1, 1, "", "MIXED_CONTENT"], [35, 1, 1, "", "ORIGIN"], [35, 1, 1, "", "OTHER"], [35, 1, 1, "", "SUBRESOURCE_FILTER"]], "nodriver.cdp.network.BlockedSetCookieWithReason": [[35, 1, 1, "", "blocked_reasons"], [35, 1, 1, "", "cookie"], [35, 1, 1, "", "cookie_line"]], "nodriver.cdp.network.CachedResource": [[35, 1, 1, "", "body_size"], [35, 1, 1, "", "response"], [35, 1, 1, "", "type_"], [35, 1, 1, "", "url"]], "nodriver.cdp.network.CertificateTransparencyCompliance": [[35, 1, 1, "", "COMPLIANT"], [35, 1, 1, "", "NOT_COMPLIANT"], [35, 1, 1, "", "UNKNOWN"]], "nodriver.cdp.network.ClientSecurityState": [[35, 1, 1, "", "initiator_ip_address_space"], [35, 1, 1, "", "initiator_is_secure_context"], [35, 1, 1, "", "private_network_request_policy"]], "nodriver.cdp.network.ConnectTiming": [[35, 1, 1, "", "request_time"]], "nodriver.cdp.network.ConnectionType": [[35, 1, 1, "", "BLUETOOTH"], [35, 1, 1, "", "CELLULAR2G"], [35, 1, 1, "", "CELLULAR3G"], [35, 1, 1, "", "CELLULAR4G"], [35, 1, 1, "", "ETHERNET"], [35, 1, 1, "", "NONE"], [35, 1, 1, "", "OTHER"], [35, 1, 1, "", "WIFI"], [35, 1, 1, "", "WIMAX"]], "nodriver.cdp.network.ContentEncoding": [[35, 1, 1, "", "BR"], [35, 1, 1, "", "DEFLATE"], [35, 1, 1, "", "GZIP"], [35, 1, 1, "", "ZSTD"]], "nodriver.cdp.network.ContentSecurityPolicySource": [[35, 1, 1, "", "HTTP"], [35, 1, 1, "", "META"]], "nodriver.cdp.network.ContentSecurityPolicyStatus": [[35, 1, 1, "", "effective_directives"], [35, 1, 1, "", "is_enforced"], [35, 1, 1, "", "source"]], "nodriver.cdp.network.Cookie": [[35, 1, 1, "", "domain"], [35, 1, 1, "", "expires"], [35, 1, 1, "", "http_only"], [35, 1, 1, "", "name"], [35, 1, 1, "", "partition_key"], [35, 1, 1, "", "partition_key_opaque"], [35, 1, 1, "", "path"], [35, 1, 1, "", "priority"], [35, 1, 1, "", "same_party"], [35, 1, 1, "", "same_site"], [35, 1, 1, "", "secure"], [35, 1, 1, "", "session"], [35, 1, 1, "", "size"], [35, 1, 1, "", "source_port"], [35, 1, 1, "", "source_scheme"], [35, 1, 1, "", "value"]], "nodriver.cdp.network.CookieBlockedReason": [[35, 1, 1, "", "DOMAIN_MISMATCH"], [35, 1, 1, "", "NAME_VALUE_PAIR_EXCEEDS_MAX_SIZE"], [35, 1, 1, "", "NOT_ON_PATH"], [35, 1, 1, "", "SAME_PARTY_FROM_CROSS_PARTY_CONTEXT"], [35, 1, 1, "", "SAME_SITE_LAX"], [35, 1, 1, "", "SAME_SITE_NONE_INSECURE"], [35, 1, 1, "", "SAME_SITE_STRICT"], [35, 1, 1, "", "SAME_SITE_UNSPECIFIED_TREATED_AS_LAX"], [35, 1, 1, "", "SCHEMEFUL_SAME_SITE_LAX"], [35, 1, 1, "", "SCHEMEFUL_SAME_SITE_STRICT"], [35, 1, 1, "", "SCHEMEFUL_SAME_SITE_UNSPECIFIED_TREATED_AS_LAX"], [35, 1, 1, "", "SECURE_ONLY"], [35, 1, 1, "", "THIRD_PARTY_BLOCKED_IN_FIRST_PARTY_SET"], [35, 1, 1, "", "THIRD_PARTY_PHASEOUT"], [35, 1, 1, "", "UNKNOWN_ERROR"], [35, 1, 1, "", "USER_PREFERENCES"]], "nodriver.cdp.network.CookieExemptionReason": [[35, 1, 1, "", "CORS_OPT_IN"], [35, 1, 1, "", "ENTERPRISE_POLICY"], [35, 1, 1, "", "NONE"], [35, 1, 1, "", "SCHEME"], [35, 1, 1, "", "STORAGE_ACCESS"], [35, 1, 1, "", "TOP_LEVEL_STORAGE_ACCESS"], [35, 1, 1, "", "TPCD_DEPRECATION_TRIAL"], [35, 1, 1, "", "TPCD_HEURISTICS"], [35, 1, 1, "", "TPCD_METADATA"], [35, 1, 1, "", "USER_SETTING"]], "nodriver.cdp.network.CookieParam": [[35, 1, 1, "", "domain"], [35, 1, 1, "", "expires"], [35, 1, 1, "", "http_only"], [35, 1, 1, "", "name"], [35, 1, 1, "", "partition_key"], [35, 1, 1, "", "path"], [35, 1, 1, "", "priority"], [35, 1, 1, "", "same_party"], [35, 1, 1, "", "same_site"], [35, 1, 1, "", "secure"], [35, 1, 1, "", "source_port"], [35, 1, 1, "", "source_scheme"], [35, 1, 1, "", "url"], [35, 1, 1, "", "value"]], "nodriver.cdp.network.CookiePartitionKey": [[35, 1, 1, "", "has_cross_site_ancestor"], [35, 1, 1, "", "top_level_site"]], "nodriver.cdp.network.CookiePriority": [[35, 1, 1, "", "HIGH"], [35, 1, 1, "", "LOW"], [35, 1, 1, "", "MEDIUM"]], "nodriver.cdp.network.CookieSameSite": [[35, 1, 1, "", "LAX"], [35, 1, 1, "", "NONE"], [35, 1, 1, "", "STRICT"]], "nodriver.cdp.network.CookieSourceScheme": [[35, 1, 1, "", "NON_SECURE"], [35, 1, 1, "", "SECURE"], [35, 1, 1, "", "UNSET"]], "nodriver.cdp.network.CorsError": [[35, 1, 1, "", "ALLOW_ORIGIN_MISMATCH"], [35, 1, 1, "", "CORS_DISABLED_SCHEME"], [35, 1, 1, "", "DISALLOWED_BY_MODE"], [35, 1, 1, "", "HEADER_DISALLOWED_BY_PREFLIGHT_RESPONSE"], [35, 1, 1, "", "INSECURE_PRIVATE_NETWORK"], [35, 1, 1, "", "INVALID_ALLOW_CREDENTIALS"], [35, 1, 1, "", "INVALID_ALLOW_HEADERS_PREFLIGHT_RESPONSE"], [35, 1, 1, "", "INVALID_ALLOW_METHODS_PREFLIGHT_RESPONSE"], [35, 1, 1, "", "INVALID_ALLOW_ORIGIN_VALUE"], [35, 1, 1, "", "INVALID_PRIVATE_NETWORK_ACCESS"], [35, 1, 1, "", "INVALID_RESPONSE"], [35, 1, 1, "", "METHOD_DISALLOWED_BY_PREFLIGHT_RESPONSE"], [35, 1, 1, "", "MISSING_ALLOW_ORIGIN_HEADER"], [35, 1, 1, "", "MULTIPLE_ALLOW_ORIGIN_VALUES"], [35, 1, 1, "", "NO_CORS_REDIRECT_MODE_NOT_FOLLOW"], [35, 1, 1, "", "PREFLIGHT_ALLOW_ORIGIN_MISMATCH"], [35, 1, 1, "", "PREFLIGHT_DISALLOWED_REDIRECT"], [35, 1, 1, "", "PREFLIGHT_INVALID_ALLOW_CREDENTIALS"], [35, 1, 1, "", "PREFLIGHT_INVALID_ALLOW_EXTERNAL"], [35, 1, 1, "", "PREFLIGHT_INVALID_ALLOW_ORIGIN_VALUE"], [35, 1, 1, "", "PREFLIGHT_INVALID_ALLOW_PRIVATE_NETWORK"], [35, 1, 1, "", "PREFLIGHT_INVALID_STATUS"], [35, 1, 1, "", "PREFLIGHT_MISSING_ALLOW_EXTERNAL"], [35, 1, 1, "", "PREFLIGHT_MISSING_ALLOW_ORIGIN_HEADER"], [35, 1, 1, "", "PREFLIGHT_MISSING_ALLOW_PRIVATE_NETWORK"], [35, 1, 1, "", "PREFLIGHT_MISSING_PRIVATE_NETWORK_ACCESS_ID"], [35, 1, 1, "", "PREFLIGHT_MISSING_PRIVATE_NETWORK_ACCESS_NAME"], [35, 1, 1, "", "PREFLIGHT_MULTIPLE_ALLOW_ORIGIN_VALUES"], [35, 1, 1, "", "PREFLIGHT_WILDCARD_ORIGIN_NOT_ALLOWED"], [35, 1, 1, "", "PRIVATE_NETWORK_ACCESS_PERMISSION_DENIED"], [35, 1, 1, "", "PRIVATE_NETWORK_ACCESS_PERMISSION_UNAVAILABLE"], [35, 1, 1, "", "REDIRECT_CONTAINS_CREDENTIALS"], [35, 1, 1, "", "UNEXPECTED_PRIVATE_NETWORK_ACCESS"], [35, 1, 1, "", "WILDCARD_ORIGIN_NOT_ALLOWED"]], "nodriver.cdp.network.CorsErrorStatus": [[35, 1, 1, "", "cors_error"], [35, 1, 1, "", "failed_parameter"]], "nodriver.cdp.network.CrossOriginEmbedderPolicyStatus": [[35, 1, 1, "", "report_only_reporting_endpoint"], [35, 1, 1, "", "report_only_value"], [35, 1, 1, "", "reporting_endpoint"], [35, 1, 1, "", "value"]], "nodriver.cdp.network.CrossOriginEmbedderPolicyValue": [[35, 1, 1, "", "CREDENTIALLESS"], [35, 1, 1, "", "NONE"], [35, 1, 1, "", "REQUIRE_CORP"]], "nodriver.cdp.network.CrossOriginOpenerPolicyStatus": [[35, 1, 1, "", "report_only_reporting_endpoint"], [35, 1, 1, "", "report_only_value"], [35, 1, 1, "", "reporting_endpoint"], [35, 1, 1, "", "value"]], "nodriver.cdp.network.CrossOriginOpenerPolicyValue": [[35, 1, 1, "", "RESTRICT_PROPERTIES"], [35, 1, 1, "", "RESTRICT_PROPERTIES_PLUS_COEP"], [35, 1, 1, "", "SAME_ORIGIN"], [35, 1, 1, "", "SAME_ORIGIN_ALLOW_POPUPS"], [35, 1, 1, "", "SAME_ORIGIN_PLUS_COEP"], [35, 1, 1, "", "UNSAFE_NONE"]], "nodriver.cdp.network.DataReceived": [[35, 1, 1, "", "data"], [35, 1, 1, "", "data_length"], [35, 1, 1, "", "encoded_data_length"], [35, 1, 1, "", "request_id"], [35, 1, 1, "", "timestamp"]], "nodriver.cdp.network.ErrorReason": [[35, 1, 1, "", "ABORTED"], [35, 1, 1, "", "ACCESS_DENIED"], [35, 1, 1, "", "ADDRESS_UNREACHABLE"], [35, 1, 1, "", "BLOCKED_BY_CLIENT"], [35, 1, 1, "", "BLOCKED_BY_RESPONSE"], [35, 1, 1, "", "CONNECTION_ABORTED"], [35, 1, 1, "", "CONNECTION_CLOSED"], [35, 1, 1, "", "CONNECTION_FAILED"], [35, 1, 1, "", "CONNECTION_REFUSED"], [35, 1, 1, "", "CONNECTION_RESET"], [35, 1, 1, "", "FAILED"], [35, 1, 1, "", "INTERNET_DISCONNECTED"], [35, 1, 1, "", "NAME_NOT_RESOLVED"], [35, 1, 1, "", "TIMED_OUT"]], "nodriver.cdp.network.EventSourceMessageReceived": [[35, 1, 1, "", "data"], [35, 1, 1, "", "event_id"], [35, 1, 1, "", "event_name"], [35, 1, 1, "", "request_id"], [35, 1, 1, "", "timestamp"]], "nodriver.cdp.network.ExemptedSetCookieWithReason": [[35, 1, 1, "", "cookie"], [35, 1, 1, "", "cookie_line"], [35, 1, 1, "", "exemption_reason"]], "nodriver.cdp.network.IPAddressSpace": [[35, 1, 1, "", "LOCAL"], [35, 1, 1, "", "PRIVATE"], [35, 1, 1, "", "PUBLIC"], [35, 1, 1, "", "UNKNOWN"]], "nodriver.cdp.network.Initiator": [[35, 1, 1, "", "column_number"], [35, 1, 1, "", "line_number"], [35, 1, 1, "", "request_id"], [35, 1, 1, "", "stack"], [35, 1, 1, "", "type_"], [35, 1, 1, "", "url"]], "nodriver.cdp.network.InterceptionStage": [[35, 1, 1, "", "HEADERS_RECEIVED"], [35, 1, 1, "", "REQUEST"]], "nodriver.cdp.network.LoadNetworkResourceOptions": [[35, 1, 1, "", "disable_cache"], [35, 1, 1, "", "include_credentials"]], "nodriver.cdp.network.LoadNetworkResourcePageResult": [[35, 1, 1, "", "headers"], [35, 1, 1, "", "http_status_code"], [35, 1, 1, "", "net_error"], [35, 1, 1, "", "net_error_name"], [35, 1, 1, "", "stream"], [35, 1, 1, "", "success"]], "nodriver.cdp.network.LoadingFailed": [[35, 1, 1, "", "blocked_reason"], [35, 1, 1, "", "canceled"], [35, 1, 1, "", "cors_error_status"], [35, 1, 1, "", "error_text"], [35, 1, 1, "", "request_id"], [35, 1, 1, "", "timestamp"], [35, 1, 1, "", "type_"]], "nodriver.cdp.network.LoadingFinished": [[35, 1, 1, "", "encoded_data_length"], [35, 1, 1, "", "request_id"], [35, 1, 1, "", "timestamp"]], "nodriver.cdp.network.PostDataEntry": [[35, 1, 1, "", "bytes_"]], "nodriver.cdp.network.PrivateNetworkRequestPolicy": [[35, 1, 1, "", "ALLOW"], [35, 1, 1, "", "BLOCK_FROM_INSECURE_TO_MORE_PRIVATE"], [35, 1, 1, "", "PREFLIGHT_BLOCK"], [35, 1, 1, "", "PREFLIGHT_WARN"], [35, 1, 1, "", "WARN_FROM_INSECURE_TO_MORE_PRIVATE"]], "nodriver.cdp.network.ReportStatus": [[35, 1, 1, "", "MARKED_FOR_REMOVAL"], [35, 1, 1, "", "PENDING"], [35, 1, 1, "", "QUEUED"], [35, 1, 1, "", "SUCCESS"]], "nodriver.cdp.network.ReportingApiEndpoint": [[35, 1, 1, "", "group_name"], [35, 1, 1, "", "url"]], "nodriver.cdp.network.ReportingApiEndpointsChangedForOrigin": [[35, 1, 1, "", "endpoints"], [35, 1, 1, "", "origin"]], "nodriver.cdp.network.ReportingApiReport": [[35, 1, 1, "", "body"], [35, 1, 1, "", "completed_attempts"], [35, 1, 1, "", "depth"], [35, 1, 1, "", "destination"], [35, 1, 1, "", "id_"], [35, 1, 1, "", "initiator_url"], [35, 1, 1, "", "status"], [35, 1, 1, "", "timestamp"], [35, 1, 1, "", "type_"]], "nodriver.cdp.network.ReportingApiReportAdded": [[35, 1, 1, "", "report"]], "nodriver.cdp.network.ReportingApiReportUpdated": [[35, 1, 1, "", "report"]], "nodriver.cdp.network.Request": [[35, 1, 1, "", "has_post_data"], [35, 1, 1, "", "headers"], [35, 1, 1, "", "initial_priority"], [35, 1, 1, "", "is_link_preload"], [35, 1, 1, "", "is_same_site"], [35, 1, 1, "", "method"], [35, 1, 1, "", "mixed_content_type"], [35, 1, 1, "", "post_data"], [35, 1, 1, "", "post_data_entries"], [35, 1, 1, "", "referrer_policy"], [35, 1, 1, "", "trust_token_params"], [35, 1, 1, "", "url"], [35, 1, 1, "", "url_fragment"]], "nodriver.cdp.network.RequestIntercepted": [[35, 1, 1, "", "auth_challenge"], [35, 1, 1, "", "frame_id"], [35, 1, 1, "", "interception_id"], [35, 1, 1, "", "is_download"], [35, 1, 1, "", "is_navigation_request"], [35, 1, 1, "", "redirect_url"], [35, 1, 1, "", "request"], [35, 1, 1, "", "request_id"], [35, 1, 1, "", "resource_type"], [35, 1, 1, "", "response_error_reason"], [35, 1, 1, "", "response_headers"], [35, 1, 1, "", "response_status_code"]], "nodriver.cdp.network.RequestPattern": [[35, 1, 1, "", "interception_stage"], [35, 1, 1, "", "resource_type"], [35, 1, 1, "", "url_pattern"]], "nodriver.cdp.network.RequestServedFromCache": [[35, 1, 1, "", "request_id"]], "nodriver.cdp.network.RequestWillBeSent": [[35, 1, 1, "", "document_url"], [35, 1, 1, "", "frame_id"], [35, 1, 1, "", "has_user_gesture"], [35, 1, 1, "", "initiator"], [35, 1, 1, "", "loader_id"], [35, 1, 1, "", "redirect_has_extra_info"], [35, 1, 1, "", "redirect_response"], [35, 1, 1, "", "request"], [35, 1, 1, "", "request_id"], [35, 1, 1, "", "timestamp"], [35, 1, 1, "", "type_"], [35, 1, 1, "", "wall_time"]], "nodriver.cdp.network.RequestWillBeSentExtraInfo": [[35, 1, 1, "", "associated_cookies"], [35, 1, 1, "", "client_security_state"], [35, 1, 1, "", "connect_timing"], [35, 1, 1, "", "headers"], [35, 1, 1, "", "request_id"], [35, 1, 1, "", "site_has_cookie_in_other_partition"]], "nodriver.cdp.network.ResourceChangedPriority": [[35, 1, 1, "", "new_priority"], [35, 1, 1, "", "request_id"], [35, 1, 1, "", "timestamp"]], "nodriver.cdp.network.ResourcePriority": [[35, 1, 1, "", "HIGH"], [35, 1, 1, "", "LOW"], [35, 1, 1, "", "MEDIUM"], [35, 1, 1, "", "VERY_HIGH"], [35, 1, 1, "", "VERY_LOW"]], "nodriver.cdp.network.ResourceTiming": [[35, 1, 1, "", "connect_end"], [35, 1, 1, "", "connect_start"], [35, 1, 1, "", "dns_end"], [35, 1, 1, "", "dns_start"], [35, 1, 1, "", "proxy_end"], [35, 1, 1, "", "proxy_start"], [35, 1, 1, "", "push_end"], [35, 1, 1, "", "push_start"], [35, 1, 1, "", "receive_headers_end"], [35, 1, 1, "", "receive_headers_start"], [35, 1, 1, "", "request_time"], [35, 1, 1, "", "send_end"], [35, 1, 1, "", "send_start"], [35, 1, 1, "", "ssl_end"], [35, 1, 1, "", "ssl_start"], [35, 1, 1, "", "worker_cache_lookup_start"], [35, 1, 1, "", "worker_fetch_start"], [35, 1, 1, "", "worker_ready"], [35, 1, 1, "", "worker_respond_with_settled"], [35, 1, 1, "", "worker_router_evaluation_start"], [35, 1, 1, "", "worker_start"]], "nodriver.cdp.network.ResourceType": [[35, 1, 1, "", "CSP_VIOLATION_REPORT"], [35, 1, 1, "", "DOCUMENT"], [35, 1, 1, "", "EVENT_SOURCE"], [35, 1, 1, "", "FETCH"], [35, 1, 1, "", "FONT"], [35, 1, 1, "", "IMAGE"], [35, 1, 1, "", "MANIFEST"], [35, 1, 1, "", "MEDIA"], [35, 1, 1, "", "OTHER"], [35, 1, 1, "", "PING"], [35, 1, 1, "", "PREFETCH"], [35, 1, 1, "", "PREFLIGHT"], [35, 1, 1, "", "SCRIPT"], [35, 1, 1, "", "SIGNED_EXCHANGE"], [35, 1, 1, "", "STYLESHEET"], [35, 1, 1, "", "TEXT_TRACK"], [35, 1, 1, "", "WEB_SOCKET"], [35, 1, 1, "", "XHR"]], "nodriver.cdp.network.Response": [[35, 1, 1, "", "alternate_protocol_usage"], [35, 1, 1, "", "cache_storage_cache_name"], [35, 1, 1, "", "charset"], [35, 1, 1, "", "connection_id"], [35, 1, 1, "", "connection_reused"], [35, 1, 1, "", "encoded_data_length"], [35, 1, 1, "", "from_disk_cache"], [35, 1, 1, "", "from_early_hints"], [35, 1, 1, "", "from_prefetch_cache"], [35, 1, 1, "", "from_service_worker"], [35, 1, 1, "", "headers"], [35, 1, 1, "", "headers_text"], [35, 1, 1, "", "mime_type"], [35, 1, 1, "", "protocol"], [35, 1, 1, "", "remote_ip_address"], [35, 1, 1, "", "remote_port"], [35, 1, 1, "", "request_headers"], [35, 1, 1, "", "request_headers_text"], [35, 1, 1, "", "response_time"], [35, 1, 1, "", "security_details"], [35, 1, 1, "", "security_state"], [35, 1, 1, "", "service_worker_response_source"], [35, 1, 1, "", "service_worker_router_info"], [35, 1, 1, "", "status"], [35, 1, 1, "", "status_text"], [35, 1, 1, "", "timing"], [35, 1, 1, "", "url"]], "nodriver.cdp.network.ResponseReceived": [[35, 1, 1, "", "frame_id"], [35, 1, 1, "", "has_extra_info"], [35, 1, 1, "", "loader_id"], [35, 1, 1, "", "request_id"], [35, 1, 1, "", "response"], [35, 1, 1, "", "timestamp"], [35, 1, 1, "", "type_"]], "nodriver.cdp.network.ResponseReceivedEarlyHints": [[35, 1, 1, "", "headers"], [35, 1, 1, "", "request_id"]], "nodriver.cdp.network.ResponseReceivedExtraInfo": [[35, 1, 1, "", "blocked_cookies"], [35, 1, 1, "", "cookie_partition_key"], [35, 1, 1, "", "cookie_partition_key_opaque"], [35, 1, 1, "", "exempted_cookies"], [35, 1, 1, "", "headers"], [35, 1, 1, "", "headers_text"], [35, 1, 1, "", "request_id"], [35, 1, 1, "", "resource_ip_address_space"], [35, 1, 1, "", "status_code"]], "nodriver.cdp.network.SecurityDetails": [[35, 1, 1, "", "certificate_id"], [35, 1, 1, "", "certificate_transparency_compliance"], [35, 1, 1, "", "cipher"], [35, 1, 1, "", "encrypted_client_hello"], [35, 1, 1, "", "issuer"], [35, 1, 1, "", "key_exchange"], [35, 1, 1, "", "key_exchange_group"], [35, 1, 1, "", "mac"], [35, 1, 1, "", "protocol"], [35, 1, 1, "", "san_list"], [35, 1, 1, "", "server_signature_algorithm"], [35, 1, 1, "", "signed_certificate_timestamp_list"], [35, 1, 1, "", "subject_name"], [35, 1, 1, "", "valid_from"], [35, 1, 1, "", "valid_to"]], "nodriver.cdp.network.SecurityIsolationStatus": [[35, 1, 1, "", "coep"], [35, 1, 1, "", "coop"], [35, 1, 1, "", "csp"]], "nodriver.cdp.network.ServiceWorkerResponseSource": [[35, 1, 1, "", "CACHE_STORAGE"], [35, 1, 1, "", "FALLBACK_CODE"], [35, 1, 1, "", "HTTP_CACHE"], [35, 1, 1, "", "NETWORK"]], "nodriver.cdp.network.ServiceWorkerRouterInfo": [[35, 1, 1, "", "actual_source_type"], [35, 1, 1, "", "matched_source_type"], [35, 1, 1, "", "rule_id_matched"]], "nodriver.cdp.network.ServiceWorkerRouterSource": [[35, 1, 1, "", "CACHE"], [35, 1, 1, "", "FETCH_EVENT"], [35, 1, 1, "", "NETWORK"], [35, 1, 1, "", "RACE_NETWORK_AND_FETCH_HANDLER"]], "nodriver.cdp.network.SetCookieBlockedReason": [[35, 1, 1, "", "DISALLOWED_CHARACTER"], [35, 1, 1, "", "INVALID_DOMAIN"], [35, 1, 1, "", "INVALID_PREFIX"], [35, 1, 1, "", "NAME_VALUE_PAIR_EXCEEDS_MAX_SIZE"], [35, 1, 1, "", "NO_COOKIE_CONTENT"], [35, 1, 1, "", "OVERWRITE_SECURE"], [35, 1, 1, "", "SAME_PARTY_CONFLICTS_WITH_OTHER_ATTRIBUTES"], [35, 1, 1, "", "SAME_PARTY_FROM_CROSS_PARTY_CONTEXT"], [35, 1, 1, "", "SAME_SITE_LAX"], [35, 1, 1, "", "SAME_SITE_NONE_INSECURE"], [35, 1, 1, "", "SAME_SITE_STRICT"], [35, 1, 1, "", "SAME_SITE_UNSPECIFIED_TREATED_AS_LAX"], [35, 1, 1, "", "SCHEMEFUL_SAME_SITE_LAX"], [35, 1, 1, "", "SCHEMEFUL_SAME_SITE_STRICT"], [35, 1, 1, "", "SCHEMEFUL_SAME_SITE_UNSPECIFIED_TREATED_AS_LAX"], [35, 1, 1, "", "SCHEME_NOT_SUPPORTED"], [35, 1, 1, "", "SECURE_ONLY"], [35, 1, 1, "", "SYNTAX_ERROR"], [35, 1, 1, "", "THIRD_PARTY_BLOCKED_IN_FIRST_PARTY_SET"], [35, 1, 1, "", "THIRD_PARTY_PHASEOUT"], [35, 1, 1, "", "UNKNOWN_ERROR"], [35, 1, 1, "", "USER_PREFERENCES"]], "nodriver.cdp.network.SignedCertificateTimestamp": [[35, 1, 1, "", "hash_algorithm"], [35, 1, 1, "", "log_description"], [35, 1, 1, "", "log_id"], [35, 1, 1, "", "origin"], [35, 1, 1, "", "signature_algorithm"], [35, 1, 1, "", "signature_data"], [35, 1, 1, "", "status"], [35, 1, 1, "", "timestamp"]], "nodriver.cdp.network.SignedExchangeError": [[35, 1, 1, "", "error_field"], [35, 1, 1, "", "message"], [35, 1, 1, "", "signature_index"]], "nodriver.cdp.network.SignedExchangeErrorField": [[35, 1, 1, "", "SIGNATURE_CERT_SHA256"], [35, 1, 1, "", "SIGNATURE_CERT_URL"], [35, 1, 1, "", "SIGNATURE_INTEGRITY"], [35, 1, 1, "", "SIGNATURE_SIG"], [35, 1, 1, "", "SIGNATURE_TIMESTAMPS"], [35, 1, 1, "", "SIGNATURE_VALIDITY_URL"]], "nodriver.cdp.network.SignedExchangeHeader": [[35, 1, 1, "", "header_integrity"], [35, 1, 1, "", "request_url"], [35, 1, 1, "", "response_code"], [35, 1, 1, "", "response_headers"], [35, 1, 1, "", "signatures"]], "nodriver.cdp.network.SignedExchangeInfo": [[35, 1, 1, "", "errors"], [35, 1, 1, "", "header"], [35, 1, 1, "", "outer_response"], [35, 1, 1, "", "security_details"]], "nodriver.cdp.network.SignedExchangeReceived": [[35, 1, 1, "", "info"], [35, 1, 1, "", "request_id"]], "nodriver.cdp.network.SignedExchangeSignature": [[35, 1, 1, "", "cert_sha256"], [35, 1, 1, "", "cert_url"], [35, 1, 1, "", "certificates"], [35, 1, 1, "", "date"], [35, 1, 1, "", "expires"], [35, 1, 1, "", "integrity"], [35, 1, 1, "", "label"], [35, 1, 1, "", "signature"], [35, 1, 1, "", "validity_url"]], "nodriver.cdp.network.SubresourceWebBundleInnerResponseError": [[35, 1, 1, "", "bundle_request_id"], [35, 1, 1, "", "error_message"], [35, 1, 1, "", "inner_request_id"], [35, 1, 1, "", "inner_request_url"]], "nodriver.cdp.network.SubresourceWebBundleInnerResponseParsed": [[35, 1, 1, "", "bundle_request_id"], [35, 1, 1, "", "inner_request_id"], [35, 1, 1, "", "inner_request_url"]], "nodriver.cdp.network.SubresourceWebBundleMetadataError": [[35, 1, 1, "", "error_message"], [35, 1, 1, "", "request_id"]], "nodriver.cdp.network.SubresourceWebBundleMetadataReceived": [[35, 1, 1, "", "request_id"], [35, 1, 1, "", "urls"]], "nodriver.cdp.network.TrustTokenOperationDone": [[35, 1, 1, "", "issued_token_count"], [35, 1, 1, "", "issuer_origin"], [35, 1, 1, "", "request_id"], [35, 1, 1, "", "status"], [35, 1, 1, "", "top_level_origin"], [35, 1, 1, "", "type_"]], "nodriver.cdp.network.TrustTokenOperationType": [[35, 1, 1, "", "ISSUANCE"], [35, 1, 1, "", "REDEMPTION"], [35, 1, 1, "", "SIGNING"]], "nodriver.cdp.network.TrustTokenParams": [[35, 1, 1, "", "issuers"], [35, 1, 1, "", "operation"], [35, 1, 1, "", "refresh_policy"]], "nodriver.cdp.network.WebSocketClosed": [[35, 1, 1, "", "request_id"], [35, 1, 1, "", "timestamp"]], "nodriver.cdp.network.WebSocketCreated": [[35, 1, 1, "", "initiator"], [35, 1, 1, "", "request_id"], [35, 1, 1, "", "url"]], "nodriver.cdp.network.WebSocketFrame": [[35, 1, 1, "", "mask"], [35, 1, 1, "", "opcode"], [35, 1, 1, "", "payload_data"]], "nodriver.cdp.network.WebSocketFrameError": [[35, 1, 1, "", "error_message"], [35, 1, 1, "", "request_id"], [35, 1, 1, "", "timestamp"]], "nodriver.cdp.network.WebSocketFrameReceived": [[35, 1, 1, "", "request_id"], [35, 1, 1, "", "response"], [35, 1, 1, "", "timestamp"]], "nodriver.cdp.network.WebSocketFrameSent": [[35, 1, 1, "", "request_id"], [35, 1, 1, "", "response"], [35, 1, 1, "", "timestamp"]], "nodriver.cdp.network.WebSocketHandshakeResponseReceived": [[35, 1, 1, "", "request_id"], [35, 1, 1, "", "response"], [35, 1, 1, "", "timestamp"]], "nodriver.cdp.network.WebSocketRequest": [[35, 1, 1, "", "headers"]], "nodriver.cdp.network.WebSocketResponse": [[35, 1, 1, "", "headers"], [35, 1, 1, "", "headers_text"], [35, 1, 1, "", "request_headers"], [35, 1, 1, "", "request_headers_text"], [35, 1, 1, "", "status"], [35, 1, 1, "", "status_text"]], "nodriver.cdp.network.WebSocketWillSendHandshakeRequest": [[35, 1, 1, "", "request"], [35, 1, 1, "", "request_id"], [35, 1, 1, "", "timestamp"], [35, 1, 1, "", "wall_time"]], "nodriver.cdp.network.WebTransportClosed": [[35, 1, 1, "", "timestamp"], [35, 1, 1, "", "transport_id"]], "nodriver.cdp.network.WebTransportConnectionEstablished": [[35, 1, 1, "", "timestamp"], [35, 1, 1, "", "transport_id"]], "nodriver.cdp.network.WebTransportCreated": [[35, 1, 1, "", "initiator"], [35, 1, 1, "", "timestamp"], [35, 1, 1, "", "transport_id"], [35, 1, 1, "", "url"]], "nodriver.cdp.overlay": [[36, 0, 1, "", "BoxStyle"], [36, 0, 1, "", "ColorFormat"], [36, 0, 1, "", "ContainerQueryContainerHighlightConfig"], [36, 0, 1, "", "ContainerQueryHighlightConfig"], [36, 0, 1, "", "ContrastAlgorithm"], [36, 0, 1, "", "FlexContainerHighlightConfig"], [36, 0, 1, "", "FlexItemHighlightConfig"], [36, 0, 1, "", "FlexNodeHighlightConfig"], [36, 0, 1, "", "GridHighlightConfig"], [36, 0, 1, "", "GridNodeHighlightConfig"], [36, 0, 1, "", "HighlightConfig"], [36, 0, 1, "", "HingeConfig"], [36, 0, 1, "", "InspectMode"], [36, 0, 1, "", "InspectModeCanceled"], [36, 0, 1, "", "InspectNodeRequested"], [36, 0, 1, "", "IsolatedElementHighlightConfig"], [36, 0, 1, "", "IsolationModeHighlightConfig"], [36, 0, 1, "", "LineStyle"], [36, 0, 1, "", "NodeHighlightRequested"], [36, 0, 1, "", "ScreenshotRequested"], [36, 0, 1, "", "ScrollSnapContainerHighlightConfig"], [36, 0, 1, "", "ScrollSnapHighlightConfig"], [36, 0, 1, "", "SourceOrderConfig"], [36, 0, 1, "", "WindowControlsOverlayConfig"], [36, 5, 1, "", "disable"], [36, 5, 1, "", "enable"], [36, 5, 1, "", "get_grid_highlight_objects_for_test"], [36, 5, 1, "", "get_highlight_object_for_test"], [36, 5, 1, "", "get_source_order_highlight_object_for_test"], [36, 5, 1, "", "hide_highlight"], [36, 5, 1, "", "highlight_frame"], [36, 5, 1, "", "highlight_node"], [36, 5, 1, "", "highlight_quad"], [36, 5, 1, "", "highlight_rect"], [36, 5, 1, "", "highlight_source_order"], [36, 5, 1, "", "set_inspect_mode"], [36, 5, 1, "", "set_paused_in_debugger_message"], [36, 5, 1, "", "set_show_ad_highlights"], [36, 5, 1, "", "set_show_container_query_overlays"], [36, 5, 1, "", "set_show_debug_borders"], [36, 5, 1, "", "set_show_flex_overlays"], [36, 5, 1, "", "set_show_fps_counter"], [36, 5, 1, "", "set_show_grid_overlays"], [36, 5, 1, "", "set_show_hinge"], [36, 5, 1, "", "set_show_hit_test_borders"], [36, 5, 1, "", "set_show_isolated_elements"], [36, 5, 1, "", "set_show_layout_shift_regions"], [36, 5, 1, "", "set_show_paint_rects"], [36, 5, 1, "", "set_show_scroll_bottleneck_rects"], [36, 5, 1, "", "set_show_scroll_snap_overlays"], [36, 5, 1, "", "set_show_viewport_size_on_resize"], [36, 5, 1, "", "set_show_web_vitals"], [36, 5, 1, "", "set_show_window_controls_overlay"]], "nodriver.cdp.overlay.BoxStyle": [[36, 1, 1, "", "fill_color"], [36, 1, 1, "", "hatch_color"]], "nodriver.cdp.overlay.ColorFormat": [[36, 1, 1, "", "HEX_"], [36, 1, 1, "", "HSL"], [36, 1, 1, "", "HWB"], [36, 1, 1, "", "RGB"]], "nodriver.cdp.overlay.ContainerQueryContainerHighlightConfig": [[36, 1, 1, "", "container_border"], [36, 1, 1, "", "descendant_border"]], "nodriver.cdp.overlay.ContainerQueryHighlightConfig": [[36, 1, 1, "", "container_query_container_highlight_config"], [36, 1, 1, "", "node_id"]], "nodriver.cdp.overlay.ContrastAlgorithm": [[36, 1, 1, "", "AA"], [36, 1, 1, "", "AAA"], [36, 1, 1, "", "APCA"]], "nodriver.cdp.overlay.FlexContainerHighlightConfig": [[36, 1, 1, "", "column_gap_space"], [36, 1, 1, "", "container_border"], [36, 1, 1, "", "cross_alignment"], [36, 1, 1, "", "cross_distributed_space"], [36, 1, 1, "", "item_separator"], [36, 1, 1, "", "line_separator"], [36, 1, 1, "", "main_distributed_space"], [36, 1, 1, "", "row_gap_space"]], "nodriver.cdp.overlay.FlexItemHighlightConfig": [[36, 1, 1, "", "base_size_border"], [36, 1, 1, "", "base_size_box"], [36, 1, 1, "", "flexibility_arrow"]], "nodriver.cdp.overlay.FlexNodeHighlightConfig": [[36, 1, 1, "", "flex_container_highlight_config"], [36, 1, 1, "", "node_id"]], "nodriver.cdp.overlay.GridHighlightConfig": [[36, 1, 1, "", "area_border_color"], [36, 1, 1, "", "cell_border_color"], [36, 1, 1, "", "cell_border_dash"], [36, 1, 1, "", "column_gap_color"], [36, 1, 1, "", "column_hatch_color"], [36, 1, 1, "", "column_line_color"], [36, 1, 1, "", "column_line_dash"], [36, 1, 1, "", "grid_background_color"], [36, 1, 1, "", "grid_border_color"], [36, 1, 1, "", "grid_border_dash"], [36, 1, 1, "", "row_gap_color"], [36, 1, 1, "", "row_hatch_color"], [36, 1, 1, "", "row_line_color"], [36, 1, 1, "", "row_line_dash"], [36, 1, 1, "", "show_area_names"], [36, 1, 1, "", "show_grid_extension_lines"], [36, 1, 1, "", "show_line_names"], [36, 1, 1, "", "show_negative_line_numbers"], [36, 1, 1, "", "show_positive_line_numbers"], [36, 1, 1, "", "show_track_sizes"]], "nodriver.cdp.overlay.GridNodeHighlightConfig": [[36, 1, 1, "", "grid_highlight_config"], [36, 1, 1, "", "node_id"]], "nodriver.cdp.overlay.HighlightConfig": [[36, 1, 1, "", "border_color"], [36, 1, 1, "", "color_format"], [36, 1, 1, "", "container_query_container_highlight_config"], [36, 1, 1, "", "content_color"], [36, 1, 1, "", "contrast_algorithm"], [36, 1, 1, "", "css_grid_color"], [36, 1, 1, "", "event_target_color"], [36, 1, 1, "", "flex_container_highlight_config"], [36, 1, 1, "", "flex_item_highlight_config"], [36, 1, 1, "", "grid_highlight_config"], [36, 1, 1, "", "margin_color"], [36, 1, 1, "", "padding_color"], [36, 1, 1, "", "shape_color"], [36, 1, 1, "", "shape_margin_color"], [36, 1, 1, "", "show_accessibility_info"], [36, 1, 1, "", "show_extension_lines"], [36, 1, 1, "", "show_info"], [36, 1, 1, "", "show_rulers"], [36, 1, 1, "", "show_styles"]], "nodriver.cdp.overlay.HingeConfig": [[36, 1, 1, "", "content_color"], [36, 1, 1, "", "outline_color"], [36, 1, 1, "", "rect"]], "nodriver.cdp.overlay.InspectMode": [[36, 1, 1, "", "CAPTURE_AREA_SCREENSHOT"], [36, 1, 1, "", "NONE"], [36, 1, 1, "", "SEARCH_FOR_NODE"], [36, 1, 1, "", "SEARCH_FOR_UA_SHADOW_DOM"], [36, 1, 1, "", "SHOW_DISTANCES"]], "nodriver.cdp.overlay.InspectNodeRequested": [[36, 1, 1, "", "backend_node_id"]], "nodriver.cdp.overlay.IsolatedElementHighlightConfig": [[36, 1, 1, "", "isolation_mode_highlight_config"], [36, 1, 1, "", "node_id"]], "nodriver.cdp.overlay.IsolationModeHighlightConfig": [[36, 1, 1, "", "mask_color"], [36, 1, 1, "", "resizer_color"], [36, 1, 1, "", "resizer_handle_color"]], "nodriver.cdp.overlay.LineStyle": [[36, 1, 1, "", "color"], [36, 1, 1, "", "pattern"]], "nodriver.cdp.overlay.NodeHighlightRequested": [[36, 1, 1, "", "node_id"]], "nodriver.cdp.overlay.ScreenshotRequested": [[36, 1, 1, "", "viewport"]], "nodriver.cdp.overlay.ScrollSnapContainerHighlightConfig": [[36, 1, 1, "", "scroll_margin_color"], [36, 1, 1, "", "scroll_padding_color"], [36, 1, 1, "", "snap_area_border"], [36, 1, 1, "", "snapport_border"]], "nodriver.cdp.overlay.ScrollSnapHighlightConfig": [[36, 1, 1, "", "node_id"], [36, 1, 1, "", "scroll_snap_container_highlight_config"]], "nodriver.cdp.overlay.SourceOrderConfig": [[36, 1, 1, "", "child_outline_color"], [36, 1, 1, "", "parent_outline_color"]], "nodriver.cdp.overlay.WindowControlsOverlayConfig": [[36, 1, 1, "", "selected_platform"], [36, 1, 1, "", "show_css"], [36, 1, 1, "", "theme_color"]], "nodriver.cdp.page": [[37, 0, 1, "", "AdFrameExplanation"], [37, 0, 1, "", "AdFrameStatus"], [37, 0, 1, "", "AdFrameType"], [37, 0, 1, "", "AdScriptId"], [37, 0, 1, "", "AppManifestError"], [37, 0, 1, "", "AppManifestParsedProperties"], [37, 0, 1, "", "AutoResponseMode"], [37, 0, 1, "", "BackForwardCacheBlockingDetails"], [37, 0, 1, "", "BackForwardCacheNotRestoredExplanation"], [37, 0, 1, "", "BackForwardCacheNotRestoredExplanationTree"], [37, 0, 1, "", "BackForwardCacheNotRestoredReason"], [37, 0, 1, "", "BackForwardCacheNotRestoredReasonType"], [37, 0, 1, "", "BackForwardCacheNotUsed"], [37, 0, 1, "", "ClientNavigationDisposition"], [37, 0, 1, "", "ClientNavigationReason"], [37, 0, 1, "", "CompilationCacheParams"], [37, 0, 1, "", "CompilationCacheProduced"], [37, 0, 1, "", "CrossOriginIsolatedContextType"], [37, 0, 1, "", "DialogType"], [37, 0, 1, "", "DocumentOpened"], [37, 0, 1, "", "DomContentEventFired"], [37, 0, 1, "", "DownloadProgress"], [37, 0, 1, "", "DownloadWillBegin"], [37, 0, 1, "", "FileChooserOpened"], [37, 0, 1, "", "FileFilter"], [37, 0, 1, "", "FileHandler"], [37, 0, 1, "", "FontFamilies"], [37, 0, 1, "", "FontSizes"], [37, 0, 1, "", "Frame"], [37, 0, 1, "", "FrameAttached"], [37, 0, 1, "", "FrameClearedScheduledNavigation"], [37, 0, 1, "", "FrameDetached"], [37, 0, 1, "", "FrameId"], [37, 0, 1, "", "FrameNavigated"], [37, 0, 1, "", "FrameRequestedNavigation"], [37, 0, 1, "", "FrameResized"], [37, 0, 1, "", "FrameResource"], [37, 0, 1, "", "FrameResourceTree"], [37, 0, 1, "", "FrameScheduledNavigation"], [37, 0, 1, "", "FrameStartedLoading"], [37, 0, 1, "", "FrameStoppedLoading"], [37, 0, 1, "", "FrameTree"], [37, 0, 1, "", "GatedAPIFeatures"], [37, 0, 1, "", "ImageResource"], [37, 0, 1, "", "InstallabilityError"], [37, 0, 1, "", "InstallabilityErrorArgument"], [37, 0, 1, "", "InterstitialHidden"], [37, 0, 1, "", "InterstitialShown"], [37, 0, 1, "", "JavascriptDialogClosed"], [37, 0, 1, "", "JavascriptDialogOpening"], [37, 0, 1, "", "LaunchHandler"], [37, 0, 1, "", "LayoutViewport"], [37, 0, 1, "", "LifecycleEvent"], [37, 0, 1, "", "LoadEventFired"], [37, 0, 1, "", "NavigatedWithinDocument"], [37, 0, 1, "", "NavigationEntry"], [37, 0, 1, "", "NavigationType"], [37, 0, 1, "", "OriginTrial"], [37, 0, 1, "", "OriginTrialStatus"], [37, 0, 1, "", "OriginTrialToken"], [37, 0, 1, "", "OriginTrialTokenStatus"], [37, 0, 1, "", "OriginTrialTokenWithStatus"], [37, 0, 1, "", "OriginTrialUsageRestriction"], [37, 0, 1, "", "PermissionsPolicyBlockLocator"], [37, 0, 1, "", "PermissionsPolicyBlockReason"], [37, 0, 1, "", "PermissionsPolicyFeature"], [37, 0, 1, "", "PermissionsPolicyFeatureState"], [37, 0, 1, "", "ProtocolHandler"], [37, 0, 1, "", "ReferrerPolicy"], [37, 0, 1, "", "RelatedApplication"], [37, 0, 1, "", "ScopeExtension"], [37, 0, 1, "", "ScreencastFrame"], [37, 0, 1, "", "ScreencastFrameMetadata"], [37, 0, 1, "", "ScreencastVisibilityChanged"], [37, 0, 1, "", "Screenshot"], [37, 0, 1, "", "ScriptFontFamilies"], [37, 0, 1, "", "ScriptIdentifier"], [37, 0, 1, "", "SecureContextType"], [37, 0, 1, "", "ShareTarget"], [37, 0, 1, "", "Shortcut"], [37, 0, 1, "", "TransitionType"], [37, 0, 1, "", "Viewport"], [37, 0, 1, "", "VisualViewport"], [37, 0, 1, "", "WebAppManifest"], [37, 0, 1, "", "WindowOpen"], [37, 5, 1, "", "add_compilation_cache"], [37, 5, 1, "", "add_script_to_evaluate_on_load"], [37, 5, 1, "", "add_script_to_evaluate_on_new_document"], [37, 5, 1, "", "bring_to_front"], [37, 5, 1, "", "capture_screenshot"], [37, 5, 1, "", "capture_snapshot"], [37, 5, 1, "", "clear_compilation_cache"], [37, 5, 1, "", "clear_device_metrics_override"], [37, 5, 1, "", "clear_device_orientation_override"], [37, 5, 1, "", "clear_geolocation_override"], [37, 5, 1, "", "close"], [37, 5, 1, "", "crash"], [37, 5, 1, "", "create_isolated_world"], [37, 5, 1, "", "delete_cookie"], [37, 5, 1, "", "disable"], [37, 5, 1, "", "enable"], [37, 5, 1, "", "generate_test_report"], [37, 5, 1, "", "get_ad_script_id"], [37, 5, 1, "", "get_app_id"], [37, 5, 1, "", "get_app_manifest"], [37, 5, 1, "", "get_frame_tree"], [37, 5, 1, "", "get_installability_errors"], [37, 5, 1, "", "get_layout_metrics"], [37, 5, 1, "", "get_manifest_icons"], [37, 5, 1, "", "get_navigation_history"], [37, 5, 1, "", "get_origin_trials"], [37, 5, 1, "", "get_permissions_policy_state"], [37, 5, 1, "", "get_resource_content"], [37, 5, 1, "", "get_resource_tree"], [37, 5, 1, "", "handle_java_script_dialog"], [37, 5, 1, "", "navigate"], [37, 5, 1, "", "navigate_to_history_entry"], [37, 5, 1, "", "print_to_pdf"], [37, 5, 1, "", "produce_compilation_cache"], [37, 5, 1, "", "reload"], [37, 5, 1, "", "remove_script_to_evaluate_on_load"], [37, 5, 1, "", "remove_script_to_evaluate_on_new_document"], [37, 5, 1, "", "reset_navigation_history"], [37, 5, 1, "", "screencast_frame_ack"], [37, 5, 1, "", "search_in_resource"], [37, 5, 1, "", "set_ad_blocking_enabled"], [37, 5, 1, "", "set_bypass_csp"], [37, 5, 1, "", "set_device_metrics_override"], [37, 5, 1, "", "set_device_orientation_override"], [37, 5, 1, "", "set_document_content"], [37, 5, 1, "", "set_download_behavior"], [37, 5, 1, "", "set_font_families"], [37, 5, 1, "", "set_font_sizes"], [37, 5, 1, "", "set_geolocation_override"], [37, 5, 1, "", "set_intercept_file_chooser_dialog"], [37, 5, 1, "", "set_lifecycle_events_enabled"], [37, 5, 1, "", "set_prerendering_allowed"], [37, 5, 1, "", "set_rph_registration_mode"], [37, 5, 1, "", "set_spc_transaction_mode"], [37, 5, 1, "", "set_touch_emulation_enabled"], [37, 5, 1, "", "set_web_lifecycle_state"], [37, 5, 1, "", "start_screencast"], [37, 5, 1, "", "stop_loading"], [37, 5, 1, "", "stop_screencast"], [37, 5, 1, "", "wait_for_debugger"]], "nodriver.cdp.page.AdFrameExplanation": [[37, 1, 1, "", "CREATED_BY_AD_SCRIPT"], [37, 1, 1, "", "MATCHED_BLOCKING_RULE"], [37, 1, 1, "", "PARENT_IS_AD"]], "nodriver.cdp.page.AdFrameStatus": [[37, 1, 1, "", "ad_frame_type"], [37, 1, 1, "", "explanations"]], "nodriver.cdp.page.AdFrameType": [[37, 1, 1, "", "CHILD"], [37, 1, 1, "", "NONE"], [37, 1, 1, "", "ROOT"]], "nodriver.cdp.page.AdScriptId": [[37, 1, 1, "", "debugger_id"], [37, 1, 1, "", "script_id"]], "nodriver.cdp.page.AppManifestError": [[37, 1, 1, "", "column"], [37, 1, 1, "", "critical"], [37, 1, 1, "", "line"], [37, 1, 1, "", "message"]], "nodriver.cdp.page.AppManifestParsedProperties": [[37, 1, 1, "", "scope"]], "nodriver.cdp.page.AutoResponseMode": [[37, 1, 1, "", "AUTO_ACCEPT"], [37, 1, 1, "", "AUTO_OPT_OUT"], [37, 1, 1, "", "AUTO_REJECT"], [37, 1, 1, "", "NONE"]], "nodriver.cdp.page.BackForwardCacheBlockingDetails": [[37, 1, 1, "", "column_number"], [37, 1, 1, "", "function"], [37, 1, 1, "", "line_number"], [37, 1, 1, "", "url"]], "nodriver.cdp.page.BackForwardCacheNotRestoredExplanation": [[37, 1, 1, "", "context"], [37, 1, 1, "", "details"], [37, 1, 1, "", "reason"], [37, 1, 1, "", "type_"]], "nodriver.cdp.page.BackForwardCacheNotRestoredExplanationTree": [[37, 1, 1, "", "children"], [37, 1, 1, "", "explanations"], [37, 1, 1, "", "url"]], "nodriver.cdp.page.BackForwardCacheNotRestoredReason": [[37, 1, 1, "", "ACTIVATION_NAVIGATIONS_DISALLOWED_FOR_BUG1234857"], [37, 1, 1, "", "APP_BANNER"], [37, 1, 1, "", "BACK_FORWARD_CACHE_DISABLED"], [37, 1, 1, "", "BACK_FORWARD_CACHE_DISABLED_BY_COMMAND_LINE"], [37, 1, 1, "", "BACK_FORWARD_CACHE_DISABLED_BY_LOW_MEMORY"], [37, 1, 1, "", "BACK_FORWARD_CACHE_DISABLED_FOR_DELEGATE"], [37, 1, 1, "", "BACK_FORWARD_CACHE_DISABLED_FOR_PRERENDER"], [37, 1, 1, "", "BROADCAST_CHANNEL"], [37, 1, 1, "", "BROADCAST_CHANNEL_ON_MESSAGE"], [37, 1, 1, "", "BROWSING_INSTANCE_NOT_SWAPPED"], [37, 1, 1, "", "CACHE_CONTROL_NO_STORE"], [37, 1, 1, "", "CACHE_CONTROL_NO_STORE_COOKIE_MODIFIED"], [37, 1, 1, "", "CACHE_CONTROL_NO_STORE_HTTP_ONLY_COOKIE_MODIFIED"], [37, 1, 1, "", "CACHE_FLUSHED"], [37, 1, 1, "", "CACHE_LIMIT"], [37, 1, 1, "", "CONFLICTING_BROWSING_INSTANCE"], [37, 1, 1, "", "CONTAINS_PLUGINS"], [37, 1, 1, "", "CONTENT_FILE_CHOOSER"], [37, 1, 1, "", "CONTENT_FILE_SYSTEM_ACCESS"], [37, 1, 1, "", "CONTENT_MEDIA_DEVICES_DISPATCHER_HOST"], [37, 1, 1, "", "CONTENT_MEDIA_SESSION_SERVICE"], [37, 1, 1, "", "CONTENT_SCREEN_READER"], [37, 1, 1, "", "CONTENT_SECURITY_HANDLER"], [37, 1, 1, "", "CONTENT_SERIAL"], [37, 1, 1, "", "CONTENT_WEB_AUTHENTICATION_API"], [37, 1, 1, "", "CONTENT_WEB_BLUETOOTH"], [37, 1, 1, "", "CONTENT_WEB_USB"], [37, 1, 1, "", "COOKIE_DISABLED"], [37, 1, 1, "", "COOKIE_FLUSHED"], [37, 1, 1, "", "DISABLE_FOR_RENDER_FRAME_HOST_CALLED"], [37, 1, 1, "", "DOCUMENT_LOADED"], [37, 1, 1, "", "DOMAIN_NOT_ALLOWED"], [37, 1, 1, "", "DUMMY"], [37, 1, 1, "", "EMBEDDER_APP_BANNER_MANAGER"], [37, 1, 1, "", "EMBEDDER_CHROME_PASSWORD_MANAGER_CLIENT_BIND_CREDENTIAL_MANAGER"], [37, 1, 1, "", "EMBEDDER_DOM_DISTILLER_SELF_DELETING_REQUEST_DELEGATE"], [37, 1, 1, "", "EMBEDDER_DOM_DISTILLER_VIEWER_SOURCE"], [37, 1, 1, "", "EMBEDDER_EXTENSIONS"], [37, 1, 1, "", "EMBEDDER_EXTENSION_MESSAGING"], [37, 1, 1, "", "EMBEDDER_EXTENSION_MESSAGING_FOR_OPEN_PORT"], [37, 1, 1, "", "EMBEDDER_EXTENSION_SENT_MESSAGE_TO_CACHED_FRAME"], [37, 1, 1, "", "EMBEDDER_MODAL_DIALOG"], [37, 1, 1, "", "EMBEDDER_OFFLINE_PAGE"], [37, 1, 1, "", "EMBEDDER_OOM_INTERVENTION_TAB_HELPER"], [37, 1, 1, "", "EMBEDDER_PERMISSION_REQUEST_MANAGER"], [37, 1, 1, "", "EMBEDDER_POPUP_BLOCKER_TAB_HELPER"], [37, 1, 1, "", "EMBEDDER_SAFE_BROWSING_THREAT_DETAILS"], [37, 1, 1, "", "EMBEDDER_SAFE_BROWSING_TRIGGERED_POPUP_BLOCKER"], [37, 1, 1, "", "ENTERED_BACK_FORWARD_CACHE_BEFORE_SERVICE_WORKER_HOST_ADDED"], [37, 1, 1, "", "ERROR_DOCUMENT"], [37, 1, 1, "", "FENCED_FRAMES_EMBEDDER"], [37, 1, 1, "", "FOREGROUND_CACHE_LIMIT"], [37, 1, 1, "", "HAVE_INNER_CONTENTS"], [37, 1, 1, "", "HTTP_AUTH_REQUIRED"], [37, 1, 1, "", "HTTP_METHOD_NOT_GET"], [37, 1, 1, "", "HTTP_STATUS_NOT_OK"], [37, 1, 1, "", "IDLE_MANAGER"], [37, 1, 1, "", "IGNORE_EVENT_AND_EVICT"], [37, 1, 1, "", "INDEXED_DB_EVENT"], [37, 1, 1, "", "INJECTED_JAVASCRIPT"], [37, 1, 1, "", "INJECTED_STYLE_SHEET"], [37, 1, 1, "", "JAVA_SCRIPT_EXECUTION"], [37, 1, 1, "", "JS_NETWORK_REQUEST_RECEIVED_CACHE_CONTROL_NO_STORE_RESOURCE"], [37, 1, 1, "", "KEEPALIVE_REQUEST"], [37, 1, 1, "", "KEYBOARD_LOCK"], [37, 1, 1, "", "LIVE_MEDIA_STREAM_TRACK"], [37, 1, 1, "", "LOADING"], [37, 1, 1, "", "MAIN_RESOURCE_HAS_CACHE_CONTROL_NO_CACHE"], [37, 1, 1, "", "MAIN_RESOURCE_HAS_CACHE_CONTROL_NO_STORE"], [37, 1, 1, "", "NAVIGATION_CANCELLED_WHILE_RESTORING"], [37, 1, 1, "", "NETWORK_EXCEEDS_BUFFER_LIMIT"], [37, 1, 1, "", "NETWORK_REQUEST_DATAPIPE_DRAINED_AS_BYTES_CONSUMER"], [37, 1, 1, "", "NETWORK_REQUEST_REDIRECTED"], [37, 1, 1, "", "NETWORK_REQUEST_TIMEOUT"], [37, 1, 1, "", "NOT_MOST_RECENT_NAVIGATION_ENTRY"], [37, 1, 1, "", "NOT_PRIMARY_MAIN_FRAME"], [37, 1, 1, "", "NO_RESPONSE_HEAD"], [37, 1, 1, "", "OUTSTANDING_NETWORK_REQUEST_DIRECT_SOCKET"], [37, 1, 1, "", "OUTSTANDING_NETWORK_REQUEST_FETCH"], [37, 1, 1, "", "OUTSTANDING_NETWORK_REQUEST_OTHERS"], [37, 1, 1, "", "OUTSTANDING_NETWORK_REQUEST_XHR"], [37, 1, 1, "", "PARSER_ABORTED"], [37, 1, 1, "", "PAYMENT_MANAGER"], [37, 1, 1, "", "PICTURE_IN_PICTURE"], [37, 1, 1, "", "PORTAL"], [37, 1, 1, "", "PRINTING"], [37, 1, 1, "", "RELATED_ACTIVE_CONTENTS_EXIST"], [37, 1, 1, "", "RENDERER_PROCESS_CRASHED"], [37, 1, 1, "", "RENDERER_PROCESS_KILLED"], [37, 1, 1, "", "RENDER_FRAME_HOST_REUSED_CROSS_SITE"], [37, 1, 1, "", "RENDER_FRAME_HOST_REUSED_SAME_SITE"], [37, 1, 1, "", "REQUESTED_AUDIO_CAPTURE_PERMISSION"], [37, 1, 1, "", "REQUESTED_BACKGROUND_WORK_PERMISSION"], [37, 1, 1, "", "REQUESTED_BACK_FORWARD_CACHE_BLOCKED_SENSORS"], [37, 1, 1, "", "REQUESTED_BY_WEB_VIEW_CLIENT"], [37, 1, 1, "", "REQUESTED_MIDI_PERMISSION"], [37, 1, 1, "", "REQUESTED_STORAGE_ACCESS_GRANT"], [37, 1, 1, "", "REQUESTED_VIDEO_CAPTURE_PERMISSION"], [37, 1, 1, "", "SCHEDULER_TRACKED_FEATURE_USED"], [37, 1, 1, "", "SCHEME_NOT_HTTP_OR_HTTPS"], [37, 1, 1, "", "SERVICE_WORKER_CLAIM"], [37, 1, 1, "", "SERVICE_WORKER_POST_MESSAGE"], [37, 1, 1, "", "SERVICE_WORKER_UNREGISTRATION"], [37, 1, 1, "", "SERVICE_WORKER_VERSION_ACTIVATION"], [37, 1, 1, "", "SESSION_RESTORED"], [37, 1, 1, "", "SHARED_WORKER"], [37, 1, 1, "", "SMART_CARD"], [37, 1, 1, "", "SPEECH_RECOGNIZER"], [37, 1, 1, "", "SPEECH_SYNTHESIS"], [37, 1, 1, "", "SUBFRAME_IS_NAVIGATING"], [37, 1, 1, "", "SUBRESOURCE_HAS_CACHE_CONTROL_NO_CACHE"], [37, 1, 1, "", "SUBRESOURCE_HAS_CACHE_CONTROL_NO_STORE"], [37, 1, 1, "", "TIMEOUT"], [37, 1, 1, "", "TIMEOUT_PUTTING_IN_CACHE"], [37, 1, 1, "", "UNKNOWN"], [37, 1, 1, "", "UNLOAD_HANDLER"], [37, 1, 1, "", "UNLOAD_HANDLER_EXISTS_IN_MAIN_FRAME"], [37, 1, 1, "", "UNLOAD_HANDLER_EXISTS_IN_SUB_FRAME"], [37, 1, 1, "", "USER_AGENT_OVERRIDE_DIFFERS"], [37, 1, 1, "", "WAS_GRANTED_MEDIA_ACCESS"], [37, 1, 1, "", "WEB_DATABASE"], [37, 1, 1, "", "WEB_HID"], [37, 1, 1, "", "WEB_LOCKS"], [37, 1, 1, "", "WEB_NFC"], [37, 1, 1, "", "WEB_OTP_SERVICE"], [37, 1, 1, "", "WEB_RTC"], [37, 1, 1, "", "WEB_RTC_STICKY"], [37, 1, 1, "", "WEB_SHARE"], [37, 1, 1, "", "WEB_SOCKET"], [37, 1, 1, "", "WEB_SOCKET_STICKY"], [37, 1, 1, "", "WEB_TRANSPORT"], [37, 1, 1, "", "WEB_TRANSPORT_STICKY"], [37, 1, 1, "", "WEB_VIEW_DOCUMENT_START_JAVASCRIPT_CHANGED"], [37, 1, 1, "", "WEB_VIEW_JAVA_SCRIPT_OBJECT_CHANGED"], [37, 1, 1, "", "WEB_VIEW_MESSAGE_LISTENER_INJECTED"], [37, 1, 1, "", "WEB_VIEW_SAFE_BROWSING_ALLOWLIST_CHANGED"], [37, 1, 1, "", "WEB_VIEW_SETTINGS_CHANGED"], [37, 1, 1, "", "WEB_XR"]], "nodriver.cdp.page.BackForwardCacheNotRestoredReasonType": [[37, 1, 1, "", "CIRCUMSTANTIAL"], [37, 1, 1, "", "PAGE_SUPPORT_NEEDED"], [37, 1, 1, "", "SUPPORT_PENDING"]], "nodriver.cdp.page.BackForwardCacheNotUsed": [[37, 1, 1, "", "frame_id"], [37, 1, 1, "", "loader_id"], [37, 1, 1, "", "not_restored_explanations"], [37, 1, 1, "", "not_restored_explanations_tree"]], "nodriver.cdp.page.ClientNavigationDisposition": [[37, 1, 1, "", "CURRENT_TAB"], [37, 1, 1, "", "DOWNLOAD"], [37, 1, 1, "", "NEW_TAB"], [37, 1, 1, "", "NEW_WINDOW"]], "nodriver.cdp.page.ClientNavigationReason": [[37, 1, 1, "", "ANCHOR_CLICK"], [37, 1, 1, "", "FORM_SUBMISSION_GET"], [37, 1, 1, "", "FORM_SUBMISSION_POST"], [37, 1, 1, "", "HTTP_HEADER_REFRESH"], [37, 1, 1, "", "META_TAG_REFRESH"], [37, 1, 1, "", "PAGE_BLOCK_INTERSTITIAL"], [37, 1, 1, "", "RELOAD"], [37, 1, 1, "", "SCRIPT_INITIATED"]], "nodriver.cdp.page.CompilationCacheParams": [[37, 1, 1, "", "eager"], [37, 1, 1, "", "url"]], "nodriver.cdp.page.CompilationCacheProduced": [[37, 1, 1, "", "data"], [37, 1, 1, "", "url"]], "nodriver.cdp.page.CrossOriginIsolatedContextType": [[37, 1, 1, "", "ISOLATED"], [37, 1, 1, "", "NOT_ISOLATED"], [37, 1, 1, "", "NOT_ISOLATED_FEATURE_DISABLED"]], "nodriver.cdp.page.DialogType": [[37, 1, 1, "", "ALERT"], [37, 1, 1, "", "BEFOREUNLOAD"], [37, 1, 1, "", "CONFIRM"], [37, 1, 1, "", "PROMPT"]], "nodriver.cdp.page.DocumentOpened": [[37, 1, 1, "", "frame"]], "nodriver.cdp.page.DomContentEventFired": [[37, 1, 1, "", "timestamp"]], "nodriver.cdp.page.DownloadProgress": [[37, 1, 1, "", "guid"], [37, 1, 1, "", "received_bytes"], [37, 1, 1, "", "state"], [37, 1, 1, "", "total_bytes"]], "nodriver.cdp.page.DownloadWillBegin": [[37, 1, 1, "", "frame_id"], [37, 1, 1, "", "guid"], [37, 1, 1, "", "suggested_filename"], [37, 1, 1, "", "url"]], "nodriver.cdp.page.FileChooserOpened": [[37, 1, 1, "", "backend_node_id"], [37, 1, 1, "", "frame_id"], [37, 1, 1, "", "mode"]], "nodriver.cdp.page.FileFilter": [[37, 1, 1, "", "accepts"], [37, 1, 1, "", "name"]], "nodriver.cdp.page.FileHandler": [[37, 1, 1, "", "accepts"], [37, 1, 1, "", "action"], [37, 1, 1, "", "icons"], [37, 1, 1, "", "launch_type"], [37, 1, 1, "", "name"]], "nodriver.cdp.page.FontFamilies": [[37, 1, 1, "", "cursive"], [37, 1, 1, "", "fantasy"], [37, 1, 1, "", "fixed"], [37, 1, 1, "", "math"], [37, 1, 1, "", "sans_serif"], [37, 1, 1, "", "serif"], [37, 1, 1, "", "standard"]], "nodriver.cdp.page.FontSizes": [[37, 1, 1, "", "fixed"], [37, 1, 1, "", "standard"]], "nodriver.cdp.page.Frame": [[37, 1, 1, "", "ad_frame_status"], [37, 1, 1, "", "cross_origin_isolated_context_type"], [37, 1, 1, "", "domain_and_registry"], [37, 1, 1, "", "gated_api_features"], [37, 1, 1, "", "id_"], [37, 1, 1, "", "loader_id"], [37, 1, 1, "", "mime_type"], [37, 1, 1, "", "name"], [37, 1, 1, "", "parent_id"], [37, 1, 1, "", "secure_context_type"], [37, 1, 1, "", "security_origin"], [37, 1, 1, "", "unreachable_url"], [37, 1, 1, "", "url"], [37, 1, 1, "", "url_fragment"]], "nodriver.cdp.page.FrameAttached": [[37, 1, 1, "", "frame_id"], [37, 1, 1, "", "parent_frame_id"], [37, 1, 1, "", "stack"]], "nodriver.cdp.page.FrameClearedScheduledNavigation": [[37, 1, 1, "", "frame_id"]], "nodriver.cdp.page.FrameDetached": [[37, 1, 1, "", "frame_id"], [37, 1, 1, "", "reason"]], "nodriver.cdp.page.FrameNavigated": [[37, 1, 1, "", "frame"], [37, 1, 1, "", "type_"]], "nodriver.cdp.page.FrameRequestedNavigation": [[37, 1, 1, "", "disposition"], [37, 1, 1, "", "frame_id"], [37, 1, 1, "", "reason"], [37, 1, 1, "", "url"]], "nodriver.cdp.page.FrameResource": [[37, 1, 1, "", "canceled"], [37, 1, 1, "", "content_size"], [37, 1, 1, "", "failed"], [37, 1, 1, "", "last_modified"], [37, 1, 1, "", "mime_type"], [37, 1, 1, "", "type_"], [37, 1, 1, "", "url"]], "nodriver.cdp.page.FrameResourceTree": [[37, 1, 1, "", "child_frames"], [37, 1, 1, "", "frame"], [37, 1, 1, "", "resources"]], "nodriver.cdp.page.FrameScheduledNavigation": [[37, 1, 1, "", "delay"], [37, 1, 1, "", "frame_id"], [37, 1, 1, "", "reason"], [37, 1, 1, "", "url"]], "nodriver.cdp.page.FrameStartedLoading": [[37, 1, 1, "", "frame_id"]], "nodriver.cdp.page.FrameStoppedLoading": [[37, 1, 1, "", "frame_id"]], "nodriver.cdp.page.FrameTree": [[37, 1, 1, "", "child_frames"], [37, 1, 1, "", "frame"]], "nodriver.cdp.page.GatedAPIFeatures": [[37, 1, 1, "", "PERFORMANCE_MEASURE_MEMORY"], [37, 1, 1, "", "PERFORMANCE_PROFILE"], [37, 1, 1, "", "SHARED_ARRAY_BUFFERS"], [37, 1, 1, "", "SHARED_ARRAY_BUFFERS_TRANSFER_ALLOWED"]], "nodriver.cdp.page.ImageResource": [[37, 1, 1, "", "sizes"], [37, 1, 1, "", "type_"], [37, 1, 1, "", "url"]], "nodriver.cdp.page.InstallabilityError": [[37, 1, 1, "", "error_arguments"], [37, 1, 1, "", "error_id"]], "nodriver.cdp.page.InstallabilityErrorArgument": [[37, 1, 1, "", "name"], [37, 1, 1, "", "value"]], "nodriver.cdp.page.JavascriptDialogClosed": [[37, 1, 1, "", "result"], [37, 1, 1, "", "user_input"]], "nodriver.cdp.page.JavascriptDialogOpening": [[37, 1, 1, "", "default_prompt"], [37, 1, 1, "", "has_browser_handler"], [37, 1, 1, "", "message"], [37, 1, 1, "", "type_"], [37, 1, 1, "", "url"]], "nodriver.cdp.page.LaunchHandler": [[37, 1, 1, "", "client_mode"]], "nodriver.cdp.page.LayoutViewport": [[37, 1, 1, "", "client_height"], [37, 1, 1, "", "client_width"], [37, 1, 1, "", "page_x"], [37, 1, 1, "", "page_y"]], "nodriver.cdp.page.LifecycleEvent": [[37, 1, 1, "", "frame_id"], [37, 1, 1, "", "loader_id"], [37, 1, 1, "", "name"], [37, 1, 1, "", "timestamp"]], "nodriver.cdp.page.LoadEventFired": [[37, 1, 1, "", "timestamp"]], "nodriver.cdp.page.NavigatedWithinDocument": [[37, 1, 1, "", "frame_id"], [37, 1, 1, "", "url"]], "nodriver.cdp.page.NavigationEntry": [[37, 1, 1, "", "id_"], [37, 1, 1, "", "title"], [37, 1, 1, "", "transition_type"], [37, 1, 1, "", "url"], [37, 1, 1, "", "user_typed_url"]], "nodriver.cdp.page.NavigationType": [[37, 1, 1, "", "BACK_FORWARD_CACHE_RESTORE"], [37, 1, 1, "", "NAVIGATION"]], "nodriver.cdp.page.OriginTrial": [[37, 1, 1, "", "status"], [37, 1, 1, "", "tokens_with_status"], [37, 1, 1, "", "trial_name"]], "nodriver.cdp.page.OriginTrialStatus": [[37, 1, 1, "", "ENABLED"], [37, 1, 1, "", "OS_NOT_SUPPORTED"], [37, 1, 1, "", "TRIAL_NOT_ALLOWED"], [37, 1, 1, "", "VALID_TOKEN_NOT_PROVIDED"]], "nodriver.cdp.page.OriginTrialToken": [[37, 1, 1, "", "expiry_time"], [37, 1, 1, "", "is_third_party"], [37, 1, 1, "", "match_sub_domains"], [37, 1, 1, "", "origin"], [37, 1, 1, "", "trial_name"], [37, 1, 1, "", "usage_restriction"]], "nodriver.cdp.page.OriginTrialTokenStatus": [[37, 1, 1, "", "EXPIRED"], [37, 1, 1, "", "FEATURE_DISABLED"], [37, 1, 1, "", "FEATURE_DISABLED_FOR_USER"], [37, 1, 1, "", "INSECURE"], [37, 1, 1, "", "INVALID_SIGNATURE"], [37, 1, 1, "", "MALFORMED"], [37, 1, 1, "", "NOT_SUPPORTED"], [37, 1, 1, "", "SUCCESS"], [37, 1, 1, "", "TOKEN_DISABLED"], [37, 1, 1, "", "UNKNOWN_TRIAL"], [37, 1, 1, "", "WRONG_ORIGIN"], [37, 1, 1, "", "WRONG_VERSION"]], "nodriver.cdp.page.OriginTrialTokenWithStatus": [[37, 1, 1, "", "parsed_token"], [37, 1, 1, "", "raw_token_text"], [37, 1, 1, "", "status"]], "nodriver.cdp.page.OriginTrialUsageRestriction": [[37, 1, 1, "", "NONE"], [37, 1, 1, "", "SUBSET"]], "nodriver.cdp.page.PermissionsPolicyBlockLocator": [[37, 1, 1, "", "block_reason"], [37, 1, 1, "", "frame_id"]], "nodriver.cdp.page.PermissionsPolicyBlockReason": [[37, 1, 1, "", "HEADER"], [37, 1, 1, "", "IFRAME_ATTRIBUTE"], [37, 1, 1, "", "IN_FENCED_FRAME_TREE"], [37, 1, 1, "", "IN_ISOLATED_APP"]], "nodriver.cdp.page.PermissionsPolicyFeature": [[37, 1, 1, "", "ACCELEROMETER"], [37, 1, 1, "", "AMBIENT_LIGHT_SENSOR"], [37, 1, 1, "", "ATTRIBUTION_REPORTING"], [37, 1, 1, "", "AUTOPLAY"], [37, 1, 1, "", "BLUETOOTH"], [37, 1, 1, "", "BROWSING_TOPICS"], [37, 1, 1, "", "CAMERA"], [37, 1, 1, "", "CAPTURED_SURFACE_CONTROL"], [37, 1, 1, "", "CH_DEVICE_MEMORY"], [37, 1, 1, "", "CH_DOWNLINK"], [37, 1, 1, "", "CH_DPR"], [37, 1, 1, "", "CH_ECT"], [37, 1, 1, "", "CH_PREFERS_COLOR_SCHEME"], [37, 1, 1, "", "CH_PREFERS_REDUCED_MOTION"], [37, 1, 1, "", "CH_PREFERS_REDUCED_TRANSPARENCY"], [37, 1, 1, "", "CH_RTT"], [37, 1, 1, "", "CH_SAVE_DATA"], [37, 1, 1, "", "CH_UA"], [37, 1, 1, "", "CH_UA_ARCH"], [37, 1, 1, "", "CH_UA_BITNESS"], [37, 1, 1, "", "CH_UA_FORM_FACTORS"], [37, 1, 1, "", "CH_UA_FULL_VERSION"], [37, 1, 1, "", "CH_UA_FULL_VERSION_LIST"], [37, 1, 1, "", "CH_UA_MOBILE"], [37, 1, 1, "", "CH_UA_MODEL"], [37, 1, 1, "", "CH_UA_PLATFORM"], [37, 1, 1, "", "CH_UA_PLATFORM_VERSION"], [37, 1, 1, "", "CH_UA_WOW64"], [37, 1, 1, "", "CH_VIEWPORT_HEIGHT"], [37, 1, 1, "", "CH_VIEWPORT_WIDTH"], [37, 1, 1, "", "CH_WIDTH"], [37, 1, 1, "", "CLIPBOARD_READ"], [37, 1, 1, "", "CLIPBOARD_WRITE"], [37, 1, 1, "", "COMPUTE_PRESSURE"], [37, 1, 1, "", "CROSS_ORIGIN_ISOLATED"], [37, 1, 1, "", "DEFERRED_FETCH"], [37, 1, 1, "", "DIRECT_SOCKETS"], [37, 1, 1, "", "DISPLAY_CAPTURE"], [37, 1, 1, "", "DOCUMENT_DOMAIN"], [37, 1, 1, "", "ENCRYPTED_MEDIA"], [37, 1, 1, "", "EXECUTION_WHILE_NOT_RENDERED"], [37, 1, 1, "", "EXECUTION_WHILE_OUT_OF_VIEWPORT"], [37, 1, 1, "", "FOCUS_WITHOUT_USER_ACTIVATION"], [37, 1, 1, "", "FROBULATE"], [37, 1, 1, "", "FULLSCREEN"], [37, 1, 1, "", "GAMEPAD"], [37, 1, 1, "", "GEOLOCATION"], [37, 1, 1, "", "GYROSCOPE"], [37, 1, 1, "", "HID"], [37, 1, 1, "", "IDENTITY_CREDENTIALS_GET"], [37, 1, 1, "", "IDLE_DETECTION"], [37, 1, 1, "", "INTEREST_COHORT"], [37, 1, 1, "", "JOIN_AD_INTEREST_GROUP"], [37, 1, 1, "", "KEYBOARD_MAP"], [37, 1, 1, "", "LOCAL_FONTS"], [37, 1, 1, "", "MAGNETOMETER"], [37, 1, 1, "", "MICROPHONE"], [37, 1, 1, "", "MIDI"], [37, 1, 1, "", "OTP_CREDENTIALS"], [37, 1, 1, "", "PAYMENT"], [37, 1, 1, "", "PICTURE_IN_PICTURE"], [37, 1, 1, "", "PRIVATE_AGGREGATION"], [37, 1, 1, "", "PRIVATE_STATE_TOKEN_ISSUANCE"], [37, 1, 1, "", "PRIVATE_STATE_TOKEN_REDEMPTION"], [37, 1, 1, "", "PUBLICKEY_CREDENTIALS_CREATE"], [37, 1, 1, "", "PUBLICKEY_CREDENTIALS_GET"], [37, 1, 1, "", "RUN_AD_AUCTION"], [37, 1, 1, "", "SCREEN_WAKE_LOCK"], [37, 1, 1, "", "SERIAL"], [37, 1, 1, "", "SHARED_AUTOFILL"], [37, 1, 1, "", "SHARED_STORAGE"], [37, 1, 1, "", "SHARED_STORAGE_SELECT_URL"], [37, 1, 1, "", "SMART_CARD"], [37, 1, 1, "", "SPEAKER_SELECTION"], [37, 1, 1, "", "STORAGE_ACCESS"], [37, 1, 1, "", "SUB_APPS"], [37, 1, 1, "", "SYNC_XHR"], [37, 1, 1, "", "UNLOAD"], [37, 1, 1, "", "USB"], [37, 1, 1, "", "USB_UNRESTRICTED"], [37, 1, 1, "", "VERTICAL_SCROLL"], [37, 1, 1, "", "WEB_PRINTING"], [37, 1, 1, "", "WEB_SHARE"], [37, 1, 1, "", "WINDOW_MANAGEMENT"], [37, 1, 1, "", "XR_SPATIAL_TRACKING"]], "nodriver.cdp.page.PermissionsPolicyFeatureState": [[37, 1, 1, "", "allowed"], [37, 1, 1, "", "feature"], [37, 1, 1, "", "locator"]], "nodriver.cdp.page.ProtocolHandler": [[37, 1, 1, "", "protocol"], [37, 1, 1, "", "url"]], "nodriver.cdp.page.ReferrerPolicy": [[37, 1, 1, "", "NO_REFERRER"], [37, 1, 1, "", "NO_REFERRER_WHEN_DOWNGRADE"], [37, 1, 1, "", "ORIGIN"], [37, 1, 1, "", "ORIGIN_WHEN_CROSS_ORIGIN"], [37, 1, 1, "", "SAME_ORIGIN"], [37, 1, 1, "", "STRICT_ORIGIN"], [37, 1, 1, "", "STRICT_ORIGIN_WHEN_CROSS_ORIGIN"], [37, 1, 1, "", "UNSAFE_URL"]], "nodriver.cdp.page.RelatedApplication": [[37, 1, 1, "", "id_"], [37, 1, 1, "", "url"]], "nodriver.cdp.page.ScopeExtension": [[37, 1, 1, "", "has_origin_wildcard"], [37, 1, 1, "", "origin"]], "nodriver.cdp.page.ScreencastFrame": [[37, 1, 1, "", "data"], [37, 1, 1, "", "metadata"], [37, 1, 1, "", "session_id"]], "nodriver.cdp.page.ScreencastFrameMetadata": [[37, 1, 1, "", "device_height"], [37, 1, 1, "", "device_width"], [37, 1, 1, "", "offset_top"], [37, 1, 1, "", "page_scale_factor"], [37, 1, 1, "", "scroll_offset_x"], [37, 1, 1, "", "scroll_offset_y"], [37, 1, 1, "", "timestamp"]], "nodriver.cdp.page.ScreencastVisibilityChanged": [[37, 1, 1, "", "visible"]], "nodriver.cdp.page.Screenshot": [[37, 1, 1, "", "form_factor"], [37, 1, 1, "", "image"], [37, 1, 1, "", "label"]], "nodriver.cdp.page.ScriptFontFamilies": [[37, 1, 1, "", "font_families"], [37, 1, 1, "", "script"]], "nodriver.cdp.page.SecureContextType": [[37, 1, 1, "", "INSECURE_ANCESTOR"], [37, 1, 1, "", "INSECURE_SCHEME"], [37, 1, 1, "", "SECURE"], [37, 1, 1, "", "SECURE_LOCALHOST"]], "nodriver.cdp.page.ShareTarget": [[37, 1, 1, "", "action"], [37, 1, 1, "", "enctype"], [37, 1, 1, "", "files"], [37, 1, 1, "", "method"], [37, 1, 1, "", "text"], [37, 1, 1, "", "title"], [37, 1, 1, "", "url"]], "nodriver.cdp.page.Shortcut": [[37, 1, 1, "", "name"], [37, 1, 1, "", "url"]], "nodriver.cdp.page.TransitionType": [[37, 1, 1, "", "ADDRESS_BAR"], [37, 1, 1, "", "AUTO_BOOKMARK"], [37, 1, 1, "", "AUTO_SUBFRAME"], [37, 1, 1, "", "AUTO_TOPLEVEL"], [37, 1, 1, "", "FORM_SUBMIT"], [37, 1, 1, "", "GENERATED"], [37, 1, 1, "", "KEYWORD"], [37, 1, 1, "", "KEYWORD_GENERATED"], [37, 1, 1, "", "LINK"], [37, 1, 1, "", "MANUAL_SUBFRAME"], [37, 1, 1, "", "OTHER"], [37, 1, 1, "", "RELOAD"], [37, 1, 1, "", "TYPED"]], "nodriver.cdp.page.Viewport": [[37, 1, 1, "", "height"], [37, 1, 1, "", "scale"], [37, 1, 1, "", "width"], [37, 1, 1, "", "x"], [37, 1, 1, "", "y"]], "nodriver.cdp.page.VisualViewport": [[37, 1, 1, "", "client_height"], [37, 1, 1, "", "client_width"], [37, 1, 1, "", "offset_x"], [37, 1, 1, "", "offset_y"], [37, 1, 1, "", "page_x"], [37, 1, 1, "", "page_y"], [37, 1, 1, "", "scale"], [37, 1, 1, "", "zoom"]], "nodriver.cdp.page.WebAppManifest": [[37, 1, 1, "", "background_color"], [37, 1, 1, "", "description"], [37, 1, 1, "", "dir_"], [37, 1, 1, "", "display"], [37, 1, 1, "", "display_overrides"], [37, 1, 1, "", "file_handlers"], [37, 1, 1, "", "icons"], [37, 1, 1, "", "id_"], [37, 1, 1, "", "lang"], [37, 1, 1, "", "launch_handler"], [37, 1, 1, "", "name"], [37, 1, 1, "", "orientation"], [37, 1, 1, "", "prefer_related_applications"], [37, 1, 1, "", "protocol_handlers"], [37, 1, 1, "", "related_applications"], [37, 1, 1, "", "scope"], [37, 1, 1, "", "scope_extensions"], [37, 1, 1, "", "screenshots"], [37, 1, 1, "", "share_target"], [37, 1, 1, "", "short_name"], [37, 1, 1, "", "shortcuts"], [37, 1, 1, "", "start_url"], [37, 1, 1, "", "theme_color"]], "nodriver.cdp.page.WindowOpen": [[37, 1, 1, "", "url"], [37, 1, 1, "", "user_gesture"], [37, 1, 1, "", "window_features"], [37, 1, 1, "", "window_name"]], "nodriver.cdp.performance": [[38, 0, 1, "", "Metric"], [38, 0, 1, "", "Metrics"], [38, 5, 1, "", "disable"], [38, 5, 1, "", "enable"], [38, 5, 1, "", "get_metrics"], [38, 5, 1, "", "set_time_domain"]], "nodriver.cdp.performance.Metric": [[38, 1, 1, "", "name"], [38, 1, 1, "", "value"]], "nodriver.cdp.performance.Metrics": [[38, 1, 1, "", "metrics"], [38, 1, 1, "", "title"]], "nodriver.cdp.performance_timeline": [[39, 0, 1, "", "LargestContentfulPaint"], [39, 0, 1, "", "LayoutShift"], [39, 0, 1, "", "LayoutShiftAttribution"], [39, 0, 1, "", "TimelineEvent"], [39, 0, 1, "", "TimelineEventAdded"], [39, 5, 1, "", "enable"]], "nodriver.cdp.performance_timeline.LargestContentfulPaint": [[39, 1, 1, "", "element_id"], [39, 1, 1, "", "load_time"], [39, 1, 1, "", "node_id"], [39, 1, 1, "", "render_time"], [39, 1, 1, "", "size"], [39, 1, 1, "", "url"]], "nodriver.cdp.performance_timeline.LayoutShift": [[39, 1, 1, "", "had_recent_input"], [39, 1, 1, "", "last_input_time"], [39, 1, 1, "", "sources"], [39, 1, 1, "", "value"]], "nodriver.cdp.performance_timeline.LayoutShiftAttribution": [[39, 1, 1, "", "current_rect"], [39, 1, 1, "", "node_id"], [39, 1, 1, "", "previous_rect"]], "nodriver.cdp.performance_timeline.TimelineEvent": [[39, 1, 1, "", "duration"], [39, 1, 1, "", "frame_id"], [39, 1, 1, "", "layout_shift_details"], [39, 1, 1, "", "lcp_details"], [39, 1, 1, "", "name"], [39, 1, 1, "", "time"], [39, 1, 1, "", "type_"]], "nodriver.cdp.performance_timeline.TimelineEventAdded": [[39, 1, 1, "", "event"]], "nodriver.cdp.preload": [[40, 0, 1, "", "PrefetchStatus"], [40, 0, 1, "", "PrefetchStatusUpdated"], [40, 0, 1, "", "PreloadEnabledStateUpdated"], [40, 0, 1, "", "PreloadingAttemptKey"], [40, 0, 1, "", "PreloadingAttemptSource"], [40, 0, 1, "", "PreloadingAttemptSourcesUpdated"], [40, 0, 1, "", "PreloadingStatus"], [40, 0, 1, "", "PrerenderFinalStatus"], [40, 0, 1, "", "PrerenderMismatchedHeaders"], [40, 0, 1, "", "PrerenderStatusUpdated"], [40, 0, 1, "", "RuleSet"], [40, 0, 1, "", "RuleSetErrorType"], [40, 0, 1, "", "RuleSetId"], [40, 0, 1, "", "RuleSetRemoved"], [40, 0, 1, "", "RuleSetUpdated"], [40, 0, 1, "", "SpeculationAction"], [40, 0, 1, "", "SpeculationTargetHint"], [40, 5, 1, "", "disable"], [40, 5, 1, "", "enable"]], "nodriver.cdp.preload.PrefetchStatus": [[40, 1, 1, "", "PREFETCH_ALLOWED"], [40, 1, 1, "", "PREFETCH_EVICTED_AFTER_CANDIDATE_REMOVED"], [40, 1, 1, "", "PREFETCH_EVICTED_FOR_NEWER_PREFETCH"], [40, 1, 1, "", "PREFETCH_FAILED_INELIGIBLE_REDIRECT"], [40, 1, 1, "", "PREFETCH_FAILED_INVALID_REDIRECT"], [40, 1, 1, "", "PREFETCH_FAILED_MIME_NOT_SUPPORTED"], [40, 1, 1, "", "PREFETCH_FAILED_NET_ERROR"], [40, 1, 1, "", "PREFETCH_FAILED_NON2_XX"], [40, 1, 1, "", "PREFETCH_FAILED_PER_PAGE_LIMIT_EXCEEDED"], [40, 1, 1, "", "PREFETCH_HELDBACK"], [40, 1, 1, "", "PREFETCH_INELIGIBLE_RETRY_AFTER"], [40, 1, 1, "", "PREFETCH_IS_PRIVACY_DECOY"], [40, 1, 1, "", "PREFETCH_IS_STALE"], [40, 1, 1, "", "PREFETCH_NOT_ELIGIBLE_BATTERY_SAVER_ENABLED"], [40, 1, 1, "", "PREFETCH_NOT_ELIGIBLE_BROWSER_CONTEXT_OFF_THE_RECORD"], [40, 1, 1, "", "PREFETCH_NOT_ELIGIBLE_DATA_SAVER_ENABLED"], [40, 1, 1, "", "PREFETCH_NOT_ELIGIBLE_EXISTING_PROXY"], [40, 1, 1, "", "PREFETCH_NOT_ELIGIBLE_HOST_IS_NON_UNIQUE"], [40, 1, 1, "", "PREFETCH_NOT_ELIGIBLE_NON_DEFAULT_STORAGE_PARTITION"], [40, 1, 1, "", "PREFETCH_NOT_ELIGIBLE_PRELOADING_DISABLED"], [40, 1, 1, "", "PREFETCH_NOT_ELIGIBLE_SAME_SITE_CROSS_ORIGIN_PREFETCH_REQUIRED_PROXY"], [40, 1, 1, "", "PREFETCH_NOT_ELIGIBLE_SCHEME_IS_NOT_HTTPS"], [40, 1, 1, "", "PREFETCH_NOT_ELIGIBLE_USER_HAS_COOKIES"], [40, 1, 1, "", "PREFETCH_NOT_ELIGIBLE_USER_HAS_SERVICE_WORKER"], [40, 1, 1, "", "PREFETCH_NOT_FINISHED_IN_TIME"], [40, 1, 1, "", "PREFETCH_NOT_STARTED"], [40, 1, 1, "", "PREFETCH_NOT_USED_COOKIES_CHANGED"], [40, 1, 1, "", "PREFETCH_NOT_USED_PROBE_FAILED"], [40, 1, 1, "", "PREFETCH_PROXY_NOT_AVAILABLE"], [40, 1, 1, "", "PREFETCH_RESPONSE_USED"], [40, 1, 1, "", "PREFETCH_SUCCESSFUL_BUT_NOT_USED"]], "nodriver.cdp.preload.PrefetchStatusUpdated": [[40, 1, 1, "", "initiating_frame_id"], [40, 1, 1, "", "key"], [40, 1, 1, "", "prefetch_status"], [40, 1, 1, "", "prefetch_url"], [40, 1, 1, "", "request_id"], [40, 1, 1, "", "status"]], "nodriver.cdp.preload.PreloadEnabledStateUpdated": [[40, 1, 1, "", "disabled_by_battery_saver"], [40, 1, 1, "", "disabled_by_data_saver"], [40, 1, 1, "", "disabled_by_holdback_prefetch_speculation_rules"], [40, 1, 1, "", "disabled_by_holdback_prerender_speculation_rules"], [40, 1, 1, "", "disabled_by_preference"]], "nodriver.cdp.preload.PreloadingAttemptKey": [[40, 1, 1, "", "action"], [40, 1, 1, "", "loader_id"], [40, 1, 1, "", "target_hint"], [40, 1, 1, "", "url"]], "nodriver.cdp.preload.PreloadingAttemptSource": [[40, 1, 1, "", "key"], [40, 1, 1, "", "node_ids"], [40, 1, 1, "", "rule_set_ids"]], "nodriver.cdp.preload.PreloadingAttemptSourcesUpdated": [[40, 1, 1, "", "loader_id"], [40, 1, 1, "", "preloading_attempt_sources"]], "nodriver.cdp.preload.PreloadingStatus": [[40, 1, 1, "", "FAILURE"], [40, 1, 1, "", "NOT_SUPPORTED"], [40, 1, 1, "", "PENDING"], [40, 1, 1, "", "READY"], [40, 1, 1, "", "RUNNING"], [40, 1, 1, "", "SUCCESS"]], "nodriver.cdp.preload.PrerenderFinalStatus": [[40, 1, 1, "", "ACTIVATED"], [40, 1, 1, "", "ACTIVATED_BEFORE_STARTED"], [40, 1, 1, "", "ACTIVATED_DURING_MAIN_FRAME_NAVIGATION"], [40, 1, 1, "", "ACTIVATED_IN_BACKGROUND"], [40, 1, 1, "", "ACTIVATED_WITH_AUXILIARY_BROWSING_CONTEXTS"], [40, 1, 1, "", "ACTIVATION_FRAME_POLICY_NOT_COMPATIBLE"], [40, 1, 1, "", "ACTIVATION_NAVIGATION_DESTROYED_BEFORE_SUCCESS"], [40, 1, 1, "", "ACTIVATION_NAVIGATION_PARAMETER_MISMATCH"], [40, 1, 1, "", "ACTIVATION_URL_HAS_EFFECTIVE_URL"], [40, 1, 1, "", "ALL_PRERENDERING_CANCELED"], [40, 1, 1, "", "AUDIO_OUTPUT_DEVICE_REQUESTED"], [40, 1, 1, "", "BATTERY_SAVER_ENABLED"], [40, 1, 1, "", "BLOCKED_BY_CLIENT"], [40, 1, 1, "", "CANCEL_ALL_HOSTS_FOR_TESTING"], [40, 1, 1, "", "CLIENT_CERT_REQUESTED"], [40, 1, 1, "", "CROSS_SITE_NAVIGATION_IN_INITIAL_NAVIGATION"], [40, 1, 1, "", "CROSS_SITE_NAVIGATION_IN_MAIN_FRAME_NAVIGATION"], [40, 1, 1, "", "CROSS_SITE_REDIRECT_IN_INITIAL_NAVIGATION"], [40, 1, 1, "", "CROSS_SITE_REDIRECT_IN_MAIN_FRAME_NAVIGATION"], [40, 1, 1, "", "DATA_SAVER_ENABLED"], [40, 1, 1, "", "DESTROYED"], [40, 1, 1, "", "DID_FAIL_LOAD"], [40, 1, 1, "", "DOWNLOAD"], [40, 1, 1, "", "EMBEDDER_HOST_DISALLOWED"], [40, 1, 1, "", "INACTIVE_PAGE_RESTRICTION"], [40, 1, 1, "", "INVALID_SCHEME_NAVIGATION"], [40, 1, 1, "", "INVALID_SCHEME_REDIRECT"], [40, 1, 1, "", "JAVA_SCRIPT_INTERFACE_ADDED"], [40, 1, 1, "", "JAVA_SCRIPT_INTERFACE_REMOVED"], [40, 1, 1, "", "LOGIN_AUTH_REQUESTED"], [40, 1, 1, "", "LOW_END_DEVICE"], [40, 1, 1, "", "MAIN_FRAME_NAVIGATION"], [40, 1, 1, "", "MAX_NUM_OF_RUNNING_EAGER_PRERENDERS_EXCEEDED"], [40, 1, 1, "", "MAX_NUM_OF_RUNNING_EMBEDDER_PRERENDERS_EXCEEDED"], [40, 1, 1, "", "MAX_NUM_OF_RUNNING_NON_EAGER_PRERENDERS_EXCEEDED"], [40, 1, 1, "", "MEMORY_LIMIT_EXCEEDED"], [40, 1, 1, "", "MEMORY_PRESSURE_AFTER_TRIGGERED"], [40, 1, 1, "", "MEMORY_PRESSURE_ON_TRIGGER"], [40, 1, 1, "", "MIXED_CONTENT"], [40, 1, 1, "", "MOJO_BINDER_POLICY"], [40, 1, 1, "", "NAVIGATION_BAD_HTTP_STATUS"], [40, 1, 1, "", "NAVIGATION_NOT_COMMITTED"], [40, 1, 1, "", "NAVIGATION_REQUEST_BLOCKED_BY_CSP"], [40, 1, 1, "", "NAVIGATION_REQUEST_NETWORK_ERROR"], [40, 1, 1, "", "PRELOADING_DISABLED"], [40, 1, 1, "", "PRELOADING_UNSUPPORTED_BY_WEB_CONTENTS"], [40, 1, 1, "", "PRERENDERING_DISABLED_BY_DEV_TOOLS"], [40, 1, 1, "", "PRERENDERING_URL_HAS_EFFECTIVE_URL"], [40, 1, 1, "", "PRIMARY_MAIN_FRAME_RENDERER_PROCESS_CRASHED"], [40, 1, 1, "", "PRIMARY_MAIN_FRAME_RENDERER_PROCESS_KILLED"], [40, 1, 1, "", "REDIRECTED_PRERENDERING_URL_HAS_EFFECTIVE_URL"], [40, 1, 1, "", "RENDERER_PROCESS_CRASHED"], [40, 1, 1, "", "RENDERER_PROCESS_KILLED"], [40, 1, 1, "", "SAME_SITE_CROSS_ORIGIN_NAVIGATION_NOT_OPT_IN_IN_INITIAL_NAVIGATION"], [40, 1, 1, "", "SAME_SITE_CROSS_ORIGIN_NAVIGATION_NOT_OPT_IN_IN_MAIN_FRAME_NAVIGATION"], [40, 1, 1, "", "SAME_SITE_CROSS_ORIGIN_REDIRECT_NOT_OPT_IN_IN_INITIAL_NAVIGATION"], [40, 1, 1, "", "SAME_SITE_CROSS_ORIGIN_REDIRECT_NOT_OPT_IN_IN_MAIN_FRAME_NAVIGATION"], [40, 1, 1, "", "SPECULATION_RULE_REMOVED"], [40, 1, 1, "", "SSL_CERTIFICATE_ERROR"], [40, 1, 1, "", "START_FAILED"], [40, 1, 1, "", "STOP"], [40, 1, 1, "", "TAB_CLOSED_BY_USER_GESTURE"], [40, 1, 1, "", "TAB_CLOSED_WITHOUT_USER_GESTURE"], [40, 1, 1, "", "TIMEOUT_BACKGROUNDED"], [40, 1, 1, "", "TRIGGER_BACKGROUNDED"], [40, 1, 1, "", "TRIGGER_DESTROYED"], [40, 1, 1, "", "TRIGGER_URL_HAS_EFFECTIVE_URL"], [40, 1, 1, "", "UA_CHANGE_REQUIRES_RELOAD"]], "nodriver.cdp.preload.PrerenderMismatchedHeaders": [[40, 1, 1, "", "activation_value"], [40, 1, 1, "", "header_name"], [40, 1, 1, "", "initial_value"]], "nodriver.cdp.preload.PrerenderStatusUpdated": [[40, 1, 1, "", "disallowed_mojo_interface"], [40, 1, 1, "", "key"], [40, 1, 1, "", "mismatched_headers"], [40, 1, 1, "", "prerender_status"], [40, 1, 1, "", "status"]], "nodriver.cdp.preload.RuleSet": [[40, 1, 1, "", "backend_node_id"], [40, 1, 1, "", "error_message"], [40, 1, 1, "", "error_type"], [40, 1, 1, "", "id_"], [40, 1, 1, "", "loader_id"], [40, 1, 1, "", "request_id"], [40, 1, 1, "", "source_text"], [40, 1, 1, "", "url"]], "nodriver.cdp.preload.RuleSetErrorType": [[40, 1, 1, "", "INVALID_RULES_SKIPPED"], [40, 1, 1, "", "SOURCE_IS_NOT_JSON_OBJECT"]], "nodriver.cdp.preload.RuleSetRemoved": [[40, 1, 1, "", "id_"]], "nodriver.cdp.preload.RuleSetUpdated": [[40, 1, 1, "", "rule_set"]], "nodriver.cdp.preload.SpeculationAction": [[40, 1, 1, "", "PREFETCH"], [40, 1, 1, "", "PRERENDER"]], "nodriver.cdp.preload.SpeculationTargetHint": [[40, 1, 1, "", "BLANK"], [40, 1, 1, "", "SELF"]], "nodriver.cdp.profiler": [[41, 0, 1, "", "ConsoleProfileFinished"], [41, 0, 1, "", "ConsoleProfileStarted"], [41, 0, 1, "", "CoverageRange"], [41, 0, 1, "", "FunctionCoverage"], [41, 0, 1, "", "PositionTickInfo"], [41, 0, 1, "", "PreciseCoverageDeltaUpdate"], [41, 0, 1, "", "Profile"], [41, 0, 1, "", "ProfileNode"], [41, 0, 1, "", "ScriptCoverage"], [41, 5, 1, "", "disable"], [41, 5, 1, "", "enable"], [41, 5, 1, "", "get_best_effort_coverage"], [41, 5, 1, "", "set_sampling_interval"], [41, 5, 1, "", "start"], [41, 5, 1, "", "start_precise_coverage"], [41, 5, 1, "", "stop"], [41, 5, 1, "", "stop_precise_coverage"], [41, 5, 1, "", "take_precise_coverage"]], "nodriver.cdp.profiler.ConsoleProfileFinished": [[41, 1, 1, "", "id_"], [41, 1, 1, "", "location"], [41, 1, 1, "", "profile"], [41, 1, 1, "", "title"]], "nodriver.cdp.profiler.ConsoleProfileStarted": [[41, 1, 1, "", "id_"], [41, 1, 1, "", "location"], [41, 1, 1, "", "title"]], "nodriver.cdp.profiler.CoverageRange": [[41, 1, 1, "", "count"], [41, 1, 1, "", "end_offset"], [41, 1, 1, "", "start_offset"]], "nodriver.cdp.profiler.FunctionCoverage": [[41, 1, 1, "", "function_name"], [41, 1, 1, "", "is_block_coverage"], [41, 1, 1, "", "ranges"]], "nodriver.cdp.profiler.PositionTickInfo": [[41, 1, 1, "", "line"], [41, 1, 1, "", "ticks"]], "nodriver.cdp.profiler.PreciseCoverageDeltaUpdate": [[41, 1, 1, "", "occasion"], [41, 1, 1, "", "result"], [41, 1, 1, "", "timestamp"]], "nodriver.cdp.profiler.Profile": [[41, 1, 1, "", "end_time"], [41, 1, 1, "", "nodes"], [41, 1, 1, "", "samples"], [41, 1, 1, "", "start_time"], [41, 1, 1, "", "time_deltas"]], "nodriver.cdp.profiler.ProfileNode": [[41, 1, 1, "", "call_frame"], [41, 1, 1, "", "children"], [41, 1, 1, "", "deopt_reason"], [41, 1, 1, "", "hit_count"], [41, 1, 1, "", "id_"], [41, 1, 1, "", "position_ticks"]], "nodriver.cdp.profiler.ScriptCoverage": [[41, 1, 1, "", "functions"], [41, 1, 1, "", "script_id"], [41, 1, 1, "", "url"]], "nodriver.cdp.pwa": [[42, 0, 1, "", "DisplayMode"], [42, 0, 1, "", "FileHandler"], [42, 0, 1, "", "FileHandlerAccept"], [42, 5, 1, "", "change_app_user_settings"], [42, 5, 1, "", "get_os_app_state"], [42, 5, 1, "", "install"], [42, 5, 1, "", "launch"], [42, 5, 1, "", "launch_files_in_app"], [42, 5, 1, "", "open_current_page_in_app"], [42, 5, 1, "", "uninstall"]], "nodriver.cdp.pwa.DisplayMode": [[42, 1, 1, "", "BROWSER"], [42, 1, 1, "", "STANDALONE"]], "nodriver.cdp.pwa.FileHandler": [[42, 1, 1, "", "accepts"], [42, 1, 1, "", "action"], [42, 1, 1, "", "display_name"]], "nodriver.cdp.pwa.FileHandlerAccept": [[42, 1, 1, "", "file_extensions"], [42, 1, 1, "", "media_type"]], "nodriver.cdp.runtime": [[43, 0, 1, "", "BindingCalled"], [43, 0, 1, "", "CallArgument"], [43, 0, 1, "", "CallFrame"], [43, 0, 1, "", "ConsoleAPICalled"], [43, 0, 1, "", "CustomPreview"], [43, 0, 1, "", "DeepSerializedValue"], [43, 0, 1, "", "EntryPreview"], [43, 0, 1, "", "ExceptionDetails"], [43, 0, 1, "", "ExceptionRevoked"], [43, 0, 1, "", "ExceptionThrown"], [43, 0, 1, "", "ExecutionContextCreated"], [43, 0, 1, "", "ExecutionContextDescription"], [43, 0, 1, "", "ExecutionContextDestroyed"], [43, 0, 1, "", "ExecutionContextId"], [43, 0, 1, "", "ExecutionContextsCleared"], [43, 0, 1, "", "InspectRequested"], [43, 0, 1, "", "InternalPropertyDescriptor"], [43, 0, 1, "", "ObjectPreview"], [43, 0, 1, "", "PrivatePropertyDescriptor"], [43, 0, 1, "", "PropertyDescriptor"], [43, 0, 1, "", "PropertyPreview"], [43, 0, 1, "", "RemoteObject"], [43, 0, 1, "", "RemoteObjectId"], [43, 0, 1, "", "ScriptId"], [43, 0, 1, "", "SerializationOptions"], [43, 0, 1, "", "StackTrace"], [43, 0, 1, "", "StackTraceId"], [43, 0, 1, "", "TimeDelta"], [43, 0, 1, "", "Timestamp"], [43, 0, 1, "", "UniqueDebuggerId"], [43, 0, 1, "", "UnserializableValue"], [43, 5, 1, "", "add_binding"], [43, 5, 1, "", "await_promise"], [43, 5, 1, "", "call_function_on"], [43, 5, 1, "", "compile_script"], [43, 5, 1, "", "disable"], [43, 5, 1, "", "discard_console_entries"], [43, 5, 1, "", "enable"], [43, 5, 1, "", "evaluate"], [43, 5, 1, "", "get_exception_details"], [43, 5, 1, "", "get_heap_usage"], [43, 5, 1, "", "get_isolate_id"], [43, 5, 1, "", "get_properties"], [43, 5, 1, "", "global_lexical_scope_names"], [43, 5, 1, "", "query_objects"], [43, 5, 1, "", "release_object"], [43, 5, 1, "", "release_object_group"], [43, 5, 1, "", "remove_binding"], [43, 5, 1, "", "run_if_waiting_for_debugger"], [43, 5, 1, "", "run_script"], [43, 5, 1, "", "set_async_call_stack_depth"], [43, 5, 1, "", "set_custom_object_formatter_enabled"], [43, 5, 1, "", "set_max_call_stack_size_to_capture"], [43, 5, 1, "", "terminate_execution"]], "nodriver.cdp.runtime.BindingCalled": [[43, 1, 1, "", "execution_context_id"], [43, 1, 1, "", "name"], [43, 1, 1, "", "payload"]], "nodriver.cdp.runtime.CallArgument": [[43, 1, 1, "", "object_id"], [43, 1, 1, "", "unserializable_value"], [43, 1, 1, "", "value"]], "nodriver.cdp.runtime.CallFrame": [[43, 1, 1, "", "column_number"], [43, 1, 1, "", "function_name"], [43, 1, 1, "", "line_number"], [43, 1, 1, "", "script_id"], [43, 1, 1, "", "url"]], "nodriver.cdp.runtime.ConsoleAPICalled": [[43, 1, 1, "", "args"], [43, 1, 1, "", "context"], [43, 1, 1, "", "execution_context_id"], [43, 1, 1, "", "stack_trace"], [43, 1, 1, "", "timestamp"], [43, 1, 1, "", "type_"]], "nodriver.cdp.runtime.CustomPreview": [[43, 1, 1, "", "body_getter_id"], [43, 1, 1, "", "header"]], "nodriver.cdp.runtime.DeepSerializedValue": [[43, 1, 1, "", "object_id"], [43, 1, 1, "", "type_"], [43, 1, 1, "", "value"], [43, 1, 1, "", "weak_local_object_reference"]], "nodriver.cdp.runtime.EntryPreview": [[43, 1, 1, "", "key"], [43, 1, 1, "", "value"]], "nodriver.cdp.runtime.ExceptionDetails": [[43, 1, 1, "", "column_number"], [43, 1, 1, "", "exception"], [43, 1, 1, "", "exception_id"], [43, 1, 1, "", "exception_meta_data"], [43, 1, 1, "", "execution_context_id"], [43, 1, 1, "", "line_number"], [43, 1, 1, "", "script_id"], [43, 1, 1, "", "stack_trace"], [43, 1, 1, "", "text"], [43, 1, 1, "", "url"]], "nodriver.cdp.runtime.ExceptionRevoked": [[43, 1, 1, "", "exception_id"], [43, 1, 1, "", "reason"]], "nodriver.cdp.runtime.ExceptionThrown": [[43, 1, 1, "", "exception_details"], [43, 1, 1, "", "timestamp"]], "nodriver.cdp.runtime.ExecutionContextCreated": [[43, 1, 1, "", "context"]], "nodriver.cdp.runtime.ExecutionContextDescription": [[43, 1, 1, "", "aux_data"], [43, 1, 1, "", "id_"], [43, 1, 1, "", "name"], [43, 1, 1, "", "origin"], [43, 1, 1, "", "unique_id"]], "nodriver.cdp.runtime.ExecutionContextDestroyed": [[43, 1, 1, "", "execution_context_id"], [43, 1, 1, "", "execution_context_unique_id"]], "nodriver.cdp.runtime.InspectRequested": [[43, 1, 1, "", "execution_context_id"], [43, 1, 1, "", "hints"], [43, 1, 1, "", "object_"]], "nodriver.cdp.runtime.InternalPropertyDescriptor": [[43, 1, 1, "", "name"], [43, 1, 1, "", "value"]], "nodriver.cdp.runtime.ObjectPreview": [[43, 1, 1, "", "description"], [43, 1, 1, "", "entries"], [43, 1, 1, "", "overflow"], [43, 1, 1, "", "properties"], [43, 1, 1, "", "subtype"], [43, 1, 1, "", "type_"]], "nodriver.cdp.runtime.PrivatePropertyDescriptor": [[43, 1, 1, "", "get"], [43, 1, 1, "", "name"], [43, 1, 1, "", "set_"], [43, 1, 1, "", "value"]], "nodriver.cdp.runtime.PropertyDescriptor": [[43, 1, 1, "", "configurable"], [43, 1, 1, "", "enumerable"], [43, 1, 1, "", "get"], [43, 1, 1, "", "is_own"], [43, 1, 1, "", "name"], [43, 1, 1, "", "set_"], [43, 1, 1, "", "symbol"], [43, 1, 1, "", "value"], [43, 1, 1, "", "was_thrown"], [43, 1, 1, "", "writable"]], "nodriver.cdp.runtime.PropertyPreview": [[43, 1, 1, "", "name"], [43, 1, 1, "", "subtype"], [43, 1, 1, "", "type_"], [43, 1, 1, "", "value"], [43, 1, 1, "", "value_preview"]], "nodriver.cdp.runtime.RemoteObject": [[43, 1, 1, "", "class_name"], [43, 1, 1, "", "custom_preview"], [43, 1, 1, "", "deep_serialized_value"], [43, 1, 1, "", "description"], [43, 1, 1, "", "object_id"], [43, 1, 1, "", "preview"], [43, 1, 1, "", "subtype"], [43, 1, 1, "", "type_"], [43, 1, 1, "", "unserializable_value"], [43, 1, 1, "", "value"]], "nodriver.cdp.runtime.SerializationOptions": [[43, 1, 1, "", "additional_parameters"], [43, 1, 1, "", "max_depth"], [43, 1, 1, "", "serialization"]], "nodriver.cdp.runtime.StackTrace": [[43, 1, 1, "", "call_frames"], [43, 1, 1, "", "description"], [43, 1, 1, "", "parent"], [43, 1, 1, "", "parent_id"]], "nodriver.cdp.runtime.StackTraceId": [[43, 1, 1, "", "debugger_id"], [43, 1, 1, "", "id_"]], "nodriver.cdp.schema": [[44, 0, 1, "", "Domain"], [44, 5, 1, "", "get_domains"]], "nodriver.cdp.schema.Domain": [[44, 1, 1, "", "name"], [44, 1, 1, "", "version"]], "nodriver.cdp.security": [[45, 0, 1, "", "CertificateError"], [45, 0, 1, "", "CertificateErrorAction"], [45, 0, 1, "", "CertificateId"], [45, 0, 1, "", "CertificateSecurityState"], [45, 0, 1, "", "InsecureContentStatus"], [45, 0, 1, "", "MixedContentType"], [45, 0, 1, "", "SafetyTipInfo"], [45, 0, 1, "", "SafetyTipStatus"], [45, 0, 1, "", "SecurityState"], [45, 0, 1, "", "SecurityStateChanged"], [45, 0, 1, "", "SecurityStateExplanation"], [45, 0, 1, "", "VisibleSecurityState"], [45, 0, 1, "", "VisibleSecurityStateChanged"], [45, 5, 1, "", "disable"], [45, 5, 1, "", "enable"], [45, 5, 1, "", "handle_certificate_error"], [45, 5, 1, "", "set_ignore_certificate_errors"], [45, 5, 1, "", "set_override_certificate_errors"]], "nodriver.cdp.security.CertificateError": [[45, 1, 1, "", "error_type"], [45, 1, 1, "", "event_id"], [45, 1, 1, "", "request_url"]], "nodriver.cdp.security.CertificateErrorAction": [[45, 1, 1, "", "CANCEL"], [45, 1, 1, "", "CONTINUE"]], "nodriver.cdp.security.CertificateSecurityState": [[45, 1, 1, "", "certificate"], [45, 1, 1, "", "certificate_has_sha1_signature"], [45, 1, 1, "", "certificate_has_weak_signature"], [45, 1, 1, "", "certificate_network_error"], [45, 1, 1, "", "cipher"], [45, 1, 1, "", "issuer"], [45, 1, 1, "", "key_exchange"], [45, 1, 1, "", "key_exchange_group"], [45, 1, 1, "", "mac"], [45, 1, 1, "", "modern_ssl"], [45, 1, 1, "", "obsolete_ssl_cipher"], [45, 1, 1, "", "obsolete_ssl_key_exchange"], [45, 1, 1, "", "obsolete_ssl_protocol"], [45, 1, 1, "", "obsolete_ssl_signature"], [45, 1, 1, "", "protocol"], [45, 1, 1, "", "subject_name"], [45, 1, 1, "", "valid_from"], [45, 1, 1, "", "valid_to"]], "nodriver.cdp.security.InsecureContentStatus": [[45, 1, 1, "", "contained_mixed_form"], [45, 1, 1, "", "displayed_content_with_cert_errors"], [45, 1, 1, "", "displayed_insecure_content_style"], [45, 1, 1, "", "displayed_mixed_content"], [45, 1, 1, "", "ran_content_with_cert_errors"], [45, 1, 1, "", "ran_insecure_content_style"], [45, 1, 1, "", "ran_mixed_content"]], "nodriver.cdp.security.MixedContentType": [[45, 1, 1, "", "BLOCKABLE"], [45, 1, 1, "", "NONE"], [45, 1, 1, "", "OPTIONALLY_BLOCKABLE"]], "nodriver.cdp.security.SafetyTipInfo": [[45, 1, 1, "", "safe_url"], [45, 1, 1, "", "safety_tip_status"]], "nodriver.cdp.security.SafetyTipStatus": [[45, 1, 1, "", "BAD_REPUTATION"], [45, 1, 1, "", "LOOKALIKE"]], "nodriver.cdp.security.SecurityState": [[45, 1, 1, "", "INFO"], [45, 1, 1, "", "INSECURE"], [45, 1, 1, "", "INSECURE_BROKEN"], [45, 1, 1, "", "NEUTRAL"], [45, 1, 1, "", "SECURE"], [45, 1, 1, "", "UNKNOWN"]], "nodriver.cdp.security.SecurityStateChanged": [[45, 1, 1, "", "explanations"], [45, 1, 1, "", "insecure_content_status"], [45, 1, 1, "", "scheme_is_cryptographic"], [45, 1, 1, "", "security_state"], [45, 1, 1, "", "summary"]], "nodriver.cdp.security.SecurityStateExplanation": [[45, 1, 1, "", "certificate"], [45, 1, 1, "", "description"], [45, 1, 1, "", "mixed_content_type"], [45, 1, 1, "", "recommendations"], [45, 1, 1, "", "security_state"], [45, 1, 1, "", "summary"], [45, 1, 1, "", "title"]], "nodriver.cdp.security.VisibleSecurityState": [[45, 1, 1, "", "certificate_security_state"], [45, 1, 1, "", "safety_tip_info"], [45, 1, 1, "", "security_state"], [45, 1, 1, "", "security_state_issue_ids"]], "nodriver.cdp.security.VisibleSecurityStateChanged": [[45, 1, 1, "", "visible_security_state"]], "nodriver.cdp.service_worker": [[46, 0, 1, "", "RegistrationID"], [46, 0, 1, "", "ServiceWorkerErrorMessage"], [46, 0, 1, "", "ServiceWorkerRegistration"], [46, 0, 1, "", "ServiceWorkerVersion"], [46, 0, 1, "", "ServiceWorkerVersionRunningStatus"], [46, 0, 1, "", "ServiceWorkerVersionStatus"], [46, 0, 1, "", "WorkerErrorReported"], [46, 0, 1, "", "WorkerRegistrationUpdated"], [46, 0, 1, "", "WorkerVersionUpdated"], [46, 5, 1, "", "deliver_push_message"], [46, 5, 1, "", "disable"], [46, 5, 1, "", "dispatch_periodic_sync_event"], [46, 5, 1, "", "dispatch_sync_event"], [46, 5, 1, "", "enable"], [46, 5, 1, "", "inspect_worker"], [46, 5, 1, "", "set_force_update_on_page_load"], [46, 5, 1, "", "skip_waiting"], [46, 5, 1, "", "start_worker"], [46, 5, 1, "", "stop_all_workers"], [46, 5, 1, "", "stop_worker"], [46, 5, 1, "", "unregister"], [46, 5, 1, "", "update_registration"]], "nodriver.cdp.service_worker.ServiceWorkerErrorMessage": [[46, 1, 1, "", "column_number"], [46, 1, 1, "", "error_message"], [46, 1, 1, "", "line_number"], [46, 1, 1, "", "registration_id"], [46, 1, 1, "", "source_url"], [46, 1, 1, "", "version_id"]], "nodriver.cdp.service_worker.ServiceWorkerRegistration": [[46, 1, 1, "", "is_deleted"], [46, 1, 1, "", "registration_id"], [46, 1, 1, "", "scope_url"]], "nodriver.cdp.service_worker.ServiceWorkerVersion": [[46, 1, 1, "", "controlled_clients"], [46, 1, 1, "", "registration_id"], [46, 1, 1, "", "router_rules"], [46, 1, 1, "", "running_status"], [46, 1, 1, "", "script_last_modified"], [46, 1, 1, "", "script_response_time"], [46, 1, 1, "", "script_url"], [46, 1, 1, "", "status"], [46, 1, 1, "", "target_id"], [46, 1, 1, "", "version_id"]], "nodriver.cdp.service_worker.ServiceWorkerVersionRunningStatus": [[46, 1, 1, "", "RUNNING"], [46, 1, 1, "", "STARTING"], [46, 1, 1, "", "STOPPED"], [46, 1, 1, "", "STOPPING"]], "nodriver.cdp.service_worker.ServiceWorkerVersionStatus": [[46, 1, 1, "", "ACTIVATED"], [46, 1, 1, "", "ACTIVATING"], [46, 1, 1, "", "INSTALLED"], [46, 1, 1, "", "INSTALLING"], [46, 1, 1, "", "NEW"], [46, 1, 1, "", "REDUNDANT"]], "nodriver.cdp.service_worker.WorkerErrorReported": [[46, 1, 1, "", "error_message"]], "nodriver.cdp.service_worker.WorkerRegistrationUpdated": [[46, 1, 1, "", "registrations"]], "nodriver.cdp.service_worker.WorkerVersionUpdated": [[46, 1, 1, "", "versions"]], "nodriver.cdp.storage": [[47, 0, 1, "", "AttributionReportingAggregatableDedupKey"], [47, 0, 1, "", "AttributionReportingAggregatableResult"], [47, 0, 1, "", "AttributionReportingAggregatableTriggerData"], [47, 0, 1, "", "AttributionReportingAggregatableValueDictEntry"], [47, 0, 1, "", "AttributionReportingAggregatableValueEntry"], [47, 0, 1, "", "AttributionReportingAggregationKeysEntry"], [47, 0, 1, "", "AttributionReportingEventLevelResult"], [47, 0, 1, "", "AttributionReportingEventReportWindows"], [47, 0, 1, "", "AttributionReportingEventTriggerData"], [47, 0, 1, "", "AttributionReportingFilterConfig"], [47, 0, 1, "", "AttributionReportingFilterDataEntry"], [47, 0, 1, "", "AttributionReportingFilterPair"], [47, 0, 1, "", "AttributionReportingSourceRegistered"], [47, 0, 1, "", "AttributionReportingSourceRegistration"], [47, 0, 1, "", "AttributionReportingSourceRegistrationResult"], [47, 0, 1, "", "AttributionReportingSourceRegistrationTimeConfig"], [47, 0, 1, "", "AttributionReportingSourceType"], [47, 0, 1, "", "AttributionReportingTriggerDataMatching"], [47, 0, 1, "", "AttributionReportingTriggerRegistered"], [47, 0, 1, "", "AttributionReportingTriggerRegistration"], [47, 0, 1, "", "AttributionReportingTriggerSpec"], [47, 0, 1, "", "CacheStorageContentUpdated"], [47, 0, 1, "", "CacheStorageListUpdated"], [47, 0, 1, "", "IndexedDBContentUpdated"], [47, 0, 1, "", "IndexedDBListUpdated"], [47, 0, 1, "", "InterestGroupAccessType"], [47, 0, 1, "", "InterestGroupAccessed"], [47, 0, 1, "", "InterestGroupAuctionEventOccurred"], [47, 0, 1, "", "InterestGroupAuctionEventType"], [47, 0, 1, "", "InterestGroupAuctionFetchType"], [47, 0, 1, "", "InterestGroupAuctionId"], [47, 0, 1, "", "InterestGroupAuctionNetworkRequestCreated"], [47, 0, 1, "", "RelatedWebsiteSet"], [47, 0, 1, "", "SerializedStorageKey"], [47, 0, 1, "", "SharedStorageAccessParams"], [47, 0, 1, "", "SharedStorageAccessType"], [47, 0, 1, "", "SharedStorageAccessed"], [47, 0, 1, "", "SharedStorageEntry"], [47, 0, 1, "", "SharedStorageMetadata"], [47, 0, 1, "", "SharedStorageReportingMetadata"], [47, 0, 1, "", "SharedStorageUrlWithMetadata"], [47, 0, 1, "", "SignedInt64AsBase10"], [47, 0, 1, "", "StorageBucket"], [47, 0, 1, "", "StorageBucketCreatedOrUpdated"], [47, 0, 1, "", "StorageBucketDeleted"], [47, 0, 1, "", "StorageBucketInfo"], [47, 0, 1, "", "StorageBucketsDurability"], [47, 0, 1, "", "StorageType"], [47, 0, 1, "", "TrustTokens"], [47, 0, 1, "", "UnsignedInt128AsBase16"], [47, 0, 1, "", "UnsignedInt64AsBase10"], [47, 0, 1, "", "UsageForType"], [47, 5, 1, "", "clear_cookies"], [47, 5, 1, "", "clear_data_for_origin"], [47, 5, 1, "", "clear_data_for_storage_key"], [47, 5, 1, "", "clear_shared_storage_entries"], [47, 5, 1, "", "clear_trust_tokens"], [47, 5, 1, "", "delete_shared_storage_entry"], [47, 5, 1, "", "delete_storage_bucket"], [47, 5, 1, "", "get_cookies"], [47, 5, 1, "", "get_interest_group_details"], [47, 5, 1, "", "get_related_website_sets"], [47, 5, 1, "", "get_shared_storage_entries"], [47, 5, 1, "", "get_shared_storage_metadata"], [47, 5, 1, "", "get_storage_key_for_frame"], [47, 5, 1, "", "get_trust_tokens"], [47, 5, 1, "", "get_usage_and_quota"], [47, 5, 1, "", "override_quota_for_origin"], [47, 5, 1, "", "reset_shared_storage_budget"], [47, 5, 1, "", "run_bounce_tracking_mitigations"], [47, 5, 1, "", "send_pending_attribution_reports"], [47, 5, 1, "", "set_attribution_reporting_local_testing_mode"], [47, 5, 1, "", "set_attribution_reporting_tracking"], [47, 5, 1, "", "set_cookies"], [47, 5, 1, "", "set_interest_group_auction_tracking"], [47, 5, 1, "", "set_interest_group_tracking"], [47, 5, 1, "", "set_shared_storage_entry"], [47, 5, 1, "", "set_shared_storage_tracking"], [47, 5, 1, "", "set_storage_bucket_tracking"], [47, 5, 1, "", "track_cache_storage_for_origin"], [47, 5, 1, "", "track_cache_storage_for_storage_key"], [47, 5, 1, "", "track_indexed_db_for_origin"], [47, 5, 1, "", "track_indexed_db_for_storage_key"], [47, 5, 1, "", "untrack_cache_storage_for_origin"], [47, 5, 1, "", "untrack_cache_storage_for_storage_key"], [47, 5, 1, "", "untrack_indexed_db_for_origin"], [47, 5, 1, "", "untrack_indexed_db_for_storage_key"]], "nodriver.cdp.storage.AttributionReportingAggregatableDedupKey": [[47, 1, 1, "", "dedup_key"], [47, 1, 1, "", "filters"]], "nodriver.cdp.storage.AttributionReportingAggregatableResult": [[47, 1, 1, "", "DEDUPLICATED"], [47, 1, 1, "", "EXCESSIVE_ATTRIBUTIONS"], [47, 1, 1, "", "EXCESSIVE_REPORTING_ORIGINS"], [47, 1, 1, "", "EXCESSIVE_REPORTS"], [47, 1, 1, "", "INSUFFICIENT_BUDGET"], [47, 1, 1, "", "INTERNAL_ERROR"], [47, 1, 1, "", "NOT_REGISTERED"], [47, 1, 1, "", "NO_CAPACITY_FOR_ATTRIBUTION_DESTINATION"], [47, 1, 1, "", "NO_HISTOGRAMS"], [47, 1, 1, "", "NO_MATCHING_SOURCES"], [47, 1, 1, "", "NO_MATCHING_SOURCE_FILTER_DATA"], [47, 1, 1, "", "PROHIBITED_BY_BROWSER_POLICY"], [47, 1, 1, "", "REPORT_WINDOW_PASSED"], [47, 1, 1, "", "SUCCESS"]], "nodriver.cdp.storage.AttributionReportingAggregatableTriggerData": [[47, 1, 1, "", "filters"], [47, 1, 1, "", "key_piece"], [47, 1, 1, "", "source_keys"]], "nodriver.cdp.storage.AttributionReportingAggregatableValueDictEntry": [[47, 1, 1, "", "key"], [47, 1, 1, "", "value"]], "nodriver.cdp.storage.AttributionReportingAggregatableValueEntry": [[47, 1, 1, "", "filters"], [47, 1, 1, "", "values"]], "nodriver.cdp.storage.AttributionReportingAggregationKeysEntry": [[47, 1, 1, "", "key"], [47, 1, 1, "", "value"]], "nodriver.cdp.storage.AttributionReportingEventLevelResult": [[47, 1, 1, "", "DEDUPLICATED"], [47, 1, 1, "", "EXCESSIVE_ATTRIBUTIONS"], [47, 1, 1, "", "EXCESSIVE_REPORTING_ORIGINS"], [47, 1, 1, "", "EXCESSIVE_REPORTS"], [47, 1, 1, "", "FALSELY_ATTRIBUTED_SOURCE"], [47, 1, 1, "", "INTERNAL_ERROR"], [47, 1, 1, "", "NEVER_ATTRIBUTED_SOURCE"], [47, 1, 1, "", "NOT_REGISTERED"], [47, 1, 1, "", "NO_CAPACITY_FOR_ATTRIBUTION_DESTINATION"], [47, 1, 1, "", "NO_MATCHING_CONFIGURATIONS"], [47, 1, 1, "", "NO_MATCHING_SOURCES"], [47, 1, 1, "", "NO_MATCHING_SOURCE_FILTER_DATA"], [47, 1, 1, "", "NO_MATCHING_TRIGGER_DATA"], [47, 1, 1, "", "PRIORITY_TOO_LOW"], [47, 1, 1, "", "PROHIBITED_BY_BROWSER_POLICY"], [47, 1, 1, "", "REPORT_WINDOW_NOT_STARTED"], [47, 1, 1, "", "REPORT_WINDOW_PASSED"], [47, 1, 1, "", "SUCCESS"], [47, 1, 1, "", "SUCCESS_DROPPED_LOWER_PRIORITY"]], "nodriver.cdp.storage.AttributionReportingEventReportWindows": [[47, 1, 1, "", "ends"], [47, 1, 1, "", "start"]], "nodriver.cdp.storage.AttributionReportingEventTriggerData": [[47, 1, 1, "", "data"], [47, 1, 1, "", "dedup_key"], [47, 1, 1, "", "filters"], [47, 1, 1, "", "priority"]], "nodriver.cdp.storage.AttributionReportingFilterConfig": [[47, 1, 1, "", "filter_values"], [47, 1, 1, "", "lookback_window"]], "nodriver.cdp.storage.AttributionReportingFilterDataEntry": [[47, 1, 1, "", "key"], [47, 1, 1, "", "values"]], "nodriver.cdp.storage.AttributionReportingFilterPair": [[47, 1, 1, "", "filters"], [47, 1, 1, "", "not_filters"]], "nodriver.cdp.storage.AttributionReportingSourceRegistered": [[47, 1, 1, "", "registration"], [47, 1, 1, "", "result"]], "nodriver.cdp.storage.AttributionReportingSourceRegistration": [[47, 1, 1, "", "aggregatable_report_window"], [47, 1, 1, "", "aggregation_keys"], [47, 1, 1, "", "debug_key"], [47, 1, 1, "", "destination_sites"], [47, 1, 1, "", "event_id"], [47, 1, 1, "", "expiry"], [47, 1, 1, "", "filter_data"], [47, 1, 1, "", "priority"], [47, 1, 1, "", "reporting_origin"], [47, 1, 1, "", "source_origin"], [47, 1, 1, "", "time"], [47, 1, 1, "", "trigger_data_matching"], [47, 1, 1, "", "trigger_specs"], [47, 1, 1, "", "type_"]], "nodriver.cdp.storage.AttributionReportingSourceRegistrationResult": [[47, 1, 1, "", "DESTINATION_BOTH_LIMITS_REACHED"], [47, 1, 1, "", "DESTINATION_GLOBAL_LIMIT_REACHED"], [47, 1, 1, "", "DESTINATION_PER_DAY_REPORTING_LIMIT_REACHED"], [47, 1, 1, "", "DESTINATION_REPORTING_LIMIT_REACHED"], [47, 1, 1, "", "EXCEEDS_MAX_CHANNEL_CAPACITY"], [47, 1, 1, "", "EXCEEDS_MAX_TRIGGER_STATE_CARDINALITY"], [47, 1, 1, "", "EXCESSIVE_REPORTING_ORIGINS"], [47, 1, 1, "", "INSUFFICIENT_SOURCE_CAPACITY"], [47, 1, 1, "", "INSUFFICIENT_UNIQUE_DESTINATION_CAPACITY"], [47, 1, 1, "", "INTERNAL_ERROR"], [47, 1, 1, "", "PROHIBITED_BY_BROWSER_POLICY"], [47, 1, 1, "", "REPORTING_ORIGINS_PER_SITE_LIMIT_REACHED"], [47, 1, 1, "", "SUCCESS"], [47, 1, 1, "", "SUCCESS_NOISED"]], "nodriver.cdp.storage.AttributionReportingSourceRegistrationTimeConfig": [[47, 1, 1, "", "EXCLUDE"], [47, 1, 1, "", "INCLUDE"]], "nodriver.cdp.storage.AttributionReportingSourceType": [[47, 1, 1, "", "EVENT"], [47, 1, 1, "", "NAVIGATION"]], "nodriver.cdp.storage.AttributionReportingTriggerDataMatching": [[47, 1, 1, "", "EXACT"], [47, 1, 1, "", "MODULUS"]], "nodriver.cdp.storage.AttributionReportingTriggerRegistered": [[47, 1, 1, "", "aggregatable"], [47, 1, 1, "", "event_level"], [47, 1, 1, "", "registration"]], "nodriver.cdp.storage.AttributionReportingTriggerRegistration": [[47, 1, 1, "", "aggregatable_dedup_keys"], [47, 1, 1, "", "aggregatable_trigger_data"], [47, 1, 1, "", "aggregatable_values"], [47, 1, 1, "", "aggregation_coordinator_origin"], [47, 1, 1, "", "debug_key"], [47, 1, 1, "", "debug_reporting"], [47, 1, 1, "", "event_trigger_data"], [47, 1, 1, "", "filters"], [47, 1, 1, "", "source_registration_time_config"], [47, 1, 1, "", "trigger_context_id"]], "nodriver.cdp.storage.AttributionReportingTriggerSpec": [[47, 1, 1, "", "event_report_windows"], [47, 1, 1, "", "trigger_data"]], "nodriver.cdp.storage.CacheStorageContentUpdated": [[47, 1, 1, "", "bucket_id"], [47, 1, 1, "", "cache_name"], [47, 1, 1, "", "origin"], [47, 1, 1, "", "storage_key"]], "nodriver.cdp.storage.CacheStorageListUpdated": [[47, 1, 1, "", "bucket_id"], [47, 1, 1, "", "origin"], [47, 1, 1, "", "storage_key"]], "nodriver.cdp.storage.IndexedDBContentUpdated": [[47, 1, 1, "", "bucket_id"], [47, 1, 1, "", "database_name"], [47, 1, 1, "", "object_store_name"], [47, 1, 1, "", "origin"], [47, 1, 1, "", "storage_key"]], "nodriver.cdp.storage.IndexedDBListUpdated": [[47, 1, 1, "", "bucket_id"], [47, 1, 1, "", "origin"], [47, 1, 1, "", "storage_key"]], "nodriver.cdp.storage.InterestGroupAccessType": [[47, 1, 1, "", "ADDITIONAL_BID"], [47, 1, 1, "", "ADDITIONAL_BID_WIN"], [47, 1, 1, "", "BID"], [47, 1, 1, "", "CLEAR"], [47, 1, 1, "", "JOIN"], [47, 1, 1, "", "LEAVE"], [47, 1, 1, "", "LOADED"], [47, 1, 1, "", "TOP_LEVEL_ADDITIONAL_BID"], [47, 1, 1, "", "TOP_LEVEL_BID"], [47, 1, 1, "", "UPDATE"], [47, 1, 1, "", "WIN"]], "nodriver.cdp.storage.InterestGroupAccessed": [[47, 1, 1, "", "access_time"], [47, 1, 1, "", "bid"], [47, 1, 1, "", "bid_currency"], [47, 1, 1, "", "component_seller_origin"], [47, 1, 1, "", "name"], [47, 1, 1, "", "owner_origin"], [47, 1, 1, "", "type_"], [47, 1, 1, "", "unique_auction_id"]], "nodriver.cdp.storage.InterestGroupAuctionEventOccurred": [[47, 1, 1, "", "auction_config"], [47, 1, 1, "", "event_time"], [47, 1, 1, "", "parent_auction_id"], [47, 1, 1, "", "type_"], [47, 1, 1, "", "unique_auction_id"]], "nodriver.cdp.storage.InterestGroupAuctionEventType": [[47, 1, 1, "", "CONFIG_RESOLVED"], [47, 1, 1, "", "STARTED"]], "nodriver.cdp.storage.InterestGroupAuctionFetchType": [[47, 1, 1, "", "BIDDER_JS"], [47, 1, 1, "", "BIDDER_TRUSTED_SIGNALS"], [47, 1, 1, "", "BIDDER_WASM"], [47, 1, 1, "", "SELLER_JS"], [47, 1, 1, "", "SELLER_TRUSTED_SIGNALS"]], "nodriver.cdp.storage.InterestGroupAuctionNetworkRequestCreated": [[47, 1, 1, "", "auctions"], [47, 1, 1, "", "request_id"], [47, 1, 1, "", "type_"]], "nodriver.cdp.storage.RelatedWebsiteSet": [[47, 1, 1, "", "associated_sites"], [47, 1, 1, "", "primary_sites"], [47, 1, 1, "", "service_sites"]], "nodriver.cdp.storage.SharedStorageAccessParams": [[47, 1, 1, "", "ignore_if_present"], [47, 1, 1, "", "key"], [47, 1, 1, "", "operation_name"], [47, 1, 1, "", "script_source_url"], [47, 1, 1, "", "serialized_data"], [47, 1, 1, "", "urls_with_metadata"], [47, 1, 1, "", "value"]], "nodriver.cdp.storage.SharedStorageAccessType": [[47, 1, 1, "", "DOCUMENT_ADD_MODULE"], [47, 1, 1, "", "DOCUMENT_APPEND"], [47, 1, 1, "", "DOCUMENT_CLEAR"], [47, 1, 1, "", "DOCUMENT_DELETE"], [47, 1, 1, "", "DOCUMENT_GET"], [47, 1, 1, "", "DOCUMENT_RUN"], [47, 1, 1, "", "DOCUMENT_SELECT_URL"], [47, 1, 1, "", "DOCUMENT_SET"], [47, 1, 1, "", "HEADER_APPEND"], [47, 1, 1, "", "HEADER_CLEAR"], [47, 1, 1, "", "HEADER_DELETE"], [47, 1, 1, "", "HEADER_SET"], [47, 1, 1, "", "WORKLET_APPEND"], [47, 1, 1, "", "WORKLET_CLEAR"], [47, 1, 1, "", "WORKLET_DELETE"], [47, 1, 1, "", "WORKLET_ENTRIES"], [47, 1, 1, "", "WORKLET_GET"], [47, 1, 1, "", "WORKLET_KEYS"], [47, 1, 1, "", "WORKLET_LENGTH"], [47, 1, 1, "", "WORKLET_REMAINING_BUDGET"], [47, 1, 1, "", "WORKLET_SET"]], "nodriver.cdp.storage.SharedStorageAccessed": [[47, 1, 1, "", "access_time"], [47, 1, 1, "", "main_frame_id"], [47, 1, 1, "", "owner_origin"], [47, 1, 1, "", "params"], [47, 1, 1, "", "type_"]], "nodriver.cdp.storage.SharedStorageEntry": [[47, 1, 1, "", "key"], [47, 1, 1, "", "value"]], "nodriver.cdp.storage.SharedStorageMetadata": [[47, 1, 1, "", "bytes_used"], [47, 1, 1, "", "creation_time"], [47, 1, 1, "", "length"], [47, 1, 1, "", "remaining_budget"]], "nodriver.cdp.storage.SharedStorageReportingMetadata": [[47, 1, 1, "", "event_type"], [47, 1, 1, "", "reporting_url"]], "nodriver.cdp.storage.SharedStorageUrlWithMetadata": [[47, 1, 1, "", "reporting_metadata"], [47, 1, 1, "", "url"]], "nodriver.cdp.storage.StorageBucket": [[47, 1, 1, "", "name"], [47, 1, 1, "", "storage_key"]], "nodriver.cdp.storage.StorageBucketCreatedOrUpdated": [[47, 1, 1, "", "bucket_info"]], "nodriver.cdp.storage.StorageBucketDeleted": [[47, 1, 1, "", "bucket_id"]], "nodriver.cdp.storage.StorageBucketInfo": [[47, 1, 1, "", "bucket"], [47, 1, 1, "", "durability"], [47, 1, 1, "", "expiration"], [47, 1, 1, "", "id_"], [47, 1, 1, "", "persistent"], [47, 1, 1, "", "quota"]], "nodriver.cdp.storage.StorageBucketsDurability": [[47, 1, 1, "", "RELAXED"], [47, 1, 1, "", "STRICT"]], "nodriver.cdp.storage.StorageType": [[47, 1, 1, "", "ALL_"], [47, 1, 1, "", "APPCACHE"], [47, 1, 1, "", "CACHE_STORAGE"], [47, 1, 1, "", "COOKIES"], [47, 1, 1, "", "FILE_SYSTEMS"], [47, 1, 1, "", "INDEXEDDB"], [47, 1, 1, "", "INTEREST_GROUPS"], [47, 1, 1, "", "LOCAL_STORAGE"], [47, 1, 1, "", "OTHER"], [47, 1, 1, "", "SERVICE_WORKERS"], [47, 1, 1, "", "SHADER_CACHE"], [47, 1, 1, "", "SHARED_STORAGE"], [47, 1, 1, "", "STORAGE_BUCKETS"], [47, 1, 1, "", "WEBSQL"]], "nodriver.cdp.storage.TrustTokens": [[47, 1, 1, "", "count"], [47, 1, 1, "", "issuer_origin"]], "nodriver.cdp.storage.UsageForType": [[47, 1, 1, "", "storage_type"], [47, 1, 1, "", "usage"]], "nodriver.cdp.system_info": [[48, 0, 1, "", "GPUDevice"], [48, 0, 1, "", "GPUInfo"], [48, 0, 1, "", "ImageDecodeAcceleratorCapability"], [48, 0, 1, "", "ImageType"], [48, 0, 1, "", "ProcessInfo"], [48, 0, 1, "", "Size"], [48, 0, 1, "", "SubsamplingFormat"], [48, 0, 1, "", "VideoDecodeAcceleratorCapability"], [48, 0, 1, "", "VideoEncodeAcceleratorCapability"], [48, 5, 1, "", "get_feature_state"], [48, 5, 1, "", "get_info"], [48, 5, 1, "", "get_process_info"]], "nodriver.cdp.system_info.GPUDevice": [[48, 1, 1, "", "device_id"], [48, 1, 1, "", "device_string"], [48, 1, 1, "", "driver_vendor"], [48, 1, 1, "", "driver_version"], [48, 1, 1, "", "revision"], [48, 1, 1, "", "sub_sys_id"], [48, 1, 1, "", "vendor_id"], [48, 1, 1, "", "vendor_string"]], "nodriver.cdp.system_info.GPUInfo": [[48, 1, 1, "", "aux_attributes"], [48, 1, 1, "", "devices"], [48, 1, 1, "", "driver_bug_workarounds"], [48, 1, 1, "", "feature_status"], [48, 1, 1, "", "image_decoding"], [48, 1, 1, "", "video_decoding"], [48, 1, 1, "", "video_encoding"]], "nodriver.cdp.system_info.ImageDecodeAcceleratorCapability": [[48, 1, 1, "", "image_type"], [48, 1, 1, "", "max_dimensions"], [48, 1, 1, "", "min_dimensions"], [48, 1, 1, "", "subsamplings"]], "nodriver.cdp.system_info.ImageType": [[48, 1, 1, "", "JPEG"], [48, 1, 1, "", "UNKNOWN"], [48, 1, 1, "", "WEBP"]], "nodriver.cdp.system_info.ProcessInfo": [[48, 1, 1, "", "cpu_time"], [48, 1, 1, "", "id_"], [48, 1, 1, "", "type_"]], "nodriver.cdp.system_info.Size": [[48, 1, 1, "", "height"], [48, 1, 1, "", "width"]], "nodriver.cdp.system_info.SubsamplingFormat": [[48, 1, 1, "", "YUV420"], [48, 1, 1, "", "YUV422"], [48, 1, 1, "", "YUV444"]], "nodriver.cdp.system_info.VideoDecodeAcceleratorCapability": [[48, 1, 1, "", "max_resolution"], [48, 1, 1, "", "min_resolution"], [48, 1, 1, "", "profile"]], "nodriver.cdp.system_info.VideoEncodeAcceleratorCapability": [[48, 1, 1, "", "max_framerate_denominator"], [48, 1, 1, "", "max_framerate_numerator"], [48, 1, 1, "", "max_resolution"], [48, 1, 1, "", "profile"]], "nodriver.cdp.target": [[49, 0, 1, "", "AttachedToTarget"], [49, 0, 1, "", "DetachedFromTarget"], [49, 0, 1, "", "FilterEntry"], [49, 0, 1, "", "ReceivedMessageFromTarget"], [49, 0, 1, "", "RemoteLocation"], [49, 0, 1, "", "SessionID"], [49, 0, 1, "", "TargetCrashed"], [49, 0, 1, "", "TargetCreated"], [49, 0, 1, "", "TargetDestroyed"], [49, 0, 1, "", "TargetFilter"], [49, 0, 1, "", "TargetID"], [49, 0, 1, "", "TargetInfo"], [49, 0, 1, "", "TargetInfoChanged"], [49, 5, 1, "", "activate_target"], [49, 5, 1, "", "attach_to_browser_target"], [49, 5, 1, "", "attach_to_target"], [49, 5, 1, "", "auto_attach_related"], [49, 5, 1, "", "close_target"], [49, 5, 1, "", "create_browser_context"], [49, 5, 1, "", "create_target"], [49, 5, 1, "", "detach_from_target"], [49, 5, 1, "", "dispose_browser_context"], [49, 5, 1, "", "expose_dev_tools_protocol"], [49, 5, 1, "", "get_browser_contexts"], [49, 5, 1, "", "get_target_info"], [49, 5, 1, "", "get_targets"], [49, 5, 1, "", "send_message_to_target"], [49, 5, 1, "", "set_auto_attach"], [49, 5, 1, "", "set_discover_targets"], [49, 5, 1, "", "set_remote_locations"]], "nodriver.cdp.target.AttachedToTarget": [[49, 1, 1, "", "session_id"], [49, 1, 1, "", "target_info"], [49, 1, 1, "", "waiting_for_debugger"]], "nodriver.cdp.target.DetachedFromTarget": [[49, 1, 1, "", "session_id"], [49, 1, 1, "", "target_id"]], "nodriver.cdp.target.FilterEntry": [[49, 1, 1, "", "exclude"], [49, 1, 1, "", "type_"]], "nodriver.cdp.target.ReceivedMessageFromTarget": [[49, 1, 1, "", "message"], [49, 1, 1, "", "session_id"], [49, 1, 1, "", "target_id"]], "nodriver.cdp.target.RemoteLocation": [[49, 1, 1, "", "host"], [49, 1, 1, "", "port"]], "nodriver.cdp.target.TargetCrashed": [[49, 1, 1, "", "error_code"], [49, 1, 1, "", "status"], [49, 1, 1, "", "target_id"]], "nodriver.cdp.target.TargetCreated": [[49, 1, 1, "", "target_info"]], "nodriver.cdp.target.TargetDestroyed": [[49, 1, 1, "", "target_id"]], "nodriver.cdp.target.TargetInfo": [[49, 1, 1, "", "attached"], [49, 1, 1, "", "browser_context_id"], [49, 1, 1, "", "can_access_opener"], [49, 1, 1, "", "opener_frame_id"], [49, 1, 1, "", "opener_id"], [49, 1, 1, "", "subtype"], [49, 1, 1, "", "target_id"], [49, 1, 1, "", "title"], [49, 1, 1, "", "type_"], [49, 1, 1, "", "url"]], "nodriver.cdp.target.TargetInfoChanged": [[49, 1, 1, "", "target_info"]], "nodriver.cdp.tethering": [[50, 0, 1, "", "Accepted"], [50, 5, 1, "", "bind"], [50, 5, 1, "", "unbind"]], "nodriver.cdp.tethering.Accepted": [[50, 1, 1, "", "connection_id"], [50, 1, 1, "", "port"]], "nodriver.cdp.tracing": [[51, 0, 1, "", "BufferUsage"], [51, 0, 1, "", "DataCollected"], [51, 0, 1, "", "MemoryDumpConfig"], [51, 0, 1, "", "MemoryDumpLevelOfDetail"], [51, 0, 1, "", "StreamCompression"], [51, 0, 1, "", "StreamFormat"], [51, 0, 1, "", "TraceConfig"], [51, 0, 1, "", "TracingBackend"], [51, 0, 1, "", "TracingComplete"], [51, 5, 1, "", "end"], [51, 5, 1, "", "get_categories"], [51, 5, 1, "", "record_clock_sync_marker"], [51, 5, 1, "", "request_memory_dump"], [51, 5, 1, "", "start"]], "nodriver.cdp.tracing.BufferUsage": [[51, 1, 1, "", "event_count"], [51, 1, 1, "", "percent_full"], [51, 1, 1, "", "value"]], "nodriver.cdp.tracing.DataCollected": [[51, 1, 1, "", "value"]], "nodriver.cdp.tracing.MemoryDumpLevelOfDetail": [[51, 1, 1, "", "BACKGROUND"], [51, 1, 1, "", "DETAILED"], [51, 1, 1, "", "LIGHT"]], "nodriver.cdp.tracing.StreamCompression": [[51, 1, 1, "", "GZIP"], [51, 1, 1, "", "NONE"]], "nodriver.cdp.tracing.StreamFormat": [[51, 1, 1, "", "JSON"], [51, 1, 1, "", "PROTO"]], "nodriver.cdp.tracing.TraceConfig": [[51, 1, 1, "", "enable_argument_filter"], [51, 1, 1, "", "enable_sampling"], [51, 1, 1, "", "enable_systrace"], [51, 1, 1, "", "excluded_categories"], [51, 1, 1, "", "included_categories"], [51, 1, 1, "", "memory_dump_config"], [51, 1, 1, "", "record_mode"], [51, 1, 1, "", "synthetic_delays"], [51, 1, 1, "", "trace_buffer_size_in_kb"]], "nodriver.cdp.tracing.TracingBackend": [[51, 1, 1, "", "AUTO"], [51, 1, 1, "", "CHROME"], [51, 1, 1, "", "SYSTEM"]], "nodriver.cdp.tracing.TracingComplete": [[51, 1, 1, "", "data_loss_occurred"], [51, 1, 1, "", "stream"], [51, 1, 1, "", "stream_compression"], [51, 1, 1, "", "trace_format"]], "nodriver.cdp.web_audio": [[52, 0, 1, "", "AudioListener"], [52, 0, 1, "", "AudioListenerCreated"], [52, 0, 1, "", "AudioListenerWillBeDestroyed"], [52, 0, 1, "", "AudioNode"], [52, 0, 1, "", "AudioNodeCreated"], [52, 0, 1, "", "AudioNodeWillBeDestroyed"], [52, 0, 1, "", "AudioParam"], [52, 0, 1, "", "AudioParamCreated"], [52, 0, 1, "", "AudioParamWillBeDestroyed"], [52, 0, 1, "", "AutomationRate"], [52, 0, 1, "", "BaseAudioContext"], [52, 0, 1, "", "ChannelCountMode"], [52, 0, 1, "", "ChannelInterpretation"], [52, 0, 1, "", "ContextChanged"], [52, 0, 1, "", "ContextCreated"], [52, 0, 1, "", "ContextRealtimeData"], [52, 0, 1, "", "ContextState"], [52, 0, 1, "", "ContextType"], [52, 0, 1, "", "ContextWillBeDestroyed"], [52, 0, 1, "", "GraphObjectId"], [52, 0, 1, "", "NodeParamConnected"], [52, 0, 1, "", "NodeParamDisconnected"], [52, 0, 1, "", "NodeType"], [52, 0, 1, "", "NodesConnected"], [52, 0, 1, "", "NodesDisconnected"], [52, 0, 1, "", "ParamType"], [52, 5, 1, "", "disable"], [52, 5, 1, "", "enable"], [52, 5, 1, "", "get_realtime_data"]], "nodriver.cdp.web_audio.AudioListener": [[52, 1, 1, "", "context_id"], [52, 1, 1, "", "listener_id"]], "nodriver.cdp.web_audio.AudioListenerCreated": [[52, 1, 1, "", "listener"]], "nodriver.cdp.web_audio.AudioListenerWillBeDestroyed": [[52, 1, 1, "", "context_id"], [52, 1, 1, "", "listener_id"]], "nodriver.cdp.web_audio.AudioNode": [[52, 1, 1, "", "channel_count"], [52, 1, 1, "", "channel_count_mode"], [52, 1, 1, "", "channel_interpretation"], [52, 1, 1, "", "context_id"], [52, 1, 1, "", "node_id"], [52, 1, 1, "", "node_type"], [52, 1, 1, "", "number_of_inputs"], [52, 1, 1, "", "number_of_outputs"]], "nodriver.cdp.web_audio.AudioNodeCreated": [[52, 1, 1, "", "node"]], "nodriver.cdp.web_audio.AudioNodeWillBeDestroyed": [[52, 1, 1, "", "context_id"], [52, 1, 1, "", "node_id"]], "nodriver.cdp.web_audio.AudioParam": [[52, 1, 1, "", "context_id"], [52, 1, 1, "", "default_value"], [52, 1, 1, "", "max_value"], [52, 1, 1, "", "min_value"], [52, 1, 1, "", "node_id"], [52, 1, 1, "", "param_id"], [52, 1, 1, "", "param_type"], [52, 1, 1, "", "rate"]], "nodriver.cdp.web_audio.AudioParamCreated": [[52, 1, 1, "", "param"]], "nodriver.cdp.web_audio.AudioParamWillBeDestroyed": [[52, 1, 1, "", "context_id"], [52, 1, 1, "", "node_id"], [52, 1, 1, "", "param_id"]], "nodriver.cdp.web_audio.AutomationRate": [[52, 1, 1, "", "A_RATE"], [52, 1, 1, "", "K_RATE"]], "nodriver.cdp.web_audio.BaseAudioContext": [[52, 1, 1, "", "callback_buffer_size"], [52, 1, 1, "", "context_id"], [52, 1, 1, "", "context_state"], [52, 1, 1, "", "context_type"], [52, 1, 1, "", "max_output_channel_count"], [52, 1, 1, "", "realtime_data"], [52, 1, 1, "", "sample_rate"]], "nodriver.cdp.web_audio.ChannelCountMode": [[52, 1, 1, "", "CLAMPED_MAX"], [52, 1, 1, "", "EXPLICIT"], [52, 1, 1, "", "MAX_"]], "nodriver.cdp.web_audio.ChannelInterpretation": [[52, 1, 1, "", "DISCRETE"], [52, 1, 1, "", "SPEAKERS"]], "nodriver.cdp.web_audio.ContextChanged": [[52, 1, 1, "", "context"]], "nodriver.cdp.web_audio.ContextCreated": [[52, 1, 1, "", "context"]], "nodriver.cdp.web_audio.ContextRealtimeData": [[52, 1, 1, "", "callback_interval_mean"], [52, 1, 1, "", "callback_interval_variance"], [52, 1, 1, "", "current_time"], [52, 1, 1, "", "render_capacity"]], "nodriver.cdp.web_audio.ContextState": [[52, 1, 1, "", "CLOSED"], [52, 1, 1, "", "RUNNING"], [52, 1, 1, "", "SUSPENDED"]], "nodriver.cdp.web_audio.ContextType": [[52, 1, 1, "", "OFFLINE"], [52, 1, 1, "", "REALTIME"]], "nodriver.cdp.web_audio.ContextWillBeDestroyed": [[52, 1, 1, "", "context_id"]], "nodriver.cdp.web_audio.NodeParamConnected": [[52, 1, 1, "", "context_id"], [52, 1, 1, "", "destination_id"], [52, 1, 1, "", "source_id"], [52, 1, 1, "", "source_output_index"]], "nodriver.cdp.web_audio.NodeParamDisconnected": [[52, 1, 1, "", "context_id"], [52, 1, 1, "", "destination_id"], [52, 1, 1, "", "source_id"], [52, 1, 1, "", "source_output_index"]], "nodriver.cdp.web_audio.NodesConnected": [[52, 1, 1, "", "context_id"], [52, 1, 1, "", "destination_id"], [52, 1, 1, "", "destination_input_index"], [52, 1, 1, "", "source_id"], [52, 1, 1, "", "source_output_index"]], "nodriver.cdp.web_audio.NodesDisconnected": [[52, 1, 1, "", "context_id"], [52, 1, 1, "", "destination_id"], [52, 1, 1, "", "destination_input_index"], [52, 1, 1, "", "source_id"], [52, 1, 1, "", "source_output_index"]], "nodriver.cdp.web_authn": [[53, 0, 1, "", "AuthenticatorId"], [53, 0, 1, "", "AuthenticatorProtocol"], [53, 0, 1, "", "AuthenticatorTransport"], [53, 0, 1, "", "Credential"], [53, 0, 1, "", "CredentialAdded"], [53, 0, 1, "", "CredentialAsserted"], [53, 0, 1, "", "Ctap2Version"], [53, 0, 1, "", "VirtualAuthenticatorOptions"], [53, 5, 1, "", "add_credential"], [53, 5, 1, "", "add_virtual_authenticator"], [53, 5, 1, "", "clear_credentials"], [53, 5, 1, "", "disable"], [53, 5, 1, "", "enable"], [53, 5, 1, "", "get_credential"], [53, 5, 1, "", "get_credentials"], [53, 5, 1, "", "remove_credential"], [53, 5, 1, "", "remove_virtual_authenticator"], [53, 5, 1, "", "set_automatic_presence_simulation"], [53, 5, 1, "", "set_credential_properties"], [53, 5, 1, "", "set_response_override_bits"], [53, 5, 1, "", "set_user_verified"]], "nodriver.cdp.web_authn.AuthenticatorProtocol": [[53, 1, 1, "", "CTAP2"], [53, 1, 1, "", "U2F"]], "nodriver.cdp.web_authn.AuthenticatorTransport": [[53, 1, 1, "", "BLE"], [53, 1, 1, "", "CABLE"], [53, 1, 1, "", "INTERNAL"], [53, 1, 1, "", "NFC"], [53, 1, 1, "", "USB"]], "nodriver.cdp.web_authn.Credential": [[53, 1, 1, "", "backup_eligibility"], [53, 1, 1, "", "backup_state"], [53, 1, 1, "", "credential_id"], [53, 1, 1, "", "is_resident_credential"], [53, 1, 1, "", "large_blob"], [53, 1, 1, "", "private_key"], [53, 1, 1, "", "rp_id"], [53, 1, 1, "", "sign_count"], [53, 1, 1, "", "user_handle"]], "nodriver.cdp.web_authn.CredentialAdded": [[53, 1, 1, "", "authenticator_id"], [53, 1, 1, "", "credential"]], "nodriver.cdp.web_authn.CredentialAsserted": [[53, 1, 1, "", "authenticator_id"], [53, 1, 1, "", "credential"]], "nodriver.cdp.web_authn.Ctap2Version": [[53, 1, 1, "", "CTAP2_0"], [53, 1, 1, "", "CTAP2_1"]], "nodriver.cdp.web_authn.VirtualAuthenticatorOptions": [[53, 1, 1, "", "automatic_presence_simulation"], [53, 1, 1, "", "ctap2_version"], [53, 1, 1, "", "default_backup_eligibility"], [53, 1, 1, "", "default_backup_state"], [53, 1, 1, "", "has_cred_blob"], [53, 1, 1, "", "has_large_blob"], [53, 1, 1, "", "has_min_pin_length"], [53, 1, 1, "", "has_prf"], [53, 1, 1, "", "has_resident_key"], [53, 1, 1, "", "has_user_verification"], [53, 1, 1, "", "is_user_verified"], [53, 1, 1, "", "protocol"], [53, 1, 1, "", "transport"]], "nodriver.core": [[56, 4, 0, "-", "_contradict"]], "nodriver.core._contradict": [[56, 0, 1, "id0", "ContraDict"], [56, 5, 1, "", "cdict"]], "nodriver.core._contradict.ContraDict": [[56, 3, 1, "id1", "clear"], [56, 3, 1, "id2", "copy"], [56, 3, 1, "id3", "fromkeys"], [56, 3, 1, "id4", "get"], [56, 3, 1, "id5", "items"], [56, 3, 1, "id6", "keys"], [56, 3, 1, "id7", "pop"], [56, 3, 1, "id8", "popitem"], [56, 3, 1, "id9", "setdefault"], [56, 3, 1, "id10", "update"], [56, 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, 59], "some": [0, 57, 59], "featur": [0, 59], "quick": 0, "start": [0, 58], "main": 0, "object": [0, 1], "cdp": [0, 1, 57], "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], "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, 57], "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], "anim": 3, "audit": 4, "autofil": 5, "backgroundservic": 6, "browser": [7, 54], "cachestorag": 8, "cast": 9, "consol": 10, "css": 11, "databas": 12, "debugg": 13, "deviceaccess": 14, "deviceorient": 15, "dom": 16, "domdebugg": 17, "domsnapshot": 18, "domstorag": 19, "emul": 20, "eventbreakpoint": 21, "extens": 22, "fedcm": 23, "fetch": 24, "headlessexperiment": 25, "heapprofil": 26, "indexeddb": 27, "input": 28, "inspector": 29, "io": 30, "layertre": 31, "log": 32, "media": 33, "memori": 34, "network": 35, "overlai": 36, "page": 37, "perform": 38, "performancetimelin": 39, "preload": 40, "profil": 41, "pwa": 42, "runtim": 43, "schema": 44, "secur": 45, "servicework": 46, "storag": 47, "systeminfo": 48, "target": 49, "tether": 50, "trace": 51, "webaudio": 52, "webauthn": 53, "class": [54, 55, 56, 57], "cooki": 54, "element": 55, "other": [56, 57], "helper": 56, "config": 56, "contradict": 56, "function": 56, "tab": 57, "custom": [57, 58], "us": 57, "often": 57, "need": 57, "simpli": 57, "requir": 57, "method": 57, "find": 57, "text": 57, "best_match": 57, "true": 57, "select": 57, "selector": 57, "select_al": 57, "await": 57, "send": 57, "quickstart": 58, "guid": 58, "instal": [58, 59], "usag": [58, 59], "exampl": [58, 59], "more": 58, "complet": 58, "option": 58, "altern": 58, "titl": 60, "section": 60, "subsect": 60, "paragraph": 60, "tabl": 60, "click": 0, "here": 0, "FOR": 0, "doc": 0}, "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": {"CDP object": [[1, "cdp-object"], [0, "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"]], "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"]], "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"]], "Animation": [[3, "animation"]], "Audits": [[4, "audits"]], "Autofill": [[5, "autofill"]], "BackgroundService": [[6, "backgroundservice"]], "Browser": [[7, "browser"]], "CacheStorage": [[8, "cachestorage"]], "Cast": [[9, "cast"]], "Console": [[10, "console"]], "CSS": [[11, "css"]], "Database": [[12, "database"]], "Debugger": [[13, "debugger"]], "DeviceAccess": [[14, "deviceaccess"]], "DeviceOrientation": [[15, "deviceorientation"]], "DOM": [[16, "dom"]], "DOMDebugger": [[17, "domdebugger"]], "DOMSnapshot": [[18, "domsnapshot"]], "DOMStorage": [[19, "domstorage"]], "Emulation": [[20, "emulation"]], "EventBreakpoints": [[21, "eventbreakpoints"]], "Extensions": [[22, "extensions"]], "FedCm": [[23, "fedcm"]], "Fetch": [[24, "fetch"]], "HeadlessExperimental": [[25, "headlessexperimental"]], "HeapProfiler": [[26, "heapprofiler"]], "IndexedDB": [[27, "indexeddb"]], "Input": [[28, "module-nodriver.cdp.input_"]], "Inspector": [[29, "inspector"]], "IO": [[30, "io"]], "LayerTree": [[31, "layertree"]], "Log": [[32, "log"]], "Media": [[33, "media"]], "Memory": [[34, "memory"]], "Network": [[35, "network"]], "Overlay": [[36, "overlay"]], "Page": [[37, "page"]], "Performance": [[38, "module-nodriver.cdp.performance"]], "PerformanceTimeline": [[39, "performancetimeline"]], "Preload": [[40, "preload"]], "Profiler": [[41, "module-nodriver.cdp.profiler"]], "PWA": [[42, "pwa"]], "Runtime": [[43, "runtime"]], "Schema": [[44, "schema"]], "Security": [[45, "security"]], "ServiceWorker": [[46, "serviceworker"]], "Storage": [[47, "storage"]], "SystemInfo": [[48, "systeminfo"]], "Target": [[49, "target"]], "Tethering": [[50, "tethering"]], "Tracing": [[51, "module-nodriver.cdp.tracing"]], "WebAudio": [[52, "webaudio"]], "WebAuthn": [[53, "webauthn"]], "Quickstart guide": [[58, "quickstart-guide"]], "Installation": [[58, "installation"], [59, "installation"]], "usage example": [[58, "usage-example"], [59, "usage-example"]], "More complete example": [[58, "more-complete-example"]], "Custom starting options": [[58, "custom-starting-options"]], "Alternative custom options": [[58, "alternative-custom-options"]], "NODRIVER": [[59, "nodriver"], [0, "nodriver"]], "Some features": [[59, "some-features"], [0, "some-features"]], "TITLE": [[60, "title"]], "SECTION": [[60, "section"]], "SUBSECTION": [[60, "subsection"]], "PARAGRAPH": [[60, "paragraph"]], "TABLES": [[60, "tables"]], "Tab class": [[57, "tab-class"]], "Custom CDP commands": [[57, "custom-cdp-commands"]], "some useful, often needed and simply required methods": [[57, "some-useful-often-needed-and-simply-required-methods"]], "find() | find(text)": [[57, "find-find-text"]], "find() | find(text, best_match=True) or find(text, True)": [[57, "find-find-text-best-match-true-or-find-text-true"]], "select() | select(selector)": [[57, "select-select-selector"]], "select_all() | select_all(selector)": [[57, "select-all-select-all-selector"]], "await Tab": [[57, "await-tab"]], "Using other and custom CDP commands": [[57, "using-other-and-custom-cdp-commands"]], "send()": [[57, "send"]], "Browser class": [[54, "browser-class"], [54, "id1"]], "cookies": [[54, "cookies"]], "Other classes and Helper classes": [[56, "other-classes-and-helper-classes"]], "Config class": [[56, "config-class"]], "ContraDict class": [[56, "contradict-class"]], "Helper functions": [[56, "module-nodriver.core._contradict"]], "CLICK HERE FOR DOCS": [[0, "id1"]], "Quick start": [[0, "quick-start"]], "Main objects": [[0, "main-objects"]], "Element class": [[55, "element-class"]]}, "indexentries": {"element (class in nodriver)": [[55, "nodriver.Element"]], "apply() (element method)": [[55, "nodriver.Element.apply"]], "assigned_slot (element property)": [[55, "nodriver.Element.assigned_slot"]], "attributes (element property)": [[55, "nodriver.Element.attributes"]], "attrs (element property)": [[55, "nodriver.Element.attrs"]], "backend_node_id (element property)": [[55, "nodriver.Element.backend_node_id"]], "base_url (element property)": [[55, "nodriver.Element.base_url"]], "child_node_count (element property)": [[55, "nodriver.Element.child_node_count"]], "children (element property)": [[55, "nodriver.Element.children"]], "clear_input() (element method)": [[55, "nodriver.Element.clear_input"]], "click() (element method)": [[55, "nodriver.Element.click"]], "compatibility_mode (element property)": [[55, "nodriver.Element.compatibility_mode"]], "content_document (element property)": [[55, "nodriver.Element.content_document"]], "distributed_nodes (element property)": [[55, "nodriver.Element.distributed_nodes"]], "document_url (element property)": [[55, "nodriver.Element.document_url"]], "flash() (element method)": [[55, "nodriver.Element.flash"]], "focus() (element method)": [[55, "nodriver.Element.focus"]], "frame_id (element property)": [[55, "nodriver.Element.frame_id"]], "get_html() (element method)": [[55, "nodriver.Element.get_html"]], "get_js_attributes() (element method)": [[55, "nodriver.Element.get_js_attributes"]], "get_position() (element method)": [[55, "nodriver.Element.get_position"]], "highlight_overlay() (element method)": [[55, "nodriver.Element.highlight_overlay"]], "imported_document (element property)": [[55, "nodriver.Element.imported_document"]], "internal_subset (element property)": [[55, "nodriver.Element.internal_subset"]], "is_recording() (element method)": [[55, "nodriver.Element.is_recording"]], "is_svg (element property)": [[55, "nodriver.Element.is_svg"]], "local_name (element property)": [[55, "nodriver.Element.local_name"]], "mouse_click() (element method)": [[55, "nodriver.Element.mouse_click"]], "mouse_drag() (element method)": [[55, "nodriver.Element.mouse_drag"]], "mouse_move() (element method)": [[55, "nodriver.Element.mouse_move"]], "node (element property)": [[55, "nodriver.Element.node"]], "node_id (element property)": [[55, "nodriver.Element.node_id"]], "node_name (element property)": [[55, "nodriver.Element.node_name"]], "node_type (element property)": [[55, "nodriver.Element.node_type"]], "node_value (element property)": [[55, "nodriver.Element.node_value"]], "object_id (element property)": [[55, "nodriver.Element.object_id"]], "parent (element property)": [[55, "nodriver.Element.parent"]], "parent_id (element property)": [[55, "nodriver.Element.parent_id"]], "pseudo_elements (element property)": [[55, "nodriver.Element.pseudo_elements"]], "pseudo_identifier (element property)": [[55, "nodriver.Element.pseudo_identifier"]], "pseudo_type (element property)": [[55, "nodriver.Element.pseudo_type"]], "public_id (element property)": [[55, "nodriver.Element.public_id"]], "query_selector() (element method)": [[55, "nodriver.Element.query_selector"]], "query_selector_all() (element method)": [[55, "nodriver.Element.query_selector_all"]], "record_video() (element method)": [[55, "nodriver.Element.record_video"]], "remote_object (element property)": [[55, "nodriver.Element.remote_object"]], "remove_from_dom() (element method)": [[55, "nodriver.Element.remove_from_dom"]], "save_screenshot() (element method)": [[55, "nodriver.Element.save_screenshot"]], "save_to_dom() (element method)": [[55, "nodriver.Element.save_to_dom"]], "scroll_into_view() (element method)": [[55, "nodriver.Element.scroll_into_view"]], "select_option() (element method)": [[55, "nodriver.Element.select_option"]], "send_file() (element method)": [[55, "nodriver.Element.send_file"]], "send_keys() (element method)": [[55, "nodriver.Element.send_keys"]], "set_text() (element method)": [[55, "nodriver.Element.set_text"]], "set_value() (element method)": [[55, "nodriver.Element.set_value"]], "shadow_root_type (element property)": [[55, "nodriver.Element.shadow_root_type"]], "shadow_roots (element property)": [[55, "nodriver.Element.shadow_roots"]], "system_id (element property)": [[55, "nodriver.Element.system_id"]], "tab (element property)": [[55, "nodriver.Element.tab"]], "tag (element property)": [[55, "nodriver.Element.tag"]], "tag_name (element property)": [[55, "nodriver.Element.tag_name"]], "template_content (element property)": [[55, "nodriver.Element.template_content"]], "text (element property)": [[55, "nodriver.Element.text"]], "text_all (element property)": [[55, "nodriver.Element.text_all"]], "tree (element property)": [[55, "nodriver.Element.tree"]], "update() (element method)": [[55, "nodriver.Element.update"]], "value (element property)": [[55, "nodriver.Element.value"]], "xml_version (element property)": [[55, "nodriver.Element.xml_version"]]}}) \ 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/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/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/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/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", "Browser", "CacheStorage", "Cast", "Console", "CSS", "Database", "Debugger", "DeviceAccess", "DeviceOrientation", "DOM", "DOMDebugger", "DOMSnapshot", "DOMStorage", "Emulation", "EventBreakpoints", "Extensions", "FedCm", "Fetch", "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], "packag": [0, 56, 57, 58, 59], "provid": [0, 2, 4, 16, 17, 18, 24, 25, 31, 32, 35, 36, 37, 42, 43, 47, 48, 49, 51, 55, 56, 57, 59], "next": [0, 11, 13, 20, 23, 27, 43, 57, 58, 59], "level": [0, 2, 4, 10, 32, 33, 34, 35, 37, 43, 45, 48, 51, 54, 57, 58, 59], "webscrap": [0, 59], "browser": [0, 1, 2, 9, 11, 20, 22, 23, 24, 33, 34, 35, 37, 42, 43, 47, 48, 49, 50, 55, 57, 58, 59], "autom": [0, 7, 16, 20, 37, 53, 59], "us": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 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, 58, 59], "rel": [0, 16, 20, 28, 35, 37, 41, 47, 55, 57, 59], "simpl": [0, 11, 41, 57, 58, 59], "interfac": [0, 17, 40, 53, 57, 59], "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], "offici": [0, 59], "successor": [0, 59], "undetect": [0, 58, 59], "chromedriv": [0, 58, 59], "python": [0, 57, 59], "No": [0, 45, 59], "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, 55, 56, 57, 59], "webdriv": [0, 59], "selenium": [0, 54, 57, 59], "direct": [0, 3, 4, 11, 16, 20, 37, 59], "commun": [0, 49, 59], "even": [0, 23, 43, 45, 54, 56, 59], "better": [0, 35, 59], "resist": [0, 59], "against": [0, 16, 49, 59], "web": [0, 2, 6, 9, 11, 20, 35, 36, 37, 39, 42, 52, 59], "applicatinon": [0, 59], "firewal": [0, 59], "waf": [0, 59], "": [0, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 23, 24, 26, 28, 29, 31, 32, 33, 35, 36, 37, 38, 39, 40, 41, 42, 43, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59], "while": [0, 13, 26, 28, 30, 31, 35, 37, 38, 43, 59], "perform": [0, 1, 2, 7, 13, 16, 28, 39, 43, 57, 59], "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], "massiv": [0, 59], "boost": [0, 59], "modul": [0, 2, 4, 5, 6, 7, 8, 11, 13, 15, 16, 17, 18, 20, 21, 22, 23, 24, 25, 27, 28, 29, 30, 34, 35, 36, 37, 40, 42, 44, 45, 46, 47, 48, 50, 51, 52, 53, 57, 59], "contrari": [0, 59], "fulli": [0, 54, 59], "asynchron": [0, 43, 54, 59], "what": [0, 2, 20, 23, 24, 26, 33, 35, 47, 57, 58, 59], "make": [0, 7, 13, 24, 35, 37, 43, 49, 54, 55, 57, 59], "differ": [0, 4, 7, 11, 20, 24, 33, 35, 36, 37, 43, 47, 59], "from": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 51, 52, 53, 54, 55, 56, 57, 58, 59], "other": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 23, 24, 25, 26, 27, 28, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 51, 52, 53, 54, 55, 58, 59], "known": [0, 13, 16, 32, 35, 48, 51, 54, 57, 59], "optim": [0, 25, 37, 41, 59], "stai": [0, 13, 52, 59], "most": [0, 8, 13, 16, 26, 27, 35, 37, 43, 57, 59], "anti": [0, 59], "bot": [0, 59], "solut": [0, 37, 59], "anoth": [0, 11, 13, 24, 30, 35, 43, 55, 57, 59], "focu": [0, 16, 20, 37, 55, 58, 59], "point": [0, 13, 16, 18, 20, 28, 31, 34, 35, 41, 42, 54, 55, 56, 59], "usabl": [0, 59], "prototyp": [0, 43, 59], "so": [0, 4, 5, 10, 13, 23, 32, 35, 43, 54, 55, 57, 58, 59], "expect": [0, 7, 13, 24, 37, 43, 58, 59], "lot": [0, 54, 55, 57, 59], "work": [0, 16, 20, 36, 55, 56, 57, 58, 59], "method": [0, 2, 7, 8, 11, 16, 24, 28, 30, 35, 37, 38, 39, 43, 47, 48, 49, 50, 54, 55, 56, 59], "paramet": [0, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 30, 31, 32, 34, 35, 36, 37, 38, 39, 41, 42, 43, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 59], "have": [0, 2, 4, 7, 11, 13, 16, 17, 18, 20, 24, 28, 33, 35, 41, 42, 43, 45, 47, 49, 51, 53, 55, 57, 59], "best": [0, 20, 57, 59], "practic": [0, 59], "default": [0, 2, 4, 7, 8, 11, 13, 16, 17, 18, 20, 24, 25, 26, 27, 28, 31, 35, 36, 37, 42, 43, 45, 47, 49, 51, 53, 55, 56, 57, 59], "1": [0, 2, 4, 5, 6, 7, 8, 10, 11, 13, 16, 17, 18, 20, 23, 24, 25, 28, 31, 34, 35, 36, 37, 38, 40, 41, 42, 45, 46, 47, 48, 49, 51, 52, 53, 54, 55, 57, 58, 59], "2": [0, 5, 18, 20, 28, 35, 45, 48, 55, 56, 58, 59], "line": [0, 4, 5, 7, 10, 11, 13, 16, 17, 26, 32, 33, 35, 36, 37, 41, 43, 48, 58, 59], "up": [0, 2, 11, 20, 23, 28, 35, 43, 53, 57, 58, 59], "run": [0, 4, 13, 20, 25, 31, 35, 37, 38, 40, 41, 43, 46, 47, 48, 49, 52, 54, 57, 58, 59], "config": [0, 32, 36, 43, 54, 58, 59], "conveni": [0, 54, 57, 59], "import": [0, 4, 11, 16, 18, 35, 54, 57, 58, 59], "It": [0, 4, 13, 16, 26, 35, 37, 40, 43, 56, 57, 59], "also": [0, 4, 7, 9, 11, 13, 16, 18, 20, 25, 26, 35, 36, 37, 39, 40, 42, 43, 47, 49, 55, 56, 57, 59], "easi": [0, 37, 59], "customiz": [0, 59], "everyth": [0, 49, 59], "entir": [0, 2, 11, 16, 17, 35, 37, 55, 57, 59], "arrai": [0, 5, 8, 11, 13, 16, 17, 18, 26, 27, 31, 34, 35, 36, 37, 41, 43, 45, 47, 48, 49, 59], "domain": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 29, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 42, 43, 44, 46, 47, 48, 50, 52, 53, 57, 59], "event": [0, 54, 55, 57, 58, 59], "avail": [0, 7, 9, 11, 13, 16, 18, 20, 22, 24, 35, 37, 39, 43, 47, 48, 49, 53, 56, 57, 59], "A": [0, 2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 16, 18, 20, 24, 25, 26, 27, 28, 30, 31, 33, 34, 35, 36, 37, 40, 41, 42, 43, 45, 47, 48, 49, 51, 52, 58, 59, 60], "blaze": [0, 59], "fast": [0, 20, 59], "chrome": [0, 2, 5, 7, 25, 35, 37, 42, 43, 49, 51, 54, 57, 59], "ish": [0, 59], "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, 59], "binari": [0, 35, 59], "depend": [0, 4, 11, 16, 28, 35, 37, 39, 47, 48, 49, 52, 59], "equal": [0, 17, 18, 28, 47, 59], "bizarr": [0, 59], "increas": [0, 11, 28, 35, 39, 41, 59], "less": [0, 33, 35, 59], "detect": [0, 36, 37, 54, 57, 59], "code": [0, 4, 5, 8, 12, 13, 17, 21, 24, 28, 33, 35, 41, 43, 45, 48, 49, 58, 59], "fresh": [0, 35, 59], "profil": [0, 1, 5, 26, 31, 34, 47, 48, 49, 58, 59], "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, 57, 58, 59], "clean": [0, 58, 59], "exit": [0, 54, 59], "save": [0, 5, 7, 37, 51, 54, 55, 57, 59], "load": [0, 2, 4, 11, 22, 24, 34, 35, 37, 40, 42, 45, 47, 54, 56, 57, 59], "cooki": [0, 4, 35, 37, 47, 58, 59], "file": [0, 7, 16, 22, 28, 30, 33, 35, 37, 42, 55, 56, 57, 59], "repeat": [0, 28, 37, 59], "tediou": [0, 59], "login": [0, 57, 59], "step": [0, 13, 23, 31, 36, 55, 59], "smart": [0, 37, 59], "element": [0, 2, 3, 11, 16, 18, 20, 31, 33, 35, 36, 37, 39, 40, 43, 48, 57, 59], "lookup": [0, 35, 43, 56, 59], "selector": [0, 11, 16, 36, 55, 59], "text": [0, 2, 5, 8, 9, 10, 11, 13, 16, 18, 20, 24, 28, 32, 35, 37, 40, 43, 45, 55, 58, 59], "includ": [0, 2, 4, 11, 16, 18, 20, 26, 28, 35, 36, 37, 40, 43, 47, 49, 51, 55, 57, 59], "ifram": [0, 4, 16, 17, 18, 35, 37, 54, 57, 59], "content": [0, 2, 4, 8, 11, 13, 16, 18, 20, 24, 31, 35, 36, 37, 43, 45, 47, 49, 55, 57, 59], "could": [0, 4, 13, 35, 37, 55, 56, 57, 58, 59], "wait": [0, 35, 37, 42, 43, 54, 55, 57, 58, 59], "condit": [0, 11, 13, 16, 30, 35, 54, 57, 59], "appear": [0, 14, 16, 20, 35, 36, 57, 58, 59], "sinc": [0, 7, 8, 11, 13, 16, 17, 18, 20, 25, 26, 34, 35, 36, 37, 38, 39, 41, 43, 45, 48, 49, 57, 58, 59], "retri": [0, 35, 57, 59], "durat": [0, 3, 28, 31, 38, 39, 47, 52, 55, 59], "timeout": [0, 13, 37, 43, 57, 59], "until": [0, 2, 11, 13, 24, 35, 37, 47, 57, 59], "found": [0, 4, 9, 11, 16, 35, 56, 57, 58, 59], "singl": [0, 2, 11, 13, 20, 24, 26, 40, 47, 48, 53, 57, 59], "tab": [0, 9, 37, 42, 49, 54, 55, 58, 59], "find": [0, 2, 4, 11, 16, 58, 59], "accept": [0, 11, 35, 37, 42, 50, 55, 57, 58, 59], "best_match": [0, 58, 59], "flag": [0, 4, 11, 17, 20, 22, 26, 27, 35, 37, 42, 43, 53, 57, 59], "which": [0, 2, 4, 7, 11, 13, 16, 17, 18, 19, 20, 24, 26, 28, 31, 33, 35, 37, 39, 40, 42, 43, 46, 47, 49, 54, 55, 56, 57, 58, 59], "naiv": [0, 57, 59], "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, 59], "first": [0, 11, 13, 16, 20, 26, 31, 35, 40, 41, 49, 54, 56, 57, 59], "match": [0, 2, 11, 13, 16, 24, 35, 37, 43, 45, 49, 53, 57, 59], "candid": [0, 28, 47, 59], "closest": [0, 16, 57, 59], "length": [0, 3, 11, 13, 18, 20, 35, 47, 57, 58, 59], "descript": [0, 2, 6, 11, 13, 16, 35, 37, 42, 43, 44, 45, 48, 59], "__repr__": [0, 59], "repres": [0, 3, 4, 5, 11, 13, 16, 18, 19, 24, 28, 33, 35, 36, 40, 42, 43, 45, 47, 48, 54, 55, 59], "html": [0, 5, 11, 16, 28, 35, 37, 40, 53, 55, 57, 59], "util": [0, 54, 57, 59], "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, 57, 59], "convert": [0, 16, 47, 56, 57, 59], "undetected_chromedriv": [0, 59], "instanc": [0, 3, 5, 43, 54, 59], "contintu": [0, 59], "pack": [0, 59], "helper": [0, 59], "oper": [0, 4, 6, 11, 13, 16, 17, 21, 28, 30, 35, 47, 49, 57, 59], "quickstart": 0, "guid": [0, 7, 37, 51], "instal": [0, 22, 37, 42, 46], "usag": [0, 4, 11, 26, 37, 43, 47, 48, 55], "exampl": [0, 4, 5, 11, 25, 28, 37, 40, 41, 43, 48, 49, 55, 57], "complet": [0, 2, 13, 16, 18, 25, 35, 37], "custom": [0, 7, 11, 37], "option": [0, 2, 3, 4, 5, 7, 8, 9, 10, 11, 12, 13, 16, 17, 18, 19, 20, 23, 24, 25, 26, 27, 28, 30, 31, 32, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 45, 46, 47, 48, 49, 51, 52, 53, 55, 57], "altern": [0, 2, 24, 35, 43], "class": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 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], "creat": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 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, 56, 57, 58, 59], "target": [0, 1, 3, 4, 7, 11, 16, 20, 25, 29, 35, 36, 37, 39, 40, 42, 43, 45, 47, 54, 55, 57], "connect": [0, 22, 29, 35, 43, 45, 50, 52, 54, 57], "websocket_url": [0, 54, 57], "main_tab": [0, 54], "stop": [0, 9, 11, 13, 17, 21, 26, 32, 34, 37, 40, 41, 46, 51, 54, 55, 58, 59], "sleep": [0, 54, 57, 58, 59], "grant_all_permiss": [0, 54], "tile_window": [0, 54], "update_target": [0, 54, 57], "aclos": [0, 57], "activ": [0, 9, 11, 13, 20, 26, 28, 33, 35, 37, 40, 46, 47, 49, 54, 57], "add_handl": [0, 57], "aopen": [0, 57], "attach": [0, 18, 33, 35, 37, 42, 43, 49, 57], "back": [0, 4, 13, 28, 30, 31, 37, 57], "bring_to_front": [0, 37, 57, 58, 59], "close": [0, 7, 16, 23, 30, 35, 37, 42, 49, 52, 54, 57, 58, 59], "download_fil": [0, 57], "evalu": [0, 13, 26, 35, 37, 43, 57], "find_al": [0, 57], "find_element_by_text": [0, 57], "find_elements_by_text": [0, 55, 57], "forward": [0, 20, 28, 35, 37, 57], "fullscreen": [0, 7, 37, 57], "get_all_linked_sourc": [0, 57], "get_all_url": [0, 57], "get_cont": [0, 57, 58, 59], "get_window": [0, 57], "inspector_open": [0, 57], "inspector_url": [0, 57], "js_dump": [0, 57], "maxim": [0, 7, 35, 57], "medim": [0, 57], "minim": [0, 7, 26, 57], "open_external_inspector": [0, 57], "query_selector": [0, 16, 55, 57], "query_selector_al": [0, 16, 55, 57], "reload": [0, 13, 29, 37, 43, 57, 58, 59], "save_screenshot": [0, 55, 57, 58, 59], "scroll_down": [0, 57, 58, 59], "scroll_up": [0, 57], "select": [0, 2, 14, 16, 18, 28, 33, 36, 37, 55, 58, 59], "select_al": [0, 58, 59], "send": [0, 4, 10, 16, 25, 26, 28, 32, 33, 35, 37, 40, 41, 47, 49, 52, 55, 58, 59], "set_download_path": [0, 57], "set_window_s": [0, 57], "set_window_st": [0, 57], "verify_cf": [0, 57], "wait_for": [0, 57], "websocket": [0, 35, 37, 57], "tag": [0, 11, 13, 18, 20, 37, 40, 46, 51, 55, 57], "tag_nam": [0, 55], "node_id": [0, 2, 11, 16, 17, 26, 36, 39, 40, 52, 55], "backend_node_id": [0, 2, 3, 16, 17, 18, 31, 36, 37, 40, 55], "node_typ": [0, 16, 18, 52, 55], "node_nam": [0, 16, 18, 55], "local_nam": [0, 16, 55], "node_valu": [0, 16, 18, 55], "parent_id": [0, 2, 16, 37, 43, 55], "child_node_count": [0, 16, 55], "attribut": [0, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 23, 24, 26, 28, 29, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 43, 45, 46, 47, 48, 49, 50, 51, 52, 53, 55, 56], "document_url": [0, 16, 18, 35, 55], "base_url": [0, 16, 18, 28, 55], "public_id": [0, 16, 18, 55], "system_id": [0, 16, 18, 55], "internal_subset": [0, 16, 55], "xml_version": [0, 16, 55], "valu": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 23, 24, 25, 26, 27, 28, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 51, 52, 53, 55, 56, 57], "pseudo_typ": [0, 11, 16, 18, 55], "pseudo_identifi": [0, 11, 16, 18, 55], "shadow_root_typ": [0, 16, 18, 55], "frame_id": [0, 2, 4, 5, 7, 11, 16, 18, 24, 35, 36, 37, 39, 47, 55], "content_docu": [0, 16, 55], "shadow_root": [0, 16, 55], "template_cont": [0, 16, 55], "pseudo_el": [0, 11, 16, 55], "imported_docu": [0, 16, 55], "distributed_nod": [0, 16, 55], "is_svg": [0, 16, 55], "compatibility_mod": [0, 16, 55], "assigned_slot": [0, 16, 55], "save_to_dom": [0, 55], "remove_from_dom": [0, 55], "updat": [0, 2, 3, 4, 6, 11, 16, 20, 25, 26, 35, 37, 40, 41, 43, 47, 55, 56, 57], "node": [0, 2, 3, 5, 11, 16, 17, 18, 26, 31, 34, 36, 37, 40, 41, 52, 55, 57], "tree": [0, 2, 11, 16, 18, 26, 31, 37, 47, 55], "attr": [0, 16, 55], "parent": [0, 2, 11, 16, 18, 31, 37, 43, 54, 55], "children": [0, 2, 16, 17, 26, 36, 37, 41, 55], "remote_object": [0, 55], "object_id": [0, 2, 13, 16, 17, 26, 30, 36, 43, 55], "click": [18, 28, 37, 42, 55, 58, 59], "get_js_attribut": [0, 55], "appli": [0, 2, 4, 7, 11, 13, 20, 24, 31, 37, 51, 55], "get_posit": [0, 55], "mouse_click": [0, 55, 58, 59], "mouse_mov": [0, 55], "mouse_drag": [0, 55], "scroll_into_view": [0, 55], "clear_input": [0, 55], "send_kei": [0, 55, 58, 59], "send_fil": [0, 55], "select_opt": [0, 55], "set_valu": [0, 55], "set_text": [0, 55], "get_html": [0, 55], "text_al": [0, 55], "flash": [0, 7, 55, 58, 59], "highlight_overlai": [0, 55], "record_video": [0, 55], "is_record": [0, 6, 55], "browser_arg": [0, 54, 56, 58], "user_data_dir": [0, 54, 56, 58], "uses_custom_data_dir": [0, 56], "add_extens": [0, 56], "add_argu": [0, 56], "contradict": 0, "clear": [0, 4, 6, 15, 19, 20, 27, 32, 35, 37, 43, 47, 49, 53, 55, 56], "copi": [0, 16, 28, 56], "fromkei": [0, 56], "item": [0, 4, 7, 8, 11, 12, 13, 16, 18, 19, 24, 25, 27, 28, 30, 31, 34, 35, 36, 37, 41, 42, 43, 47, 48, 51, 56, 57], "kei": [0, 6, 8, 11, 19, 27, 28, 35, 37, 40, 42, 43, 45, 47, 53, 55, 56, 57, 58, 59], "pop": [0, 16, 56], "popitem": [0, 56], "setdefault": [0, 56], "cdict": [0, 56], "access": [0, 1, 4, 16, 26, 32, 36, 37, 47, 49, 56], "type": [0, 54, 55, 56, 57, 58, 59], "axnodeid": [0, 2], "axvaluetyp": [0, 2], "boolean": [0, 2, 13, 43], "tristat": [0, 2], "boolean_or_undefin": [0, 2], "idref": [0, 2], "idref_list": [0, 2], "integ": [0, 2, 16, 17, 26, 27, 43, 47], "node_list": [0, 2], "number": [0, 2, 5, 7, 8, 10, 11, 13, 16, 17, 18, 20, 26, 27, 28, 30, 31, 32, 33, 34, 35, 36, 37, 39, 41, 43, 47, 50, 51, 52, 57, 58, 59], "string": [0, 2, 4, 7, 8, 11, 13, 16, 18, 20, 24, 25, 27, 28, 31, 34, 35, 37, 43, 45, 47, 48, 49, 51, 53, 55, 57, 58, 59], "computed_str": [0, 2], "token": [0, 2, 35, 37, 47], "token_list": [0, 2], "dom_rel": [0, 2], "role": [0, 2, 47, 58, 59], "internal_rol": [0, 2], "value_undefin": [0, 2], "axvaluesourcetyp": [0, 2], "implicit": [0, 2, 11, 16], "style": [0, 2, 3, 11, 16, 18, 20, 33, 36, 37, 55], "placehold": [0, 2], "related_el": [0, 2], "axvaluenativesourcetyp": [0, 2], "figcapt": [0, 2], "label": [0, 2, 35, 36, 37, 43], "labelfor": [0, 2], "labelwrap": [0, 2], "legend": [0, 2], "rubyannot": [0, 2], "tablecapt": [0, 2], "titl": [0, 2, 11, 18, 23, 28, 36, 37, 38, 41, 45, 49, 58, 59], "axvaluesourc": [0, 2], "type_": [0, 2, 3, 4, 13, 17, 20, 27, 28, 31, 35, 37, 39, 43, 47, 48, 49], "attribute_valu": [0, 2], "supersed": [0, 2, 20], "native_sourc": [0, 2], "native_source_valu": [0, 2], "invalid": [0, 2, 13, 16, 35], "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, 11, 12, 13, 14, 16, 17, 18, 20, 21, 23, 24, 26, 27, 28, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 51, 52, 53, 56, 57, 58, 59], "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], "axpropertynam": [0, 2], "busi": [0, 2], "disabl": [0, 2, 3, 4, 5, 6, 9, 10, 11, 12, 13, 14, 16, 18, 19, 20, 21, 23, 24, 25, 26, 27, 29, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 43, 45, 46, 47, 52, 53], "edit": [0, 2, 11, 13, 16, 28], "focus": [0, 2, 16, 20, 49], "hidden": [0, 2, 20, 37, 55], "hidden_root": [0, 2], "keyshortcut": [0, 2], "settabl": [0, 2], "roledescript": [0, 2], "live": [0, 2, 13], "atom": [0, 2], "relev": [0, 2, 17, 36, 40], "root": [0, 2, 11, 16, 17, 18, 26, 31, 33, 37, 41, 47, 54], "autocomplet": [0, 2, 5, 56], "has_popup": [0, 2], "multiselect": [0, 2], "orient": [0, 2, 3, 15, 16, 20, 37], "multilin": [0, 2], "readonli": [0, 2], "requir": [0, 2, 7, 11, 16, 25, 27, 37, 42, 55], "valuemin": [0, 2], "valuemax": [0, 2], "valuetext": [0, 2], "check": [0, 2, 4, 13, 18, 42, 57], "expand": [0, 2], "modal": [0, 2], "press": [0, 2, 28, 37, 55], "activedescend": [0, 2], "control": [0, 2, 7, 28, 36, 37, 42, 43, 49, 51, 54, 57], "describedbi": [0, 2], "detail": [0, 2, 4, 7, 13, 16, 18, 24, 26, 33, 35, 37, 39, 41, 43, 45, 47, 49, 51, 57], "errormessag": [0, 2, 40], "flowto": [0, 2], "labelledbi": [0, 2], "own": [0, 2, 16, 18, 28, 31, 41, 43], "url": [0, 2, 4, 7, 8, 10, 11, 13, 16, 17, 18, 23, 24, 28, 31, 32, 35, 37, 39, 40, 41, 42, 43, 45, 47, 49, 54, 57], "axnod": [0, 2], "ignor": [0, 2, 4, 11, 16, 18, 28, 35, 37, 42, 45, 49, 51, 53, 57], "ignored_reason": [0, 2], "chrome_rol": [0, 2], "properti": [0, 2, 4, 11, 13, 16, 18, 33, 37, 40, 43, 52, 53, 54, 55, 56, 57], "child_id": [0, 2], "command": [0, 55], "enabl": [0, 2, 3, 4, 5, 6, 7, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 22, 23, 24, 25, 26, 27, 28, 29, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 45, 46, 47, 49, 51, 52, 53, 55], "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, 11, 25], "id_": [0, 2, 3, 5, 9, 12, 14, 26, 28, 35, 37, 40, 41, 43, 47, 48], "paused_st": [0, 3], "play_stat": [0, 3], "playback_r": [0, 3], "start_tim": [0, 3, 41], "current_tim": [0, 3, 52], "css_id": [0, 3], "view_or_scroll_timelin": [0, 3], "vieworscrolltimelin": [0, 3], "axi": [0, 3, 11, 28, 36], "source_node_id": [0, 3], "start_offset": [0, 3, 11, 41], "end_offset": [0, 3, 11, 41], "subject_node_id": [0, 3], "animationeffect": [0, 3], "delai": [0, 3, 20, 23, 28, 37, 51], "end_delai": [0, 3], "iteration_start": [0, 3], "iter": [0, 3, 16, 18, 19, 31, 49, 56], "fill": [0, 3, 5, 20, 36, 45, 58, 59], "eas": [0, 3], "keyframes_rul": [0, 3], "keyframesrul": [0, 3], "keyfram": [0, 3, 11], "keyframestyl": [0, 3], "offset": [0, 3, 7, 11, 13, 18, 20, 30, 31, 37, 41, 57], "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, 28], "affectedcooki": [0, 4], "path": [0, 4, 7, 8, 16, 22, 27, 35, 37, 55, 56, 57, 58], "affectedrequest": [0, 4], "request_id": [0, 4, 24, 35, 40, 47], "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, 35, 47, 54], "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, 7, 8, 9, 11, 14, 16, 18, 20, 24, 25, 27, 32, 35, 36, 37, 43, 45, 47, 50, 51, 54, 57], "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, 52, 57], "beacon": [0, 4], "csp_report": [0, 4], "download": [0, 4, 7, 11, 35, 37, 40, 55, 57], "event_sourc": [0, 4, 35], "favicon": [0, 4], "font": [0, 4, 11, 35, 37], "form": [0, 4, 5, 13, 16, 35, 37, 55, 57], "frame": [0, 2, 4, 5, 7, 11, 13, 16, 18, 20, 24, 25, 27, 28, 35, 36, 37, 39, 40, 43, 47, 48, 49], "imag": [0, 4, 7, 11, 16, 20, 25, 31, 35, 37, 39, 48, 55], "json": [0, 4, 7, 8, 13, 24, 25, 31, 35, 37, 40, 43, 49, 51, 53, 55, 56], "manifest": [0, 4, 35, 36, 37, 42, 56], "ping": [0, 4, 35], "plugin_data": [0, 4], "plugin_resourc": [0, 4], "prefetch": [0, 4, 35, 40], "resourc": [0, 4, 7, 10, 11, 13, 17, 20, 24, 32, 35, 37, 40, 45, 54], "script": [0, 4, 11, 13, 17, 18, 20, 35, 37, 40, 41, 43, 46, 47, 55, 57, 58, 59], "service_work": [0, 4, 47], "shared_work": [0, 4, 37], "speculation_rul": [0, 4], "stylesheet": [0, 4, 11, 35], "track": [0, 4, 11, 12, 13, 16, 19, 26, 28, 35, 36, 37, 43, 45, 47], "video": [0, 4, 33, 48, 55, 57], "worker": [0, 4, 6, 13, 32, 35, 37, 43, 49], "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, 24, 35], "blockedbyresponsereason": [0, 4], "coep_frame_resource_needs_coep_head": [0, 4, 35], "coop_sandboxed_i_frame_cannot_navigate_to_coop_pag": [0, 4], "corp_not_same_origin": [0, 4, 35], "corp_not_same_origin_after_defaulted_to_same_origin_by_coep": [0, 4, 35], "corp_not_same_origin_after_defaulted_to_same_origin_by_dip": [0, 4, 35], "corp_not_same_origin_after_defaulted_to_same_origin_by_coep_and_dip": [0, 4, 35], "corp_not_same_sit": [0, 4, 35], "blockedbyresponseissuedetail": [0, 4], "reason": [0, 2, 4, 13, 24, 29, 31, 35, 37, 40, 41, 43, 49, 55], "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, 48], "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, 13, 17, 32, 35, 37, 43, 46], "column_numb": [0, 4, 13, 17, 35, 37, 43, 46], "script_id": [0, 4, 13, 17, 37, 41, 43], "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, 37], "font_weight": [0, 4, 11], "corsissuedetail": [0, 4], "cors_error_statu": [0, 4, 35], "locat": [0, 4, 11, 13, 16, 24, 26, 28, 35, 37, 41, 42, 43, 49], "initiator_origin": [0, 4], "resource_ip_address_spac": [0, 4, 35], "client_security_st": [0, 4, 35], "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, 17], "invalid_paramet": [0, 4], "quirksmodeissuedetail": [0, 4], "is_limited_quirks_mod": [0, 4], "document_node_id": [0, 4], "loader_id": [0, 4, 35, 37, 40], "navigatoruseragentissuedetail": [0, 4], "shareddictionaryissuedetail": [0, 4], "shared_dictionary_error": [0, 4], "genericissueerrortyp": [0, 4], "cross_origin_portal_post_message_error": [0, 4], "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, 33, 40, 45], "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, 7, 14, 24, 28, 35, 36, 37, 40, 43, 45, 49], "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": [0, 4], "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, 9, 10, 11, 13, 24, 28, 32, 35, 37, 43, 45, 47, 49, 51], "autofil": [0, 1, 37], "creditcard": [0, 5], "expiry_month": [0, 5], "expiry_year": [0, 5], "cvc": [0, 5], "addressfield": [0, 5], "field": [0, 4, 5, 7, 11, 24, 28, 35, 37, 39, 43, 45, 49, 52, 55, 58, 59], "address": [0, 5, 34, 35], "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, 13, 23, 28, 32, 35, 36, 37, 40, 41, 45, 51, 53, 55], "addressformfil": [0, 5], "filled_field": [0, 5], "address_ui": [0, 5], "backgroundservic": [0, 1], "servicenam": [0, 6], "background_fetch": [0, 6, 7], "background_sync": [0, 6, 7], "push_messag": [0, 6], "notif": [0, 3, 5, 6, 7, 10, 16, 20, 29, 32, 34, 35, 36, 37, 43, 47, 49, 54], "payment_handl": [0, 6, 7], "periodic_background_sync": [0, 6, 7], "eventmetadata": [0, 6], "backgroundserviceev": [0, 6], "timestamp": [0, 6, 11, 20, 25, 26, 28, 32, 33, 35, 37, 38, 41, 43], "origin": [0, 3, 4, 6, 7, 8, 10, 11, 17, 19, 20, 24, 27, 35, 37, 40, 43, 46, 47, 49], "service_worker_registration_id": [0, 6], "servic": [0, 6, 35, 47, 49, 51], "event_nam": [0, 6, 17, 21, 35], "instance_id": [0, 6], "event_metadata": [0, 6], "storage_kei": [0, 6, 8, 19, 27, 47], "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, 7, 47, 49], "windowid": [0, 7], "windowst": [0, 7], "normal": [0, 7, 11, 20, 23, 28, 43, 54, 57], "bound": [0, 7, 16, 18, 27, 37, 50, 57], "left": [0, 7, 28, 30, 31, 37, 55, 57], "top": [0, 7, 13, 16, 28, 31, 35, 37, 41, 43, 54, 57], "width": [0, 7, 11, 16, 18, 20, 31, 36, 37, 48, 49, 57], "height": [0, 7, 11, 16, 18, 20, 31, 36, 37, 48, 49, 57], "window_st": [0, 7], "permissiontyp": [0, 7], "accessibility_ev": [0, 7], "audio_captur": [0, 7], "captured_surface_control": [0, 7, 37], "clipboard_read_writ": [0, 7], "clipboard_sanitized_writ": [0, 7], "display_captur": [0, 7, 37], "durable_storag": [0, 7], "geoloc": [0, 7, 20, 37, 54], "idle_detect": [0, 7, 37], "local_font": [0, 7, 37], "midi": [0, 7, 37, 54], "midi_sysex": [0, 7], "nfc": [0, 7, 53, 54], "protected_media_identifi": [0, 7], "sensor": [0, 7, 20, 37, 54], "storage_access": [0, 7, 35, 37], "speaker_select": [0, 7, 37], "top_level_storage_access": [0, 7, 35], "video_captur": [0, 7], "video_capture_pan_tilt_zoom": [0, 7], "wake_lock_screen": [0, 7], "wake_lock_system": [0, 7], "window_manag": [0, 7, 37], "permissionset": [0, 7], "grant": [0, 4, 7, 37, 49, 54], "deni": [0, 7, 37], "prompt": [0, 7, 14, 37], "permissiondescriptor": [0, 7], "sysex": [0, 7], "user_visible_onli": [0, 7], "allow_without_sanit": [0, 7], "allow_without_gestur": [0, 7], "pan_tilt_zoom": [0, 7], "browsercommandid": [0, 7], "open_tab_search": [0, 7], "close_tab_search": [0, 7], "bucket": [0, 7, 8, 27, 47, 51], "low": [0, 7, 35, 48], "high": [0, 7, 35], "count": [0, 7, 8, 16, 26, 27, 28, 35, 37, 41, 47], "histogram": [0, 7], "sum_": [0, 7], "add_privacy_sandbox_enrollment_overrid": [0, 7], "cancel_download": [0, 7], "crash": [0, 7, 29, 37, 49, 55, 57], "crash_gpu_process": [0, 7], "execute_browser_command": [0, 7], "get_browser_command_lin": [0, 7], "get_histogram": [0, 7], "get_vers": [0, 7], "get_window_bound": [0, 7], "get_window_for_target": [0, 7], "grant_permiss": [0, 7], "reset_permiss": [0, 7], "set_dock_til": [0, 7], "set_download_behavior": [0, 7, 37], "set_permiss": [0, 7], "set_window_bound": [0, 7], "downloadwillbegin": [0, 7, 37], "suggested_filenam": [0, 7, 37], "downloadprogress": [0, 7, 37], "total_byt": [0, 7, 37], "received_byt": [0, 7, 37], "state": [0, 2, 3, 4, 6, 7, 11, 13, 16, 20, 24, 26, 35, 37, 40, 42, 43, 45, 47, 48, 53, 57], "cachestorag": [0, 1], "cacheid": [0, 8], "cachedresponsetyp": [0, 8], "basic": [0, 8, 24, 35], "cor": [0, 4, 8, 35], "error": [0, 2, 4, 5, 8, 9, 12, 13, 16, 20, 23, 24, 33, 35, 37, 38, 40, 42, 43, 45, 46, 49, 57], "opaque_respons": [0, 8], "opaque_redirect": [0, 8], "dataentri": [0, 8, 27], "request_url": [0, 8, 35, 45], "request_method": [0, 8], "request_head": [0, 8, 35], "response_tim": [0, 8, 35], "response_statu": [0, 8], "response_status_text": [0, 8, 24], "response_typ": [0, 8], "response_head": [0, 8, 24, 35], "cach": [0, 8, 35, 37, 46, 47, 57], "cache_id": [0, 8], "security_origin": [0, 8, 19, 27, 37], "cache_nam": [0, 8, 47], "storage_bucket": [0, 8, 27, 47], "header": [0, 4, 8, 11, 20, 24, 35, 37, 40, 43, 46], "cachedrespons": [0, 8], "bodi": [0, 4, 8, 11, 13, 24, 35, 43], "delete_cach": [0, 8], "delete_entri": [0, 8], "request_cache_nam": [0, 8], "request_cached_respons": [0, 8], "request_entri": [0, 8], "cast": [0, 1], "sink": [0, 9, 17], "session": [0, 7, 9, 16, 19, 35, 47, 49, 54, 58, 59], "set_sink_to_us": [0, 9], "start_desktop_mirror": [0, 9], "start_tab_mirror": [0, 9], "stop_cast": [0, 9], "sinksupd": [0, 9], "issueupd": [0, 9], "issue_messag": [0, 9], "consol": [0, 1, 4, 16, 26, 41, 43, 57], "consolemessag": [0, 10], "column": [0, 10, 11, 13, 17, 35, 36, 37, 43], "clear_messag": [0, 10], "messagead": [0, 10], "messag": [0, 4, 9, 10, 12, 16, 32, 33, 35, 36, 37, 43, 46, 49, 51], "css": [0, 1, 3, 4, 16, 20, 28, 36, 37, 57], "stylesheetid": [0, 11], "stylesheetorigin": [0, 11], "inject": [0, 11, 37, 49], "user_ag": [0, 11, 16, 20, 35], "inspector": [0, 1, 4, 11, 35, 57], "regular": [0, 11, 17, 21, 24, 55, 57], "pseudoelementmatch": [0, 11], "inheritedstyleentri": [0, 11], "matched_css_rul": [0, 11], "inline_styl": [0, 11], "inheritedpseudoelementmatch": [0, 11], "rulematch": [0, 11], "rule": [0, 3, 4, 11, 13, 35, 40, 43], "matching_selector": [0, 11], "range_": [0, 11], "specif": [0, 4, 6, 7, 11, 13, 33, 35, 40, 42, 43, 47, 49, 53], "b": [0, 11, 16, 37, 53, 60], "c": [0, 7, 11, 20, 33, 35, 42, 55], "selectorlist": [0, 11], "cssstylesheethead": [0, 11], "style_sheet_id": [0, 11], "source_url": [0, 11, 43, 46], "is_inlin": [0, 11], "is_mut": [0, 11], "is_construct": [0, 11], "start_lin": [0, 11, 13], "start_column": [0, 11, 13], "end_lin": [0, 11, 13], "end_column": [0, 11, 13], "source_map_url": [0, 11, 13], "owner_nod": [0, 11], "has_source_url": [0, 11, 13], "loading_fail": [0, 11], "cssrule": [0, 11], "selector_list": [0, 11], "nesting_selector": [0, 11], "media": [0, 1, 11, 20, 35, 37, 42], "container_queri": [0, 11], "support": [0, 7, 11, 13, 20, 24, 25, 28, 30, 35, 37, 39, 42, 44, 48, 49, 51, 52, 53, 55], "layer": [0, 11, 16, 24, 31, 36], "scope": [0, 11, 13, 35, 37, 42, 43, 53, 58, 59], "rule_typ": [0, 11], "cssruletyp": [0, 11], "media_rul": [0, 11], "supports_rul": [0, 11], "container_rul": [0, 11], "layer_rul": [0, 11], "scope_rul": [0, 11], "style_rul": [0, 11], "ruleusag": [0, 11], "sourcerang": [0, 11], "shorthandentri": [0, 11], "csscomputedstyleproperti": [0, 11, 16], "cssstyle": [0, 11], "css_properti": [0, 11], "shorthand_entri": [0, 11], "css_text": [0, 11], "cssproperti": [0, 11], "parsed_ok": [0, 11], "longhand_properti": [0, 11], "cssmedia": [0, 11], "media_list": [0, 11], "mediaqueri": [0, 11], "express": [0, 11, 13, 43, 57], "mediaqueryexpress": [0, 11], "unit": [0, 11], "value_rang": [0, 11], "computed_length": [0, 11], "csscontainerqueri": [0, 11], "physical_ax": [0, 11, 16], "logical_ax": [0, 11, 16], "csssupport": [0, 11], "cssscope": [0, 11], "csslayer": [0, 11], "csslayerdata": [0, 11], "order": [0, 11, 18, 20, 26, 33, 36, 37, 42, 47, 56], "sub_lay": [0, 11], "platformfontusag": [0, 11], "family_nam": [0, 5, 11], "post_script_nam": [0, 11], "is_custom_font": [0, 11], "glyph_count": [0, 11], "fontvariationaxi": [0, 11], "min_valu": [0, 11, 52], "max_valu": [0, 11, 52], "default_valu": [0, 11, 52], "fontfac": [0, 11], "font_famili": [0, 11, 37], "font_styl": [0, 11], "font_vari": [0, 11], "font_stretch": [0, 11], "font_displai": [0, 11], "unicode_rang": [0, 11], "src": [0, 4, 7, 11, 28, 35, 37, 49, 57, 58, 59], "platform_font_famili": [0, 11], "font_variation_ax": [0, 11], "csstryrul": [0, 11], "csspositionfallbackrul": [0, 11], "try_rul": [0, 11], "csspositiontryrul": [0, 11], "csskeyframesrul": [0, 11], "animation_nam": [0, 11], "csspropertyregistr": [0, 11], "property_nam": [0, 11], "inherit": [0, 11, 16, 43, 56], "syntax": [0, 11, 35], "initial_valu": [0, 11, 40], "cssfontpalettevaluesrul": [0, 11], "font_palette_nam": [0, 11], "csspropertyrul": [0, 11], "csskeyframerul": [0, 11], "key_text": [0, 11], "styledeclarationedit": [0, 11], "add_rul": [0, 11], "collect_class_nam": [0, 11], "create_style_sheet": [0, 11], "force_pseudo_st": [0, 11], "get_background_color": [0, 11], "get_computed_style_for_nod": [0, 11], "get_inline_styles_for_nod": [0, 11], "get_layers_for_nod": [0, 11], "get_location_for_selector": [0, 11], "get_matched_styles_for_nod": [0, 11], "get_media_queri": [0, 11], "get_platform_fonts_for_nod": [0, 11], "get_style_sheet_text": [0, 11], "set_container_query_text": [0, 11], "set_effective_property_value_for_nod": [0, 11], "set_keyframe_kei": [0, 11], "set_local_fonts_en": [0, 11], "set_media_text": [0, 11], "set_property_rule_property_nam": [0, 11], "set_rule_selector": [0, 11], "set_scope_text": [0, 11], "set_style_sheet_text": [0, 11], "set_style_text": [0, 11], "set_supports_text": [0, 11], "start_rule_usage_track": [0, 11], "stop_rule_usage_track": [0, 11], "take_computed_style_upd": [0, 11], "take_coverage_delta": [0, 11], "track_computed_style_upd": [0, 11], "fontsupd": [0, 11], "mediaqueryresultchang": [0, 11], "stylesheetad": [0, 11], "stylesheetchang": [0, 11], "stylesheetremov": [0, 11], "databas": [0, 1, 27, 47], "databaseid": [0, 12], "version": [0, 7, 12, 13, 16, 17, 18, 20, 25, 27, 35, 36, 37, 38, 44, 45, 46, 48, 49], "execute_sql": [0, 12], "get_database_table_nam": [0, 12], "adddatabas": [0, 12], "debugg": [0, 1, 21, 37, 43], "breakpointid": [0, 13], "callframeid": [0, 13], "scriptposit": [0, 13], "locationrang": [0, 13], "end": [0, 3, 4, 11, 13, 16, 28, 30, 31, 35, 37, 41, 43, 47, 51, 55], "callfram": [0, 13, 26, 41, 43], "call_frame_id": [0, 13], "function_nam": [0, 13, 41, 43], "scope_chain": [0, 13], "function_loc": [0, 13], "return_valu": [0, 13], "can_be_restart": [0, 13], "object_": [0, 13, 43], "start_loc": [0, 13], "end_loc": [0, 13], "searchmatch": [0, 13, 35, 37], "line_cont": [0, 13], "breakloc": [0, 13], "wasmdisassemblychunk": [0, 13], "bytecode_offset": [0, 13], "scriptlanguag": [0, 13], "java_script": [0, 13], "web_assembli": [0, 13], "debugsymbol": [0, 13], "external_url": [0, 13], "continue_to_loc": [0, 13], "disassemble_wasm_modul": [0, 13], "evaluate_on_call_fram": [0, 13], "get_possible_breakpoint": [0, 13], "get_script_sourc": [0, 13], "get_stack_trac": [0, 13], "get_wasm_bytecod": [0, 13], "next_wasm_disassembly_chunk": [0, 13], "paus": [0, 3, 13, 20, 24, 26, 37, 43, 49, 55], "pause_on_async_cal": [0, 13], "remove_breakpoint": [0, 13], "restart_fram": [0, 13], "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], "search_in_cont": [0, 13], "set_async_call_stack_depth": [0, 13, 43], "set_blackbox_pattern": [0, 13], "set_blackboxed_rang": [0, 13], "set_breakpoint": [0, 13], "set_breakpoint_by_url": [0, 13], "set_breakpoint_on_function_cal": [0, 13], "set_breakpoints_act": [0, 13], "set_instrumentation_breakpoint": [0, 13, 17, 21], "set_pause_on_except": [0, 13], "set_return_valu": [0, 13], "set_script_sourc": [0, 13], "set_skip_all_paus": [0, 13], "set_variable_valu": [0, 13], "step_into": [0, 13], "step_out": [0, 13], "step_ov": [0, 13], "breakpointresolv": [0, 13], "breakpoint_id": [0, 13], "call_fram": [0, 13, 26, 41, 43], "data": [0, 2, 5, 6, 8, 11, 13, 16, 18, 20, 24, 25, 27, 28, 30, 31, 33, 35, 36, 37, 41, 43, 46, 47, 51, 52], "hit_breakpoint": [0, 13], "async_stack_trac": [0, 13], "async_stack_trace_id": [0, 13], "async_call_stack_trace_id": [0, 13], "scriptfailedtopars": [0, 13], "execution_context_id": [0, 13, 16, 43], "hash_": [0, 13], "execution_context_aux_data": [0, 13], "is_modul": [0, 13], "stack_trac": [0, 13, 32, 43], "code_offset": [0, 13], "script_languag": [0, 13], "embedder_nam": [0, 13], "scriptpars": [0, 13], "is_live_edit": [0, 13], "debug_symbol": [0, 13], "deviceaccess": [0, 1], "requestid": [0, 4, 14, 24, 32, 35, 40, 47], "deviceid": [0, 14], "promptdevic": [0, 14], "cancel_prompt": [0, 14], "select_prompt": [0, 14], "devicerequestprompt": [0, 14], "devic": [0, 9, 14, 15, 20, 28, 36, 37, 48, 53], "deviceorient": [0, 1], "clear_device_orientation_overrid": [0, 15, 37], "set_device_orientation_overrid": [0, 15, 37], "dom": [0, 1, 2, 5, 7, 11, 13, 17, 18, 19, 28, 36, 37, 39, 43, 54, 55, 57], "nodeid": [0, 2, 11, 16, 17, 36], "backendnodeid": [0, 2, 3, 4, 5, 11, 16, 17, 18, 31, 36, 37, 39, 40], "backendnod": [0, 16], "pseudotyp": [0, 11, 16, 18], "first_lin": [0, 16], "first_lett": [0, 16], "befor": [0, 4, 13, 16, 20, 23, 24, 25, 26, 30, 31, 35, 37, 38, 39, 41, 47, 55, 58, 59], "after": [0, 4, 11, 13, 16, 20, 24, 28, 29, 35, 36, 37, 43, 54, 57], "marker": [0, 16, 28, 51], "backdrop": [0, 16], "search_text": [0, 16], "target_text": [0, 16], "spelling_error": [0, 16], "grammar_error": [0, 16], "highlight": [0, 16, 36, 55], "first_line_inherit": [0, 16], "scroll_mark": [0, 16], "scroll_marker_group": [0, 16], "scrollbar": [0, 16, 20, 37], "scrollbar_thumb": [0, 16], "scrollbar_button": [0, 16], "scrollbar_track": [0, 16], "scrollbar_track_piec": [0, 16], "scrollbar_corn": [0, 16], "resiz": [0, 11, 16, 20, 36], "input_list_button": [0, 16], "view_transit": [0, 16], "view_transition_group": [0, 16], "view_transition_image_pair": [0, 16], "view_transition_old": [0, 16], "view_transition_new": [0, 16], "shadowroottyp": [0, 16, 18], "open_": [0, 16], "compatibilitymod": [0, 16], "quirks_mod": [0, 16], "limited_quirks_mod": [0, 16], "no_quirks_mod": [0, 16], "physicalax": [0, 11, 16], "horizont": [0, 16, 18, 20, 37], "vertic": [0, 16, 18, 20, 37], "both": [0, 16, 28, 35, 37], "logicalax": [0, 11, 16], "inlin": [0, 11, 16, 18, 37, 40, 57], "block": [0, 4, 16, 31, 35, 37, 41, 43, 48, 55, 57], "scrollorient": [0, 3, 16], "rgba": [0, 16, 20, 36], "r": [0, 16], "g": [0, 2, 4, 5, 11, 16, 20, 28, 35, 37, 43, 45, 48, 51], "quad": [0, 16, 36], "boxmodel": [0, 16], "pad": [0, 16, 36], "border": [0, 16, 36], "margin": [0, 16, 36, 37], "shape_outsid": [0, 16], "shapeoutsideinfo": [0, 16], "shape": [0, 16, 36], "margin_shap": [0, 16], "rect": [0, 16, 18, 31, 36, 37, 39], "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, 55, 56, 57], "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, 55], "collect_class_names_from_subtre": [0, 16], "copy_to": [0, 16], "describe_nod": [0, 16], "discard_search_result": [0, 16], "get_anchor_el": [0, 16], "get_attribut": [0, 16], "get_box_model": [0, 16], "get_container_for_nod": [0, 16], "get_content_quad": [0, 16], "get_docu": [0, 16], "get_element_by_rel": [0, 16], "get_file_info": [0, 16], "get_flattened_docu": [0, 16], "get_frame_own": [0, 16], "get_node_for_loc": [0, 16], "get_node_stack_trac": [0, 16], "get_nodes_for_subtree_by_styl": [0, 16], "get_outer_html": [0, 16], "get_querying_descendants_for_contain": [0, 16], "get_relayout_boundari": [0, 16], "get_search_result": [0, 16], "get_top_layer_el": [0, 16], "hide_highlight": [0, 16, 36], "highlight_nod": [0, 16, 36], "highlight_rect": [0, 16, 36], "mark_undoable_st": [0, 16], "move_to": [0, 16], "perform_search": [0, 16], "push_node_by_path_to_frontend": [0, 16], "push_nodes_by_backend_ids_to_frontend": [0, 16], "redo": [0, 16], "remove_attribut": [0, 16], "remove_nod": [0, 16], "request_child_nod": [0, 16], "request_nod": [0, 16], "resolve_nod": [0, 16], "scroll_into_view_if_need": [0, 16], "set_attribute_valu": [0, 16], "set_attributes_as_text": [0, 16], "set_file_input_fil": [0, 16], "set_inspected_nod": [0, 16], "set_node_nam": [0, 16], "set_node_stack_traces_en": [0, 16], "set_node_valu": [0, 16], "set_outer_html": [0, 16], "undo": [0, 16], "attributemodifi": [0, 16], "attributeremov": [0, 16], "characterdatamodifi": [0, 16], "character_data": [0, 16], "childnodecountupd": [0, 16], "childnodeinsert": [0, 16], "parent_node_id": [0, 16], "previous_node_id": [0, 16], "childnoderemov": [0, 16], "distributednodesupd": [0, 16], "insertion_point_id": [0, 16], "documentupd": [0, 16], "inlinestyleinvalid": [0, 16], "pseudoelementad": [0, 16], "toplayerelementsupd": [0, 16], "pseudoelementremov": [0, 16], "pseudo_element_id": [0, 16], "setchildnod": [0, 16], "shadowrootpop": [0, 16], "host_id": [0, 16], "root_id": [0, 16], "shadowrootpush": [0, 16], "domdebugg": [0, 1], "dombreakpointtyp": [0, 17], "subtree_modifi": [0, 17], "attribute_modifi": [0, 17], "node_remov": [0, 17], "cspviolationtyp": [0, 17], "trustedtype_sink_viol": [0, 17], "trustedtype_policy_viol": [0, 17], "eventlisten": [0, 17, 18], "use_captur": [0, 17], "passiv": [0, 17], "onc": [0, 13, 16, 17, 21, 22, 35, 37, 43], "handler": [0, 17, 35, 37, 42, 43, 57], "original_handl": [0, 17], "get_event_listen": [0, 17], "remove_dom_breakpoint": [0, 17], "remove_event_listener_breakpoint": [0, 17], "remove_instrumentation_breakpoint": [0, 17, 21], "remove_xhr_breakpoint": [0, 17], "set_break_on_csp_viol": [0, 17], "set_dom_breakpoint": [0, 17], "set_event_listener_breakpoint": [0, 17], "set_xhr_breakpoint": [0, 17], "domsnapshot": [0, 1, 16], "domnod": [0, 16, 18], "text_valu": [0, 18], "input_valu": [0, 18], "input_check": [0, 18], "option_select": [0, 18], "child_node_index": [0, 18], "pseudo_element_index": [0, 18], "layout_node_index": [0, 18], "content_languag": [0, 18], "document_encod": [0, 18], "content_document_index": [0, 18], "is_click": [0, 18], "event_listen": [0, 18], "current_source_url": [0, 18], "origin_url": [0, 18], "scroll_offset_x": [0, 18, 37], "scroll_offset_i": [0, 18, 37], "inlinetextbox": [0, 18], "bounding_box": [0, 18], "start_character_index": [0, 18], "num_charact": [0, 18], "layouttreenod": [0, 18], "dom_node_index": [0, 18], "layout_text": [0, 18], "inline_text_nod": [0, 18], "style_index": [0, 18], "paint_ord": [0, 18], "is_stacking_context": [0, 18], "computedstyl": [0, 18], "namevalu": [0, 18], "stringindex": [0, 18], "arrayofstr": [0, 18], "rarestringdata": [0, 18], "index": [0, 16, 18, 26, 27, 35, 37, 43], "rarebooleandata": [0, 18], "rareintegerdata": [0, 18], "rectangl": [0, 16, 18, 31, 36, 37], "documentsnapshot": [0, 18], "encoding_nam": [0, 18], "layout": [0, 4, 16, 18, 25, 28, 31, 36, 37, 39], "text_box": [0, 18], "content_width": [0, 18], "content_height": [0, 18], "nodetreesnapshot": [0, 18], "parent_index": [0, 18], "layouttreesnapshot": [0, 18], "node_index": [0, 18], "stacking_context": [0, 18], "offset_rect": [0, 18], "scroll_rect": [0, 18, 31], "client_rect": [0, 18], "blended_background_color": [0, 18], "text_color_opac": [0, 18], "textboxsnapshot": [0, 18], "layout_index": [0, 18], "capture_snapshot": [0, 18, 37], "get_snapshot": [0, 18], "domstorag": [0, 1], "serializedstoragekei": [0, 19, 47], "storageid": [0, 19], "is_local_storag": [0, 19], "get_dom_storage_item": [0, 19], "remove_dom_storage_item": [0, 19], "set_dom_storage_item": [0, 19], "domstorageitemad": [0, 19], "storage_id": [0, 19], "new_valu": [0, 13, 19], "domstorageitemremov": [0, 19], "domstorageitemupd": [0, 19], "old_valu": [0, 19], "domstorageitemsclear": [0, 19], "emul": [0, 1, 28, 35, 36, 37], "screenorient": [0, 20, 37], "angl": [0, 20, 28], "displayfeatur": [0, 20], "mask_length": [0, 20], "devicepostur": [0, 20], "mediafeatur": [0, 20], "virtualtimepolici": [0, 20], "advanc": [0, 20], "pause_if_network_fetches_pend": [0, 20], "useragentbrandvers": [0, 20], "brand": [0, 20], "useragentmetadata": [0, 20, 35], "platform": [0, 6, 7, 11, 20, 28, 35, 36, 37, 39, 48, 51, 52], "platform_vers": [0, 20], "architectur": [0, 20], "model": [0, 16, 20, 37, 48], "mobil": [0, 20, 37], "full_version_list": [0, 20], "full_vers": [0, 20], "bit": [0, 20, 28, 37, 47, 53, 55], "wow64": [0, 20, 37], "sensortyp": [0, 20], "absolute_orient": [0, 20], "acceleromet": [0, 20, 37], "ambient_light": [0, 20], "graviti": [0, 20], "gyroscop": [0, 20, 37], "linear_acceler": [0, 20], "magnetomet": [0, 20, 37], "proxim": [0, 20], "relative_orient": [0, 20], "sensormetadata": [0, 20], "minimum_frequ": [0, 20], "maximum_frequ": [0, 20], "sensorreadingsingl": [0, 20], "sensorreadingxyz": [0, 20], "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], "sensorreadingquaternion": [0, 20], "w": [0, 20], "sensorread": [0, 20], "xyz": [0, 20], "quaternion": [0, 20], "disabledimagetyp": [0, 20], "avif": [0, 20], "webp": [0, 20, 25, 48], "can_emul": [0, 20], "clear_device_metrics_overrid": [0, 20, 37], "clear_device_posture_overrid": [0, 20], "clear_geolocation_overrid": [0, 20, 37], "clear_idle_overrid": [0, 20], "get_overridden_sensor_inform": [0, 20], "reset_page_scale_factor": [0, 20], "set_auto_dark_mode_overrid": [0, 20], "set_automation_overrid": [0, 20], "set_cpu_throttling_r": [0, 20], "set_default_background_color_overrid": [0, 20], "set_device_metrics_overrid": [0, 20, 37], "set_device_posture_overrid": [0, 20], "set_disabled_image_typ": [0, 20], "set_document_cookie_dis": [0, 20], "set_emit_touch_events_for_mous": [0, 20], "set_emulated_media": [0, 20], "set_emulated_vision_defici": [0, 20], "set_focus_emulation_en": [0, 20], "set_geolocation_overrid": [0, 20, 37], "set_hardware_concurrency_overrid": [0, 20], "set_idle_overrid": [0, 20], "set_locale_overrid": [0, 20], "set_navigator_overrid": [0, 20], "set_page_scale_factor": [0, 20], "set_script_execution_dis": [0, 20], "set_scrollbars_hidden": [0, 20], "set_sensor_override_en": [0, 20], "set_sensor_override_read": [0, 20], "set_timezone_overrid": [0, 20], "set_touch_emulation_en": [0, 20, 37], "set_user_agent_overrid": [0, 20, 35], "set_virtual_time_polici": [0, 20], "set_visible_s": [0, 20], "virtualtimebudgetexpir": [0, 20], "eventbreakpoint": [0, 1], "extens": [0, 1, 11, 36, 37, 42, 53, 56], "load_unpack": [0, 22], "fedcm": [0, 1], "loginst": [0, 23], "sign_in": [0, 23], "sign_up": [0, 23], "dialogtyp": [0, 23, 37], "account_choos": [0, 23], "auto_reauthn": [0, 23], "confirm_idp_login": [0, 23], "dialogbutton": [0, 23], "confirm_idp_login_continu": [0, 23], "error_got_it": [0, 23], "error_more_detail": [0, 23], "accounturltyp": [0, 23], "terms_of_servic": [0, 23], "privacy_polici": [0, 23], "account": [0, 23, 37, 58, 59], "account_id": [0, 23], "email": [0, 23, 58, 59], "given_nam": [0, 5, 23], "picture_url": [0, 23], "idp_config_url": [0, 23], "idp_login_url": [0, 23], "login_st": [0, 23], "terms_of_service_url": [0, 23], "privacy_policy_url": [0, 23], "click_dialog_button": [0, 23], "dismiss_dialog": [0, 23], "open_url": [0, 23], "reset_cooldown": [0, 23], "select_account": [0, 23], "dialogshown": [0, 23], "dialog_id": [0, 23], "dialog_typ": [0, 23], "subtitl": [0, 23], "dialogclos": [0, 23], "fetch": [0, 1, 2, 8, 20, 27, 35, 37, 47, 52], "requeststag": [0, 24], "respons": [0, 4, 8, 14, 16, 24, 25, 35, 37, 46, 49, 53], "requestpattern": [0, 24, 35], "url_pattern": [0, 24, 35], "request_stag": [0, 24], "headerentri": [0, 24], "authchalleng": [0, 24, 35], "scheme": [0, 24, 35, 37], "realm": [0, 24, 35], "authchallengerespons": [0, 24, 35], "usernam": [0, 24, 35], "password": [0, 5, 24, 35], "continue_request": [0, 24], "continue_respons": [0, 24], "continue_with_auth": [0, 24], "fail_request": [0, 24], "fulfill_request": [0, 24], "get_response_bodi": [0, 24, 35], "take_response_body_as_stream": [0, 24], "requestpaus": [0, 24, 35], "response_error_reason": [0, 24, 35], "response_status_cod": [0, 24, 35], "network_id": [0, 24], "redirected_request_id": [0, 24], "authrequir": [0, 24], "auth_challeng": [0, 24, 35], "headlessexperiment": [0, 1], "screenshotparam": [0, 25], "format_": [0, 25, 37], "qualiti": [0, 4, 25, 37], "optimize_for_spe": [0, 25, 37], "begin_fram": [0, 25], "heapprofil": [0, 1], "heapsnapshotobjectid": [0, 26], "samplingheapprofilenod": [0, 26], "self_siz": [0, 26], "samplingheapprofilesampl": [0, 26], "size": [0, 4, 7, 11, 13, 20, 25, 26, 30, 34, 35, 36, 37, 39, 43, 47, 48, 51, 52, 53, 55, 57], "ordin": [0, 26], "samplingheapprofil": [0, 26], "head": [0, 26, 57], "sampl": [0, 7, 26, 34, 41, 51, 52], "add_inspected_heap_object": [0, 26], "collect_garbag": [0, 26], "get_heap_object_id": [0, 26], "get_object_by_heap_object_id": [0, 26], "get_sampling_profil": [0, 26, 34], "start_sampl": [0, 26, 34], "start_tracking_heap_object": [0, 26], "stop_sampl": [0, 26, 34], "stop_tracking_heap_object": [0, 26], "take_heap_snapshot": [0, 26], "addheapsnapshotchunk": [0, 26], "chunk": [0, 13, 26, 30, 35], "heapstatsupd": [0, 26], "stats_upd": [0, 26], "lastseenobjectid": [0, 26], "last_seen_object_id": [0, 26], "reportheapsnapshotprogress": [0, 26], "done": [0, 5, 7, 26, 37, 47, 57], "total": [0, 4, 7, 13, 16, 26, 34, 35, 37, 43, 47, 51, 57], "finish": [0, 2, 4, 26, 35, 42, 52, 58], "resetprofil": [0, 26], "indexeddb": [0, 1, 47], "databasewithobjectstor": [0, 27], "object_stor": [0, 27], "objectstor": [0, 27, 47], "key_path": [0, 27], "auto_incr": [0, 27], "objectstoreindex": [0, 27], "uniqu": [0, 2, 3, 4, 7, 8, 12, 13, 16, 24, 26, 27, 28, 31, 33, 35, 37, 40, 41, 43, 49, 52], "multi_entri": [0, 27], "date": [0, 27, 35, 37, 45, 57], "keyrang": [0, 27], "lower_open": [0, 27], "upper_open": [0, 27], "lower": [0, 27], "upper": [0, 27], "primary_kei": [0, 27], "keypath": [0, 27], "clear_object_stor": [0, 27], "delete_databas": [0, 27], "delete_object_store_entri": [0, 27], "get_metadata": [0, 27], "request_data": [0, 27], "request_databas": [0, 27], "request_database_nam": [0, 27], "input": [0, 1, 16, 18, 20, 30, 37, 42, 43, 55, 58, 59, 60], "touchpoint": [0, 28], "radius_x": [0, 28], "radius_i": [0, 28], "rotation_angl": [0, 28], "forc": [0, 11, 13, 20, 28, 31, 37, 51], "tangential_pressur": [0, 28], "tilt_x": [0, 28], "tilt_i": [0, 28], "twist": [0, 28], "gesturesourcetyp": [0, 28], "touch": [0, 20, 28, 37], "mous": [0, 18, 20, 28, 37, 55], "mousebutton": [0, 28], "none": [0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 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, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57], "middl": [0, 28], "right": [0, 28, 33, 37], "timesinceepoch": [0, 6, 20, 28, 35, 37, 39, 45, 47], "dragdataitem": [0, 28], "mime_typ": [0, 28, 35, 37], "dragdata": [0, 28], "drag_operations_mask": [0, 28], "cancel_drag": [0, 28], "dispatch_drag_ev": [0, 28], "dispatch_key_ev": [0, 28], "dispatch_mouse_ev": [0, 28], "dispatch_touch_ev": [0, 28], "emulate_touch_from_mouse_ev": [0, 28], "ime_set_composit": [0, 28], "insert_text": [0, 28], "set_ignore_input_ev": [0, 28], "set_intercept_drag": [0, 28], "synthesize_pinch_gestur": [0, 28], "synthesize_scroll_gestur": [0, 28], "synthesize_tap_gestur": [0, 28], "dragintercept": [0, 28], "detach": [0, 29, 37, 49], "targetcrash": [0, 29, 49], "targetreloadedaftercrash": [0, 29], "io": [0, 1, 7, 20, 23, 24, 35, 37, 39, 40, 47, 52, 53], "streamhandl": [0, 24, 30, 35, 37, 51], "read": [0, 8, 11, 13, 16, 20, 24, 30, 35, 37, 57], "resolve_blob": [0, 30], "layertre": [0, 1], "layerid": [0, 31], "snapshotid": [0, 31], "scrollrect": [0, 18, 31], "stickypositionconstraint": [0, 31], "sticky_box_rect": [0, 31], "containing_block_rect": [0, 31], "nearest_layer_shifting_sticky_box": [0, 31], "nearest_layer_shifting_containing_block": [0, 31], "picturetil": [0, 31], "pictur": [0, 31, 37], "layer_id": [0, 31], "offset_x": [0, 31, 37], "offset_i": [0, 31, 37], "paint_count": [0, 31], "draws_cont": [0, 31], "parent_layer_id": [0, 31], "transform": [0, 31], "anchor_x": [0, 31], "anchor_i": [0, 31], "anchor_z": [0, 31], "invis": [0, 31], "sticky_position_constraint": [0, 31], "paintprofil": [0, 31], "compositing_reason": [0, 31], "load_snapshot": [0, 31], "make_snapshot": [0, 31], "profile_snapshot": [0, 31], "release_snapshot": [0, 31], "replay_snapshot": [0, 31], "snapshot_command_log": [0, 31], "layerpaint": [0, 31], "clip": [0, 31, 37], "layertreedidchang": [0, 31], "log": [0, 1, 10, 31, 33, 35, 51, 58, 59], "logentri": [0, 32], "categori": [0, 32, 45, 51], "network_request_id": [0, 32], "worker_id": [0, 32], "arg": [0, 32, 43, 56, 58], "violationset": [0, 32], "threshold": [0, 32], "start_violations_report": [0, 32], "stop_violations_report": [0, 32], "entryad": [0, 32], "entri": [0, 8, 24, 27, 32, 33, 35, 37, 43, 46, 47, 49, 54], "playerid": [0, 33], "playermessag": [0, 33], "playerproperti": [0, 33], "playerev": [0, 33], "playererrorsourceloc": [0, 33], "playererror": [0, 33], "stack": [0, 13, 16, 18, 24, 32, 33, 34, 35, 37, 41, 43, 51], "caus": [0, 2, 4, 7, 13, 24, 26, 33, 35, 36, 37, 40, 42, 49, 54], "playerpropertieschang": [0, 33], "player_id": [0, 33], "playereventsad": [0, 33], "playermessageslog": [0, 33], "playererrorsrais": [0, 33], "playerscr": [0, 33], "player": [0, 33], "memori": [0, 1, 26, 37, 43, 51], "pressurelevel": [0, 34], "moder": [0, 34], "critic": [0, 34, 37], "samplingprofilenod": [0, 34], "samplingprofil": [0, 34], "uuid": [0, 30, 34], "base_address": [0, 34], "forcibly_purge_java_script_memori": [0, 34], "get_all_time_sampling_profil": [0, 34], "get_browser_sampling_profil": [0, 34], "get_dom_count": [0, 34], "prepare_for_leak_detect": [0, 34], "set_pressure_notifications_suppress": [0, 34], "simulate_pressure_notif": [0, 34], "network": [0, 1, 4, 11, 24, 32, 40, 43, 45, 47, 57], "resourcetyp": [0, 24, 35, 37], "document": [0, 2, 3, 4, 11, 16, 18, 20, 28, 34, 35, 37, 39, 40, 57], "text_track": [0, 35], "xhr": [0, 17, 35, 37], "web_socket": [0, 35, 37], "signed_exchang": [0, 35], "csp_violation_report": [0, 35], "preflight": [0, 35], "loaderid": [0, 4, 35, 37, 40], "interceptionid": [0, 35], "errorreason": [0, 24, 35], "fail": [0, 4, 11, 13, 24, 25, 35, 37, 42, 53], "abort": [0, 23, 35], "timed_out": [0, 35], "access_deni": [0, 35], "connection_clos": [0, 35], "connection_reset": [0, 35], "connection_refus": [0, 35], "connection_abort": [0, 35], "connection_fail": [0, 35], "name_not_resolv": [0, 35], "internet_disconnect": [0, 35], "address_unreach": [0, 35], "blocked_by_cli": [0, 35, 40], "blocked_by_respons": [0, 4, 35], "monotonictim": [0, 35, 37], "connectiontyp": [0, 35], "cellular2g": [0, 35], "cellular3g": [0, 35], "cellular4g": [0, 35], "bluetooth": [0, 35, 37], "ethernet": [0, 35], "wifi": [0, 35], "wimax": [0, 35], "cookiesamesit": [0, 35], "strict": [0, 35, 47], "lax": [0, 35], "cookieprior": [0, 35], "medium": [0, 35], "cookiesourceschem": [0, 35], "unset": [0, 35, 42, 57], "non_secur": [0, 35], "secur": [0, 1, 8, 19, 27, 35, 37, 43, 47], "resourcetim": [0, 35], "request_tim": [0, 35], "proxy_start": [0, 35], "proxy_end": [0, 35], "dns_start": [0, 35], "dns_end": [0, 35], "connect_start": [0, 35], "connect_end": [0, 35], "ssl_start": [0, 35], "ssl_end": [0, 35], "worker_start": [0, 35], "worker_readi": [0, 35], "worker_fetch_start": [0, 35], "worker_respond_with_settl": [0, 35], "send_start": [0, 35], "send_end": [0, 35], "push_start": [0, 35], "push_end": [0, 35], "receive_headers_start": [0, 35], "receive_headers_end": [0, 35], "worker_router_evaluation_start": [0, 35], "worker_cache_lookup_start": [0, 35], "resourceprior": [0, 35], "very_low": [0, 35], "very_high": [0, 35], "postdataentri": [0, 35], "bytes_": [0, 35], "initial_prior": [0, 35], "referrer_polici": [0, 35, 37], "url_frag": [0, 35, 37], "post_data": [0, 24, 35], "has_post_data": [0, 35], "post_data_entri": [0, 35], "mixed_content_typ": [0, 35, 45], "is_link_preload": [0, 35], "trust_token_param": [0, 35], "is_same_sit": [0, 35], "signedcertificatetimestamp": [0, 35], "statu": [0, 4, 7, 8, 13, 24, 35, 37, 40, 46, 48, 49], "log_descript": [0, 35], "log_id": [0, 35], "hash_algorithm": [0, 35], "signature_algorithm": [0, 35], "signature_data": [0, 35], "securitydetail": [0, 35], "protocol": [0, 7, 24, 35, 37, 44, 45, 49, 51, 52, 53, 57], "key_exchang": [0, 35, 45], "cipher": [0, 35, 45], "certificate_id": [0, 35], "subject_nam": [0, 35, 45], "san_list": [0, 35], "issuer": [0, 35, 45, 47], "valid_from": [0, 35, 45], "valid_to": [0, 35, 45], "signed_certificate_timestamp_list": [0, 35], "certificate_transparency_compli": [0, 35], "encrypted_client_hello": [0, 35], "key_exchange_group": [0, 35, 45], "mac": [0, 35, 45, 48], "server_signature_algorithm": [0, 35], "certificatetransparencycompli": [0, 35], "unknown": [0, 35, 37, 45, 48], "not_compli": [0, 35], "compliant": [0, 35], "blockedreason": [0, 35], "csp": [0, 4, 17, 35, 37, 43], "mixed_cont": [0, 35, 40], "subresource_filt": [0, 35], "content_typ": [0, 35], "coop_sandboxed_iframe_cannot_navigate_to_coop_pag": [0, 35], "corserror": [0, 35], "disallowed_by_mod": [0, 35], "invalid_respons": [0, 35], "wildcard_origin_not_allow": [0, 35], "missing_allow_origin_head": [0, 35], "multiple_allow_origin_valu": [0, 35], "invalid_allow_origin_valu": [0, 35], "allow_origin_mismatch": [0, 35], "invalid_allow_credenti": [0, 35], "cors_disabled_schem": [0, 35], "preflight_invalid_statu": [0, 35], "preflight_disallowed_redirect": [0, 35], "preflight_wildcard_origin_not_allow": [0, 35], "preflight_missing_allow_origin_head": [0, 35], "preflight_multiple_allow_origin_valu": [0, 35], "preflight_invalid_allow_origin_valu": [0, 35], "preflight_allow_origin_mismatch": [0, 35], "preflight_invalid_allow_credenti": [0, 35], "preflight_missing_allow_extern": [0, 35], "preflight_invalid_allow_extern": [0, 35], "preflight_missing_allow_private_network": [0, 35], "preflight_invalid_allow_private_network": [0, 35], "invalid_allow_methods_preflight_respons": [0, 35], "invalid_allow_headers_preflight_respons": [0, 35], "method_disallowed_by_preflight_respons": [0, 35], "header_disallowed_by_preflight_respons": [0, 35], "redirect_contains_credenti": [0, 35], "insecure_private_network": [0, 35], "invalid_private_network_access": [0, 35], "unexpected_private_network_access": [0, 35], "no_cors_redirect_mode_not_follow": [0, 35], "preflight_missing_private_network_access_id": [0, 35], "preflight_missing_private_network_access_nam": [0, 35], "private_network_access_permission_unavail": [0, 35], "private_network_access_permission_deni": [0, 35], "corserrorstatu": [0, 4, 35], "cors_error": [0, 35], "failed_paramet": [0, 35], "serviceworkerresponsesourc": [0, 35], "cache_storag": [0, 35, 47], "http_cach": [0, 35], "fallback_cod": [0, 35], "trusttokenparam": [0, 35], "refresh_polici": [0, 35], "trusttokenoperationtyp": [0, 35], "issuanc": [0, 35, 37], "redempt": [0, 35, 37, 47], "sign": [0, 23, 35, 42, 47, 58, 59], "alternateprotocolusag": [0, 35], "alternative_job_won_without_rac": [0, 35], "alternative_job_won_rac": [0, 35], "main_job_won_rac": [0, 35], "mapping_miss": [0, 35], "broken": [0, 35, 45], "dns_alpn_h3_job_won_without_rac": [0, 35], "dns_alpn_h3_job_won_rac": [0, 35], "unspecified_reason": [0, 35], "serviceworkerroutersourc": [0, 35], "fetch_ev": [0, 35], "race_network_and_fetch_handl": [0, 35], "serviceworkerrouterinfo": [0, 35], "rule_id_match": [0, 35], "matched_source_typ": [0, 35], "actual_source_typ": [0, 35], "status_text": [0, 35], "charset": [0, 35], "connection_reus": [0, 35], "connection_id": [0, 35, 50], "encoded_data_length": [0, 35], "security_st": [0, 35, 45], "headers_text": [0, 35], "request_headers_text": [0, 35], "remote_ip_address": [0, 35], "remote_port": [0, 35], "from_disk_cach": [0, 35], "from_service_work": [0, 35], "from_prefetch_cach": [0, 35], "from_early_hint": [0, 35], "service_worker_router_info": [0, 35], "time": [0, 2, 3, 4, 11, 13, 20, 23, 25, 26, 28, 31, 32, 33, 35, 38, 39, 41, 43, 45, 46, 47, 49, 52, 54, 55, 57], "service_worker_response_sourc": [0, 35], "cache_storage_cache_nam": [0, 35], "alternate_protocol_usag": [0, 35], "security_detail": [0, 35], "websocketrequest": [0, 35], "websocketrespons": [0, 35], "websocketfram": [0, 35], "opcod": [0, 35], "mask": [0, 20, 35, 36], "payload_data": [0, 35], "cachedresourc": [0, 35], "body_s": [0, 35], "initi": [0, 6, 13, 20, 24, 25, 35, 37, 40, 41, 42, 43, 49, 55], "cookiepartitionkei": [0, 35], "top_level_sit": [0, 35], "has_cross_site_ancestor": [0, 35], "http_onli": [0, 35], "prioriti": [0, 2, 11, 35, 45, 47], "same_parti": [0, 35], "source_schem": [0, 35], "source_port": [0, 35], "expir": [0, 35, 37, 45, 47], "same_sit": [0, 35], "partition_kei": [0, 35], "partition_key_opaqu": [0, 35], "setcookieblockedreason": [0, 35], "secure_onli": [0, 35], "same_site_strict": [0, 35], "same_site_lax": [0, 35], "same_site_unspecified_treated_as_lax": [0, 35], "same_site_none_insecur": [0, 35], "user_prefer": [0, 35], "third_party_phaseout": [0, 35], "third_party_blocked_in_first_party_set": [0, 35], "syntax_error": [0, 35], "scheme_not_support": [0, 35], "overwrite_secur": [0, 35], "invalid_domain": [0, 35], "invalid_prefix": [0, 35], "unknown_error": [0, 35], "schemeful_same_site_strict": [0, 35], "schemeful_same_site_lax": [0, 35], "schemeful_same_site_unspecified_treated_as_lax": [0, 35], "same_party_from_cross_party_context": [0, 35], "same_party_conflicts_with_other_attribut": [0, 35], "name_value_pair_exceeds_max_s": [0, 35], "disallowed_charact": [0, 35], "no_cookie_cont": [0, 35], "cookieblockedreason": [0, 35], "not_on_path": [0, 35], "domain_mismatch": [0, 35], "cookieexemptionreason": [0, 35], "user_set": [0, 35], "tpcd_metadata": [0, 35], "tpcd_deprecation_tri": [0, 35], "tpcd_heurist": [0, 35], "enterprise_polici": [0, 35], "cors_opt_in": [0, 35], "blockedsetcookiewithreason": [0, 35], "blocked_reason": [0, 35], "cookie_lin": [0, 35], "exemptedsetcookiewithreason": [0, 35], "exemption_reason": [0, 35], "associatedcooki": [0, 35], "cookieparam": [0, 35, 47], "interceptionstag": [0, 35], "headers_receiv": [0, 35], "interception_stag": [0, 35], "signedexchangesignatur": [0, 35], "signatur": [0, 35, 45, 53], "integr": [0, 33, 35, 51], "validity_url": [0, 35], "cert_url": [0, 35], "cert_sha256": [0, 35], "certif": [0, 35, 45], "signedexchangehead": [0, 35], "response_cod": [0, 24, 35], "header_integr": [0, 35], "signedexchangeerrorfield": [0, 35], "signature_sig": [0, 35], "signature_integr": [0, 35], "signature_cert_url": [0, 35], "signature_cert_sha256": [0, 35], "signature_validity_url": [0, 35], "signature_timestamp": [0, 35], "signedexchangeerror": [0, 35], "signature_index": [0, 35], "error_field": [0, 35], "signedexchangeinfo": [0, 35], "outer_respons": [0, 35], "contentencod": [0, 35], "deflat": [0, 35], "gzip": [0, 35, 51], "br": [0, 35], "zstd": [0, 35], "privatenetworkrequestpolici": [0, 35], "allow": [0, 4, 5, 7, 13, 17, 20, 23, 24, 27, 28, 33, 35, 37, 40, 41, 42, 43, 45, 49, 52, 53, 57], "block_from_insecure_to_more_priv": [0, 35], "warn_from_insecure_to_more_priv": [0, 35], "preflight_block": [0, 35], "preflight_warn": [0, 35], "ipaddressspac": [0, 4, 35], "local": [0, 11, 13, 19, 20, 35, 37, 42, 47, 57], "privat": [0, 35, 37, 43, 53], "public": [0, 4, 35, 37], "connecttim": [0, 35], "clientsecurityst": [0, 4, 35], "initiator_is_secure_context": [0, 35], "initiator_ip_address_spac": [0, 35], "private_network_request_polici": [0, 35], "crossoriginopenerpolicyvalu": [0, 35], "same_origin": [0, 35, 37], "same_origin_allow_popup": [0, 35], "restrict_properti": [0, 35], "unsafe_non": [0, 35], "same_origin_plus_coep": [0, 35], "restrict_properties_plus_coep": [0, 35], "crossoriginopenerpolicystatu": [0, 35], "report_only_valu": [0, 35], "reporting_endpoint": [0, 35], "report_only_reporting_endpoint": [0, 35], "crossoriginembedderpolicyvalu": [0, 35], "credentialless": [0, 35], "require_corp": [0, 35], "crossoriginembedderpolicystatu": [0, 35], "contentsecuritypolicysourc": [0, 35], "http": [0, 4, 7, 8, 11, 16, 20, 23, 24, 25, 28, 35, 37, 39, 40, 42, 45, 47, 49, 52, 53, 57, 58, 59], "meta": [0, 20, 28, 35, 37, 43, 55, 57], "contentsecuritypolicystatu": [0, 35], "effective_direct": [0, 35], "is_enforc": [0, 35], "securityisolationstatu": [0, 35], "coop": [0, 4, 35], "coep": [0, 4, 35], "reportstatu": [0, 35], "queu": [0, 35], "pend": [0, 20, 35, 37, 40, 47, 51], "marked_for_remov": [0, 35], "success": [0, 4, 13, 35, 37, 40, 47, 51, 53], "reportid": [0, 35], "reportingapireport": [0, 35], "initiator_url": [0, 35], "destin": [0, 35, 37, 52, 55], "depth": [0, 2, 13, 16, 17, 35, 43], "completed_attempt": [0, 35], "reportingapiendpoint": [0, 35], "group_nam": [0, 35], "loadnetworkresourcepageresult": [0, 35], "net_error": [0, 35], "net_error_nam": [0, 35], "http_status_cod": [0, 35], "stream": [0, 13, 24, 30, 35, 37, 51], "loadnetworkresourceopt": [0, 35], "disable_cach": [0, 35], "include_credenti": [0, 35], "can_clear_browser_cach": [0, 35], "can_clear_browser_cooki": [0, 35], "can_emulate_network_condit": [0, 35], "clear_accepted_encodings_overrid": [0, 35], "clear_browser_cach": [0, 35], "clear_browser_cooki": [0, 35], "continue_intercepted_request": [0, 35], "delete_cooki": [0, 35, 37], "emulate_network_condit": [0, 35], "enable_reporting_api": [0, 35], "get_all_cooki": [0, 35], "get_certif": [0, 35], "get_cooki": [0, 35, 47], "get_request_post_data": [0, 35], "get_response_body_for_intercept": [0, 35], "get_security_isolation_statu": [0, 35], "load_network_resourc": [0, 35], "replay_xhr": [0, 35], "search_in_response_bodi": [0, 35], "set_accepted_encod": [0, 35], "set_attach_debug_stack": [0, 35], "set_blocked_ur_l": [0, 35], "set_bypass_service_work": [0, 35], "set_cache_dis": [0, 35], "set_extra_http_head": [0, 35], "set_request_intercept": [0, 35], "stream_resource_cont": [0, 35], "take_response_body_for_interception_as_stream": [0, 35], "datareceiv": [0, 35], "data_length": [0, 35], "eventsourcemessagereceiv": [0, 35], "event_id": [0, 35, 45, 47], "loadingfail": [0, 35, 47], "error_text": [0, 35], "loadingfinish": [0, 35, 47], "requestintercept": [0, 35], "interception_id": [0, 35], "is_navigation_request": [0, 35], "is_download": [0, 35], "redirect_url": [0, 35], "requestservedfromcach": [0, 35], "requestwillbes": [0, 24, 35, 47, 57], "wall_tim": [0, 35], "redirect_has_extra_info": [0, 35], "redirect_respons": [0, 35], "has_user_gestur": [0, 35], "resourcechangedprior": [0, 35], "new_prior": [0, 35], "signedexchangereceiv": [0, 35], "info": [0, 4, 35, 36, 45, 48], "responsereceiv": [0, 35], "has_extra_info": [0, 35], "websocketclos": [0, 35], "websocketcr": [0, 35], "websocketframeerror": [0, 35], "error_messag": [0, 35, 40, 46], "websocketframereceiv": [0, 35], "websocketframes": [0, 35], "websockethandshakeresponsereceiv": [0, 35], "websocketwillsendhandshakerequest": [0, 35], "webtransportcr": [0, 35], "transport_id": [0, 35], "webtransportconnectionestablish": [0, 35], "webtransportclos": [0, 35], "requestwillbesentextrainfo": [0, 35], "associated_cooki": [0, 35], "connect_tim": [0, 35], "site_has_cookie_in_other_partit": [0, 35], "responsereceivedextrainfo": [0, 35], "blocked_cooki": [0, 35], "status_cod": [0, 35], "cookie_partition_kei": [0, 35], "cookie_partition_key_opaqu": [0, 35], "exempted_cooki": [0, 35], "responsereceivedearlyhint": [0, 35], "trusttokenoperationdon": [0, 35], "top_level_origin": [0, 35], "issuer_origin": [0, 35, 47], "issued_token_count": [0, 35], "policyupd": [0, 35], "subresourcewebbundlemetadatareceiv": [0, 35], "subresourcewebbundlemetadataerror": [0, 35], "subresourcewebbundleinnerresponsepars": [0, 35], "inner_request_id": [0, 35], "inner_request_url": [0, 35], "bundle_request_id": [0, 35], "subresourcewebbundleinnerresponseerror": [0, 35], "reportingapireportad": [0, 35], "report": [0, 4, 10, 11, 13, 17, 20, 21, 24, 25, 26, 32, 33, 35, 37, 38, 39, 41, 43, 47, 49, 51, 57], "reportingapireportupd": [0, 35], "reportingapiendpointschangedfororigin": [0, 35], "endpoint": [0, 35, 37, 47], "overlai": [0, 1, 20, 37], "sourceorderconfig": [0, 36], "parent_outline_color": [0, 36], "child_outline_color": [0, 36], "gridhighlightconfig": [0, 36], "show_grid_extension_lin": [0, 36], "show_positive_line_numb": [0, 36], "show_negative_line_numb": [0, 36], "show_area_nam": [0, 36], "show_line_nam": [0, 36], "show_track_s": [0, 36], "grid_border_color": [0, 36], "cell_border_color": [0, 36], "row_line_color": [0, 36], "column_line_color": [0, 36], "grid_border_dash": [0, 36], "cell_border_dash": [0, 36], "row_line_dash": [0, 36], "column_line_dash": [0, 36], "row_gap_color": [0, 36], "row_hatch_color": [0, 36], "column_gap_color": [0, 36], "column_hatch_color": [0, 36], "area_border_color": [0, 36], "grid_background_color": [0, 36], "flexcontainerhighlightconfig": [0, 36], "container_bord": [0, 36], "line_separ": [0, 36], "item_separ": [0, 36], "main_distributed_spac": [0, 36], "cross_distributed_spac": [0, 36], "row_gap_spac": [0, 36], "column_gap_spac": [0, 36], "cross_align": [0, 36], "flexitemhighlightconfig": [0, 36], "base_size_box": [0, 36], "base_size_bord": [0, 36], "flexibility_arrow": [0, 36], "linestyl": [0, 36], "color": [0, 11, 16, 18, 20, 36, 37], "pattern": [0, 13, 24, 35, 36], "boxstyl": [0, 36], "fill_color": [0, 36], "hatch_color": [0, 36], "contrastalgorithm": [0, 36], "aa": [0, 36], "aaa": [0, 4, 36], "apca": [0, 36], "highlightconfig": [0, 36], "show_info": [0, 36], "show_styl": [0, 36], "show_rul": [0, 36], "show_accessibility_info": [0, 36], "show_extension_lin": [0, 36], "content_color": [0, 36], "padding_color": [0, 36], "border_color": [0, 36], "margin_color": [0, 36], "event_target_color": [0, 36], "shape_color": [0, 36], "shape_margin_color": [0, 36], "css_grid_color": [0, 36], "color_format": [0, 36], "grid_highlight_config": [0, 36], "flex_container_highlight_config": [0, 36], "flex_item_highlight_config": [0, 36], "contrast_algorithm": [0, 36], "container_query_container_highlight_config": [0, 36], "colorformat": [0, 36], "rgb": [0, 36], "hsl": [0, 36], "hwb": [0, 36], "hex_": [0, 36], "gridnodehighlightconfig": [0, 36], "flexnodehighlightconfig": [0, 36], "scrollsnapcontainerhighlightconfig": [0, 36], "snapport_bord": [0, 36], "snap_area_bord": [0, 36], "scroll_margin_color": [0, 36], "scroll_padding_color": [0, 36], "scrollsnaphighlightconfig": [0, 36], "scroll_snap_container_highlight_config": [0, 36], "hingeconfig": [0, 36], "outline_color": [0, 36], "windowcontrolsoverlayconfig": [0, 36], "show_css": [0, 36], "selected_platform": [0, 36], "theme_color": [0, 36, 37], "containerqueryhighlightconfig": [0, 36], "containerquerycontainerhighlightconfig": [0, 36], "descendant_bord": [0, 36], "isolatedelementhighlightconfig": [0, 36], "isolation_mode_highlight_config": [0, 36], "isolationmodehighlightconfig": [0, 36], "resizer_color": [0, 36], "resizer_handle_color": [0, 36], "mask_color": [0, 36], "inspectmod": [0, 36], "search_for_nod": [0, 36], "search_for_ua_shadow_dom": [0, 36], "capture_area_screenshot": [0, 36], "show_dist": [0, 36], "get_grid_highlight_objects_for_test": [0, 36], "get_highlight_object_for_test": [0, 36], "get_source_order_highlight_object_for_test": [0, 36], "highlight_fram": [0, 36], "highlight_quad": [0, 36], "highlight_source_ord": [0, 36], "set_inspect_mod": [0, 36], "set_paused_in_debugger_messag": [0, 36], "set_show_ad_highlight": [0, 36], "set_show_container_query_overlai": [0, 36], "set_show_debug_bord": [0, 36], "set_show_flex_overlai": [0, 36], "set_show_fps_count": [0, 36], "set_show_grid_overlai": [0, 36], "set_show_hing": [0, 36], "set_show_hit_test_bord": [0, 36], "set_show_isolated_el": [0, 36], "set_show_layout_shift_region": [0, 36], "set_show_paint_rect": [0, 36], "set_show_scroll_bottleneck_rect": [0, 36], "set_show_scroll_snap_overlai": [0, 36], "set_show_viewport_size_on_res": [0, 36], "set_show_web_vit": [0, 36], "set_show_window_controls_overlai": [0, 36], "inspectnoderequest": [0, 36], "nodehighlightrequest": [0, 36], "screenshotrequest": [0, 36], "viewport": [0, 11, 16, 20, 28, 36, 37, 57], "inspectmodecancel": [0, 36], "page": [0, 1, 2, 3, 4, 7, 9, 11, 13, 16, 18, 20, 24, 28, 35, 36, 42, 43, 45, 47, 49, 54, 57, 58, 59], "frameid": [0, 2, 4, 5, 7, 11, 13, 16, 18, 24, 35, 36, 37, 39, 40, 43, 47, 49], "adframetyp": [0, 37], "child": [0, 2, 5, 11, 16, 18, 26, 36, 37, 41, 47, 49], "adframeexplan": [0, 37], "parent_is_ad": [0, 37], "created_by_ad_script": [0, 37], "matched_blocking_rul": [0, 37], "adframestatu": [0, 37], "ad_frame_typ": [0, 37], "explan": [0, 37, 45], "adscriptid": [0, 37], "debugger_id": [0, 37, 43], "securecontexttyp": [0, 37], "secure_localhost": [0, 37], "insecure_schem": [0, 37], "insecure_ancestor": [0, 37], "crossoriginisolatedcontexttyp": [0, 37], "isol": [0, 4, 13, 35, 36, 37, 41, 42, 43], "not_isol": [0, 37], "not_isolated_feature_dis": [0, 37], "gatedapifeatur": [0, 37], "shared_array_buff": [0, 37], "shared_array_buffers_transfer_allow": [0, 37], "performance_measure_memori": [0, 37], "performance_profil": [0, 37], "permissionspolicyfeatur": [0, 37], "ambient_light_sensor": [0, 37], "attribution_report": [0, 37], "autoplai": [0, 37], "browsing_top": [0, 37], "camera": [0, 7, 37], "ch_dpr": [0, 37], "ch_device_memori": [0, 37], "ch_downlink": [0, 37], "ch_ect": [0, 37], "ch_prefers_color_schem": [0, 37], "ch_prefers_reduced_mot": [0, 37], "ch_prefers_reduced_transpar": [0, 37], "ch_rtt": [0, 37], "ch_save_data": [0, 37], "ch_ua": [0, 37], "ch_ua_arch": [0, 37], "ch_ua_bit": [0, 37], "ch_ua_platform": [0, 37], "ch_ua_model": [0, 37], "ch_ua_mobil": [0, 37], "ch_ua_form_factor": [0, 37], "ch_ua_full_vers": [0, 37], "ch_ua_full_version_list": [0, 37], "ch_ua_platform_vers": [0, 37], "ch_ua_wow64": [0, 37], "ch_viewport_height": [0, 37], "ch_viewport_width": [0, 37], "ch_width": [0, 37], "clipboard_read": [0, 37], "clipboard_writ": [0, 37], "compute_pressur": [0, 37], "cross_origin_isol": [0, 37], "deferred_fetch": [0, 37], "direct_socket": [0, 37], "document_domain": [0, 37], "encrypted_media": [0, 37], "execution_while_out_of_viewport": [0, 37], "execution_while_not_rend": [0, 37], "focus_without_user_activ": [0, 37], "frobul": [0, 37], "gamepad": [0, 37], "hid": [0, 37], "identity_credentials_get": [0, 37], "interest_cohort": [0, 37], "join_ad_interest_group": [0, 37], "keyboard_map": [0, 37], "microphon": [0, 37], "otp_credenti": [0, 37], "payment": [0, 37], "picture_in_pictur": [0, 37], "private_aggreg": [0, 37], "private_state_token_issu": [0, 37], "private_state_token_redempt": [0, 37], "publickey_credentials_cr": [0, 37], "publickey_credentials_get": [0, 37], "run_ad_auct": [0, 37], "screen_wake_lock": [0, 37], "serial": [0, 31, 37, 43, 47, 51], "shared_autofil": [0, 37], "shared_storag": [0, 37, 47], "shared_storage_select_url": [0, 37], "smart_card": [0, 37], "sub_app": [0, 37], "sync_xhr": [0, 37], "unload": [0, 37], "usb": [0, 37, 53], "usb_unrestrict": [0, 37], "vertical_scrol": [0, 37], "web_print": [0, 37], "web_shar": [0, 37], "xr_spatial_track": [0, 37], "permissionspolicyblockreason": [0, 37], "iframe_attribut": [0, 37], "in_fenced_frame_tre": [0, 37], "in_isolated_app": [0, 37], "permissionspolicyblockloc": [0, 37], "block_reason": [0, 37], "permissionspolicyfeaturest": [0, 37], "origintrialtokenstatu": [0, 37], "not_support": [0, 37, 40], "insecur": [0, 37, 45], "wrong_origin": [0, 37], "invalid_signatur": [0, 37], "malform": [0, 4, 37], "wrong_vers": [0, 37], "feature_dis": [0, 37], "token_dis": [0, 37], "feature_disabled_for_us": [0, 37], "unknown_tri": [0, 37], "origintrialstatu": [0, 37], "valid_token_not_provid": [0, 37], "os_not_support": [0, 37], "trial_not_allow": [0, 37], "origintrialusagerestrict": [0, 37], "subset": [0, 18, 37], "origintrialtoken": [0, 37], "match_sub_domain": [0, 37], "trial_nam": [0, 37], "expiry_tim": [0, 37], "is_third_parti": [0, 37], "usage_restrict": [0, 37], "origintrialtokenwithstatu": [0, 37], "raw_token_text": [0, 37], "parsed_token": [0, 37], "origintri": [0, 37], "tokens_with_statu": [0, 37], "domain_and_registri": [0, 37], "secure_context_typ": [0, 37], "cross_origin_isolated_context_typ": [0, 37], "gated_api_featur": [0, 37], "unreachable_url": [0, 37], "ad_frame_statu": [0, 37], "frameresourc": [0, 37], "last_modifi": [0, 37], "content_s": [0, 37], "frameresourcetre": [0, 37], "child_fram": [0, 37], "frametre": [0, 37], "scriptidentifi": [0, 37], "transitiontyp": [0, 37], "link": [0, 4, 11, 16, 28, 35, 37, 40, 42, 47, 57], "address_bar": [0, 37], "auto_bookmark": [0, 37], "auto_subfram": [0, 37], "manual_subfram": [0, 37], "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, 57], "auto_toplevel": [0, 37], "form_submit": [0, 37], "keyword": [0, 37], "keyword_gener": [0, 37], "navigationentri": [0, 37], "user_typed_url": [0, 37], "transition_typ": [0, 37], "screencastframemetadata": [0, 37], "offset_top": [0, 37], "page_scale_factor": [0, 20, 37], "device_width": [0, 37], "device_height": [0, 37], "alert": [0, 37, 55], "confirm": [0, 37], "beforeunload": [0, 37, 49], "appmanifesterror": [0, 37], "appmanifestparsedproperti": [0, 37], "layoutviewport": [0, 37], "page_x": [0, 37], "page_i": [0, 37], "client_width": [0, 37], "client_height": [0, 37], "visualviewport": [0, 37, 57], "scale": [0, 20, 28, 31, 37, 55], "zoom": [0, 28, 37], "fontfamili": [0, 37], "standard": [0, 24, 27, 37], "fix": [0, 36, 37, 45, 55], "serif": [0, 37], "sans_serif": [0, 37], "cursiv": [0, 37], "fantasi": [0, 37], "math": [0, 37], "scriptfontfamili": [0, 37], "fontsiz": [0, 37], "clientnavigationreason": [0, 37], "form_submission_get": [0, 37], "form_submission_post": [0, 37], "http_header_refresh": [0, 37], "script_initi": [0, 37], "meta_tag_refresh": [0, 37], "page_block_interstiti": [0, 37], "anchor_click": [0, 37], "clientnavigationdisposit": [0, 37], "current_tab": [0, 37], "new_tab": [0, 37, 54, 57, 58, 59], "new_window": [0, 37, 49, 54, 57, 58, 59], "installabilityerrorargu": [0, 37], "installabilityerror": [0, 37], "error_id": [0, 37], "error_argu": [0, 37], "referrerpolici": [0, 37], "no_referr": [0, 37], "no_referrer_when_downgrad": [0, 37], "origin_when_cross_origin": [0, 37], "strict_origin": [0, 37], "strict_origin_when_cross_origin": [0, 37], "unsafe_url": [0, 37], "compilationcacheparam": [0, 37], "eager": [0, 37], "filefilt": [0, 37], "filehandl": [0, 37, 42], "action": [0, 7, 16, 23, 37, 40, 42, 45, 55, 56, 57], "launch_typ": [0, 37], "icon": [0, 37], "imageresourc": [0, 37], "launchhandl": [0, 37], "client_mod": [0, 37], "protocolhandl": [0, 37], "relatedappl": [0, 37], "scopeextens": [0, 37], "has_origin_wildcard": [0, 37], "screenshot": [0, 20, 25, 36, 37, 55, 57], "form_factor": [0, 37], "sharetarget": [0, 37], "enctyp": [0, 37], "shortcut": [0, 28, 37], "webappmanifest": [0, 37], "background_color": [0, 37], "dir_": [0, 37], "displai": [0, 5, 11, 14, 20, 24, 25, 35, 36, 37, 40, 55], "display_overrid": [0, 37], "file_handl": [0, 37], "lang": [0, 37, 56, 58], "launch_handl": [0, 37], "prefer_related_appl": [0, 37], "protocol_handl": [0, 37], "related_appl": [0, 37], "scope_extens": [0, 37], "share_target": [0, 37], "short_nam": [0, 37], "start_url": [0, 37], "autoresponsemod": [0, 37], "auto_accept": [0, 37], "auto_reject": [0, 37], "auto_opt_out": [0, 37], "navigationtyp": [0, 37], "navig": [0, 4, 18, 20, 35, 37, 40, 43, 47, 49, 54, 57, 58], "back_forward_cache_restor": [0, 37], "backforwardcachenotrestoredreason": [0, 37], "not_primary_main_fram": [0, 37], "back_forward_cache_dis": [0, 37], "related_active_contents_exist": [0, 37], "http_status_not_ok": [0, 37], "scheme_not_http_or_http": [0, 37], "was_granted_media_access": [0, 37], "disable_for_render_frame_host_cal": [0, 37], "domain_not_allow": [0, 37], "http_method_not_get": [0, 37], "subframe_is_navig": [0, 37], "cache_limit": [0, 37], "java_script_execut": [0, 37], "renderer_process_kil": [0, 37, 40], "renderer_process_crash": [0, 37, 40], "scheduler_tracked_feature_us": [0, 37], "conflicting_browsing_inst": [0, 37], "cache_flush": [0, 37], "service_worker_version_activ": [0, 37], "session_restor": [0, 37], "service_worker_post_messag": [0, 37], "entered_back_forward_cache_before_service_worker_host_ad": [0, 37], "render_frame_host_reused_same_sit": [0, 37], "render_frame_host_reused_cross_sit": [0, 37], "service_worker_claim": [0, 37], "ignore_event_and_evict": [0, 37], "have_inner_cont": [0, 37], "timeout_putting_in_cach": [0, 37], "back_forward_cache_disabled_by_low_memori": [0, 37], "back_forward_cache_disabled_by_command_lin": [0, 37], "network_request_datapipe_drained_as_bytes_consum": [0, 37], "network_request_redirect": [0, 37], "network_request_timeout": [0, 37], "network_exceeds_buffer_limit": [0, 37], "navigation_cancelled_while_restor": [0, 37], "not_most_recent_navigation_entri": [0, 37], "back_forward_cache_disabled_for_prerend": [0, 37], "user_agent_override_diff": [0, 37], "foreground_cache_limit": [0, 37], "browsing_instance_not_swap": [0, 37], "back_forward_cache_disabled_for_deleg": [0, 37], "unload_handler_exists_in_main_fram": [0, 37], "unload_handler_exists_in_sub_fram": [0, 37], "service_worker_unregistr": [0, 37], "cache_control_no_stor": [0, 37], "cache_control_no_store_cookie_modifi": [0, 37], "cache_control_no_store_http_only_cookie_modifi": [0, 37], "no_response_head": [0, 37], "activation_navigations_disallowed_for_bug1234857": [0, 37], "error_docu": [0, 37], "fenced_frames_embedd": [0, 37], "cookie_dis": [0, 37], "http_auth_requir": [0, 37], "cookie_flush": [0, 37], "broadcast_channel_on_messag": [0, 37], "web_view_settings_chang": [0, 37], "web_view_java_script_object_chang": [0, 37], "web_view_message_listener_inject": [0, 37], "web_view_safe_browsing_allowlist_chang": [0, 37], "web_view_document_start_javascript_chang": [0, 37], "web_transport": [0, 37], "web_rtc": [0, 37], "main_resource_has_cache_control_no_stor": [0, 37], "main_resource_has_cache_control_no_cach": [0, 37], "subresource_has_cache_control_no_stor": [0, 37], "subresource_has_cache_control_no_cach": [0, 37], "contains_plugin": [0, 37], "document_load": [0, 37], "outstanding_network_request_oth": [0, 37], "requested_midi_permiss": [0, 37], "requested_audio_capture_permiss": [0, 37], "requested_video_capture_permiss": [0, 37], "requested_back_forward_cache_blocked_sensor": [0, 37], "requested_background_work_permiss": [0, 37], "broadcast_channel": [0, 37], "web_xr": [0, 37], "web_lock": [0, 37], "web_hid": [0, 37], "requested_storage_access_gr": [0, 37], "web_nfc": [0, 37], "outstanding_network_request_fetch": [0, 37], "outstanding_network_request_xhr": [0, 37], "app_bann": [0, 37], "print": [0, 4, 33, 37, 57, 58, 59], "web_databas": [0, 37], "portal": [0, 37, 49], "speech_recogn": [0, 37], "idle_manag": [0, 37], "payment_manag": [0, 37], "speech_synthesi": [0, 37], "keyboard_lock": [0, 37], "web_otp_servic": [0, 37], "outstanding_network_request_direct_socket": [0, 37], "injected_javascript": [0, 37], "injected_style_sheet": [0, 37], "keepalive_request": [0, 37], "indexed_db_ev": [0, 37], "dummi": [0, 37], "js_network_request_received_cache_control_no_store_resourc": [0, 37], "web_rtc_sticki": [0, 37], "web_transport_sticki": [0, 37], "web_socket_sticki": [0, 37], "live_media_stream_track": [0, 37], "unload_handl": [0, 37], "parser_abort": [0, 37], "content_security_handl": [0, 37], "content_web_authentication_api": [0, 37], "content_file_choos": [0, 37], "content_seri": [0, 37], "content_file_system_access": [0, 37], "content_media_devices_dispatcher_host": [0, 37], "content_web_bluetooth": [0, 37], "content_web_usb": [0, 37], "content_media_session_servic": [0, 37], "content_screen_read": [0, 37], "embedder_popup_blocker_tab_help": [0, 37], "embedder_safe_browsing_triggered_popup_block": [0, 37], "embedder_safe_browsing_threat_detail": [0, 37], "embedder_app_banner_manag": [0, 37], "embedder_dom_distiller_viewer_sourc": [0, 37], "embedder_dom_distiller_self_deleting_request_deleg": [0, 37], "embedder_oom_intervention_tab_help": [0, 37], "embedder_offline_pag": [0, 37], "embedder_chrome_password_manager_client_bind_credential_manag": [0, 37], "embedder_permission_request_manag": [0, 37], "embedder_modal_dialog": [0, 37], "embedder_extens": [0, 37], "embedder_extension_messag": [0, 37], "embedder_extension_messaging_for_open_port": [0, 37], "embedder_extension_sent_message_to_cached_fram": [0, 37], "requested_by_web_view_cli": [0, 37], "backforwardcachenotrestoredreasontyp": [0, 37], "support_pend": [0, 37], "page_support_need": [0, 37], "circumstanti": [0, 37], "backforwardcacheblockingdetail": [0, 37], "backforwardcachenotrestoredexplan": [0, 37], "context": [0, 2, 4, 7, 11, 13, 16, 17, 18, 23, 28, 33, 35, 37, 43, 47, 49, 52], "backforwardcachenotrestoredexplanationtre": [0, 37], "add_compilation_cach": [0, 37], "add_script_to_evaluate_on_load": [0, 37], "add_script_to_evaluate_on_new_docu": [0, 37], "capture_screenshot": [0, 37], "clear_compilation_cach": [0, 37], "create_isolated_world": [0, 37], "generate_test_report": [0, 37], "get_ad_script_id": [0, 37], "get_app_id": [0, 37], "get_app_manifest": [0, 37], "get_frame_tre": [0, 37], "get_installability_error": [0, 37], "get_layout_metr": [0, 37], "get_manifest_icon": [0, 37], "get_navigation_histori": [0, 37], "get_origin_tri": [0, 37], "get_permissions_policy_st": [0, 37], "get_resource_cont": [0, 37], "get_resource_tre": [0, 37], "handle_java_script_dialog": [0, 37], "navigate_to_history_entri": [0, 37], "print_to_pdf": [0, 37], "produce_compilation_cach": [0, 37], "remove_script_to_evaluate_on_load": [0, 37], "remove_script_to_evaluate_on_new_docu": [0, 37], "reset_navigation_histori": [0, 37], "screencast_frame_ack": [0, 37], "search_in_resourc": [0, 37], "set_ad_blocking_en": [0, 37], "set_bypass_csp": [0, 37], "set_document_cont": [0, 37], "set_font_famili": [0, 37], "set_font_s": [0, 37], "set_intercept_file_chooser_dialog": [0, 37], "set_lifecycle_events_en": [0, 37], "set_prerendering_allow": [0, 37], "set_rph_registration_mod": [0, 37], "set_spc_transaction_mod": [0, 37], "set_web_lifecycle_st": [0, 37], "start_screencast": [0, 37], "stop_load": [0, 37], "stop_screencast": [0, 37], "wait_for_debugg": [0, 37], "domcontenteventfir": [0, 37], "filechooseropen": [0, 37], "mode": [0, 3, 4, 13, 16, 20, 25, 31, 36, 37, 42, 43, 49, 51, 57], "frameattach": [0, 37], "parent_frame_id": [0, 37], "frameclearedschedulednavig": [0, 37], "framedetach": [0, 37], "framenavig": [0, 37], "documentopen": [0, 37], "frameres": [0, 37], "framerequestednavig": [0, 37], "disposit": [0, 37], "frameschedulednavig": [0, 37], "framestartedload": [0, 37], "framestoppedload": [0, 37], "interstitialhidden": [0, 37], "interstitialshown": [0, 37], "javascriptdialogclos": [0, 37], "result": [0, 11, 13, 16, 20, 24, 25, 26, 31, 35, 36, 37, 41, 42, 43, 47, 51, 57], "user_input": [0, 37], "javascriptdialogopen": [0, 37], "has_browser_handl": [0, 37], "default_prompt": [0, 37], "lifecycleev": [0, 37], "backforwardcachenotus": [0, 37], "not_restored_explan": [0, 37], "not_restored_explanations_tre": [0, 37], "loadeventfir": [0, 37], "navigatedwithindocu": [0, 37], "screencastfram": [0, 37], "metadata": [0, 4, 20, 27, 37, 47], "session_id": [0, 37, 49], "screencastvisibilitychang": [0, 37], "visibl": [0, 3, 11, 16, 20, 25, 31, 37, 43, 45, 54, 55], "windowopen": [0, 37], "window_nam": [0, 37], "window_featur": [0, 37], "user_gestur": [0, 37, 43], "compilationcacheproduc": [0, 37], "metric": [0, 20, 36, 37, 38], "get_metr": [0, 38], "set_time_domain": [0, 38], "performancetimelin": [0, 1], "largestcontentfulpaint": [0, 39], "render_tim": [0, 39], "load_tim": [0, 39], "element_id": [0, 39], "layoutshiftattribut": [0, 39], "previous_rect": [0, 39], "current_rect": [0, 39], "layoutshift": [0, 39], "had_recent_input": [0, 39], "last_input_tim": [0, 39], "timelineev": [0, 39], "lcp_detail": [0, 39], "layout_shift_detail": [0, 39], "timelineeventad": [0, 39], "preload": [0, 1, 35], "rulesetid": [0, 40], "ruleset": [0, 40], "source_text": [0, 40], "ruleseterrortyp": [0, 40], "source_is_not_json_object": [0, 40], "invalid_rules_skip": [0, 40], "speculationact": [0, 40], "prerend": [0, 37, 40, 49], "speculationtargethint": [0, 40], "blank": [0, 40, 49], "self": [0, 36, 40, 57], "preloadingattemptkei": [0, 40], "target_hint": [0, 40], "preloadingattemptsourc": [0, 40], "rule_set_id": [0, 40], "prerenderfinalstatu": [0, 40], "destroi": [0, 40, 43, 49, 52], "low_end_devic": [0, 40], "invalid_scheme_redirect": [0, 40], "invalid_scheme_navig": [0, 40], "navigation_request_blocked_by_csp": [0, 40], "main_frame_navig": [0, 40], "mojo_binder_polici": [0, 40], "trigger_destroi": [0, 40], "navigation_not_commit": [0, 40], "navigation_bad_http_statu": [0, 40], "client_cert_request": [0, 40], "navigation_request_network_error": [0, 40], "cancel_all_hosts_for_test": [0, 40], "did_fail_load": [0, 40], "ssl_certificate_error": [0, 40], "login_auth_request": [0, 40], "ua_change_requires_reload": [0, 40], "audio_output_device_request": [0, 40], "trigger_background": [0, 40], "memory_limit_exceed": [0, 40], "data_saver_en": [0, 40], "trigger_url_has_effective_url": [0, 40], "activated_before_start": [0, 40], "inactive_page_restrict": [0, 40], "start_fail": [0, 40], "timeout_background": [0, 40], "cross_site_redirect_in_initial_navig": [0, 40], "cross_site_navigation_in_initial_navig": [0, 40], "same_site_cross_origin_redirect_not_opt_in_in_initial_navig": [0, 40], "same_site_cross_origin_navigation_not_opt_in_in_initial_navig": [0, 40], "activation_navigation_parameter_mismatch": [0, 40], "activated_in_background": [0, 40], "embedder_host_disallow": [0, 40], "activation_navigation_destroyed_before_success": [0, 40], "tab_closed_by_user_gestur": [0, 40], "tab_closed_without_user_gestur": [0, 40], "primary_main_frame_renderer_process_crash": [0, 40], "primary_main_frame_renderer_process_kil": [0, 40], "activation_frame_policy_not_compat": [0, 40], "preloading_dis": [0, 40], "battery_saver_en": [0, 40], "activated_during_main_frame_navig": [0, 40], "preloading_unsupported_by_web_cont": [0, 40], "cross_site_redirect_in_main_frame_navig": [0, 40], "cross_site_navigation_in_main_frame_navig": [0, 40], "same_site_cross_origin_redirect_not_opt_in_in_main_frame_navig": [0, 40], "same_site_cross_origin_navigation_not_opt_in_in_main_frame_navig": [0, 40], "memory_pressure_on_trigg": [0, 40], "memory_pressure_after_trigg": [0, 40], "prerendering_disabled_by_dev_tool": [0, 40], "speculation_rule_remov": [0, 40], "activated_with_auxiliary_browsing_context": [0, 40], "max_num_of_running_eager_prerenders_exceed": [0, 40], "max_num_of_running_non_eager_prerenders_exceed": [0, 40], "max_num_of_running_embedder_prerenders_exceed": [0, 40], "prerendering_url_has_effective_url": [0, 40], "redirected_prerendering_url_has_effective_url": [0, 40], "activation_url_has_effective_url": [0, 40], "java_script_interface_ad": [0, 40], "java_script_interface_remov": [0, 40], "all_prerendering_cancel": [0, 40], "preloadingstatu": [0, 40], "readi": [0, 40], "failur": [0, 4, 35, 40], "prefetchstatu": [0, 40], "prefetch_allow": [0, 40], "prefetch_failed_ineligible_redirect": [0, 40], "prefetch_failed_invalid_redirect": [0, 40], "prefetch_failed_mime_not_support": [0, 40], "prefetch_failed_net_error": [0, 40], "prefetch_failed_non2_xx": [0, 40], "prefetch_failed_per_page_limit_exceed": [0, 40], "prefetch_evicted_after_candidate_remov": [0, 40], "prefetch_evicted_for_newer_prefetch": [0, 40], "prefetch_heldback": [0, 40], "prefetch_ineligible_retry_aft": [0, 40], "prefetch_is_privacy_decoi": [0, 40], "prefetch_is_stal": [0, 40], "prefetch_not_eligible_browser_context_off_the_record": [0, 40], "prefetch_not_eligible_data_saver_en": [0, 40], "prefetch_not_eligible_existing_proxi": [0, 40], "prefetch_not_eligible_host_is_non_uniqu": [0, 40], "prefetch_not_eligible_non_default_storage_partit": [0, 40], "prefetch_not_eligible_same_site_cross_origin_prefetch_required_proxi": [0, 40], "prefetch_not_eligible_scheme_is_not_http": [0, 40], "prefetch_not_eligible_user_has_cooki": [0, 40], "prefetch_not_eligible_user_has_service_work": [0, 40], "prefetch_not_eligible_battery_saver_en": [0, 40], "prefetch_not_eligible_preloading_dis": [0, 40], "prefetch_not_finished_in_tim": [0, 40], "prefetch_not_start": [0, 40], "prefetch_not_used_cookies_chang": [0, 40], "prefetch_proxy_not_avail": [0, 40], "prefetch_response_us": [0, 40], "prefetch_successful_but_not_us": [0, 40], "prefetch_not_used_probe_fail": [0, 40], "prerendermismatchedhead": [0, 40], "header_nam": [0, 40], "activation_valu": [0, 40], "rulesetupd": [0, 40], "rule_set": [0, 40], "rulesetremov": [0, 40], "preloadenabledstateupd": [0, 40], "disabled_by_prefer": [0, 40], "disabled_by_data_sav": [0, 40], "disabled_by_battery_sav": [0, 40], "disabled_by_holdback_prefetch_speculation_rul": [0, 40], "disabled_by_holdback_prerender_speculation_rul": [0, 40], "prefetchstatusupd": [0, 40], "initiating_frame_id": [0, 40], "prefetch_url": [0, 40], "prefetch_statu": [0, 40], "prerenderstatusupd": [0, 40], "prerender_statu": [0, 40], "disallowed_mojo_interfac": [0, 40], "mismatched_head": [0, 40], "preloadingattemptsourcesupd": [0, 40], "preloading_attempt_sourc": [0, 40], "profilenod": [0, 41], "hit_count": [0, 41], "deopt_reason": [0, 41], "position_tick": [0, 41], "end_tim": [0, 41], "time_delta": [0, 41], "positiontickinfo": [0, 41], "tick": [0, 35, 41], "coveragerang": [0, 41], "functioncoverag": [0, 41], "rang": [0, 11, 13, 16, 25, 27, 28, 37, 41, 51], "is_block_coverag": [0, 41], "scriptcoverag": [0, 41], "get_best_effort_coverag": [0, 41], "set_sampling_interv": [0, 41], "start_precise_coverag": [0, 41], "stop_precise_coverag": [0, 41], "take_precise_coverag": [0, 41], "consoleprofilefinish": [0, 41], "consoleprofilestart": [0, 41], "precisecoveragedeltaupd": [0, 41], "occas": [0, 41], "pwa": [0, 1, 36, 37], "filehandleraccept": [0, 42], "media_typ": [0, 42], "file_extens": [0, 42], "display_nam": [0, 42], "displaymod": [0, 42], "standalon": [0, 42], "change_app_user_set": [0, 42], "get_os_app_st": [0, 42], "launch": [0, 37, 42, 48, 54], "launch_files_in_app": [0, 42], "open_current_page_in_app": [0, 42], "uninstal": [0, 42], "runtim": [0, 1, 10, 13, 37, 49], "scriptid": [0, 4, 13, 17, 37, 41, 43], "serializationopt": [0, 43], "max_depth": [0, 13, 43], "additional_paramet": [0, 43], "deepserializedvalu": [0, 43], "weak_local_object_refer": [0, 43], "remoteobjectid": [0, 2, 13, 16, 17, 26, 30, 36, 43, 55], "unserializablevalu": [0, 43], "remoteobject": [0, 3, 13, 16, 17, 26, 27, 32, 43, 55, 57], "subtyp": [0, 2, 43, 49], "class_nam": [0, 43], "unserializable_valu": [0, 43], "deep_serialized_valu": [0, 43], "preview": [0, 13, 43], "custom_preview": [0, 43], "custompreview": [0, 43], "body_getter_id": [0, 43], "objectpreview": [0, 43], "overflow": [0, 43], "propertypreview": [0, 43], "value_preview": [0, 43], "entrypreview": [0, 43], "propertydescriptor": [0, 43], "configur": [0, 20, 32, 35, 36, 37, 43, 51, 53], "enumer": [0, 11, 13, 43], "writabl": [0, 43], "set_": [0, 43], "was_thrown": [0, 43], "is_own": [0, 43], "symbol": [0, 13, 16, 26, 43], "internalpropertydescriptor": [0, 43], "privatepropertydescriptor": [0, 43], "callargu": [0, 13, 43], "executioncontextid": [0, 13, 16, 37, 43], "executioncontextdescript": [0, 37, 43], "unique_id": [0, 43], "aux_data": [0, 43], "exceptiondetail": [0, 13, 43, 57], "exception_id": [0, 43], "except": [0, 4, 13, 28, 43, 57], "exception_meta_data": [0, 43], "timedelta": [0, 13, 43], "stacktrac": [0, 13, 16, 32, 35, 37, 43], "uniquedebuggerid": [0, 13, 37, 43], "stacktraceid": [0, 13, 43], "add_bind": [0, 43], "await_promis": [0, 43, 57], "call_function_on": [0, 43], "compile_script": [0, 43], "discard_console_entri": [0, 43], "get_exception_detail": [0, 43], "get_heap_usag": [0, 43], "get_isolate_id": [0, 43], "get_properti": [0, 43], "global_lexical_scope_nam": [0, 43], "query_object": [0, 43], "release_object": [0, 43], "release_object_group": [0, 43], "remove_bind": [0, 43], "run_if_waiting_for_debugg": [0, 43], "run_script": [0, 43], "set_custom_object_formatter_en": [0, 43], "set_max_call_stack_size_to_captur": [0, 43], "terminate_execut": [0, 43], "bindingcal": [0, 43], "payload": [0, 35, 43], "consoleapical": [0, 43], "exceptionrevok": [0, 43], "exceptionthrown": [0, 43], "exception_detail": [0, 43], "executioncontextcr": [0, 43], "executioncontextdestroi": [0, 43], "execution_context_unique_id": [0, 43], "executioncontextsclear": [0, 43], "inspectrequest": [0, 43], "hint": [0, 4, 20, 35, 37, 40, 43, 55], "schema": [0, 1], "get_domain": [0, 44], "certificateid": [0, 35, 45], "mixedcontenttyp": [0, 35, 45], "blockabl": [0, 45], "optionally_block": [0, 45], "securityst": [0, 35, 45], "neutral": [0, 45], "insecure_broken": [0, 45], "certificatesecurityst": [0, 45], "certificate_has_weak_signatur": [0, 45], "certificate_has_sha1_signatur": [0, 45], "modern_ssl": [0, 45], "obsolete_ssl_protocol": [0, 45], "obsolete_ssl_key_exchang": [0, 45], "obsolete_ssl_ciph": [0, 45], "obsolete_ssl_signatur": [0, 45], "certificate_network_error": [0, 45], "safetytipstatu": [0, 45], "bad_reput": [0, 45], "lookalik": [0, 45, 57], "safetytipinfo": [0, 45], "safety_tip_statu": [0, 45], "safe_url": [0, 45], "visiblesecurityst": [0, 45], "security_state_issue_id": [0, 45], "certificate_security_st": [0, 45], "safety_tip_info": [0, 45], "securitystateexplan": [0, 45], "summari": [0, 45], "recommend": [0, 37, 45, 53, 58], "insecurecontentstatu": [0, 45], "ran_mixed_cont": [0, 45], "displayed_mixed_cont": [0, 45], "contained_mixed_form": [0, 45], "ran_content_with_cert_error": [0, 45], "displayed_content_with_cert_error": [0, 45], "ran_insecure_content_styl": [0, 45], "displayed_insecure_content_styl": [0, 45], "certificateerroract": [0, 45], "continu": [0, 13, 20, 24, 35, 45, 58, 59], "handle_certificate_error": [0, 45], "set_ignore_certificate_error": [0, 45], "set_override_certificate_error": [0, 45], "certificateerror": [0, 45], "visiblesecuritystatechang": [0, 45], "visible_security_st": [0, 45], "securitystatechang": [0, 45], "scheme_is_cryptograph": [0, 45], "insecure_content_statu": [0, 45], "servicework": [0, 1, 4, 35, 57], "registrationid": [0, 6, 46], "serviceworkerregistr": [0, 46], "registration_id": [0, 46], "scope_url": [0, 46], "is_delet": [0, 46], "serviceworkerversionrunningstatu": [0, 46], "serviceworkerversionstatu": [0, 46], "new": [0, 2, 4, 6, 7, 10, 11, 13, 16, 18, 20, 25, 26, 32, 33, 35, 37, 41, 42, 43, 46, 49, 52, 54, 56, 57], "redund": [0, 46], "serviceworkervers": [0, 46], "version_id": [0, 46], "script_url": [0, 46], "running_statu": [0, 46], "script_last_modifi": [0, 46], "script_response_tim": [0, 46], "controlled_cli": [0, 46], "target_id": [0, 7, 46, 49], "router_rul": [0, 46], "serviceworkererrormessag": [0, 46], "deliver_push_messag": [0, 46], "dispatch_periodic_sync_ev": [0, 46], "dispatch_sync_ev": [0, 46], "inspect_work": [0, 46], "set_force_update_on_page_load": [0, 46], "skip_wait": [0, 46], "start_work": [0, 46], "stop_all_work": [0, 46], "stop_work": [0, 46], "unregist": [0, 46, 47], "update_registr": [0, 46], "workererrorreport": [0, 46], "workerregistrationupd": [0, 46], "registr": [0, 4, 11, 46, 47], "workerversionupd": [0, 46], "storag": [0, 1, 6, 8, 19, 27, 30, 35, 37, 53, 57], "storagetyp": [0, 47], "appcach": [0, 47], "file_system": [0, 47], "local_storag": [0, 47], "shader_cach": [0, 47], "websql": [0, 47], "interest_group": [0, 47], "all_": [0, 47], "usagefortyp": [0, 47], "storage_typ": [0, 47], "trusttoken": [0, 35, 47], "interestgroupauctionid": [0, 47], "interestgroupaccesstyp": [0, 47], "join": [0, 33, 37, 47, 58, 59], "leav": [0, 7, 13, 47, 58], "bid": [0, 47], "win": [0, 47], "additional_bid": [0, 47], "additional_bid_win": [0, 47], "top_level_bid": [0, 47], "top_level_additional_bid": [0, 47], "interestgroupauctioneventtyp": [0, 47], "config_resolv": [0, 47], "interestgroupauctionfetchtyp": [0, 47], "bidder_j": [0, 47], "bidder_wasm": [0, 47], "seller_j": [0, 47], "bidder_trusted_sign": [0, 47], "seller_trusted_sign": [0, 47], "sharedstorageaccesstyp": [0, 47], "document_add_modul": [0, 47], "document_select_url": [0, 47], "document_run": [0, 47], "document_set": [0, 47], "document_append": [0, 47], "document_delet": [0, 47], "document_clear": [0, 47], "document_get": [0, 47], "worklet_set": [0, 47], "worklet_append": [0, 47], "worklet_delet": [0, 47], "worklet_clear": [0, 47], "worklet_get": [0, 47], "worklet_kei": [0, 47], "worklet_entri": [0, 47], "worklet_length": [0, 47], "worklet_remaining_budget": [0, 47], "header_set": [0, 47], "header_append": [0, 47], "header_delet": [0, 47], "header_clear": [0, 47], "sharedstorageentri": [0, 47], "sharedstoragemetadata": [0, 47], "creation_tim": [0, 47], "remaining_budget": [0, 47], "bytes_us": [0, 47], "sharedstoragereportingmetadata": [0, 47], "event_typ": [0, 39, 47], "reporting_url": [0, 47], "sharedstorageurlwithmetadata": [0, 47], "reporting_metadata": [0, 47], "sharedstorageaccessparam": [0, 47], "script_source_url": [0, 47], "operation_nam": [0, 47], "serialized_data": [0, 47], "urls_with_metadata": [0, 47], "ignore_if_pres": [0, 47], "storagebucketsdur": [0, 47], "relax": [0, 47], "storagebucket": [0, 8, 27, 47], "storagebucketinfo": [0, 47], "quota": [0, 47], "persist": [0, 36, 43, 47], "durabl": [0, 47], "attributionreportingsourcetyp": [0, 47], "unsignedint64asbase10": [0, 47], "unsignedint128asbase16": [0, 47], "signedint64asbase10": [0, 47], "attributionreportingfilterdataentri": [0, 47], "attributionreportingfilterconfig": [0, 47], "filter_valu": [0, 47], "lookback_window": [0, 47], "attributionreportingfilterpair": [0, 47], "filter": [0, 16, 18, 24, 35, 37, 39, 40, 47, 49, 51], "not_filt": [0, 47], "attributionreportingaggregationkeysentri": [0, 47], "attributionreportingeventreportwindow": [0, 47], "attributionreportingtriggerspec": [0, 47], "trigger_data": [0, 47], "event_report_window": [0, 47], "attributionreportingtriggerdatamatch": [0, 47], "exact": [0, 18, 35, 47], "modulu": [0, 47], "attributionreportingsourceregistr": [0, 47], "expiri": [0, 5, 47], "trigger_spec": [0, 47], "aggregatable_report_window": [0, 47], "source_origin": [0, 47], "reporting_origin": [0, 47], "destination_sit": [0, 47], "filter_data": [0, 47], "aggregation_kei": [0, 47], "trigger_data_match": [0, 47], "debug_kei": [0, 47], "attributionreportingsourceregistrationresult": [0, 47], "internal_error": [0, 47], "insufficient_source_capac": [0, 47], "insufficient_unique_destination_capac": [0, 47], "excessive_reporting_origin": [0, 47], "prohibited_by_browser_polici": [0, 47], "success_nois": [0, 47], "destination_reporting_limit_reach": [0, 47], "destination_global_limit_reach": [0, 47], "destination_both_limits_reach": [0, 47], "reporting_origins_per_site_limit_reach": [0, 47], "exceeds_max_channel_capac": [0, 47], "exceeds_max_trigger_state_cardin": [0, 47], "destination_per_day_reporting_limit_reach": [0, 47], "attributionreportingsourceregistrationtimeconfig": [0, 47], "exclud": [0, 13, 26, 37, 47, 49, 51], "attributionreportingaggregatablevaluedictentri": [0, 47], "attributionreportingaggregatablevalueentri": [0, 47], "attributionreportingeventtriggerdata": [0, 47], "dedup_kei": [0, 47], "attributionreportingaggregatabletriggerdata": [0, 47], "key_piec": [0, 47], "source_kei": [0, 47], "attributionreportingaggregatablededupkei": [0, 47], "attributionreportingtriggerregistr": [0, 47], "aggregatable_dedup_kei": [0, 47], "event_trigger_data": [0, 47], "aggregatable_trigger_data": [0, 47], "aggregatable_valu": [0, 47], "debug_report": [0, 47], "source_registration_time_config": [0, 47], "aggregation_coordinator_origin": [0, 47], "trigger_context_id": [0, 47], "attributionreportingeventlevelresult": [0, 47], "success_dropped_lower_prior": [0, 47], "no_capacity_for_attribution_destin": [0, 47], "no_matching_sourc": [0, 47], "dedupl": [0, 47], "excessive_attribut": [0, 47], "priority_too_low": [0, 47], "never_attributed_sourc": [0, 47], "no_matching_source_filter_data": [0, 47], "no_matching_configur": [0, 47], "excessive_report": [0, 47], "falsely_attributed_sourc": [0, 47], "report_window_pass": [0, 47], "not_regist": [0, 47], "report_window_not_start": [0, 47], "no_matching_trigger_data": [0, 47], "attributionreportingaggregatableresult": [0, 47], "no_histogram": [0, 47], "insufficient_budget": [0, 47], "relatedwebsiteset": [0, 47], "primary_sit": [0, 47], "associated_sit": [0, 47], "service_sit": [0, 47], "clear_cooki": [0, 47], "clear_data_for_origin": [0, 47], "clear_data_for_storage_kei": [0, 47], "clear_shared_storage_entri": [0, 47], "clear_trust_token": [0, 47], "delete_shared_storage_entri": [0, 47], "delete_storage_bucket": [0, 47], "get_interest_group_detail": [0, 47], "get_related_website_set": [0, 47], "get_shared_storage_entri": [0, 47], "get_shared_storage_metadata": [0, 47], "get_storage_key_for_fram": [0, 47], "get_trust_token": [0, 47], "get_usage_and_quota": [0, 47], "override_quota_for_origin": [0, 47], "reset_shared_storage_budget": [0, 47], "run_bounce_tracking_mitig": [0, 47], "send_pending_attribution_report": [0, 47], "set_attribution_reporting_local_testing_mod": [0, 47], "set_attribution_reporting_track": [0, 47], "set_interest_group_auction_track": [0, 47], "set_interest_group_track": [0, 47], "set_shared_storage_entri": [0, 47], "set_shared_storage_track": [0, 47], "set_storage_bucket_track": [0, 47], "track_cache_storage_for_origin": [0, 47], "track_cache_storage_for_storage_kei": [0, 47], "track_indexed_db_for_origin": [0, 47], "track_indexed_db_for_storage_kei": [0, 47], "untrack_cache_storage_for_origin": [0, 47], "untrack_cache_storage_for_storage_kei": [0, 47], "untrack_indexed_db_for_origin": [0, 47], "untrack_indexed_db_for_storage_kei": [0, 47], "cachestoragecontentupd": [0, 47], "bucket_id": [0, 47], "cachestoragelistupd": [0, 47], "indexeddbcontentupd": [0, 47], "database_nam": [0, 27, 47], "object_store_nam": [0, 27, 47], "indexeddblistupd": [0, 47], "interestgroupaccess": [0, 47], "access_tim": [0, 47], "owner_origin": [0, 47], "component_seller_origin": [0, 47], "bid_curr": [0, 47], "unique_auction_id": [0, 47], "interestgroupauctioneventoccur": [0, 47], "event_tim": [0, 47], "parent_auction_id": [0, 47], "auction_config": [0, 47], "interestgroupauctionnetworkrequestcr": [0, 47], "auction": [0, 37, 47], "sharedstorageaccess": [0, 47], "main_frame_id": [0, 47], "param": [0, 47, 52, 57], "storagebucketcreatedorupd": [0, 47], "bucket_info": [0, 47], "storagebucketdelet": [0, 47], "attributionreportingsourceregist": [0, 47], "attributionreportingtriggerregist": [0, 47], "event_level": [0, 47], "aggregat": [0, 47], "systeminfo": [0, 1], "gpudevic": [0, 48], "vendor_id": [0, 48], "device_id": [0, 14, 48], "vendor_str": [0, 48], "device_str": [0, 48], "driver_vendor": [0, 48], "driver_vers": [0, 48], "sub_sys_id": [0, 48], "revis": [0, 7, 48], "videodecodeacceleratorcap": [0, 48], "max_resolut": [0, 48], "min_resolut": [0, 48], "videoencodeacceleratorcap": [0, 48], "max_framerate_numer": [0, 48], "max_framerate_denomin": [0, 48], "subsamplingformat": [0, 48], "yuv420": [0, 48], "yuv422": [0, 48], "yuv444": [0, 48], "imagetyp": [0, 48], "jpeg": [0, 25, 37, 48, 55, 57], "imagedecodeacceleratorcap": [0, 48], "image_typ": [0, 20, 48], "max_dimens": [0, 48], "min_dimens": [0, 48], "subsampl": [0, 48], "gpuinfo": [0, 48], "driver_bug_workaround": [0, 48], "video_decod": [0, 48], "video_encod": [0, 48], "image_decod": [0, 48], "aux_attribut": [0, 48], "feature_statu": [0, 48], "processinfo": [0, 48], "cpu_tim": [0, 48], "get_feature_st": [0, 48], "get_info": [0, 48], "get_process_info": [0, 48], "targetid": [0, 7, 42, 46, 49], "sessionid": [0, 49], "targetinfo": [0, 49, 57], "can_access_open": [0, 49], "opener_id": [0, 49], "opener_frame_id": [0, 49], "browser_context_id": [0, 7, 47, 49], "filterentri": [0, 49], "targetfilt": [0, 49], "remoteloc": [0, 49], "host": [0, 7, 16, 20, 31, 35, 49, 54, 56], "port": [0, 35, 49, 50, 54, 56], "activate_target": [0, 49], "attach_to_browser_target": [0, 49], "attach_to_target": [0, 49], "auto_attach_rel": [0, 49], "close_target": [0, 49], "create_browser_context": [0, 49], "create_target": [0, 49], "detach_from_target": [0, 49], "dispose_browser_context": [0, 49], "expose_dev_tools_protocol": [0, 49], "get_browser_context": [0, 49], "get_target_info": [0, 49], "get_target": [0, 49], "send_message_to_target": [0, 49], "set_auto_attach": [0, 49], "set_discover_target": [0, 49], "set_remote_loc": [0, 49], "attachedtotarget": [0, 49], "target_info": [0, 49], "waiting_for_debugg": [0, 49], "detachedfromtarget": [0, 49], "receivedmessagefromtarget": [0, 49], "targetcr": [0, 49], "targetdestroi": [0, 49], "error_cod": [0, 49], "targetinfochang": [0, 49], "tether": [0, 1], "bind": [0, 43, 49, 50], "unbind": [0, 50], "trace": [0, 1, 13, 16, 32, 33, 35, 37, 43], "memorydumpconfig": [0, 51], "traceconfig": [0, 51], "record_mod": [0, 51], "trace_buffer_size_in_kb": [0, 51], "enable_sampl": [0, 51], "enable_systrac": [0, 51], "enable_argument_filt": [0, 51], "included_categori": [0, 51], "excluded_categori": [0, 51], "synthetic_delai": [0, 51], "memory_dump_config": [0, 51], "streamformat": [0, 51], "proto": [0, 42, 51], "streamcompress": [0, 51], "memorydumplevelofdetail": [0, 51], "background": [0, 6, 11, 18, 20, 25, 36, 37, 49, 51, 54, 57], "light": [0, 20, 37, 51], "tracingbackend": [0, 51], "auto": [0, 27, 28, 37, 49, 51, 55, 57], "system": [0, 20, 28, 37, 43, 48, 51, 57], "get_categori": [0, 51], "record_clock_sync_mark": [0, 51], "request_memory_dump": [0, 51], "bufferusag": [0, 51], "percent_ful": [0, 51], "event_count": [0, 51], "datacollect": [0, 51], "tracingcomplet": [0, 51], "data_loss_occur": [0, 51], "trace_format": [0, 51], "stream_compress": [0, 51], "webaudio": [0, 1], "graphobjectid": [0, 52], "contexttyp": [0, 52], "realtim": [0, 52], "offlin": [0, 35, 52], "contextst": [0, 52], "suspend": [0, 52], "nodetyp": [0, 16, 18, 52], "channelcountmod": [0, 52], "clamped_max": [0, 52], "explicit": [0, 2, 20, 37, 52], "max_": [0, 52], "channelinterpret": [0, 52], "discret": [0, 30, 37, 52, 53], "speaker": [0, 37, 52], "paramtyp": [0, 52], "automationr": [0, 52], "a_rat": [0, 52], "k_rate": [0, 52], "contextrealtimedata": [0, 52], "render_capac": [0, 52], "callback_interval_mean": [0, 52], "callback_interval_vari": [0, 52], "baseaudiocontext": [0, 52], "context_id": [0, 43, 52], "context_typ": [0, 52], "context_st": [0, 52], "callback_buffer_s": [0, 52], "max_output_channel_count": [0, 52], "sample_r": [0, 52], "realtime_data": [0, 52], "audiolisten": [0, 52], "listener_id": [0, 52], "audionod": [0, 52], "number_of_input": [0, 52], "number_of_output": [0, 52], "channel_count": [0, 52], "channel_count_mod": [0, 52], "channel_interpret": [0, 52], "audioparam": [0, 52], "param_id": [0, 52], "param_typ": [0, 52], "rate": [0, 3, 20, 52], "get_realtime_data": [0, 52], "contextcr": [0, 52], "contextwillbedestroi": [0, 52], "contextchang": [0, 52], "audiolistenercr": [0, 52], "listen": [0, 17, 18, 52, 57], "audiolistenerwillbedestroi": [0, 52], "audionodecr": [0, 52], "audionodewillbedestroi": [0, 52], "audioparamcr": [0, 52], "audioparamwillbedestroi": [0, 52], "nodesconnect": [0, 52], "source_id": [0, 52], "destination_id": [0, 52], "source_output_index": [0, 52], "destination_input_index": [0, 52], "nodesdisconnect": [0, 52], "nodeparamconnect": [0, 52], "nodeparamdisconnect": [0, 52], "webauthn": [0, 1], "authenticatorid": [0, 53], "authenticatorprotocol": [0, 53], "u2f": [0, 53], "ctap2": [0, 53], "ctap2vers": [0, 53], "ctap2_0": [0, 53], "ctap2_1": [0, 53], "authenticatortransport": [0, 53], "ble": [0, 53], "cabl": [0, 53], "intern": [0, 3, 26, 37, 43, 45, 53, 55, 57], "virtualauthenticatoropt": [0, 53], "transport": [0, 35, 45, 53], "ctap2_vers": [0, 53], "has_resident_kei": [0, 53], "has_user_verif": [0, 53], "has_large_blob": [0, 53], "has_cred_blob": [0, 53], "has_min_pin_length": [0, 53], "has_prf": [0, 53], "automatic_presence_simul": [0, 53], "is_user_verifi": [0, 53], "default_backup_elig": [0, 53], "default_backup_st": [0, 53], "credenti": [0, 37, 53], "credential_id": [0, 53], "is_resident_credenti": [0, 53], "private_kei": [0, 53], "sign_count": [0, 53], "rp_id": [0, 53], "user_handl": [0, 53], "large_blob": [0, 53], "backup_elig": [0, 53], "backup_st": [0, 53], "add_credenti": [0, 53], "add_virtual_authent": [0, 53], "clear_credenti": [0, 53], "get_credenti": [0, 53], "remove_credenti": [0, 53], "remove_virtual_authent": [0, 53], "set_automatic_presence_simul": [0, 53], "set_credential_properti": [0, 53], "set_response_override_bit": [0, 53], "set_user_verifi": [0, 53], "credentialad": [0, 53], "authenticator_id": [0, 53], "credentialassert": [0, 53], "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, 59], "experiment": [2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 31, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 45, 46, 47, 48, 49, 50, 51, 52, 53, 55], "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], "do": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 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, 55, 57], "need": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 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, 55, 58, 59], "instanti": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 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], "yourself": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 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], "instead": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 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, 55, 56, 57, 58, 59], "api": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 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, 57], "object": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 23, 24, 25, 26, 27, 28, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 51, 52, 53, 54, 55, 56, 57], "can": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 23, 24, 25, 26, 27, 28, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 51, 52, 53, 54, 55, 57, 58, 59], "those": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 16, 17, 18, 19, 20, 23, 24, 25, 26, 27, 28, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 51, 52, 53, 55, 57], "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], "identifi": [2, 4, 5, 6, 7, 8, 11, 12, 13, 16, 17, 18, 19, 20, 24, 26, 28, 31, 32, 35, 36, 37, 39, 40, 41, 42, 43, 47, 49], "qualnam": [2, 4, 5, 6, 7, 8, 11, 13, 16, 17, 20, 23, 24, 28, 34, 35, 36, 37, 40, 42, 45, 46, 47, 48, 51, 52, 53], "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, 59], "boundari": [2, 4, 5, 6, 7, 8, 11, 13, 16, 17, 20, 23, 24, 28, 31, 34, 35, 36, 37, 40, 42, 43, 45, 46, 47, 48, 51, 52, 53], "enum": [2, 4, 11, 13, 18, 20, 33, 37, 47, 52], "possibl": [2, 4, 13, 37, 40, 47, 49, 57], "booleanorundefin": 2, "idreflist": 2, "nodelist": 2, "computedstr": 2, "tokenlist": 2, "domrel": 2, "internalrol": 2, "valueundefin": 2, "relatedel": 2, "nativ": [2, 17, 21, 28, 34, 37, 55, 56], "particular": [2, 3, 13, 17, 21, 43, 47], "comput": [2, 11, 16, 18, 37], "ax": [2, 11, 16], "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, 58, 59], "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, 55, 56, 57, 58, 59], "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, 55, 57], "bool": [2, 3, 4, 6, 7, 11, 13, 16, 17, 18, 19, 20, 23, 24, 25, 26, 27, 28, 30, 31, 34, 35, 36, 37, 39, 40, 41, 42, 43, 45, 46, 47, 48, 49, 51, 53, 54, 55, 56, 57], "whether": [2, 4, 5, 7, 11, 13, 16, 17, 18, 19, 20, 23, 25, 28, 31, 35, 36, 37, 41, 43, 45, 47, 49, 51, 53, 57], "higher": [2, 11], "markup": [2, 16, 28, 37], "e": [2, 3, 4, 5, 11, 13, 20, 23, 25, 28, 35, 37, 40, 43, 45, 48, 49, 51, 56], "list": [2, 3, 4, 5, 6, 7, 8, 9, 11, 12, 13, 14, 16, 17, 18, 19, 20, 23, 24, 26, 27, 28, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 51, 53, 54, 55, 56, 57], "being": [2, 4, 7, 10, 12, 13, 19, 21, 23, 26, 31, 32, 33, 35, 37, 39, 40, 41, 45, 47, 58, 59], "relat": [2, 4, 5, 6, 11, 16, 18, 20, 28, 35, 36, 37, 39, 47, 48, 49], "current": [2, 3, 4, 7, 9, 11, 13, 16, 18, 20, 25, 26, 27, 28, 33, 35, 37, 38, 39, 40, 41, 42, 43, 47, 49, 52, 54, 55, 57], "One": [2, 4, 28, 47], "applic": [2, 11, 26, 35, 39, 45], "contribut": [2, 26, 45], "everi": [2, 4, 6, 11, 35, 37, 43], "region": [2, 36, 37], "widget": 2, "relationship": 2, "between": [2, 11, 16, 18, 25, 26, 28, 34, 36, 41, 49, 54], "than": [2, 16, 17, 20, 31, 35, 37, 43, 49, 56, 57], "sibl": [2, 16], "hiddenroot": 2, "haspopup": 2, "collect": [2, 4, 10, 11, 13, 16, 18, 26, 32, 34, 37, 38, 41, 43, 51], "why": [2, 4, 13, 29, 31, 35, 37, 43], "raw": [2, 4, 26, 35], "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], "id": [2, 3, 4, 5, 6, 7, 8, 11, 12, 13, 14, 16, 17, 18, 22, 24, 26, 30, 31, 33, 35, 36, 37, 39, 40, 41, 42, 43, 45, 47, 48, 49, 50, 51, 52, 53], "backend": [2, 11, 13, 16, 20, 26, 27, 31, 35, 36, 37, 41, 43, 51], "associ": [2, 6, 7, 11, 13, 16, 18, 28, 31, 32, 35, 37, 40, 43, 47, 48, 53], "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], "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], "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, 57], "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], "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, 56, 59], "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], "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, 55, 57], "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, 57], "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], "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], "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, 57], "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], "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, 57, 58, 59], "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, 56, 57], "remain": [2, 47], "consist": [2, 5, 11, 37, 49, 51], "call": [2, 4, 6, 7, 11, 13, 16, 20, 23, 24, 31, 32, 33, 34, 35, 36, 37, 38, 41, 42, 43, 47, 49, 55, 57], "turn": [2, 20, 49, 51], "impact": [2, 42], "ancestor": [2, 11, 16, 35], "been": [2, 3, 4, 6, 10, 11, 13, 16, 18, 22, 23, 26, 28, 29, 35, 37, 41, 45, 47, 49, 51, 52], "previous": [2, 11, 13, 20, 37, 39, 45], "javascript": [2, 13, 16, 17, 18, 20, 21, 32, 35, 36, 37, 41, 43, 51, 55, 57], "wrapper": [2, 13, 16, 30, 36], "whose": [2, 3, 11, 47], "resid": 2, "If": [2, 4, 5, 7, 8, 11, 13, 16, 17, 20, 24, 25, 26, 27, 33, 34, 35, 37, 40, 42, 43, 45, 47, 49, 51, 53, 56], "omit": [2, 4, 7, 11, 13, 16, 20, 24, 35, 36, 37, 40, 43, 45, 49], "int": [2, 4, 7, 8, 10, 11, 12, 13, 16, 17, 18, 20, 23, 24, 25, 26, 27, 28, 30, 31, 32, 33, 34, 35, 36, 37, 41, 42, 43, 45, 46, 47, 48, 49, 50, 53, 54, 55, 57], "maximum": [2, 7, 11, 13, 16, 17, 20, 30, 31, 37, 43, 48, 53, 57], "descend": [2, 16, 36], "retriev": [2, 7, 11, 16, 17, 18, 26, 34, 38, 43, 49, 53, 54, 55, 57], "full": [2, 11, 18, 20, 33, 37, 43, 45, 52, 55, 57], "fetch_rel": 2, "partial": 2, "exist": [2, 3, 4, 6, 11, 13, 16, 20, 23, 35, 37, 42, 43, 47, 49, 52, 58], "true": [2, 4, 7, 11, 13, 16, 18, 20, 24, 25, 26, 27, 28, 34, 35, 36, 37, 43, 45, 47, 49, 51, 53, 54, 55, 56, 58, 59, 60], "plu": 2, "its": [2, 11, 13, 16, 19, 24, 28, 31, 35, 37, 41, 42, 43, 47, 48, 51, 57], "accessible_nam": 2, "queri": [2, 7, 11, 12, 13, 16, 19, 20, 28, 35, 36, 37, 47, 48, 49, 55], "subtre": [2, 16, 17], "specifi": [2, 4, 5, 7, 8, 11, 13, 16, 18, 20, 24, 27, 30, 31, 35, 36, 37, 39, 40, 41, 43, 47, 48, 49, 50, 51, 53, 56, 57, 58], "doe": [2, 3, 4, 5, 10, 11, 13, 16, 20, 37, 42, 43, 45, 55, 56, 58, 59], "neither": [2, 43], "accessiblenam": 2, "mirror": [2, 9, 16, 43], "sent": [2, 12, 13, 16, 19, 20, 24, 26, 35, 37, 39, 41, 43, 45, 47, 51, 57], "assist": 2, "technologi": [2, 35], "when": [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 16, 17, 18, 23, 24, 25, 26, 28, 29, 31, 32, 33, 35, 36, 37, 39, 40, 41, 43, 45, 47, 49, 51, 53, 54, 55, 57, 58, 59], "ha": [2, 3, 4, 6, 7, 10, 11, 13, 16, 18, 20, 22, 23, 24, 26, 27, 28, 29, 31, 35, 36, 37, 40, 41, 42, 45, 47, 49, 52, 55, 56, 57], "chang": [2, 9, 11, 13, 16, 18, 20, 26, 28, 35, 37, 41, 42, 43, 45, 47, 49, 52, 58], "plai": [3, 55], "float": [3, 4, 7, 8, 11, 13, 15, 16, 18, 20, 25, 26, 27, 28, 31, 32, 34, 35, 37, 38, 39, 41, 43, 46, 47, 48, 51, 52, 54, 55, 57], "playback": [3, 9], "millisecond": [3, 13, 20, 25, 28, 35, 43, 51], "base": [3, 10, 11, 13, 16, 17, 18, 20, 28, 33, 34, 35, 36, 37, 41, 43, 54, 56, 57], "percentag": [3, 57], "0": [3, 4, 11, 13, 16, 17, 18, 20, 24, 25, 28, 33, 35, 37, 43, 48, 51, 54, 55, 57, 58, 59], "100": [3, 11, 25, 35, 37, 52, 55], "scroll": [3, 16, 18, 28, 31, 36, 37, 55, 57], "driven": 3, "transit": [3, 16, 37], "view": [3, 16, 20, 37, 55, 56, 57], "timelin": [3, 39], "contain": [3, 4, 5, 7, 8, 11, 13, 16, 18, 20, 24, 28, 29, 31, 35, 36, 37, 41, 43, 51, 54, 56, 57], "posit": [3, 4, 7, 11, 13, 16, 18, 20, 24, 28, 31, 35, 36, 37, 41, 55, 57], "pixel": [3, 7, 16, 20, 28, 36, 37, 39, 48, 57], "princip": 3, "box": [3, 16, 18, 24, 31, 35, 36], "scrollport": 3, "defin": [3, 5, 6, 7, 11, 13, 16, 18, 22, 28, 35, 36, 37, 42, 45, 48, 50], "progress": [3, 7, 37], "scrolltimelin": 3, "releas": [3, 13, 16, 26, 28, 31, 41, 43], "set": [3, 4, 5, 6, 7, 9, 11, 13, 16, 17, 18, 20, 21, 22, 23, 24, 25, 27, 28, 30, 31, 32, 33, 35, 36, 37, 38, 40, 42, 43, 45, 47, 49, 51, 53, 55, 56, 57, 58], "longer": [3, 16, 36, 37, 45], "manipul": [3, 13], "seek": [3, 30], "animation_id": 3, "remot": [3, 9, 22, 26, 29, 30, 35, 43, 49], "correspond": [3, 13, 16, 18, 23, 24, 26, 33, 35, 37, 40, 42, 43, 47, 56], "within": [3, 11, 13, 16, 28, 31, 33, 35, 39], "wa": [3, 4, 5, 11, 13, 17, 18, 20, 23, 24, 25, 28, 31, 32, 33, 35, 37, 40, 41, 42, 43, 45, 46, 47, 49, 50, 54], "investig": 4, "violat": [4, 17, 32], "improv": 4, "about": [4, 5, 7, 11, 16, 25, 26, 29, 31, 35, 37, 40, 43, 45, 47, 48, 49, 55], "affect": [4, 18, 20, 24, 35], "follow": [4, 5, 7, 8, 11, 12, 13, 16, 18, 20, 24, 25, 27, 30, 31, 34, 35, 37, 41, 42, 43, 47, 48, 49, 51, 55, 56, 57], "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, 40], "front": [4, 11, 16, 37], "difficult": 4, "With": 4, "we": [4, 11, 13, 31, 33, 35, 40, 49, 57, 58, 59], "convei": 4, "without": [4, 7, 13, 26, 35, 37, 42, 47, 49], "site": [4, 7, 35, 37, 42, 47, 55], "mai": [4, 7, 11, 13, 16, 18, 20, 24, 25, 26, 30, 35, 36, 37, 39, 41, 42, 43, 47, 49, 52, 57, 58, 59], "addit": [4, 6, 11, 13, 16, 28, 35, 48, 49, 54], "rawcookielin": 4, "problem": [4, 13, 55], "where": [4, 5, 8, 11, 13, 16, 30, 31, 33, 34, 35, 37, 40, 41, 43, 55], "syntact": 4, "semant": [4, 35], "wai": [4, 24, 35, 42, 43, 54, 57], "valid": [4, 7, 11, 13, 16, 18, 27, 28, 35, 37, 40, 45, 46], "mixedcontentblock": 4, "mixedcontentautomaticallyupgrad": 4, "mixedcontentwarn": 4, "attributionsrc": 4, "cspreport": 4, "eventsourc": [4, 35], "plugindata": 4, "pluginresourc": 4, "sharedwork": [4, 37], "speculationrul": 4, "xmlhttprequest": [4, 17, 35], "mix": [4, 35, 45], "resolv": [4, 11, 13, 16, 35, 43, 53, 55], "unsaf": [4, 22, 43], "j": [4, 23, 33, 55, 57], "mark": [4, 16, 35, 41], "becaus": [4, 33, 35, 37, 47, 49, 51, 55, 58, 59], "map": [4, 11, 13, 35, 37, 43, 53], "blink": [4, 7, 28, 35, 37], "mojom": [4, 40, 51], "requestcontexttyp": 4, "replac": [4, 11, 13, 16, 20, 28, 35, 40, 56], "requestdestin": 4, "alwai": [4, 13, 16, 20, 33, 35, 37, 45, 49, 57, 58, 59], "submiss": [4, 37], "necessarili": 4, "These": [4, 23, 28, 47], "refin": [4, 35], "net": [4, 24, 35], "coepframeresourceneedscoephead": 4, "coopsandboxediframecannotnavigatetocooppag": 4, "corpnotsameorigin": 4, "corpnotsameoriginafterdefaultedtosameoriginbycoep": 4, "corpnotsameoriginafterdefaultedtosameoriginbydip": 4, "corpnotsameoriginafterdefaultedtosameoriginbycoepanddip": 4, "corpnotsamesit": 4, "onli": [4, 7, 8, 9, 11, 13, 16, 18, 20, 23, 24, 25, 26, 28, 30, 31, 35, 37, 40, 41, 43, 45, 47, 48, 49, 51, 54, 55, 57], "extend": [4, 24, 35, 42], "some": [4, 11, 16, 24, 30, 35, 36, 42, 43, 47, 49, 51, 52, 55, 58], "futur": [4, 25, 35, 43], "heavyadblock": 4, "heavyadwarn": 4, "networktotallimit": 4, "cputotallimit": 4, "cpupeaklimit": 4, "either": [4, 13, 16, 20, 23, 24, 30, 35, 36, 37, 40, 41, 42, 43, 51, 56, 57], "warn": [4, 43, 45], "ad": [4, 9, 10, 11, 16, 17, 32, 35, 36, 37, 39, 40, 43, 47, 49, 53, 57], "cpu": [4, 20, 41, 48], "peak": 4, "kinlineviol": 4, "kevalviol": 4, "kurlviol": 4, "ktrustedtypessinkviol": 4, "ktrustedtypespolicyviol": 4, "kwasmevalviol": 4, "transferissu": 4, "creationissu": 4, "aris": 4, "sab": 4, "transfer": [4, 37, 51], "cross": [4, 35, 36, 37, 43, 49], "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, 28, 36, 51], "explain": [4, 37, 45], "github": [4, 7, 20, 23, 35, 37, 39, 40, 47, 52, 53, 58, 59], "com": [4, 16, 37, 39, 40, 42, 43, 49, 57, 58, 59], "wicg": [4, 20, 35, 37, 39, 40, 47], "quirk": 4, "limit": [4, 13, 35], "fals": [4, 7, 11, 13, 16, 17, 18, 25, 28, 35, 36, 37, 45, 47, 49, 53, 54, 55, 56, 57, 58, 60], "mean": [4, 10, 16, 24, 26, 28, 32, 35, 36, 37, 43, 45, 52], "crossoriginportalpostmessageerror": 4, "formlabelfornameerror": 4, "formduplicateidforinputerror": 4, "forminputwithnolabelerror": 4, "formautocompleteattributeemptyerror": 4, "formemptyidandnameattributesforinputerror": 4, "formarialabelledbytononexistingid": 4, "forminputassignedautocompletevaluetoidornameattributeerror": 4, "formlabelhasneitherfornornestedinput": 4, "formlabelformatchesnonexistingiderror": 4, "forminputhaswrongbutwellintendedautocompletevalueerror": 4, "responsewasblockedbyorb": 4, "concret": [4, 58, 59], "errortyp": [4, 40], "aggreg": [4, 35, 37], "frontend": [4, 37], "deprec": [4, 10, 13, 16, 17, 18, 20, 25, 26, 35, 36, 37, 38, 43, 44, 45, 49, 51], "chromium": [4, 7, 20, 28, 33, 35, 37, 49, 54], "org": [4, 7, 11, 16, 20, 28, 35, 37, 42, 45, 49, 53], "main": [4, 7, 28, 31, 35, 36, 37, 40, 46, 48, 49, 57, 58, 59], "third_parti": [4, 7, 28, 35, 37], "render": [4, 5, 7, 11, 16, 18, 20, 25, 28, 34, 35, 37, 52], "core": [4, 28, 35, 37, 56, 57], "readm": 4, "md": [4, 37, 40], "json5": [4, 37], "redirect": [4, 24, 35], "chain": [4, 11, 13, 43, 45], "tracker": [4, 47], "thei": [4, 6, 11, 33, 35, 42, 43, 53, 57], "don": [4, 41, 54, 58, 59], "t": [4, 13, 24, 28, 35, 36, 37, 40, 41, 43, 47, 54, 56, 57, 58, 59], "receiv": [4, 5, 7, 11, 13, 16, 24, 33, 35, 37, 46, 47, 49, 55, 57], "user": [4, 7, 11, 14, 16, 20, 23, 28, 35, 36, 37, 40, 42, 43, 45, 53, 55, 57], "interact": [4, 9, 16, 23, 28, 42, 57, 58, 59], "note": [4, 7, 13, 16, 18, 20, 24, 25, 33, 35, 37, 38, 39, 40, 42, 43, 45, 47, 51, 54, 55, 57], "etld": 4, "test": [4, 16, 23, 36, 37, 53], "80": 4, "bounc": [4, 47], "would": [4, 18, 20, 23, 28, 35, 37, 39, 43, 51, 55, 57], "third": [4, 26], "parti": [4, 35, 53], "permit": [4, 21], "due": [4, 24, 35, 36, 37, 41, 43, 58, 59], "global": [4, 7, 13, 18, 37, 43, 47, 51], "web_pag": 4, "metatagallowlistinvalidorigin": 4, "metatagmodifiedhtml": 4, "feder": 4, "authent": [4, 24, 35, 53], "alongsid": 4, "requestidtokenstatu": 4, "devtool": [4, 7, 11, 30, 45, 47, 49, 55, 57], "inspector_issu": 4, "case": [4, 11, 13, 16, 25, 35, 37, 40, 43, 47, 55, 56, 57, 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": 4, "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, 10, 11, 12, 13, 16, 18, 19, 20, 22, 24, 32, 35, 36, 37, 40, 43, 45, 49, 53], "old": [4, 13, 16], "featur": [4, 6, 7, 11, 20, 35, 37, 48], "encourag": 4, "ones": [4, 13, 35, 40, 42], "guidanc": 4, "lateimportrul": 4, "requestfail": 4, "referenc": [4, 13, 43], "couldn": 4, "invalidsyntax": 4, "invalidinitialvalu": 4, "invalidinherit": 4, "invalidnam": 4, "lead": [4, 57], "discard": [4, 16, 26, 30, 43], "pars": [4, 11, 13, 16, 35, 37], "one": [4, 8, 11, 13, 16, 20, 23, 24, 25, 26, 27, 28, 31, 33, 35, 37, 42, 43, 45, 49, 51, 53, 57, 58, 59], "kind": [4, 11], "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, 47], "hold": [4, 11, 13, 16, 26, 35, 37, 41, 51, 55], "pleas": [4, 35, 36, 37, 57], "add": [4, 36, 43, 47, 49, 53, 56, 57], "entiti": [4, 48], "etc": [4, 5, 13, 16, 20, 28, 33, 35, 37, 43, 48, 56], "refer": [4, 13, 16, 18, 26, 28, 37, 43, 54, 57], "report_aaa": 4, "contrast": [4, 13, 36], "wcag": 4, "prevent": [4, 10, 12, 19, 20, 28, 32, 35, 37, 41, 43, 57], "further": [4, 10, 13, 32, 43, 58, 59], "far": [4, 10, 32, 35], "encod": [4, 7, 8, 13, 18, 24, 25, 30, 31, 34, 35, 37, 48, 51, 53], "size_onli": 4, "were": [4, 5, 11, 16, 26, 28, 30, 35, 43, 46, 47, 51], "re": [4, 16, 33, 43, 57, 58, 59], "tupl": [4, 7, 8, 11, 12, 13, 16, 18, 24, 25, 27, 30, 31, 34, 35, 37, 41, 42, 43, 47, 48, 51, 55, 56, 57], "base64": [4, 7, 8, 13, 24, 25, 30, 31, 35, 37, 51, 53], "sizeonli": 4, "pass": [4, 6, 7, 8, 11, 13, 16, 18, 24, 25, 26, 31, 33, 35, 37, 39, 41, 49, 51, 53], "over": [4, 7, 8, 13, 24, 25, 28, 31, 35, 36, 37, 45, 49, 51, 53], "originals": 4, "encodeds": 4, "16": [5, 18, 25, 28], "digit": 5, "credit": 5, "card": [5, 37], "owner": [5, 11, 16, 18, 36], "month": [5, 58, 59], "4": [5, 23, 28, 37, 48, 55], "year": [5, 58, 59], "3": [5, 13, 16, 17, 18, 20, 25, 35, 36, 37, 38, 45, 49, 58, 59], "verif": [5, 53, 58, 59], "jon": 5, "how": [5, 24, 31, 35, 51, 57], "like": [5, 13, 24, 35, 41, 43, 55, 56, 57, 58, 59], "ui": [5, 33, 43, 45, 53], "two": [5, 23, 35, 52], "dimension": 5, "inner": 5, "surfac": [5, 9, 37], "give_nam": 5, "citi": 5, "munich": 5, "zip": 5, "81456": 5, "dimens": [5, 20, 37, 48], "represent": [5, 11, 24, 33, 35, 43], "heurist": [5, 37], "autocompleteattribut": 5, "autofillinf": 5, "actual": [5, 7, 11, 13, 16, 35, 37, 45, 47, 54, 57, 58, 59], "strategi": 5, "belong": [5, 6, 11, 16, 37, 43, 49], "develop": [5, 35, 40], "verifi": [5, 23], "implement": [5, 11, 16, 33, 43, 58, 59], "fieldid": 5, "cannot": [5, 7, 13, 35, 36, 42, 43], "serv": [5, 35, 37, 43], "anchor": [5, 16, 18, 31, 37], "out": [5, 13, 20, 28, 37, 40, 43, 49, 56, 58, 59], "emit": [5, 7, 28, 35, 37, 40], "2d": 5, "independ": [6, 36, 37], "share": [6, 18, 37, 40, 47], "backgroundfetch": [6, 7, 54], "backgroundsync": [6, 7, 54], "pushmessag": 6, "paymenthandl": [6, 7, 54], "periodicbackgroundsync": [6, 7, 54], "pair": [6, 16, 18, 24, 35, 47, 56], "along": [6, 20, 24, 28, 31, 35, 37, 43, 47], "second": [6, 8, 11, 25, 26, 28, 31, 35, 37, 39, 40, 41, 47, 48, 52, 54, 55, 57, 58, 59], "group": [6, 13, 16, 26, 35, 37, 43, 45, 47], "togeth": [6, 18, 43], "store": [6, 8, 27, 28, 35, 47, 51, 53, 55], "should_record": 6, "record": [6, 8, 11, 26, 27, 35, 39, 41, 47, 51, 55], "afterward": 6, "manag": [7, 37], "window": [7, 11, 20, 28, 36, 37, 40, 42, 48, 49, 54, 57], "edg": 7, "screen": [7, 20, 36, 37, 54, 57], "accessibilityev": [7, 54], "audiocaptur": [7, 54], "capturedsurfacecontrol": 7, "clipboardreadwrit": [7, 54], "clipboardsanitizedwrit": [7, 54], "displaycaptur": [7, 54], "durablestorag": [7, 54], "idledetect": [7, 54], "localfont": [7, 54], "midisysex": [7, 54], "protectedmediaidentifi": [7, 54], "storageaccess": [7, 35, 54], "speakerselect": 7, "toplevelstorageaccess": [7, 35, 54], "videocaptur": [7, 54], "videocapturepantiltzoom": [7, 54], "wakelockscreen": [7, 54], "wakelocksystem": [7, 54], "windowmanag": [7, 54], "definit": [7, 37, 42, 55], "permiss": [7, 37, 54], "w3c": [7, 20, 37, 39, 53], "permission_descriptor": 7, "idl": [7, 20, 35, 37, 39, 57], "push": [7, 11, 16, 35], "uservisibleonli": 7, "clipboard": [7, 37], "allowwithoutsanit": 7, "allowwithoutgestur": 7, "pantiltzoom": 7, "executebrowsercommand": 7, "opentabsearch": 7, "closetabsearch": 7, "minimum": [7, 11, 20, 31, 35, 37, 48], "inclus": [7, 11], "exclus": [7, 11, 13, 24, 43, 49], "sum": 7, "privaci": 7, "sandbox": [7, 35, 54, 56], "enrol": 7, "browsercontext": [7, 49], "gracefulli": 7, "thread": [7, 31, 37, 48], "gpu": [7, 48], "process": [7, 28, 34, 35, 36, 37, 42, 43, 45, 48, 54, 58, 59], "command_id": 7, "invok": [7, 21, 47], "telemetri": 7, "switch": [7, 20], "commandlin": [7, 48], "delta": [7, 28, 41], "last": [7, 11, 13, 16, 26, 30, 31, 34, 37, 41, 46, 47, 56], "substr": [7, 8, 17, 18], "extract": [7, 37], "empti": [7, 8, 9, 11, 13, 20, 24, 27, 28, 35, 36, 37, 39, 43, 45, 48, 49, 56], "absent": [7, 11, 16, 24, 31, 35], "protocolvers": 7, "product": 7, "userag": 7, "agent": [7, 11, 16, 18, 20, 30, 33, 35, 43, 51], "jsversion": 7, "v8": [7, 13, 34, 43], "window_id": 7, "restor": [7, 20, 28, 33, 37], "part": [7, 37, 49, 58, 59], "given": [7, 11, 13, 16, 17, 18, 20, 24, 26, 27, 28, 31, 35, 36, 37, 42, 43, 47, 48, 49, 53, 54, 55, 56, 57], "reject": [7, 23, 43], "overrid": [7, 13, 15, 20, 24, 33, 35, 37, 39, 42, 43, 45, 47, 53], "reset": [7, 20, 23, 37, 41, 42, 47, 53], "badge_label": 7, "dock": 7, "tile": [7, 31], "png": [7, 25, 37, 55, 57], "behavior": [7, 13, 24, 28, 35, 37], "download_path": [7, 37], "events_en": 7, "otherwis": [7, 13, 20, 24, 25, 35, 37, 47, 48, 51, 53, 55, 56], "allowandnam": 7, "accord": [7, 16, 18, 37, 42, 47], "descriptor": [7, 11, 36, 43], "combin": 7, "unspecifi": [7, 35], "unchang": 7, "fire": [7, 9, 11, 13, 16, 20, 24, 29, 35, 36, 37, 40, 45, 54, 55, 57], "begin": [7, 11, 13, 18, 24, 35, 37], "suggest": [7, 35, 37, 45], "disk": [7, 35, 37], "byte": [7, 13, 26, 30, 34, 35, 37, 43, 47, 53], "opaquerespons": 8, "opaqueredirect": 8, "epoch": [8, 35, 39, 43], "opaqu": [8, 35, 53], "delet": [8, 27, 35, 37, 43, 47, 49], "spec": [8, 37, 47, 52, 53], "At": [8, 27], "least": [8, 27, 28, 51], "securityorigin": [8, 27], "storagekei": [8, 27, 47], "skip_count": [8, 27], "page_s": [8, 27], "path_filt": 8, "skip": [8, 13, 16, 27, 57], "present": [8, 9, 11, 13, 16, 18, 24, 31, 35, 37, 39, 47, 49, 53, 56], "cachedataentri": 8, "returncount": 8, "pathfilt": 8, "There": [8, 15, 17, 18, 21, 22, 25, 27, 29, 30, 34, 42, 44, 45, 48, 50], "describ": [9, 13, 16, 20, 26, 28, 43, 45, 48], "observ": [9, 20, 24, 35], "presentation_url": 9, "compat": [9, 13, 16], "presentationurl": 9, "well": [9, 16, 18, 49, 55, 57, 58, 59], "remov": [9, 11, 13, 16, 17, 21, 25, 33, 35, 37, 43, 47, 53, 55, 56], "sink_nam": 9, "choos": [9, 51], "via": [9, 11, 13, 16, 18, 26, 28, 35, 37, 40, 42, 43, 49, 51, 58, 59], "sdk": 9, "desktop": 9, "whenev": [9, 11, 33, 35, 57], "softwar": 9, "outstand": 9, "issuemessag": 9, "sever": [10, 13, 16, 32, 45], "noth": [10, 20, 56, 57], "expos": [11, 13, 16, 26, 35, 39, 43, 51], "write": [11, 16, 37], "subsequ": [11, 13, 24, 49], "structur": [11, 16, 37, 40], "interchang": 11, "fornod": 11, "keep": [11, 16, 33, 51, 54, 57, 58, 59], "getstylesheet": 11, "pseudo": [11, 16, 18], "ident": [11, 31, 35, 37, 42], "delimit": 11, "comma": [11, 47], "underli": [11, 35], "draft": [11, 35], "csswg": 11, "compon": [11, 16, 35, 56], "metainform": 11, "construct": [11, 52], "cssstylesheet": 11, "non": [11, 13, 16, 24, 36, 37, 39, 43, 47, 49, 51], "denot": [11, 13], "parser": [11, 16, 35], "written": 11, "mutabl": 11, "becom": [11, 16, 27, 31, 35, 55], "modifi": [11, 13, 16, 17, 19, 24, 28, 35, 37, 46, 47, 55], "cssom": 11, "them": [11, 16, 20, 24, 33, 37, 43, 47, 49, 54, 55], "immedi": [11, 16, 20, 37, 41, 42, 43, 47, 53], "creation": [11, 13, 16, 35, 37, 43, 49], "through": [11, 13, 21, 33, 40, 49, 55], "zero": [11, 24, 35, 51, 53], "charact": [11, 18, 24, 35], "sourceurl": [11, 13], "come": [11, 20, 28, 40, 43, 56], "comment": [11, 24, 42], "sheet": 11, "declar": [11, 43, 51, 55], "came": 11, "sort": [11, 13], "distanc": [11, 28, 36], "involv": [11, 47], "innermost": 11, "go": [11, 33, 37, 57, 58, 59], "outward": 11, "cascad": 11, "hierarchi": [11, 37, 54], "dure": [11, 13, 25, 35, 37, 40, 43, 47], "mediarul": 11, "supportsrul": 11, "containerrul": 11, "layerrul": 11, "scoperul": 11, "stylerul": 11, "coverag": [11, 41], "shorthand": 11, "annot": 11, "impli": [11, 37, 43], "enclos": 11, "understood": [11, 35], "longhand": 11, "importrul": 11, "linkedsheet": 11, "inlinesheet": 11, "satisfi": 11, "physic": [11, 16, 20, 28, 35], "logic": [11, 13, 16], "determin": [11, 18, 24, 26, 35, 36, 37, 39, 43, 49], "sub": [11, 16, 37, 47, 48], "amount": [11, 47, 57], "glyph": 11, "famili": [11, 37], "postscript": 11, "variat": 11, "variabl": [11, 13, 43], "k": [11, 52, 56, 58, 59], "human": [11, 43], "readabl": [11, 43], "languag": [11, 13, 18, 20, 35, 58], "en": [11, 56, 58], "www": [11, 16, 35, 37, 42, 45, 57, 58, 59], "w3": [11, 16, 35, 45], "tr": [11, 16, 35, 45], "2008": 11, "rec": 11, "css2": 11, "20080411": 11, "platformfontfamili": 11, "fontvariationax": 11, "variant": [11, 13, 57], "weight": 11, "stretch": 11, "unicod": 11, "try": [11, 13, 57], "fallback": [11, 35], "prelud": 11, "dash": [11, 36], "registerproperti": 11, "palett": 11, "mutat": [11, 13], "rule_text": 11, "node_for_property_syntax_valid": 11, "insert": [11, 16, 27, 28, 56], "ruletext": 11, "regist": [11, 37, 42, 47, 52], "static": [11, 35, 58, 59], "produc": [11, 20, 24, 30, 37, 39, 43], "incorrect": 11, "var": 11, "newli": [11, 43], "special": 11, "assum": [11, 13, 35, 37, 49], "forced_pseudo_class": 11, "ensur": [11, 57], "backgroundcolor": 11, "behind": 11, "undefin": [11, 16, 24, 43], "flat": [11, 16, 49], "simpli": 11, "gradient": 11, "anyth": [11, 43], "complic": 11, "had": [11, 18, 24, 35, 40], "computedfonts": 11, "12px": 11, "computedfontweight": 11, "explicitli": [11, 43, 51], "implicitli": [11, 16], "inlinestyl": 11, "attributesstyl": 11, "20": [11, 49], "engin": [11, 35], "getlayersfornod": 11, "nearest": [11, 16, 31], "shadow": [11, 16, 17, 18, 37], "selector_text": 11, "getlocationforselector": 11, "matchedcssrul": 11, "pseudoel": 11, "inheritedpseudoel": 11, "parentlayoutnodeid": 11, "textnod": 11, "statist": [11, 26, 41], "emploi": 11, "textual": [11, 24], "modif": [11, 16, 35], "takecoveragedelta": 11, "instrument": [11, 13, 17, 21, 35], "poll": [11, 41], "batch": [11, 16, 33], "obtain": [11, 18, 30, 35], "becam": 11, "monoton": [11, 35, 39, 41], "properties_to_track": 11, "takecomputedstyleupd": 11, "occur": [11, 21, 28, 30, 35, 40, 45, 47, 49, 52, 58, 59], "successfulli": [11, 16, 25, 50], "consid": [11, 13, 35, 49, 57], "metainfo": 11, "now": [12, 13, 16, 19, 20, 33, 35, 37, 45, 58, 59], "deliv": [12, 19, 33, 35, 37, 51], "database_id": 12, "columnnam": 12, "sqlerror": 12, "debug": [13, 17, 22, 29, 35, 36, 49, 53, 57], "capabl": [13, 37, 48], "breakpoint": [13, 17, 21, 43], "execut": [13, 16, 17, 20, 34, 35, 37, 38, 41, 43], "explor": 13, "virtual": [13, 20, 28, 53], "machin": [13, 48], "favor": [13, 26, 37, 43], "vm": 13, "restart": 13, "here": [13, 35, 43, 55, 58], "guarante": [13, 35, 37, 42, 43, 57], "restartfram": 13, "veri": [13, 31, 55, 57], "rest": [13, 16, 58, 59], "artifici": [13, 26], "transient": 13, "search": [13, 16, 35, 37, 57], "disassembl": 13, "bytecod": 13, "webassembli": 13, "wasm": 13, "extern": [13, 37, 40], "target_call_fram": 13, "reach": [13, 52], "streamid": 13, "larg": [13, 26, 47, 53], "disassembli": 13, "totalnumberoflin": 13, "functionbodyoffset": 13, "format": [13, 16, 25, 36, 37, 48, 51, 53, 55, 57], "start1": 13, "end1": 13, "start2": 13, "end2": 13, "max_scripts_cache_s": 13, "heap": [13, 26, 34, 43], "put": 13, "object_group": [13, 16, 26, 43], "include_command_line_api": [13, 37, 43], "silent": [13, 43], "return_by_valu": [13, 43, 55, 57], "generate_preview": [13, 43], "throw_on_side_effect": [13, 43], "rapid": 13, "handl": [13, 24, 28, 30, 35, 36, 37, 42, 43, 45, 51, 54, 57, 58, 59], "releaseobjectgroup": 13, "thrown": [13, 37, 43], "setpauseonexcept": [13, 43], "throw": [13, 43], "side": [13, 25, 28, 43], "effect": [13, 25, 36, 43, 47, 49, 55], "termin": [13, 29, 43, 49], "restrict_to_funct": 13, "nest": [13, 43], "scriptsourc": 13, "stack_trace_id": 13, "getscriptsourc": 13, "stream_id": 13, "statement": 13, "parent_stack_trace_id": 13, "async": [13, 35, 43, 54, 55, 57, 58, 59], "schedul": [13, 20, 37, 47], "immediatli": 13, "To": [13, 20, 35, 55], "ward": 13, "miss": [13, 16, 20, 37], "variou": [13, 36], "stepinto": 13, "asyncstacktrac": 13, "asyncstacktraceid": 13, "terminate_on_resum": 13, "upon": [13, 16, 17, 20, 30, 32, 35, 36, 37, 57], "terminateexecut": 13, "case_sensit": [13, 35, 37], "is_regex": [13, 35, 37], "sensit": [13, 26, 35, 37], "treat": [13, 35, 37, 43, 55], "regex": [13, 35, 37], "previou": [13, 16, 20, 28, 39, 49], "blackbox": 13, "final": [13, 18, 28, 40, 47], "resort": 13, "unsuccess": 13, "regexp": 13, "blacklist": 13, "interv": [13, 25, 26, 34, 41, 51, 52], "isn": [13, 35, 40, 43, 57], "actualloc": 13, "url_regex": 13, "script_hash": 13, "surviv": [13, 37, 43], "urlregex": 13, "hash": [13, 35], "deactiv": 13, "uncaught": 13, "caught": 13, "break": 13, "script_sourc": [13, 37], "dry_run": 13, "allow_top_frame_edit": 13, "automat": [13, 20, 43, 49, 57, 58], "dry": 13, "long": [13, 26, 27, 35, 58, 59], "happen": [13, 16, 23, 24, 31, 36, 37, 43, 47, 49, 55, 57], "stackchang": 13, "ok": 13, "compileerror": 13, "interrupt": 13, "scope_numb": 13, "variable_nam": 13, "manual": [13, 36, 37, 57], "closur": 13, "catch": 13, "break_on_async_cal": 13, "skip_list": 13, "task": [13, 20, 57], "skiplist": 13, "criteria": 13, "auxiliari": [13, 43], "hit": [13, 16, 21, 35, 36], "never": [13, 16, 58, 59], "sha": 13, "256": [13, 53], "embedd": [13, 37, 41, 43, 53], "isdefault": [13, 43], "es6": 13, "section": [13, 35, 57], "suppli": [13, 24], "uncollect": 13, "open": [14, 16, 27, 37, 42, 43, 49, 54, 57, 58, 59], "respond": [14, 18, 24], "selectprompt": 14, "cancelprompt": 14, "overridden": [15, 20, 24, 35, 37, 45, 47], "alpha": [15, 16, 37], "beta": [15, 37], "gamma": [15, 37], "mock": [15, 20, 35, 37], "twice": 16, "friendli": [16, 37, 43], "nodenam": [16, 18], "letter": 16, "spell": 16, "grammar": 16, "thumb": 16, "button": [16, 23, 28, 55, 57, 58, 59], "piec": 16, "corner": [16, 56, 57], "quirksmod": 16, "limitedquirksmod": 16, "noquirksmod": 16, "containerselector": 16, "term": [16, 37], "awar": 16, "localnam": 16, "nodevalu": [16, 18], "name1": 16, "value1": 16, "name2": 16, "value2": 16, "frameown": [16, 18], "documenttyp": [16, 18], "publicid": [16, 18], "systemid": [16, 18], "internalsubset": 16, "xml": 16, "fragment": [16, 26, 31, 35, 37], "templat": [16, 18, 37], "crbug": [16, 37, 40, 42, 43, 49], "937746": 16, "htmlimport": 16, "distribut": [16, 26, 36], "svg": 16, "red": [16, 55], "255": 16, "green": 16, "blue": 16, "clock": [16, 51], "wise": 16, "outsid": [16, 36, 58, 59], "coordin": [16, 18, 28, 31, 36, 55], "target_node_id": 16, "insert_before_node_id": 16, "deep": [16, 35, 43], "place": [16, 47], "drop": [16, 28, 35], "targetnodeid": 16, "clone": 16, "pierc": [16, 17], "larger": [16, 17], "travers": [16, 17], "search_id": 16, "getsearchresult": 16, "include_whitespac": 16, "whitespac": [16, 56], "anchor_specifi": 16, "interleav": 16, "container_nam": 16, "containernam": 16, "null": [16, 33, 36, 40, 52], "might": [16, 18, 33, 35, 36, 43, 55, 57], "multipl": [16, 26, 27, 33, 35, 36, 40, 43, 47, 49, 55, 57], "caller": [16, 23], "certain": [16, 41, 57], "design": [16, 25], "capturesnapshot": [16, 18], "include_user_agent_shadow_dom": 16, "ignore_pointer_events_non": 16, "ua": [16, 18, 20, 35, 37], "pointer": [16, 28], "As": 16, "computed_styl": [16, 18], "outer": [16, 35, 43], "relayout": 16, "from_index": 16, "to_index": 16, "fromindex": 16, "toindex": 16, "therefor": [16, 55, 57], "hide": [16, 36], "undoabl": 16, "move": [16, 28, 33, 55], "cancelsearch": 16, "plain": 16, "xpath": 16, "searchid": 16, "resultcount": 16, "fixm": 16, "proprietari": 16, "queryselector": [16, 55], "queryselectoral": [16, 55, 57], "undon": 16, "down": [16, 55, 57], "seri": [16, 24, 51], "alreadi": [16, 35, 47, 55], "exactli": [16, 24, 35, 43], "objectid": [16, 36, 43], "center": 16, "similar": [16, 22, 42, 49, 57], "scrollintoview": 16, "Will": [16, 43, 48], "deriv": [16, 42], "captur": [16, 25, 31, 36, 37, 43, 55, 57], "getnodestacktrac": 16, "outer_html": 16, "ttribut": 16, "domcharacterdatamodifi": 16, "domnodeinsert": 16, "domnoderemov": 16, "want": [16, 31, 55, 57, 58, 59], "popul": [16, 35, 43], "trustedtyp": [17, 57], "polici": [17, 20, 35, 37, 43], "usecaptur": 17, "setdombreakpoint": 17, "target_nam": 17, "eventtarget": 17, "facilit": 18, "snapshot": [18, 26, 31, 37], "textarea": 18, "radio": 18, "checkbox": 18, "getsnapshot": 18, "natur": [18, 55], "srcset": 18, "post": [18, 24, 35], "regard": 18, "stabl": 18, "textbox": 18, "surrog": 18, "utf": [18, 35], "layoutobject": 18, "layouttext": 18, "paint": [18, 31, 36, 37, 39], "includepaintord": 18, "whitelist": 18, "tabl": 18, "rare": 18, "flatten": [18, 49], "absolut": [18, 20, 22, 36, 47, 57], "includedomrect": 18, "blend": 18, "overlap": 18, "opac": 18, "include_paint_ord": 18, "include_dom_rect": 18, "include_blended_background_color": 18, "include_text_color_opac": 18, "white": 18, "offsetrect": 18, "clientrect": 18, "achiev": 18, "computed_style_whitelist": 18, "include_event_listen": 18, "include_user_agent_shadow_tre": 18, "cachedstoragearea": 19, "environ": [20, 43], "area": [20, 28, 36, 37, 40], "split": 20, "postur": 20, "pauseifnetworkfetchespend": 20, "sec": [20, 35, 39], "ch": [20, 35, 37], "ambient": [20, 37], "linear": 20, "acceler": [20, 28, 48], "tell": [20, 35, 43], "setdevicemetricsoverrid": 20, "setdevicepostureoverrid": 20, "again": [20, 33, 42, 55, 57, 58, 59], "factor": [20, 28, 37, 45], "dark": [20, 36], "theme": [20, 36], "throttl": [20, 35], "slow": 20, "slowdown": 20, "2x": 20, "device_scale_factor": [20, 37], "screen_width": [20, 37], "screen_height": [20, 37], "position_x": [20, 37], "position_i": [20, 37], "dont_set_visible_s": [20, 37], "screen_orient": [20, 37], "display_featur": 20, "device_postur": 20, "innerwidth": [20, 37], "innerheight": [20, 37], "10000000": [20, 37], "autos": [20, 37], "reli": [20, 37, 53], "setvisibles": [20, 37], "multi": [20, 43], "segment": 20, "off": [20, 49, 58, 59], "foldabl": 20, "coooki": 20, "gestur": [20, 28, 35, 37], "vision": 20, "defici": 20, "effort": 20, "physiolog": 20, "accur": [20, 41], "medic": 20, "recogn": 20, "simul": [20, 34], "latitud": [20, 37], "longitud": [20, 37], "accuraci": [20, 37], "unavail": [20, 37], "hardware_concurr": 20, "hardwar": [20, 52], "concurr": 20, "is_user_act": 20, "is_screen_unlock": 20, "isuseract": 20, "isscreenunlock": 20, "icu": 20, "en_u": 20, "rather": [20, 31, 37, 54], "real": [20, 52, 53], "attempt": [20, 35, 40, 57], "setsensoroverrideen": 20, "timezone_id": 20, "timezon": 20, "dep": 20, "git": 20, "faee8bc70570192d82d2978a71e2a615788597d1": 20, "misc": 20, "metazon": 20, "txt": 20, "max_touch_point": 20, "accept_languag": [20, 35], "user_agent_metadata": [20, 35], "useragentdata": [20, 35], "budget": [20, 47], "max_virtual_time_task_starvation_count": 20, "initial_virtual_tim": 20, "synthet": 20, "mani": [20, 31, 35, 55, 56, 57], "elaps": 20, "deadlock": 20, "Not": [20, 28, 35, 37], "android": 20, "dip": [20, 28, 35, 36, 37, 49], "similarli": [21, 24], "pipe": 22, "unpack": [22, 58, 59], "filesystem": 22, "cli": 22, "dialog": [23, 24, 35, 37], "ever": [23, 55, 57], "rp": 23, "signin": 23, "signup": 23, "accountchoos": 23, "autoreauthn": 23, "confirmidplogin": 23, "confirmidplogincontinu": 23, "errorgotit": 23, "errormoredetail": 23, "termsofservic": 23, "privacypolici": 23, "identityrequestaccount": 23, "dialog_button": 23, "trigger_cooldown": 23, "disable_rejection_delai": 23, "promis": [23, 35, 43], "unimport": 23, "fedidcg": 23, "account_index": 23, "account_url_typ": 23, "cooldown": 23, "show": [23, 26, 36, 37, 43, 57, 58, 59], "recent": [23, 57], "dismiss": [23, 37], "primarili": 23, "appropri": [23, 28, 47], "below": [23, 37, 43], "let": [24, 33, 43, 57, 58, 59], "substitut": 24, "stage": [24, 25, 35], "intercept": [24, 35, 37, 53], "wildcard": [24, 35], "escap": [24, 35], "backslash": [24, 35], "equival": [24, 35, 57], "author": [24, 35], "challeng": [24, 35], "401": [24, 35], "407": [24, 35], "digest": [24, 35], "decis": [24, 35], "defer": [24, 35, 37], "popup": [24, 35], "possibli": [24, 35], "providecredenti": [24, 35], "intercept_respons": 24, "hop": 24, "response_phras": 24, "binary_response_head": 24, "responsecod": 24, "phrase": [24, 45], "separ": [24, 33, 35, 36, 45, 47], "prefer": [24, 28, 37, 42, 57], "abov": [24, 37, 57], "unless": [24, 43, 57], "utf8": 24, "transmit": [24, 35], "auth_challenge_respons": [24, 35], "handle_auth_request": 24, "failrequest": [24, 35], "fulfillrequest": [24, 35], "continuerequest": [24, 35], "continuewithauth": 24, "fetchrequest": 24, "error_reason": [24, 35], "server": [24, 35, 37, 46, 47, 49], "mutual": [24, 43], "takeresponsebodyforinterceptionasstream": 24, "_redirect": 24, "received_": 24, "differenti": 24, "presenc": [24, 47, 53], "base64encod": [24, 30, 35, 37], "headersreceiv": [24, 35], "sequenti": [24, 30, 35, 49], "getresponsebodi": 24, "responseerrorreason": 24, "responsestatuscod": 24, "distinguish": [24, 35, 41], "301": 24, "302": 24, "303": 24, "307": 24, "308": 24, "redirectedrequestid": 24, "networkid": 24, "handleauthrequest": 24, "encount": [24, 35, 37], "headless": [25, 49, 54, 56, 57, 58], "compress": [25, 35, 37, 51], "speed": [25, 28, 37, 58, 59], "frame_time_tick": 25, "no_display_upd": 25, "beginfram": [25, 49], "beginframecontrol": 25, "compositor": 25, "draw": [25, 36], "goo": 25, "gle": 25, "timetick": 25, "uptim": 25, "60": 25, "666": 25, "commit": [25, 28, 37], "drawn": 25, "onto": 25, "visual": [25, 37, 58, 59], "hasdamag": 25, "damag": 25, "thu": [25, 35, 57], "diagnost": 25, "screenshotdata": 25, "taken": [25, 26, 41], "rtype": [25, 37, 55, 57], "callsit": [26, 41], "alloc": [26, 34, 43], "across": [26, 43, 48], "startsampl": [26, 34], "stopsampl": 26, "heap_object_id": 26, "sampling_interv": [26, 34], "include_objects_collected_by_major_gc": 26, "include_objects_collected_by_minor_gc": 26, "averag": [26, 34], "poisson": 26, "32768": 26, "By": 26, "still": [26, 35, 37, 40, 57], "aliv": 26, "getsamplingprofil": 26, "steadi": 26, "instruct": 26, "major": [26, 28], "gc": 26, "temporari": [26, 30, 35], "minor": 26, "tune": 26, "latenc": [26, 35], "track_alloc": 26, "report_progress": 26, "treat_global_objects_as_root": 26, "capture_numeric_valu": 26, "expose_intern": 26, "exposeintern": 26, "numer": [26, 33, 48], "triplet": 26, "regularli": 26, "seen": 26, "unsign": 27, "increment": [27, 39, 53], "primari": [27, 47, 48], "key_rang": 27, "entriescount": 27, "keygeneratorvalu": 27, "autoincr": 27, "index_nam": 27, "objectstoredataentri": 27, "hasmor": 27, "proce": [28, 30], "toward": 28, "bottom": [28, 37], "radiu": 28, "rotat": 28, "tangenti": 28, "pressur": [28, 34, 37], "plane": 28, "stylu": 28, "degre": 28, "90": 28, "tiltx": 28, "tilti": 28, "clockwis": 28, "pen": 28, "359": 28, "utc": [28, 35], "januari": [28, 35, 58, 59], "1970": [28, 35], "mime": 28, "drag": [28, 55], "mimetyp": [28, 35, 37, 42], "uri": [28, 35], "filenam": [28, 55, 57], "dispatch": 28, "alt": [28, 55], "ctrl": [28, 55], "shift": [28, 31, 36, 37, 39, 55], "8": [28, 35, 37, 53, 55, 58, 59], "unmodified_text": 28, "key_identifi": 28, "windows_virtual_key_cod": 28, "native_virtual_key_cod": 28, "auto_repeat": 28, "is_keypad": 28, "is_system_kei": 28, "keyboard": [28, 37], "keyup": 28, "rawkeydown": 28, "u": [28, 33, 36, 56, 57, 58], "0041": 28, "keya": 28, "altgr": 28, "keypad": 28, "selectal": 28, "execcommand": 28, "nsstandardkeybindingrespond": 28, "editor_command_nam": 28, "h": [28, 33, 35, 51], "click_count": 28, "delta_x": 28, "delta_i": 28, "pointer_typ": 28, "wheel": 28, "touch_point": 28, "touchend": 28, "touchcancel": 28, "touchstart": 28, "touchmov": 28, "per": [28, 31, 33, 35, 37, 43, 45, 47, 48, 49, 58, 59], "compar": [28, 43, 57], "sequenc": [28, 51, 53], "selection_start": 28, "selection_end": 28, "replacement_start": 28, "replacement_end": 28, "im": 28, "imecommitcomposit": 28, "imesetcomposit": 28, "composit": [28, 31], "doesn": [28, 36, 47], "emoji": 28, "directli": [28, 55, 56], "dispatchdragev": 28, "scale_factor": 28, "relative_spe": 28, "gesture_source_typ": 28, "synthes": [28, 51], "pinch": 28, "period": 28, "800": 28, "x_distanc": 28, "y_distanc": 28, "x_overscrol": 28, "y_overscrol": 28, "prevent_fl": 28, "repeat_count": 28, "repeat_delay_m": 28, "interaction_marker_nam": 28, "fling": 28, "swipe": 28, "250": 28, "tap_count": 28, "tap": 28, "touchdown": 28, "touchup": 28, "m": [28, 35], "50": [28, 55, 57], "doubl": [28, 55], "setinterceptdrag": 28, "output": [30, 52, 60], "blob": [30, 37, 40, 53], "eof": 30, "itself": [31, 35, 43, 55], "sticki": 31, "constraint": 31, "purpos": [31, 35, 53], "matrix": 31, "compositingreason": 31, "compositingreasonid": 31, "inspect": [31, 33, 36, 37, 43, 49, 52], "compos": [31, 57], "snapshot_id": 31, "min_repeat_count": 31, "min_dur": 31, "clip_rect": 31, "replai": [31, 35], "from_step": 31, "to_step": 31, "bitmap": 31, "till": 31, "canva": 31, "medialogrecord": 33, "kmessag": 33, "sync": [33, 37, 51], "medialogmessagelevel": 33, "thing": [33, 57], "dvlog": 33, "pipelinestatu": 33, "soon": [33, 51], "howev": [33, 35, 55, 57], "awai": 33, "introduc": 33, "hopefulli": 33, "kmediapropertychang": 33, "kmediaeventtrigg": 33, "kmediaerror": 33, "pipelinestatuscod": 33, "pipeline_statu": 33, "potenti": [33, 35, 37, 47], "ie": [33, 57], "decodererror": 33, "windowserror": 33, "extra": [33, 35, 37, 54], "hresult": 33, "codec": [33, 48], "propvalu": 33, "congest": 33, "chronolog": 33, "decim": 34, "hexadecim": 34, "0x": 34, "prefix": 34, "oomintervent": 34, "purg": 34, "startup": 34, "jseventlisten": 34, "suppress": [34, 47], "suppress_random": 34, "random": [34, 58, 59], "perceiv": 35, "texttrack": 35, "signedexchang": 35, "cspviolationreport": 35, "loader": [35, 37], "timedout": 35, "accessdeni": 35, "connectionclos": 35, "connectionreset": 35, "connectionrefus": 35, "connectionabort": 35, "connectionfail": 35, "namenotresolv": 35, "internetdisconnect": 35, "addressunreach": 35, "blockedbycli": [35, 40], "blockedbyrespons": 35, "arbitrari": 35, "past": [35, 58, 59], "supposedli": 35, "samesit": 35, "tool": 35, "ietf": 35, "west": 35, "00": 35, "legaci": [35, 51], "abil": 35, "nonsecur": 35, "requesttim": 35, "baselin": 35, "proxi": [35, 49], "dn": 35, "ssl": [35, 45], "handshak": 35, "settl": 35, "respondwith": 35, "rout": 35, "verylow": 35, "veryhigh": 35, "referr": [35, 37], "postdata": 35, "too": [35, 49, 56], "individu": [35, 37], "sct": 35, "unlik": [35, 37, 42, 43], "algorithm": [35, 36, 45], "tl": [35, 45], "quic": [35, 45], "exchang": [35, 45], "subject": [35, 45], "san": 35, "ip": 35, "ca": [35, 45], "compli": 35, "transpar": [35, 36, 37], "encrypt": [35, 37], "clienthello": 35, "ec": [35, 45], "dh": [35, 45], "aead": [35, 45], "signatureschem": 35, "subresourc": 35, "corp": 35, "disallowedbymod": 35, "invalidrespons": 35, "wildcardoriginnotallow": 35, "missingalloworiginhead": 35, "multiplealloworiginvalu": 35, "invalidalloworiginvalu": 35, "alloworiginmismatch": 35, "invalidallowcredenti": 35, "corsdisabledschem": 35, "preflightinvalidstatu": 35, "preflightdisallowedredirect": 35, "preflightwildcardoriginnotallow": 35, "preflightmissingalloworiginhead": 35, "preflightmultiplealloworiginvalu": 35, "preflightinvalidalloworiginvalu": 35, "preflightalloworiginmismatch": 35, "preflightinvalidallowcredenti": 35, "preflightmissingallowextern": 35, "preflightinvalidallowextern": 35, "preflightmissingallowprivatenetwork": 35, "preflightinvalidallowprivatenetwork": 35, "invalidallowmethodspreflightrespons": 35, "invalidallowheaderspreflightrespons": 35, "methoddisallowedbypreflightrespons": 35, "headerdisallowedbypreflightrespons": 35, "redirectcontainscredenti": 35, "insecureprivatenetwork": 35, "invalidprivatenetworkaccess": 35, "unexpectedprivatenetworkaccess": 35, "nocorsredirectmodenotfollow": 35, "preflightmissingprivatenetworkaccessid": 35, "preflightmissingprivatenetworkaccessnam": 35, "privatenetworkaccesspermissionunavail": 35, "privatenetworkaccesspermissiondeni": 35, "trust": [35, 47], "trust_token": 35, "srr": 35, "whom": 35, "alternativejobwonwithoutrac": 35, "alternativejobwonrac": 35, "mainjobwonrac": 35, "mappingmiss": 35, "dnsalpnh3jobwonwithoutrac": 35, "dnsalpnh3jobwonrac": 35, "unspecifiedreason": 35, "router": 35, "race": [35, 37], "reus": [35, 43], "matchedsourcetyp": 35, "matchedsourc": 35, "just": [35, 55, 56, 57, 58, 59], "payloaddata": 35, "visit": 35, "toplevelsit": 35, "sameparti": 35, "65535": 35, "unix": 35, "partit": 35, "secureonli": 35, "samesitestrict": 35, "samesitelax": 35, "samesiteunspecifiedtreatedaslax": 35, "samesitenoneinsecur": 35, "userprefer": 35, "thirdpartyphaseout": 35, "thirdpartyblockedinfirstpartyset": 35, "syntaxerror": 35, "schemenotsupport": 35, "overwritesecur": 35, "invaliddomain": 35, "invalidprefix": 35, "unknownerror": 35, "schemefulsamesitestrict": 35, "schemefulsamesitelax": 35, "schemefulsamesiteunspecifiedtreatedaslax": 35, "samepartyfromcrosspartycontext": 35, "samepartyconflictswithotherattribut": 35, "namevaluepairexceedsmaxs": 35, "disallowedcharact": 35, "nocookiecont": 35, "notonpath": 35, "domainmismatch": 35, "3pcd": 35, "exempt": 35, "userset": 35, "tpcdmetadata": 35, "tpcddeprecationtri": 35, "tpcdheurist": 35, "enterprisepolici": 35, "corsoptin": 35, "sometim": [35, 54, 58, 59], "webpackag": 35, "yasskin": 35, "httpbi": 35, "impl": 35, "rfc": 35, "hex": [35, 36], "cert": 35, "sha256": 35, "cbor": 35, "signaturesig": 35, "signatureintegr": 35, "signaturecerturl": 35, "signaturecertsha256": 35, "signaturevalidityurl": 35, "signaturetimestamp": 35, "blockfrominsecuretomorepriv": 35, "warnfrominsecuretomorepriv": 35, "preflightblock": 35, "preflightwarn": 35, "sameorigin": [35, 37], "sameoriginallowpopup": 35, "restrictproperti": 35, "unsafenon": 35, "sameoriginpluscoep": 35, "restrictpropertiespluscoep": 35, "requirecorp": 35, "markedforremov": 35, "upload": [35, 55], "deliveri": 35, "made": [35, 43, 57], "later": [35, 43], "corb": 35, "setacceptedencod": 35, "raw_respons": 35, "isnavigationrequest": 35, "partitionkei": 35, "download_throughput": 35, "upload_throughput": 35, "connection_typ": 35, "packet_loss": 35, "packet_queue_length": 35, "packet_reord": 35, "internet": 35, "disconnect": [35, 49, 52], "throughput": 35, "webrtc": [35, 37], "packet": 35, "loss": 35, "percent": 35, "queue": 35, "packetreord": 35, "max_total_buffer_s": 35, "max_resource_buffer_s": 35, "max_post_data_s": 35, "buffer": [35, 39, 51, 52], "preserv": 35, "longest": 35, "getcooki": 35, "der": 35, "subfram": 35, "multipart": 35, "mandatori": 35, "withcredenti": 35, "bypass": [35, 37, 43, 49], "toggl": [35, 37], "cache_dis": 35, "overwrit": [35, 56], "continueinterceptedrequest": 35, "datalength": 35, "net_error_list": 35, "likewis": 35, "auth": 35, "redirectrespons": 35, "webtransport": [35, 37], "dispos": [35, 49], "latter": 35, "wire": 35, "proper": [35, 57], "space": [35, 36], "establish": 35, "correct": [35, 57], "200": [35, 51, 55, 58, 59], "304": 35, "serializ": [35, 43, 56, 57], "103": 35, "earli": 35, "common": 35, "succeed": [35, 51], "alreadyexist": 35, "signifi": 35, "und": 35, "preemptiv": 35, "wbn": 35, "bundl": [35, 42, 47], "webpag": [35, 37, 57], "webbundl": 35, "And": 35, "enablereportingapi": 35, "atop": 36, "outlin": [36, 37], "grid": 36, "cell": 36, "ruler": 36, "shown": [36, 37, 45, 58, 59], "neg": 36, "rowlinecolor": 36, "columnlinecolor": 36, "row": 36, "rowlinedash": 36, "columnlinedash": 36, "gap": 36, "hatch": 36, "flex": 36, "justifi": 36, "align": 36, "arrow": [36, 55], "grew": 36, "shrank": 36, "solid": 36, "tooltip": 36, "a11i": 36, "ratio": [36, 37], "snapport": 36, "snap": 36, "dual": 36, "hing": 36, "bar": [36, 37], "app": [36, 37, 42], "cover": [36, 41], "searchfornod": 36, "searchforuashadowdom": 36, "captureareascreenshot": 36, "showdist": 36, "include_dist": 36, "include_styl": 36, "viewer": 36, "content_outline_color": 36, "reliabl": [36, 43], "highlightnod": 36, "highlight_config": 36, "respect": [36, 43, 47], "source_order_config": 36, "enter": [36, 37], "hover": [36, 55], "container_query_highlight_config": 36, "flex_node_highlight_config": 36, "fp": [36, 48], "counter": [36, 41, 53], "grid_node_highlight_config": 36, "hinge_config": 36, "hidehing": 36, "isolated_element_highlight_config": 36, "bottleneck": 36, "scroll_snap_highlight_config": 36, "vital": 36, "window_controls_overlay_config": 36, "setinspectmod": 36, "ask": [36, 58, 59], "parentisad": 37, "createdbyadscript": 37, "matchedblockingrul": 37, "securelocalhost": 37, "insecureschem": 37, "insecureancestor": 37, "notisol": 37, "notisolatedfeaturedis": 37, "sharedarraybuff": 37, "sharedarraybufferstransferallow": 37, "performancemeasurememori": 37, "performanceprofil": 37, "permissions_polici": 37, "permissions_policy_featur": 37, "brows": [37, 47, 55, 57], "topic": 37, "dpr": 37, "downlink": 37, "ect": 37, "reduc": 37, "motion": 37, "rtt": 37, "arch": 37, "socket": 37, "interest": [37, 47], "cohort": 37, "otp": 37, "publickei": 37, "wake": 37, "lock": 37, "unrestrict": 37, "xr": 37, "spatial": 37, "iframeattribut": 37, "infencedframetre": 37, "inisolatedapp": 37, "trial": 37, "notsupport": [37, 40], "wrongorigin": 37, "invalidsignatur": 37, "wrongvers": 37, "featuredis": 37, "tokendis": 37, "featuredisabledforus": 37, "unknowntri": 37, "validtokennotprovid": 37, "osnotsupport": 37, "trialnotallow": 37, "parsedtoken": 37, "parsabl": 37, "take": [37, 43, 45, 47, 57], "suffix": 37, "googl": 37, "co": 37, "uk": 37, "gate": 37, "histori": [37, 57], "screencast": 37, "swap": 37, "pare": 37, "recover": 37, "ideal": 37, "sansserif": 37, "formsubmissionget": 37, "formsubmissionpost": 37, "httpheaderrefresh": 37, "scriptiniti": 37, "metatagrefresh": 37, "pageblockinterstiti": 37, "anchorclick": 37, "currenttab": 37, "newtab": 37, "newwindow": 37, "64": [37, 53], "suitabl": [37, 57], "noreferr": 37, "noreferrerwhendowngrad": 37, "originwhencrossorigin": 37, "strictorigin": 37, "strictoriginwhencrossorigin": 37, "unsafeurl": 37, "compil": [37, 43], "producecompilationcach": 37, "won": [37, 56, 57, 58], "comparison": 37, "mimic": 37, "understand": 37, "emb": 37, "sharetargetparam": 37, "experi": [37, 53, 57], "todo": [37, 40, 42, 58], "1231886": 37, "incub": 37, "gh": 37, "autoaccept": 37, "autoreject": 37, "autooptout": 37, "backforwardcacherestor": 37, "notprimarymainfram": 37, "backforwardcachedis": 37, "relatedactivecontentsexist": 37, "httpstatusnotok": 37, "schemenothttporhttp": 37, "wasgrantedmediaaccess": 37, "disableforrenderframehostcal": 37, "domainnotallow": 37, "httpmethodnotget": 37, "subframeisnavig": 37, "cachelimit": 37, "javascriptexecut": 37, "rendererprocesskil": [37, 40], "rendererprocesscrash": [37, 40], "schedulertrackedfeatureus": 37, "conflictingbrowsinginst": 37, "cacheflush": 37, "serviceworkerversionactiv": 37, "sessionrestor": 37, "serviceworkerpostmessag": 37, "enteredbackforwardcachebeforeserviceworkerhostad": 37, "renderframehostreused_samesit": 37, "renderframehostreused_crosssit": 37, "serviceworkerclaim": 37, "ignoreeventandevict": 37, "haveinnercont": 37, "timeoutputtingincach": 37, "backforwardcachedisabledbylowmemori": 37, "backforwardcachedisabledbycommandlin": 37, "networkrequestdatapipedrainedasbytesconsum": 37, "networkrequestredirect": 37, "networkrequesttimeout": 37, "networkexceedsbufferlimit": 37, "navigationcancelledwhilerestor": 37, "notmostrecentnavigationentri": 37, "backforwardcachedisabledforprerend": 37, "useragentoverridediff": 37, "foregroundcachelimit": 37, "browsinginstancenotswap": 37, "backforwardcachedisabledfordeleg": 37, "unloadhandlerexistsinmainfram": 37, "unloadhandlerexistsinsubfram": 37, "serviceworkerunregistr": 37, "cachecontrolnostor": 37, "cachecontrolnostorecookiemodifi": 37, "cachecontrolnostorehttponlycookiemodifi": 37, "noresponsehead": 37, "activationnavigationsdisallowedforbug1234857": 37, "errordocu": 37, "fencedframesembedd": 37, "cookiedis": 37, "httpauthrequir": 37, "cookieflush": 37, "broadcastchannelonmessag": 37, "webviewsettingschang": 37, "webviewjavascriptobjectchang": 37, "webviewmessagelistenerinject": 37, "webviewsafebrowsingallowlistchang": 37, "webviewdocumentstartjavascriptchang": 37, "mainresourcehascachecontrolnostor": 37, "mainresourcehascachecontrolnocach": 37, "subresourcehascachecontrolnostor": 37, "subresourcehascachecontrolnocach": 37, "containsplugin": 37, "documentload": 37, "outstandingnetworkrequestoth": 37, "requestedmidipermiss": 37, "requestedaudiocapturepermiss": 37, "requestedvideocapturepermiss": 37, "requestedbackforwardcacheblockedsensor": 37, "requestedbackgroundworkpermiss": 37, "broadcastchannel": 37, "webxr": 37, "weblock": 37, "webhid": 37, "webshar": 37, "requestedstorageaccessgr": 37, "webnfc": 37, "outstandingnetworkrequestfetch": 37, "outstandingnetworkrequestxhr": 37, "appbann": 37, "webdatabas": 37, "pictureinpictur": 37, "speechrecogn": 37, "idlemanag": 37, "paymentmanag": 37, "speechsynthesi": 37, "keyboardlock": 37, "webotpservic": 37, "outstandingnetworkrequestdirectsocket": 37, "injectedjavascript": 37, "injectedstylesheet": 37, "keepaliverequest": 37, "indexeddbev": 37, "jsnetworkrequestreceivedcachecontrolnostoreresourc": 37, "webrtcsticki": 37, "webtransportsticki": 37, "websocketsticki": 37, "smartcard": 37, "livemediastreamtrack": 37, "unloadhandl": 37, "parserabort": 37, "contentsecurityhandl": 37, "contentwebauthenticationapi": 37, "contentfilechoos": 37, "contentseri": 37, "contentfilesystemaccess": 37, "contentmediadevicesdispatcherhost": 37, "contentwebbluetooth": 37, "contentwebusb": 37, "contentmediasessionservic": 37, "contentscreenread": 37, "embedderpopupblockertabhelp": 37, "embeddersafebrowsingtriggeredpopupblock": 37, "embeddersafebrowsingthreatdetail": 37, "embedderappbannermanag": 37, "embedderdomdistillerviewersourc": 37, "embedderdomdistillerselfdeletingrequestdeleg": 37, "embedderoominterventiontabhelp": 37, "embedderofflinepag": 37, "embedderchromepasswordmanagerclientbindcredentialmanag": 37, "embedderpermissionrequestmanag": 37, "embeddermodaldialog": 37, "embedderextens": 37, "embedderextensionmessag": 37, "embedderextensionmessagingforopenport": 37, "embedderextensionsentmessagetocachedfram": 37, "requestedbywebviewcli": 37, "supportpend": 37, "pagesupportneed": 37, "blockag": 37, "anonym": [37, 43], "seed": 37, "addscripttoevaluateonnewdocu": [37, 43], "world_nam": 37, "run_immedi": 37, "world": [37, 43], "bring": 37, "from_surfac": 37, "capture_beyond_viewport": 37, "beyond": [37, 41], "mhtml": 37, "tri": [37, 43], "hook": [37, 49], "minidump": 37, "grant_univeral_access": 37, "univers": 37, "power": [37, 57], "caution": 37, "cookie_nam": 37, "cook": 37, "webappenablemanifestid": 37, "appid": 37, "recommendedid": 37, "manifest_id": [37, 42], "manifestid": [37, 42], "csslayoutviewport": 37, "cssvisualviewport": 37, "contents": 37, "scrollabl": 37, "dp": 37, "csscontents": 37, "fact": 37, "currentindex": 37, "prompt_text": 37, "onbeforeunload": 37, "intend": [37, 43], "errortext": 37, "entry_id": 37, "landscap": 37, "display_header_foot": 37, "print_background": 37, "paper_width": 37, "paper_height": 37, "margin_top": 37, "margin_bottom": 37, "margin_left": 37, "margin_right": 37, "page_rang": 37, "header_templ": 37, "footer_templ": 37, "prefer_css_page_s": 37, "transfer_mod": [37, 51], "generate_tagged_pdf": 37, "generate_document_outlin": 37, "pdf": 37, "paper": 37, "footer": 37, "graphic": [37, 48], "inch": 37, "5": [37, 55], "11": [37, 58, 59], "1cm": 37, "13": 37, "quietli": 37, "cap": 37, "greater": 37, "pagenumb": 37, "totalpag": 37, "span": [37, 57], "headertempl": 37, "fit": [37, 43], "choic": [37, 58, 59], "returnasstream": [37, 51], "append": 37, "ignore_cach": [37, 57], "script_to_evaluate_on_load": [37, 57], "refresh": 37, "dataurl": 37, "accident": [37, 43], "unintend": 37, "removescripttoevaluateonnewdocu": 37, "acknowledg": 37, "for_script": 37, "chooser": 37, "lifecycl": 37, "is_allow": 37, "short": [37, 45, 55, 58, 59], "1440085": 37, "doc": 37, "d": [37, 56, 57], "12hvmfxyj5jc": 37, "ejr5omwsa2bqtjsbgglki6ziyx0_wpa": 37, "puppet": 37, "whatwg": 37, "multipag": 37, "rph": 37, "transact": 37, "sctn": [37, 53], "spc": 37, "max_width": 37, "max_height": 37, "every_nth_fram": 37, "n": [37, 55], "th": 37, "runifwaitingfordebugg": [37, 49], "interceptfilechoos": 37, "interstiti": 37, "iff": [37, 40, 43, 51], "act": [37, 57], "engag": 37, "stall": 37, "handlejavascriptdialog": 37, "bfcach": 37, "backforwardcach": 37, "startscreencast": 37, "setgeneratecompilationcach": 37, "time_domain": 38, "performanceobserv": 39, "largest_contentful_paint": 39, "trim": 39, "instabl": 39, "layout_shift": 39, "score": 39, "performanceentri": 39, "entrytyp": 39, "lifetim": [39, 52], "reportperformancetimelin": 39, "speculationruleset": 40, "textcont": 40, "nav": 40, "specul": 40, "1425354": 40, "sourceisnotjsonobject": 40, "invalidrulesskip": 40, "although": [40, 57], "prefetchwithsubresourc": 40, "href": [40, 57], "finalstatu": 40, "prerender2": 40, "lowenddevic": 40, "invalidschemeredirect": 40, "invalidschemenavig": 40, "navigationrequestblockedbycsp": 40, "mainframenavig": 40, "mojobinderpolici": 40, "triggerdestroi": 40, "navigationnotcommit": 40, "navigationbadhttpstatu": 40, "clientcertrequest": 40, "navigationrequestnetworkerror": 40, "cancelallhostsfortest": 40, "didfailload": 40, "sslcertificateerror": 40, "loginauthrequest": 40, "uachangerequiresreload": 40, "audiooutputdevicerequest": 40, "mixedcont": 40, "triggerbackground": 40, "memorylimitexceed": 40, "datasaveren": 40, "triggerurlhaseffectiveurl": 40, "activatedbeforestart": 40, "inactivepagerestrict": 40, "startfail": 40, "timeoutbackground": 40, "crosssiteredirectininitialnavig": 40, "crosssitenavigationininitialnavig": 40, "samesitecrossoriginredirectnotoptinininitialnavig": 40, "samesitecrossoriginnavigationnotoptinininitialnavig": 40, "activationnavigationparametermismatch": 40, "activatedinbackground": 40, "embedderhostdisallow": 40, "activationnavigationdestroyedbeforesuccess": 40, "tabclosedbyusergestur": 40, "tabclosedwithoutusergestur": 40, "primarymainframerendererprocesscrash": 40, "primarymainframerendererprocesskil": 40, "activationframepolicynotcompat": 40, "preloadingdis": 40, "batterysaveren": 40, "activatedduringmainframenavig": 40, "preloadingunsupportedbywebcont": 40, "crosssiteredirectinmainframenavig": 40, "crosssitenavigationinmainframenavig": 40, "samesitecrossoriginredirectnotoptininmainframenavig": 40, "samesitecrossoriginnavigationnotoptininmainframenavig": 40, "memorypressureontrigg": 40, "memorypressureaftertrigg": 40, "prerenderingdisabledbydevtool": 40, "speculationruleremov": 40, "activatedwithauxiliarybrowsingcontext": 40, "maxnumofrunningeagerprerendersexceed": 40, "maxnumofrunningnoneagerprerendersexceed": 40, "maxnumofrunningembedderprerendersexceed": 40, "prerenderingurlhaseffectiveurl": 40, "redirectedprerenderingurlhaseffectiveurl": 40, "activationurlhaseffectiveurl": 40, "javascriptinterfacead": 40, "javascriptinterfaceremov": 40, "allprerenderingcancel": 40, "preloadingtriggeringoutcom": 40, "1384419": 40, "revisit": 40, "aren": 40, "prefetchallow": 40, "prefetchfailedineligibleredirect": 40, "prefetchfailedinvalidredirect": 40, "prefetchfailedmimenotsupport": 40, "prefetchfailedneterror": 40, "prefetchfailednon2xx": 40, "prefetchfailedperpagelimitexceed": 40, "prefetchevictedaftercandidateremov": 40, "prefetchevictedfornewerprefetch": 40, "prefetchheldback": 40, "prefetchineligibleretryaft": 40, "prefetchisprivacydecoi": 40, "prefetchisstal": 40, "prefetchnoteligiblebrowsercontextofftherecord": 40, "prefetchnoteligibledatasaveren": 40, "prefetchnoteligibleexistingproxi": 40, "prefetchnoteligiblehostisnonuniqu": 40, "prefetchnoteligiblenondefaultstoragepartit": 40, "prefetchnoteligiblesamesitecrossoriginprefetchrequiredproxi": 40, "prefetchnoteligibleschemeisnothttp": 40, "prefetchnoteligibleuserhascooki": 40, "prefetchnoteligibleuserhasservicework": 40, "prefetchnoteligiblebatterysaveren": 40, "prefetchnoteligiblepreloadingdis": 40, "prefetchnotfinishedintim": 40, "prefetchnotstart": 40, "prefetchnotusedcookieschang": 40, "prefetchproxynotavail": 40, "prefetchresponseus": 40, "prefetchsuccessfulbutnotus": 40, "prefetchnotusedprobefail": 40, "mismatch": 40, "upsert": 40, "give": 40, "mojo": 40, "incompat": 40, "deoptim": 41, "microsecond": 41, "adjac": 41, "starttim": 41, "insid": 41, "granular": 41, "incomplet": 41, "garbag": [41, 51], "call_count": 41, "allow_triggered_upd": 41, "precis": 41, "unnecessari": 41, "profileend": 41, "takeprecisecoverag": 41, "trig": 41, "replica": 42, "crsrc": 42, "web_appl": 42, "web_app_os_integration_st": 42, "drc": 42, "9910d3be894c8f142c977ba1023f30a656bc13fc": 42, "l": 42, "67": 42, "iana": 42, "assign": [42, 49, 56, 58, 59], "xhtml": 42, "link_captur": 42, "display_mod": 42, "unrecogn": 42, "desktoppwaslinkcapturingwithscopeextens": 42, "webappenablescopeextens": 42, "linkcaptur": 42, "339453269": 42, "chromeo": 42, "yet": [42, 49], "o": [42, 48, 51, 56], "webapp": 42, "commonli": 42, "dev": 42, "learn": 42, "badgecount": 42, "install_url_or_bundle_url": 42, "install_url": 42, "iwa": 42, "337872319": 42, "meet": 42, "swbn": 42, "regardless": [42, 47], "allowlist": 42, "attachtotarget": [42, 49], "339454034": 42, "maintain": [43, 47], "generatepreview": 43, "returnbyvalu": 43, "maxnodedepth": 43, "includeshadowtre": 43, "met": 43, "primit": 43, "stringifi": [43, 55], "nan": 43, "infin": 43, "bigint": 43, "liter": 43, "sure": [43, 54, 55], "constructor": 43, "abbrevi": 43, "formatt": 43, "ml": 43, "hasbodi": 43, "bodygetterid": 43, "did": [43, 45], "accessor": 43, "getter": 43, "setter": 43, "convent": 43, "unserializ": 43, "dictionari": [43, 48, 56], "assert": [43, 53], "preced": 43, "debuggerid": 43, "execution_context_nam": 43, "executioncontextnam": 43, "unclear": 43, "bug": [43, 48], "1169639": 43, "executioncontext": 43, "worldnam": 43, "promise_object_id": 43, "strace": 43, "function_declar": 43, "unique_context_id": 43, "serialization_opt": 43, "overriden": 43, "await": [43, 54, 55, 58, 59], "objectgroup": 43, "contextid": 43, "persist_script": 43, "disable_break": 43, "repl_mod": 43, "allow_unsafe_eval_blocked_by_csp": 43, "uniquecontextid": 43, "offer": 43, "disablebreak": 43, "replmod": 43, "themselv": 43, "eval": 43, "settimeout": 43, "setinterv": 43, "callabl": [43, 57], "error_object_id": 43, "portion": 43, "useds": 43, "totals": 43, "own_properti": 43, "accessor_properties_onli": 43, "non_indexed_properties_onli": 43, "internalproperti": 43, "privateproperti": 43, "const": 43, "prototype_object_id": 43, "unsubscrib": 43, "getstacktrac": 43, "parentid": 43, "logger": 43, "unnam": 43, "unhandl": 43, "revok": 43, "weak": 45, "sha1": 45, "modern": 45, "obsolet": 45, "highest": 45, "badreput": 45, "safeti": 45, "tip": 45, "reput": 45, "answer": 45, "handlecertificateerror": 45, "cryptograph": 45, "last_chanc": 46, "force_update_on_page_load": 46, "protect": 47, "audienc": 47, "additionalbid": 47, "additionalbidwin": 47, "toplevelbid": 47, "topleveladditionalbid": 47, "configresolv": 47, "bidderj": 47, "bidderwasm": 47, "sellerj": 47, "biddertrustedsign": 47, "sellertrustedsign": 47, "documentaddmodul": 47, "documentselecturl": 47, "documentrun": 47, "documentset": 47, "documentappend": 47, "documentdelet": 47, "documentclear": 47, "documentget": 47, "workletset": 47, "workletappend": 47, "workletdelet": 47, "workletclear": 47, "workletget": 47, "workletkei": 47, "workletentri": 47, "workletlength": 47, "workletremainingbudget": 47, "headerset": 47, "headerappend": 47, "headerdelet": 47, "headerclear": 47, "entropi": 47, "selecturl": 47, "absenc": 47, "vari": 47, "uint32": 47, "internalerror": 47, "insufficientsourcecapac": 47, "insufficientuniquedestinationcapac": 47, "excessivereportingorigin": 47, "prohibitedbybrowserpolici": 47, "successnois": 47, "destinationreportinglimitreach": 47, "destinationgloballimitreach": 47, "destinationbothlimitsreach": 47, "reportingoriginspersitelimitreach": 47, "exceedsmaxchannelcapac": 47, "exceedsmaxtriggerstatecardin": 47, "destinationperdayreportinglimitreach": 47, "successdroppedlowerprior": 47, "nocapacityforattributiondestin": 47, "nomatchingsourc": 47, "excessiveattribut": 47, "prioritytoolow": 47, "neverattributedsourc": 47, "nomatchingsourcefilterdata": 47, "nomatchingconfigur": 47, "excessivereport": 47, "falselyattributedsourc": 47, "reportwindowpass": 47, "notregist": 47, "reportwindownotstart": 47, "nomatchingtriggerdata": 47, "nohistogram": 47, "insufficientbudget": 47, "websit": 47, "cctld": 47, "issuerorigin": 47, "intact": 47, "turtledov": 47, "dictdef": 47, "generatebidinterestgroup": 47, "expirationtim": 47, "lifetimem": 47, "joiningorigin": 47, "overrideact": 47, "usagebreakdown": 47, "quota_s": 47, "quotas": 47, "ownerorigin": 47, "withdraw": 47, "nois": 47, "ignoreifpres": 47, "notifi": [47, 49, 52], "somethingbid": 47, "interestgroupauctionev": 47, "worklet": 47, "signal": [47, 51], "care": [47, 57], "wrap": [47, 51], "processor": 48, "pci": 48, "vendor": 48, "driver": [48, 58, 59], "sy": 48, "decod": 48, "vp9": 48, "framer": 48, "h264": 48, "fraction": [48, 51], "denomin": 48, "24": 48, "24000": 48, "1001": 48, "yuv": 48, "workaround": 48, "cumul": 48, "feature_st": 48, "modelnam": 48, "On": 48, "macbookpro": 48, "modelvers": 48, "10": [48, 57, 58, 59], "discoveri": 49, "devtools_agent_host_impl": 49, "cc": 49, "ss": 49, "q": 49, "f": [49, 56], "22": 49, "ktypetab": 49, "5b": 49, "5d": 49, "plan": 49, "eventu": 49, "retir": 49, "991325": 49, "wait_for_debugger_on_start": 49, "filter_": 49, "monitor": 49, "setautoattach": 49, "dispose_on_detach": 49, "proxy_serv": 49, "proxy_bypass_list": 49, "origins_with_universal_network_access": 49, "incognito": 49, "unlimit": 49, "constitut": 49, "enable_begin_frame_control": 49, "for_tab": 49, "maco": 49, "foreground": 49, "binding_nam": 49, "channel": [49, 52], "bindingnam": 49, "onmessag": 49, "handlemessag": 49, "callback": [49, 52, 57], "createbrowsercontext": 49, "auto_attach": 49, "autoattachrel": 49, "watch": 49, "discov": 49, "setdiscovertarget": 49, "detachfromtarget": 49, "got": 50, "dump": [51, 56, 57], "infra": 51, "kilobyt": 51, "mb": 51, "memory_dump_request_arg": 51, "memory_instrument": 51, "perfetto": 51, "perfettoconfig": 51, "sync_id": 51, "determinist": 51, "level_of_detail": 51, "dumpguid": 51, "buffer_usage_reporting_interv": 51, "stream_format": 51, "trace_config": 51, "perfetto_config": 51, "tracing_backend": 51, "reportev": 51, "protobuf": 51, "approxim": 51, "flush": 51, "lost": 51, "ring": 51, "graph": 52, "audiocontext": 52, "audiocontextst": 52, "clamp": 52, "max": [52, 57], "spent": 52, "divid": 52, "quantum": 52, "multipli": 52, "capac": 52, "glitch": 52, "varianc": 52, "outgo": 52, "largeblob": 53, "credblob": 53, "fidoalli": 53, "fido": 53, "v2": 53, "rd": 53, "20201208": 53, "minpinlength": 53, "p": [53, 58, 59], "20210615": 53, "prf": 53, "succe": 53, "backup": 53, "elig": 53, "BE": 53, "ecdsa": 53, "pkc": 53, "defaultbackupelig": 53, "defaultbackupst": 53, "enable_ui": 53, "demo": 53, "closer": 53, "is_bogus_signatur": 53, "is_bad_uv": 53, "is_bad_up": 53, "isbogussignatur": 53, "isbaduv": 53, "isbadup": 53, "uv": 53, "filepath": 54, "dat": 54, "export": 54, "requests_style_cooki": 54, "get_al": 54, "requests_cookie_format": 54, "kwarg": [54, 56, 57], "usual": [54, 55], "nodriv": [54, 56, 57, 58], "besid": 54, "your": [54, 57], "under": [54, 57], "know": 54, "__init__": 54, "stubborn": 54, "correctli": 54, "kill": 54, "classmethod": 54, "browser_executable_path": [54, 56, 58], "cookiejar": 54, "especi": [54, 57], "union": [54, 55, 56, 57], "alia": [54, 57], "welcom": [54, 57], "safest": [54, 57], "max_column": 54, "word": 55, "_node": [55, 57], "opbject": 55, "seper": [55, 58], "quit": [55, 57], "expens": [55, 57], "advis": 55, "bunch": [55, 57], "js_function": 55, "eg": [55, 57], "elem": [55, 58, 59], "blabla": 55, "consolelog": 55, "myfunct": 55, "ab": 55, "_until_ev": 55, "atm": 55, "mouseov": 55, "cours": 55, "100px": 55, "200px": 55, "look": 55, "slower": [55, 57], "smooth": 55, "stuck": [55, 57], "py": 55, "meth": 55, "keystrok": 55, "rn": 55, "spacebar": 55, "wonder": 55, "file_path": 55, "needl": 55, "sai": [55, 58, 59], "fileinputel": 55, "temp": 55, "myuser": 55, "lol": 55, "gif": 55, "often": 55, "concaten": 55, "runtimeerror": 55, "rais": [55, 56, 57], "pathlik": [55, 57], "half": [55, 57], "dot": [55, 56], "coord": 55, "folder": [55, 56, 57, 58, 59], "desir": [55, 57], "html5": 55, "videoel": 55, "extension_path": 56, "crx": 56, "built": 56, "_contradict": 56, "AND": 56, "notat": 56, "obj": 56, "snake_cas": 56, "hyphen": 56, "underscor": 56, "_": 56, "recurs": 56, "shallow": 56, "els": 56, "v": 56, "keyerror": 56, "lifo": 56, "lack": 56, "factori": 56, "mechan": 57, "much": 57, "someth": [57, 60], "ll": [57, 58], "yoururlher": 57, "build": 57, "combo": 57, "consum": 57, "luckili": 57, "whole": 57, "pick": 57, "help": 57, "probabl": 57, "thousand": 57, "stuff": 57, "hood": 57, "breath": 57, "oftentim": 57, "faster": 57, "easili": 57, "craft": 57, "THE": 57, "realli": 57, "namespac": 57, "event_type_or_domain": 57, "traffic": 57, "coroutin": 57, "lamba": 57, "lambda": [57, 58, 59], "crazi": 57, "moduletyp": 57, "kw": 57, "return_enclosing_el": 57, "tremend": 57, "tag_hint": 57, "narrow": 57, "div": 57, "img": 57, "obj_nam": 57, "complex": 57, "thruth": 57, "returnvalu": 57, "pageyoffset": 57, "screenx": 57, "screeni": 57, "outerwidth": 57, "1050": 57, "outerheight": 57, "832": 57, "devicepixelratio": 57, "screenleft": 57, "screentop": 57, "stylemedia": 57, "onsearch": 57, "issecurecontext": 57, "timeorigin": 57, "1707823094767": 57, "9": 57, "connectstart": 57, "navigationstart": 57, "1707823094768": 57, "handi": 57, "w3school": 57, "cssref": 57, "css_selector": 57, "php": 57, "haven": 57, "full_pag": 57, "25": 57, "mayb": 57, "quarter": 57, "1000": 57, "10x": 57, "include_fram": 57, "cdp_obj": 57, "_is_upd": 57, "infinit": 57, "loop": [57, 58, 59], "register": 57, "1280": 57, "1024": 57, "720": 57, "min": 57, "mini": 57, "mi": 57, "ma": 57, "maxi": 57, "fu": 57, "nor": 57, "timespan": 57, "matter": 57, "timeouterror": 57, "asyncio": [57, 58, 59], "websocketclientprotocol": 57, "goe": [58, 59], "pip": [58, 59], "Or": 58, "aim": [58, 59], "project": [58, 59], "somewher": [58, 59], "ago": [58, 59], "quickli": [58, 59], "editor": [58, 59], "few": [58, 59], "uc": [58, 59], "def": [58, 59], "nowsecur": [58, 59], "nl": [58, 59], "__name__": [58, 59], "__main__": [58, 59], "me": [58, 59], "run_until_complet": [58, 59], "150": [58, 59], "page2": [58, 59], "twitter": [58, 59], "page3": [58, 59], "ultrafunkamsterdam": [58, 59], "boilerpl": 58, "iso": 58, "somewebsit": 58, "basicconfig": [58, 59], "30": [58, 59], "februari": [58, 59], "march": [58, 59], "april": [58, 59], "june": [58, 59], "juli": [58, 59], "august": [58, 59], "septemb": [58, 59], "octob": [58, 59], "novemb": [58, 59], "decemb": [58, 59], "create_account": [58, 59], "phone": [58, 59], "small": [58, 59], "use_mail_instead": [58, 59], "randstr": [58, 59], "ascii_lett": [58, 59], "dai": [58, 59], "sel_month": [58, 59], "sel_dai": [58, 59], "sel_year": [58, 59], "randint": [58, 59], "bother": [58, 59], "leap": [58, 59], "28": [58, 59], "ag": [58, 59], "restrict": [58, 59], "1980": [58, 59], "2005": [58, 59], "nag": [58, 59], "cookie_bar_accept": [58, 59], "next_btn": [58, 59], "btn": [58, 59], "revers": [58, 59], "sign_up_btn": [58, 59], "mail": [58, 59], "quick": 59, "02": 55, "08": 55, "2024": 55, "programatt": 55, "get_local_storag": [0, 57], "set_local_storag": [0, 57], "deseri": 57}, "objects": {"nodriver": [[54, 0, 1, "", "Browser"], [56, 0, 1, "", "Config"], [55, 0, 1, "", "Element"], [57, 0, 1, "", "Tab"]], "nodriver.Browser": [[54, 1, 1, "", "config"], [54, 1, 1, "", "connection"], [54, 2, 1, "", "cookies"], [54, 3, 1, "", "create"], [54, 3, 1, "", "get"], [54, 3, 1, "", "grant_all_permissions"], [54, 2, 1, "", "main_tab"], [54, 3, 1, "", "sleep"], [54, 3, 1, "", "start"], [54, 3, 1, "", "stop"], [54, 2, 1, "", "stopped"], [54, 2, 1, "", "tabs"], [54, 1, 1, "", "targets"], [54, 3, 1, "", "tile_windows"], [54, 3, 1, "", "update_targets"], [54, 3, 1, "", "wait"], [54, 2, 1, "", "websocket_url"]], "nodriver.Config": [[56, 3, 1, "", "add_argument"], [56, 3, 1, "", "add_extension"], [56, 2, 1, "", "browser_args"], [56, 2, 1, "", "user_data_dir"], [56, 2, 1, "", "uses_custom_data_dir"]], "nodriver.Element": [[55, 3, 1, "", "apply"], [55, 2, 1, "", "assigned_slot"], [55, 2, 1, "", "attributes"], [55, 2, 1, "", "attrs"], [55, 2, 1, "", "backend_node_id"], [55, 2, 1, "", "base_url"], [55, 2, 1, "", "child_node_count"], [55, 2, 1, "", "children"], [55, 3, 1, "", "clear_input"], [55, 3, 1, "", "click"], [55, 2, 1, "", "compatibility_mode"], [55, 2, 1, "", "content_document"], [55, 2, 1, "", "distributed_nodes"], [55, 2, 1, "", "document_url"], [55, 3, 1, "", "flash"], [55, 3, 1, "", "focus"], [55, 2, 1, "", "frame_id"], [55, 3, 1, "", "get_html"], [55, 3, 1, "", "get_js_attributes"], [55, 3, 1, "", "get_position"], [55, 3, 1, "", "highlight_overlay"], [55, 2, 1, "", "imported_document"], [55, 2, 1, "", "internal_subset"], [55, 3, 1, "", "is_recording"], [55, 2, 1, "", "is_svg"], [55, 2, 1, "", "local_name"], [55, 3, 1, "", "mouse_click"], [55, 3, 1, "", "mouse_drag"], [55, 3, 1, "", "mouse_move"], [55, 2, 1, "", "node"], [55, 2, 1, "", "node_id"], [55, 2, 1, "", "node_name"], [55, 2, 1, "", "node_type"], [55, 2, 1, "", "node_value"], [55, 2, 1, "", "object_id"], [55, 2, 1, "", "parent"], [55, 2, 1, "", "parent_id"], [55, 2, 1, "", "pseudo_elements"], [55, 2, 1, "", "pseudo_identifier"], [55, 2, 1, "", "pseudo_type"], [55, 2, 1, "", "public_id"], [55, 3, 1, "", "query_selector"], [55, 3, 1, "", "query_selector_all"], [55, 3, 1, "", "record_video"], [55, 2, 1, "", "remote_object"], [55, 3, 1, "", "remove_from_dom"], [55, 3, 1, "", "save_screenshot"], [55, 3, 1, "", "save_to_dom"], [55, 3, 1, "", "scroll_into_view"], [55, 3, 1, "", "select_option"], [55, 3, 1, "", "send_file"], [55, 3, 1, "", "send_keys"], [55, 3, 1, "", "set_text"], [55, 3, 1, "", "set_value"], [55, 2, 1, "", "shadow_root_type"], [55, 2, 1, "", "shadow_roots"], [55, 2, 1, "", "system_id"], [55, 2, 1, "", "tab"], [55, 2, 1, "", "tag"], [55, 2, 1, "", "tag_name"], [55, 2, 1, "", "template_content"], [55, 2, 1, "", "text"], [55, 2, 1, "", "text_all"], [55, 2, 1, "", "tree"], [55, 3, 1, "", "update"], [55, 2, 1, "", "value"], [55, 2, 1, "", "xml_version"]], "nodriver.Tab": [[57, 3, 1, "", "aclose"], [57, 3, 1, "", "activate"], [57, 3, 1, "", "add_handler"], [57, 3, 1, "", "aopen"], [57, 1, 1, "", "attached"], [57, 3, 1, "", "back"], [57, 3, 1, "", "bring_to_front"], [57, 1, 1, "", "browser"], [57, 3, 1, "", "close"], [57, 2, 1, "", "closed"], [57, 3, 1, "", "download_file"], [57, 3, 1, "", "evaluate"], [57, 3, 1, "", "find"], [57, 3, 1, "", "find_all"], [57, 3, 1, "", "find_element_by_text"], [57, 3, 1, "", "find_elements_by_text"], [57, 3, 1, "", "forward"], [57, 3, 1, "", "fullscreen"], [57, 3, 1, "", "get"], [57, 3, 1, "", "get_all_linked_sources"], [57, 3, 1, "", "get_all_urls"], [57, 3, 1, "", "get_content"], [57, 3, 1, "", "get_local_storage"], [57, 3, 1, "", "get_window"], [57, 3, 1, "", "inspector_open"], [57, 2, 1, "", "inspector_url"], [57, 3, 1, "", "js_dumps"], [57, 3, 1, "", "maximize"], [57, 3, 1, "", "medimize"], [57, 3, 1, "", "minimize"], [57, 3, 1, "", "open_external_inspector"], [57, 3, 1, "", "query_selector"], [57, 3, 1, "", "query_selector_all"], [57, 3, 1, "", "reload"], [57, 3, 1, "", "save_screenshot"], [57, 3, 1, "", "scroll_down"], [57, 3, 1, "", "scroll_up"], [57, 3, 1, "", "select"], [57, 3, 1, "", "select_all"], [57, 3, 1, "", "send"], [57, 3, 1, "", "set_download_path"], [57, 3, 1, "", "set_local_storage"], [57, 3, 1, "", "set_window_size"], [57, 3, 1, "", "set_window_state"], [57, 3, 1, "", "sleep"], [57, 2, 1, "", "target"], [57, 3, 1, "", "update_target"], [57, 3, 1, "", "verify_cf"], [57, 3, 1, "", "wait"], [57, 3, 1, "", "wait_for"], [57, 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, "-", "browser"], [8, 4, 0, "-", "cache_storage"], [9, 4, 0, "-", "cast"], [10, 4, 0, "-", "console"], [11, 4, 0, "-", "css"], [12, 4, 0, "-", "database"], [13, 4, 0, "-", "debugger"], [14, 4, 0, "-", "device_access"], [15, 4, 0, "-", "device_orientation"], [16, 4, 0, "-", "dom"], [17, 4, 0, "-", "dom_debugger"], [18, 4, 0, "-", "dom_snapshot"], [19, 4, 0, "-", "dom_storage"], [20, 4, 0, "-", "emulation"], [21, 4, 0, "-", "event_breakpoints"], [22, 4, 0, "-", "extensions"], [23, 4, 0, "-", "fed_cm"], [24, 4, 0, "-", "fetch"], [25, 4, 0, "-", "headless_experimental"], [26, 4, 0, "-", "heap_profiler"], [27, 4, 0, "-", "indexed_db"], [28, 4, 0, "-", "input_"], [29, 4, 0, "-", "inspector"], [30, 4, 0, "-", "io"], [31, 4, 0, "-", "layer_tree"], [32, 4, 0, "-", "log"], [33, 4, 0, "-", "media"], [34, 4, 0, "-", "memory"], [35, 4, 0, "-", "network"], [36, 4, 0, "-", "overlay"], [37, 4, 0, "-", "page"], [38, 4, 0, "-", "performance"], [39, 4, 0, "-", "performance_timeline"], [40, 4, 0, "-", "preload"], [41, 4, 0, "-", "profiler"], [42, 4, 0, "-", "pwa"], [43, 4, 0, "-", "runtime"], [44, 4, 0, "-", "schema"], [45, 4, 0, "-", "security"], [46, 4, 0, "-", "service_worker"], [47, 4, 0, "-", "storage"], [48, 4, 0, "-", "system_info"], [49, 4, 0, "-", "target"], [50, 4, 0, "-", "tethering"], [51, 4, 0, "-", "tracing"], [52, 4, 0, "-", "web_audio"], [53, 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, "", "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_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_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_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_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_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_BUTTON_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, "", "CROSS_ORIGIN_PORTAL_POST_MESSAGE_ERROR"], [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.browser": [[7, 0, 1, "", "Bounds"], [7, 0, 1, "", "BrowserCommandId"], [7, 0, 1, "", "BrowserContextID"], [7, 0, 1, "", "Bucket"], [7, 0, 1, "", "DownloadProgress"], [7, 0, 1, "", "DownloadWillBegin"], [7, 0, 1, "", "Histogram"], [7, 0, 1, "", "PermissionDescriptor"], [7, 0, 1, "", "PermissionSetting"], [7, 0, 1, "", "PermissionType"], [7, 0, 1, "", "WindowID"], [7, 0, 1, "", "WindowState"], [7, 5, 1, "", "add_privacy_sandbox_enrollment_override"], [7, 5, 1, "", "cancel_download"], [7, 5, 1, "", "close"], [7, 5, 1, "", "crash"], [7, 5, 1, "", "crash_gpu_process"], [7, 5, 1, "", "execute_browser_command"], [7, 5, 1, "", "get_browser_command_line"], [7, 5, 1, "", "get_histogram"], [7, 5, 1, "", "get_histograms"], [7, 5, 1, "", "get_version"], [7, 5, 1, "", "get_window_bounds"], [7, 5, 1, "", "get_window_for_target"], [7, 5, 1, "", "grant_permissions"], [7, 5, 1, "", "reset_permissions"], [7, 5, 1, "", "set_dock_tile"], [7, 5, 1, "", "set_download_behavior"], [7, 5, 1, "", "set_permission"], [7, 5, 1, "", "set_window_bounds"]], "nodriver.cdp.browser.Bounds": [[7, 1, 1, "", "height"], [7, 1, 1, "", "left"], [7, 1, 1, "", "top"], [7, 1, 1, "", "width"], [7, 1, 1, "", "window_state"]], "nodriver.cdp.browser.BrowserCommandId": [[7, 1, 1, "", "CLOSE_TAB_SEARCH"], [7, 1, 1, "", "OPEN_TAB_SEARCH"]], "nodriver.cdp.browser.Bucket": [[7, 1, 1, "", "count"], [7, 1, 1, "", "high"], [7, 1, 1, "", "low"]], "nodriver.cdp.browser.DownloadProgress": [[7, 1, 1, "", "guid"], [7, 1, 1, "", "received_bytes"], [7, 1, 1, "", "state"], [7, 1, 1, "", "total_bytes"]], "nodriver.cdp.browser.DownloadWillBegin": [[7, 1, 1, "", "frame_id"], [7, 1, 1, "", "guid"], [7, 1, 1, "", "suggested_filename"], [7, 1, 1, "", "url"]], "nodriver.cdp.browser.Histogram": [[7, 1, 1, "", "buckets"], [7, 1, 1, "", "count"], [7, 1, 1, "", "name"], [7, 1, 1, "", "sum_"]], "nodriver.cdp.browser.PermissionDescriptor": [[7, 1, 1, "", "allow_without_gesture"], [7, 1, 1, "", "allow_without_sanitization"], [7, 1, 1, "", "name"], [7, 1, 1, "", "pan_tilt_zoom"], [7, 1, 1, "", "sysex"], [7, 1, 1, "", "user_visible_only"]], "nodriver.cdp.browser.PermissionSetting": [[7, 1, 1, "", "DENIED"], [7, 1, 1, "", "GRANTED"], [7, 1, 1, "", "PROMPT"]], "nodriver.cdp.browser.PermissionType": [[7, 1, 1, "", "ACCESSIBILITY_EVENTS"], [7, 1, 1, "", "AUDIO_CAPTURE"], [7, 1, 1, "", "BACKGROUND_FETCH"], [7, 1, 1, "", "BACKGROUND_SYNC"], [7, 1, 1, "", "CAPTURED_SURFACE_CONTROL"], [7, 1, 1, "", "CLIPBOARD_READ_WRITE"], [7, 1, 1, "", "CLIPBOARD_SANITIZED_WRITE"], [7, 1, 1, "", "DISPLAY_CAPTURE"], [7, 1, 1, "", "DURABLE_STORAGE"], [7, 1, 1, "", "FLASH"], [7, 1, 1, "", "GEOLOCATION"], [7, 1, 1, "", "IDLE_DETECTION"], [7, 1, 1, "", "LOCAL_FONTS"], [7, 1, 1, "", "MIDI"], [7, 1, 1, "", "MIDI_SYSEX"], [7, 1, 1, "", "NFC"], [7, 1, 1, "", "NOTIFICATIONS"], [7, 1, 1, "", "PAYMENT_HANDLER"], [7, 1, 1, "", "PERIODIC_BACKGROUND_SYNC"], [7, 1, 1, "", "PROTECTED_MEDIA_IDENTIFIER"], [7, 1, 1, "", "SENSORS"], [7, 1, 1, "", "SPEAKER_SELECTION"], [7, 1, 1, "", "STORAGE_ACCESS"], [7, 1, 1, "", "TOP_LEVEL_STORAGE_ACCESS"], [7, 1, 1, "", "VIDEO_CAPTURE"], [7, 1, 1, "", "VIDEO_CAPTURE_PAN_TILT_ZOOM"], [7, 1, 1, "", "WAKE_LOCK_SCREEN"], [7, 1, 1, "", "WAKE_LOCK_SYSTEM"], [7, 1, 1, "", "WINDOW_MANAGEMENT"]], "nodriver.cdp.browser.WindowState": [[7, 1, 1, "", "FULLSCREEN"], [7, 1, 1, "", "MAXIMIZED"], [7, 1, 1, "", "MINIMIZED"], [7, 1, 1, "", "NORMAL"]], "nodriver.cdp.cache_storage": [[8, 0, 1, "", "Cache"], [8, 0, 1, "", "CacheId"], [8, 0, 1, "", "CachedResponse"], [8, 0, 1, "", "CachedResponseType"], [8, 0, 1, "", "DataEntry"], [8, 0, 1, "", "Header"], [8, 5, 1, "", "delete_cache"], [8, 5, 1, "", "delete_entry"], [8, 5, 1, "", "request_cache_names"], [8, 5, 1, "", "request_cached_response"], [8, 5, 1, "", "request_entries"]], "nodriver.cdp.cache_storage.Cache": [[8, 1, 1, "", "cache_id"], [8, 1, 1, "", "cache_name"], [8, 1, 1, "", "security_origin"], [8, 1, 1, "", "storage_bucket"], [8, 1, 1, "", "storage_key"]], "nodriver.cdp.cache_storage.CachedResponse": [[8, 1, 1, "", "body"]], "nodriver.cdp.cache_storage.CachedResponseType": [[8, 1, 1, "", "BASIC"], [8, 1, 1, "", "CORS"], [8, 1, 1, "", "DEFAULT"], [8, 1, 1, "", "ERROR"], [8, 1, 1, "", "OPAQUE_REDIRECT"], [8, 1, 1, "", "OPAQUE_RESPONSE"]], "nodriver.cdp.cache_storage.DataEntry": [[8, 1, 1, "", "request_headers"], [8, 1, 1, "", "request_method"], [8, 1, 1, "", "request_url"], [8, 1, 1, "", "response_headers"], [8, 1, 1, "", "response_status"], [8, 1, 1, "", "response_status_text"], [8, 1, 1, "", "response_time"], [8, 1, 1, "", "response_type"]], "nodriver.cdp.cache_storage.Header": [[8, 1, 1, "", "name"], [8, 1, 1, "", "value"]], "nodriver.cdp.cast": [[9, 0, 1, "", "IssueUpdated"], [9, 0, 1, "", "Sink"], [9, 0, 1, "", "SinksUpdated"], [9, 5, 1, "", "disable"], [9, 5, 1, "", "enable"], [9, 5, 1, "", "set_sink_to_use"], [9, 5, 1, "", "start_desktop_mirroring"], [9, 5, 1, "", "start_tab_mirroring"], [9, 5, 1, "", "stop_casting"]], "nodriver.cdp.cast.IssueUpdated": [[9, 1, 1, "", "issue_message"]], "nodriver.cdp.cast.Sink": [[9, 1, 1, "", "id_"], [9, 1, 1, "", "name"], [9, 1, 1, "", "session"]], "nodriver.cdp.cast.SinksUpdated": [[9, 1, 1, "", "sinks"]], "nodriver.cdp.console": [[10, 0, 1, "", "ConsoleMessage"], [10, 0, 1, "", "MessageAdded"], [10, 5, 1, "", "clear_messages"], [10, 5, 1, "", "disable"], [10, 5, 1, "", "enable"]], "nodriver.cdp.console.ConsoleMessage": [[10, 1, 1, "", "column"], [10, 1, 1, "", "level"], [10, 1, 1, "", "line"], [10, 1, 1, "", "source"], [10, 1, 1, "", "text"], [10, 1, 1, "", "url"]], "nodriver.cdp.console.MessageAdded": [[10, 1, 1, "", "message"]], "nodriver.cdp.css": [[11, 0, 1, "", "CSSComputedStyleProperty"], [11, 0, 1, "", "CSSContainerQuery"], [11, 0, 1, "", "CSSFontPaletteValuesRule"], [11, 0, 1, "", "CSSKeyframeRule"], [11, 0, 1, "", "CSSKeyframesRule"], [11, 0, 1, "", "CSSLayer"], [11, 0, 1, "", "CSSLayerData"], [11, 0, 1, "", "CSSMedia"], [11, 0, 1, "", "CSSPositionFallbackRule"], [11, 0, 1, "", "CSSPositionTryRule"], [11, 0, 1, "", "CSSProperty"], [11, 0, 1, "", "CSSPropertyRegistration"], [11, 0, 1, "", "CSSPropertyRule"], [11, 0, 1, "", "CSSRule"], [11, 0, 1, "", "CSSRuleType"], [11, 0, 1, "", "CSSScope"], [11, 0, 1, "", "CSSStyle"], [11, 0, 1, "", "CSSStyleSheetHeader"], [11, 0, 1, "", "CSSSupports"], [11, 0, 1, "", "CSSTryRule"], [11, 0, 1, "", "FontFace"], [11, 0, 1, "", "FontVariationAxis"], [11, 0, 1, "", "FontsUpdated"], [11, 0, 1, "", "InheritedPseudoElementMatches"], [11, 0, 1, "", "InheritedStyleEntry"], [11, 0, 1, "", "MediaQuery"], [11, 0, 1, "", "MediaQueryExpression"], [11, 0, 1, "", "MediaQueryResultChanged"], [11, 0, 1, "", "PlatformFontUsage"], [11, 0, 1, "", "PseudoElementMatches"], [11, 0, 1, "", "RuleMatch"], [11, 0, 1, "", "RuleUsage"], [11, 0, 1, "", "SelectorList"], [11, 0, 1, "", "ShorthandEntry"], [11, 0, 1, "", "SourceRange"], [11, 0, 1, "", "Specificity"], [11, 0, 1, "", "StyleDeclarationEdit"], [11, 0, 1, "", "StyleSheetAdded"], [11, 0, 1, "", "StyleSheetChanged"], [11, 0, 1, "", "StyleSheetId"], [11, 0, 1, "", "StyleSheetOrigin"], [11, 0, 1, "", "StyleSheetRemoved"], [11, 0, 1, "", "Value"], [11, 5, 1, "", "add_rule"], [11, 5, 1, "", "collect_class_names"], [11, 5, 1, "", "create_style_sheet"], [11, 5, 1, "", "disable"], [11, 5, 1, "", "enable"], [11, 5, 1, "", "force_pseudo_state"], [11, 5, 1, "", "get_background_colors"], [11, 5, 1, "", "get_computed_style_for_node"], [11, 5, 1, "", "get_inline_styles_for_node"], [11, 5, 1, "", "get_layers_for_node"], [11, 5, 1, "", "get_location_for_selector"], [11, 5, 1, "", "get_matched_styles_for_node"], [11, 5, 1, "", "get_media_queries"], [11, 5, 1, "", "get_platform_fonts_for_node"], [11, 5, 1, "", "get_style_sheet_text"], [11, 5, 1, "", "set_container_query_text"], [11, 5, 1, "", "set_effective_property_value_for_node"], [11, 5, 1, "", "set_keyframe_key"], [11, 5, 1, "", "set_local_fonts_enabled"], [11, 5, 1, "", "set_media_text"], [11, 5, 1, "", "set_property_rule_property_name"], [11, 5, 1, "", "set_rule_selector"], [11, 5, 1, "", "set_scope_text"], [11, 5, 1, "", "set_style_sheet_text"], [11, 5, 1, "", "set_style_texts"], [11, 5, 1, "", "set_supports_text"], [11, 5, 1, "", "start_rule_usage_tracking"], [11, 5, 1, "", "stop_rule_usage_tracking"], [11, 5, 1, "", "take_computed_style_updates"], [11, 5, 1, "", "take_coverage_delta"], [11, 5, 1, "", "track_computed_style_updates"]], "nodriver.cdp.css.CSSComputedStyleProperty": [[11, 1, 1, "", "name"], [11, 1, 1, "", "value"]], "nodriver.cdp.css.CSSContainerQuery": [[11, 1, 1, "", "logical_axes"], [11, 1, 1, "", "name"], [11, 1, 1, "", "physical_axes"], [11, 1, 1, "", "range_"], [11, 1, 1, "", "style_sheet_id"], [11, 1, 1, "", "text"]], "nodriver.cdp.css.CSSFontPaletteValuesRule": [[11, 1, 1, "", "font_palette_name"], [11, 1, 1, "", "origin"], [11, 1, 1, "", "style"], [11, 1, 1, "", "style_sheet_id"]], "nodriver.cdp.css.CSSKeyframeRule": [[11, 1, 1, "", "key_text"], [11, 1, 1, "", "origin"], [11, 1, 1, "", "style"], [11, 1, 1, "", "style_sheet_id"]], "nodriver.cdp.css.CSSKeyframesRule": [[11, 1, 1, "", "animation_name"], [11, 1, 1, "", "keyframes"]], "nodriver.cdp.css.CSSLayer": [[11, 1, 1, "", "range_"], [11, 1, 1, "", "style_sheet_id"], [11, 1, 1, "", "text"]], "nodriver.cdp.css.CSSLayerData": [[11, 1, 1, "", "name"], [11, 1, 1, "", "order"], [11, 1, 1, "", "sub_layers"]], "nodriver.cdp.css.CSSMedia": [[11, 1, 1, "", "media_list"], [11, 1, 1, "", "range_"], [11, 1, 1, "", "source"], [11, 1, 1, "", "source_url"], [11, 1, 1, "", "style_sheet_id"], [11, 1, 1, "", "text"]], "nodriver.cdp.css.CSSPositionFallbackRule": [[11, 1, 1, "", "name"], [11, 1, 1, "", "try_rules"]], "nodriver.cdp.css.CSSPositionTryRule": [[11, 1, 1, "", "name"], [11, 1, 1, "", "origin"], [11, 1, 1, "", "style"], [11, 1, 1, "", "style_sheet_id"]], "nodriver.cdp.css.CSSProperty": [[11, 1, 1, "", "disabled"], [11, 1, 1, "", "implicit"], [11, 1, 1, "", "important"], [11, 1, 1, "", "longhand_properties"], [11, 1, 1, "", "name"], [11, 1, 1, "", "parsed_ok"], [11, 1, 1, "", "range_"], [11, 1, 1, "", "text"], [11, 1, 1, "", "value"]], "nodriver.cdp.css.CSSPropertyRegistration": [[11, 1, 1, "", "inherits"], [11, 1, 1, "", "initial_value"], [11, 1, 1, "", "property_name"], [11, 1, 1, "", "syntax"]], "nodriver.cdp.css.CSSPropertyRule": [[11, 1, 1, "", "origin"], [11, 1, 1, "", "property_name"], [11, 1, 1, "", "style"], [11, 1, 1, "", "style_sheet_id"]], "nodriver.cdp.css.CSSRule": [[11, 1, 1, "", "container_queries"], [11, 1, 1, "", "layers"], [11, 1, 1, "", "media"], [11, 1, 1, "", "nesting_selectors"], [11, 1, 1, "", "origin"], [11, 1, 1, "", "rule_types"], [11, 1, 1, "", "scopes"], [11, 1, 1, "", "selector_list"], [11, 1, 1, "", "style"], [11, 1, 1, "", "style_sheet_id"], [11, 1, 1, "", "supports"]], "nodriver.cdp.css.CSSRuleType": [[11, 1, 1, "", "CONTAINER_RULE"], [11, 1, 1, "", "LAYER_RULE"], [11, 1, 1, "", "MEDIA_RULE"], [11, 1, 1, "", "SCOPE_RULE"], [11, 1, 1, "", "STYLE_RULE"], [11, 1, 1, "", "SUPPORTS_RULE"]], "nodriver.cdp.css.CSSScope": [[11, 1, 1, "", "range_"], [11, 1, 1, "", "style_sheet_id"], [11, 1, 1, "", "text"]], "nodriver.cdp.css.CSSStyle": [[11, 1, 1, "", "css_properties"], [11, 1, 1, "", "css_text"], [11, 1, 1, "", "range_"], [11, 1, 1, "", "shorthand_entries"], [11, 1, 1, "", "style_sheet_id"]], "nodriver.cdp.css.CSSStyleSheetHeader": [[11, 1, 1, "", "disabled"], [11, 1, 1, "", "end_column"], [11, 1, 1, "", "end_line"], [11, 1, 1, "", "frame_id"], [11, 1, 1, "", "has_source_url"], [11, 1, 1, "", "is_constructed"], [11, 1, 1, "", "is_inline"], [11, 1, 1, "", "is_mutable"], [11, 1, 1, "", "length"], [11, 1, 1, "", "loading_failed"], [11, 1, 1, "", "origin"], [11, 1, 1, "", "owner_node"], [11, 1, 1, "", "source_map_url"], [11, 1, 1, "", "source_url"], [11, 1, 1, "", "start_column"], [11, 1, 1, "", "start_line"], [11, 1, 1, "", "style_sheet_id"], [11, 1, 1, "", "title"]], "nodriver.cdp.css.CSSSupports": [[11, 1, 1, "", "active"], [11, 1, 1, "", "range_"], [11, 1, 1, "", "style_sheet_id"], [11, 1, 1, "", "text"]], "nodriver.cdp.css.CSSTryRule": [[11, 1, 1, "", "origin"], [11, 1, 1, "", "style"], [11, 1, 1, "", "style_sheet_id"]], "nodriver.cdp.css.FontFace": [[11, 1, 1, "", "font_display"], [11, 1, 1, "", "font_family"], [11, 1, 1, "", "font_stretch"], [11, 1, 1, "", "font_style"], [11, 1, 1, "", "font_variant"], [11, 1, 1, "", "font_variation_axes"], [11, 1, 1, "", "font_weight"], [11, 1, 1, "", "platform_font_family"], [11, 1, 1, "", "src"], [11, 1, 1, "", "unicode_range"]], "nodriver.cdp.css.FontVariationAxis": [[11, 1, 1, "", "default_value"], [11, 1, 1, "", "max_value"], [11, 1, 1, "", "min_value"], [11, 1, 1, "", "name"], [11, 1, 1, "", "tag"]], "nodriver.cdp.css.FontsUpdated": [[11, 1, 1, "", "font"]], "nodriver.cdp.css.InheritedPseudoElementMatches": [[11, 1, 1, "", "pseudo_elements"]], "nodriver.cdp.css.InheritedStyleEntry": [[11, 1, 1, "", "inline_style"], [11, 1, 1, "", "matched_css_rules"]], "nodriver.cdp.css.MediaQuery": [[11, 1, 1, "", "active"], [11, 1, 1, "", "expressions"]], "nodriver.cdp.css.MediaQueryExpression": [[11, 1, 1, "", "computed_length"], [11, 1, 1, "", "feature"], [11, 1, 1, "", "unit"], [11, 1, 1, "", "value"], [11, 1, 1, "", "value_range"]], "nodriver.cdp.css.PlatformFontUsage": [[11, 1, 1, "", "family_name"], [11, 1, 1, "", "glyph_count"], [11, 1, 1, "", "is_custom_font"], [11, 1, 1, "", "post_script_name"]], "nodriver.cdp.css.PseudoElementMatches": [[11, 1, 1, "", "matches"], [11, 1, 1, "", "pseudo_identifier"], [11, 1, 1, "", "pseudo_type"]], "nodriver.cdp.css.RuleMatch": [[11, 1, 1, "", "matching_selectors"], [11, 1, 1, "", "rule"]], "nodriver.cdp.css.RuleUsage": [[11, 1, 1, "", "end_offset"], [11, 1, 1, "", "start_offset"], [11, 1, 1, "", "style_sheet_id"], [11, 1, 1, "", "used"]], "nodriver.cdp.css.SelectorList": [[11, 1, 1, "", "selectors"], [11, 1, 1, "", "text"]], "nodriver.cdp.css.ShorthandEntry": [[11, 1, 1, "", "important"], [11, 1, 1, "", "name"], [11, 1, 1, "", "value"]], "nodriver.cdp.css.SourceRange": [[11, 1, 1, "", "end_column"], [11, 1, 1, "", "end_line"], [11, 1, 1, "", "start_column"], [11, 1, 1, "", "start_line"]], "nodriver.cdp.css.Specificity": [[11, 1, 1, "", "a"], [11, 1, 1, "", "b"], [11, 1, 1, "", "c"]], "nodriver.cdp.css.StyleDeclarationEdit": [[11, 1, 1, "", "range_"], [11, 1, 1, "", "style_sheet_id"], [11, 1, 1, "", "text"]], "nodriver.cdp.css.StyleSheetAdded": [[11, 1, 1, "", "header"]], "nodriver.cdp.css.StyleSheetChanged": [[11, 1, 1, "", "style_sheet_id"]], "nodriver.cdp.css.StyleSheetOrigin": [[11, 1, 1, "", "INJECTED"], [11, 1, 1, "", "INSPECTOR"], [11, 1, 1, "", "REGULAR"], [11, 1, 1, "", "USER_AGENT"]], "nodriver.cdp.css.StyleSheetRemoved": [[11, 1, 1, "", "style_sheet_id"]], "nodriver.cdp.css.Value": [[11, 1, 1, "", "range_"], [11, 1, 1, "", "specificity"], [11, 1, 1, "", "text"]], "nodriver.cdp.database": [[12, 0, 1, "", "AddDatabase"], [12, 0, 1, "", "Database"], [12, 0, 1, "", "DatabaseId"], [12, 0, 1, "", "Error"], [12, 5, 1, "", "disable"], [12, 5, 1, "", "enable"], [12, 5, 1, "", "execute_sql"], [12, 5, 1, "", "get_database_table_names"]], "nodriver.cdp.database.AddDatabase": [[12, 1, 1, "", "database"]], "nodriver.cdp.database.Database": [[12, 1, 1, "", "domain"], [12, 1, 1, "", "id_"], [12, 1, 1, "", "name"], [12, 1, 1, "", "version"]], "nodriver.cdp.database.Error": [[12, 1, 1, "", "code"], [12, 1, 1, "", "message"]], "nodriver.cdp.debugger": [[13, 0, 1, "", "BreakLocation"], [13, 0, 1, "", "BreakpointId"], [13, 0, 1, "", "BreakpointResolved"], [13, 0, 1, "", "CallFrame"], [13, 0, 1, "", "CallFrameId"], [13, 0, 1, "", "DebugSymbols"], [13, 0, 1, "", "Location"], [13, 0, 1, "", "LocationRange"], [13, 0, 1, "", "Paused"], [13, 0, 1, "", "Resumed"], [13, 0, 1, "", "Scope"], [13, 0, 1, "", "ScriptFailedToParse"], [13, 0, 1, "", "ScriptLanguage"], [13, 0, 1, "", "ScriptParsed"], [13, 0, 1, "", "ScriptPosition"], [13, 0, 1, "", "SearchMatch"], [13, 0, 1, "", "WasmDisassemblyChunk"], [13, 5, 1, "", "continue_to_location"], [13, 5, 1, "", "disable"], [13, 5, 1, "", "disassemble_wasm_module"], [13, 5, 1, "", "enable"], [13, 5, 1, "", "evaluate_on_call_frame"], [13, 5, 1, "", "get_possible_breakpoints"], [13, 5, 1, "", "get_script_source"], [13, 5, 1, "", "get_stack_trace"], [13, 5, 1, "", "get_wasm_bytecode"], [13, 5, 1, "", "next_wasm_disassembly_chunk"], [13, 5, 1, "", "pause"], [13, 5, 1, "", "pause_on_async_call"], [13, 5, 1, "", "remove_breakpoint"], [13, 5, 1, "", "restart_frame"], [13, 5, 1, "", "resume"], [13, 5, 1, "", "search_in_content"], [13, 5, 1, "", "set_async_call_stack_depth"], [13, 5, 1, "", "set_blackbox_patterns"], [13, 5, 1, "", "set_blackboxed_ranges"], [13, 5, 1, "", "set_breakpoint"], [13, 5, 1, "", "set_breakpoint_by_url"], [13, 5, 1, "", "set_breakpoint_on_function_call"], [13, 5, 1, "", "set_breakpoints_active"], [13, 5, 1, "", "set_instrumentation_breakpoint"], [13, 5, 1, "", "set_pause_on_exceptions"], [13, 5, 1, "", "set_return_value"], [13, 5, 1, "", "set_script_source"], [13, 5, 1, "", "set_skip_all_pauses"], [13, 5, 1, "", "set_variable_value"], [13, 5, 1, "", "step_into"], [13, 5, 1, "", "step_out"], [13, 5, 1, "", "step_over"]], "nodriver.cdp.debugger.BreakLocation": [[13, 1, 1, "", "column_number"], [13, 1, 1, "", "line_number"], [13, 1, 1, "", "script_id"], [13, 1, 1, "", "type_"]], "nodriver.cdp.debugger.BreakpointResolved": [[13, 1, 1, "", "breakpoint_id"], [13, 1, 1, "", "location"]], "nodriver.cdp.debugger.CallFrame": [[13, 1, 1, "", "call_frame_id"], [13, 1, 1, "", "can_be_restarted"], [13, 1, 1, "", "function_location"], [13, 1, 1, "", "function_name"], [13, 1, 1, "", "location"], [13, 1, 1, "", "return_value"], [13, 1, 1, "", "scope_chain"], [13, 1, 1, "", "this"], [13, 1, 1, "", "url"]], "nodriver.cdp.debugger.DebugSymbols": [[13, 1, 1, "", "external_url"], [13, 1, 1, "", "type_"]], "nodriver.cdp.debugger.Location": [[13, 1, 1, "", "column_number"], [13, 1, 1, "", "line_number"], [13, 1, 1, "", "script_id"]], "nodriver.cdp.debugger.LocationRange": [[13, 1, 1, "", "end"], [13, 1, 1, "", "script_id"], [13, 1, 1, "", "start"]], "nodriver.cdp.debugger.Paused": [[13, 1, 1, "", "async_call_stack_trace_id"], [13, 1, 1, "", "async_stack_trace"], [13, 1, 1, "", "async_stack_trace_id"], [13, 1, 1, "", "call_frames"], [13, 1, 1, "", "data"], [13, 1, 1, "", "hit_breakpoints"], [13, 1, 1, "", "reason"]], "nodriver.cdp.debugger.Scope": [[13, 1, 1, "", "end_location"], [13, 1, 1, "", "name"], [13, 1, 1, "", "object_"], [13, 1, 1, "", "start_location"], [13, 1, 1, "", "type_"]], "nodriver.cdp.debugger.ScriptFailedToParse": [[13, 1, 1, "", "code_offset"], [13, 1, 1, "", "embedder_name"], [13, 1, 1, "", "end_column"], [13, 1, 1, "", "end_line"], [13, 1, 1, "", "execution_context_aux_data"], [13, 1, 1, "", "execution_context_id"], [13, 1, 1, "", "has_source_url"], [13, 1, 1, "", "hash_"], [13, 1, 1, "", "is_module"], [13, 1, 1, "", "length"], [13, 1, 1, "", "script_id"], [13, 1, 1, "", "script_language"], [13, 1, 1, "", "source_map_url"], [13, 1, 1, "", "stack_trace"], [13, 1, 1, "", "start_column"], [13, 1, 1, "", "start_line"], [13, 1, 1, "", "url"]], "nodriver.cdp.debugger.ScriptLanguage": [[13, 1, 1, "", "JAVA_SCRIPT"], [13, 1, 1, "", "WEB_ASSEMBLY"]], "nodriver.cdp.debugger.ScriptParsed": [[13, 1, 1, "", "code_offset"], [13, 1, 1, "", "debug_symbols"], [13, 1, 1, "", "embedder_name"], [13, 1, 1, "", "end_column"], [13, 1, 1, "", "end_line"], [13, 1, 1, "", "execution_context_aux_data"], [13, 1, 1, "", "execution_context_id"], [13, 1, 1, "", "has_source_url"], [13, 1, 1, "", "hash_"], [13, 1, 1, "", "is_live_edit"], [13, 1, 1, "", "is_module"], [13, 1, 1, "", "length"], [13, 1, 1, "", "script_id"], [13, 1, 1, "", "script_language"], [13, 1, 1, "", "source_map_url"], [13, 1, 1, "", "stack_trace"], [13, 1, 1, "", "start_column"], [13, 1, 1, "", "start_line"], [13, 1, 1, "", "url"]], "nodriver.cdp.debugger.ScriptPosition": [[13, 1, 1, "", "column_number"], [13, 1, 1, "", "line_number"]], "nodriver.cdp.debugger.SearchMatch": [[13, 1, 1, "", "line_content"], [13, 1, 1, "", "line_number"]], "nodriver.cdp.debugger.WasmDisassemblyChunk": [[13, 1, 1, "", "bytecode_offsets"], [13, 1, 1, "", "lines"]], "nodriver.cdp.device_access": [[14, 0, 1, "", "DeviceId"], [14, 0, 1, "", "DeviceRequestPrompted"], [14, 0, 1, "", "PromptDevice"], [14, 0, 1, "", "RequestId"], [14, 5, 1, "", "cancel_prompt"], [14, 5, 1, "", "disable"], [14, 5, 1, "", "enable"], [14, 5, 1, "", "select_prompt"]], "nodriver.cdp.device_access.DeviceRequestPrompted": [[14, 1, 1, "", "devices"], [14, 1, 1, "", "id_"]], "nodriver.cdp.device_access.PromptDevice": [[14, 1, 1, "", "id_"], [14, 1, 1, "", "name"]], "nodriver.cdp.device_orientation": [[15, 5, 1, "", "clear_device_orientation_override"], [15, 5, 1, "", "set_device_orientation_override"]], "nodriver.cdp.dom": [[16, 0, 1, "", "AttributeModified"], [16, 0, 1, "", "AttributeRemoved"], [16, 0, 1, "", "BackendNode"], [16, 0, 1, "", "BackendNodeId"], [16, 0, 1, "", "BoxModel"], [16, 0, 1, "", "CSSComputedStyleProperty"], [16, 0, 1, "", "CharacterDataModified"], [16, 0, 1, "", "ChildNodeCountUpdated"], [16, 0, 1, "", "ChildNodeInserted"], [16, 0, 1, "", "ChildNodeRemoved"], [16, 0, 1, "", "CompatibilityMode"], [16, 0, 1, "", "DistributedNodesUpdated"], [16, 0, 1, "", "DocumentUpdated"], [16, 0, 1, "", "InlineStyleInvalidated"], [16, 0, 1, "", "LogicalAxes"], [16, 0, 1, "", "Node"], [16, 0, 1, "", "NodeId"], [16, 0, 1, "", "PhysicalAxes"], [16, 0, 1, "", "PseudoElementAdded"], [16, 0, 1, "", "PseudoElementRemoved"], [16, 0, 1, "", "PseudoType"], [16, 0, 1, "", "Quad"], [16, 0, 1, "", "RGBA"], [16, 0, 1, "", "Rect"], [16, 0, 1, "", "ScrollOrientation"], [16, 0, 1, "", "SetChildNodes"], [16, 0, 1, "", "ShadowRootPopped"], [16, 0, 1, "", "ShadowRootPushed"], [16, 0, 1, "", "ShadowRootType"], [16, 0, 1, "", "ShapeOutsideInfo"], [16, 0, 1, "", "TopLayerElementsUpdated"], [16, 5, 1, "", "collect_class_names_from_subtree"], [16, 5, 1, "", "copy_to"], [16, 5, 1, "", "describe_node"], [16, 5, 1, "", "disable"], [16, 5, 1, "", "discard_search_results"], [16, 5, 1, "", "enable"], [16, 5, 1, "", "focus"], [16, 5, 1, "", "get_anchor_element"], [16, 5, 1, "", "get_attributes"], [16, 5, 1, "", "get_box_model"], [16, 5, 1, "", "get_container_for_node"], [16, 5, 1, "", "get_content_quads"], [16, 5, 1, "", "get_document"], [16, 5, 1, "", "get_element_by_relation"], [16, 5, 1, "", "get_file_info"], [16, 5, 1, "", "get_flattened_document"], [16, 5, 1, "", "get_frame_owner"], [16, 5, 1, "", "get_node_for_location"], [16, 5, 1, "", "get_node_stack_traces"], [16, 5, 1, "", "get_nodes_for_subtree_by_style"], [16, 5, 1, "", "get_outer_html"], [16, 5, 1, "", "get_querying_descendants_for_container"], [16, 5, 1, "", "get_relayout_boundary"], [16, 5, 1, "", "get_search_results"], [16, 5, 1, "", "get_top_layer_elements"], [16, 5, 1, "", "hide_highlight"], [16, 5, 1, "", "highlight_node"], [16, 5, 1, "", "highlight_rect"], [16, 5, 1, "", "mark_undoable_state"], [16, 5, 1, "", "move_to"], [16, 5, 1, "", "perform_search"], [16, 5, 1, "", "push_node_by_path_to_frontend"], [16, 5, 1, "", "push_nodes_by_backend_ids_to_frontend"], [16, 5, 1, "", "query_selector"], [16, 5, 1, "", "query_selector_all"], [16, 5, 1, "", "redo"], [16, 5, 1, "", "remove_attribute"], [16, 5, 1, "", "remove_node"], [16, 5, 1, "", "request_child_nodes"], [16, 5, 1, "", "request_node"], [16, 5, 1, "", "resolve_node"], [16, 5, 1, "", "scroll_into_view_if_needed"], [16, 5, 1, "", "set_attribute_value"], [16, 5, 1, "", "set_attributes_as_text"], [16, 5, 1, "", "set_file_input_files"], [16, 5, 1, "", "set_inspected_node"], [16, 5, 1, "", "set_node_name"], [16, 5, 1, "", "set_node_stack_traces_enabled"], [16, 5, 1, "", "set_node_value"], [16, 5, 1, "", "set_outer_html"], [16, 5, 1, "", "undo"]], "nodriver.cdp.dom.AttributeModified": [[16, 1, 1, "", "name"], [16, 1, 1, "", "node_id"], [16, 1, 1, "", "value"]], "nodriver.cdp.dom.AttributeRemoved": [[16, 1, 1, "", "name"], [16, 1, 1, "", "node_id"]], "nodriver.cdp.dom.BackendNode": [[16, 1, 1, "", "backend_node_id"], [16, 1, 1, "", "node_name"], [16, 1, 1, "", "node_type"]], "nodriver.cdp.dom.BoxModel": [[16, 1, 1, "", "border"], [16, 1, 1, "", "content"], [16, 1, 1, "", "height"], [16, 1, 1, "", "margin"], [16, 1, 1, "", "padding"], [16, 1, 1, "", "shape_outside"], [16, 1, 1, "", "width"]], "nodriver.cdp.dom.CSSComputedStyleProperty": [[16, 1, 1, "", "name"], [16, 1, 1, "", "value"]], "nodriver.cdp.dom.CharacterDataModified": [[16, 1, 1, "", "character_data"], [16, 1, 1, "", "node_id"]], "nodriver.cdp.dom.ChildNodeCountUpdated": [[16, 1, 1, "", "child_node_count"], [16, 1, 1, "", "node_id"]], "nodriver.cdp.dom.ChildNodeInserted": [[16, 1, 1, "", "node"], [16, 1, 1, "", "parent_node_id"], [16, 1, 1, "", "previous_node_id"]], "nodriver.cdp.dom.ChildNodeRemoved": [[16, 1, 1, "", "node_id"], [16, 1, 1, "", "parent_node_id"]], "nodriver.cdp.dom.CompatibilityMode": [[16, 1, 1, "", "LIMITED_QUIRKS_MODE"], [16, 1, 1, "", "NO_QUIRKS_MODE"], [16, 1, 1, "", "QUIRKS_MODE"]], "nodriver.cdp.dom.DistributedNodesUpdated": [[16, 1, 1, "", "distributed_nodes"], [16, 1, 1, "", "insertion_point_id"]], "nodriver.cdp.dom.InlineStyleInvalidated": [[16, 1, 1, "", "node_ids"]], "nodriver.cdp.dom.LogicalAxes": [[16, 1, 1, "", "BLOCK"], [16, 1, 1, "", "BOTH"], [16, 1, 1, "", "INLINE"]], "nodriver.cdp.dom.Node": [[16, 1, 1, "", "assigned_slot"], [16, 1, 1, "", "attributes"], [16, 1, 1, "", "backend_node_id"], [16, 1, 1, "", "base_url"], [16, 1, 1, "", "child_node_count"], [16, 1, 1, "", "children"], [16, 1, 1, "", "compatibility_mode"], [16, 1, 1, "", "content_document"], [16, 1, 1, "", "distributed_nodes"], [16, 1, 1, "", "document_url"], [16, 1, 1, "", "frame_id"], [16, 1, 1, "", "imported_document"], [16, 1, 1, "", "internal_subset"], [16, 1, 1, "", "is_svg"], [16, 1, 1, "", "local_name"], [16, 1, 1, "", "name"], [16, 1, 1, "", "node_id"], [16, 1, 1, "", "node_name"], [16, 1, 1, "", "node_type"], [16, 1, 1, "", "node_value"], [16, 1, 1, "", "parent_id"], [16, 1, 1, "", "pseudo_elements"], [16, 1, 1, "", "pseudo_identifier"], [16, 1, 1, "", "pseudo_type"], [16, 1, 1, "", "public_id"], [16, 1, 1, "", "shadow_root_type"], [16, 1, 1, "", "shadow_roots"], [16, 1, 1, "", "system_id"], [16, 1, 1, "", "template_content"], [16, 1, 1, "", "value"], [16, 1, 1, "", "xml_version"]], "nodriver.cdp.dom.PhysicalAxes": [[16, 1, 1, "", "BOTH"], [16, 1, 1, "", "HORIZONTAL"], [16, 1, 1, "", "VERTICAL"]], "nodriver.cdp.dom.PseudoElementAdded": [[16, 1, 1, "", "parent_id"], [16, 1, 1, "", "pseudo_element"]], "nodriver.cdp.dom.PseudoElementRemoved": [[16, 1, 1, "", "parent_id"], [16, 1, 1, "", "pseudo_element_id"]], "nodriver.cdp.dom.PseudoType": [[16, 1, 1, "", "AFTER"], [16, 1, 1, "", "BACKDROP"], [16, 1, 1, "", "BEFORE"], [16, 1, 1, "", "FIRST_LETTER"], [16, 1, 1, "", "FIRST_LINE"], [16, 1, 1, "", "FIRST_LINE_INHERITED"], [16, 1, 1, "", "GRAMMAR_ERROR"], [16, 1, 1, "", "HIGHLIGHT"], [16, 1, 1, "", "INPUT_LIST_BUTTON"], [16, 1, 1, "", "MARKER"], [16, 1, 1, "", "RESIZER"], [16, 1, 1, "", "SCROLLBAR"], [16, 1, 1, "", "SCROLLBAR_BUTTON"], [16, 1, 1, "", "SCROLLBAR_CORNER"], [16, 1, 1, "", "SCROLLBAR_THUMB"], [16, 1, 1, "", "SCROLLBAR_TRACK"], [16, 1, 1, "", "SCROLLBAR_TRACK_PIECE"], [16, 1, 1, "", "SCROLL_MARKER"], [16, 1, 1, "", "SCROLL_MARKER_GROUP"], [16, 1, 1, "", "SEARCH_TEXT"], [16, 1, 1, "", "SELECTION"], [16, 1, 1, "", "SPELLING_ERROR"], [16, 1, 1, "", "TARGET_TEXT"], [16, 1, 1, "", "VIEW_TRANSITION"], [16, 1, 1, "", "VIEW_TRANSITION_GROUP"], [16, 1, 1, "", "VIEW_TRANSITION_IMAGE_PAIR"], [16, 1, 1, "", "VIEW_TRANSITION_NEW"], [16, 1, 1, "", "VIEW_TRANSITION_OLD"]], "nodriver.cdp.dom.RGBA": [[16, 1, 1, "", "a"], [16, 1, 1, "", "b"], [16, 1, 1, "", "g"], [16, 1, 1, "", "r"]], "nodriver.cdp.dom.Rect": [[16, 1, 1, "", "height"], [16, 1, 1, "", "width"], [16, 1, 1, "", "x"], [16, 1, 1, "", "y"]], "nodriver.cdp.dom.ScrollOrientation": [[16, 1, 1, "", "HORIZONTAL"], [16, 1, 1, "", "VERTICAL"]], "nodriver.cdp.dom.SetChildNodes": [[16, 1, 1, "", "nodes"], [16, 1, 1, "", "parent_id"]], "nodriver.cdp.dom.ShadowRootPopped": [[16, 1, 1, "", "host_id"], [16, 1, 1, "", "root_id"]], "nodriver.cdp.dom.ShadowRootPushed": [[16, 1, 1, "", "host_id"], [16, 1, 1, "", "root"]], "nodriver.cdp.dom.ShadowRootType": [[16, 1, 1, "", "CLOSED"], [16, 1, 1, "", "OPEN_"], [16, 1, 1, "", "USER_AGENT"]], "nodriver.cdp.dom.ShapeOutsideInfo": [[16, 1, 1, "", "bounds"], [16, 1, 1, "", "margin_shape"], [16, 1, 1, "", "shape"]], "nodriver.cdp.dom_debugger": [[17, 0, 1, "", "CSPViolationType"], [17, 0, 1, "", "DOMBreakpointType"], [17, 0, 1, "", "EventListener"], [17, 5, 1, "", "get_event_listeners"], [17, 5, 1, "", "remove_dom_breakpoint"], [17, 5, 1, "", "remove_event_listener_breakpoint"], [17, 5, 1, "", "remove_instrumentation_breakpoint"], [17, 5, 1, "", "remove_xhr_breakpoint"], [17, 5, 1, "", "set_break_on_csp_violation"], [17, 5, 1, "", "set_dom_breakpoint"], [17, 5, 1, "", "set_event_listener_breakpoint"], [17, 5, 1, "", "set_instrumentation_breakpoint"], [17, 5, 1, "", "set_xhr_breakpoint"]], "nodriver.cdp.dom_debugger.CSPViolationType": [[17, 1, 1, "", "TRUSTEDTYPE_POLICY_VIOLATION"], [17, 1, 1, "", "TRUSTEDTYPE_SINK_VIOLATION"]], "nodriver.cdp.dom_debugger.DOMBreakpointType": [[17, 1, 1, "", "ATTRIBUTE_MODIFIED"], [17, 1, 1, "", "NODE_REMOVED"], [17, 1, 1, "", "SUBTREE_MODIFIED"]], "nodriver.cdp.dom_debugger.EventListener": [[17, 1, 1, "", "backend_node_id"], [17, 1, 1, "", "column_number"], [17, 1, 1, "", "handler"], [17, 1, 1, "", "line_number"], [17, 1, 1, "", "once"], [17, 1, 1, "", "original_handler"], [17, 1, 1, "", "passive"], [17, 1, 1, "", "script_id"], [17, 1, 1, "", "type_"], [17, 1, 1, "", "use_capture"]], "nodriver.cdp.dom_snapshot": [[18, 0, 1, "", "ArrayOfStrings"], [18, 0, 1, "", "ComputedStyle"], [18, 0, 1, "", "DOMNode"], [18, 0, 1, "", "DocumentSnapshot"], [18, 0, 1, "", "InlineTextBox"], [18, 0, 1, "", "LayoutTreeNode"], [18, 0, 1, "", "LayoutTreeSnapshot"], [18, 0, 1, "", "NameValue"], [18, 0, 1, "", "NodeTreeSnapshot"], [18, 0, 1, "", "RareBooleanData"], [18, 0, 1, "", "RareIntegerData"], [18, 0, 1, "", "RareStringData"], [18, 0, 1, "", "Rectangle"], [18, 0, 1, "", "StringIndex"], [18, 0, 1, "", "TextBoxSnapshot"], [18, 5, 1, "", "capture_snapshot"], [18, 5, 1, "", "disable"], [18, 5, 1, "", "enable"], [18, 5, 1, "", "get_snapshot"]], "nodriver.cdp.dom_snapshot.ComputedStyle": [[18, 1, 1, "", "properties"]], "nodriver.cdp.dom_snapshot.DOMNode": [[18, 1, 1, "", "attributes"], [18, 1, 1, "", "backend_node_id"], [18, 1, 1, "", "base_url"], [18, 1, 1, "", "child_node_indexes"], [18, 1, 1, "", "content_document_index"], [18, 1, 1, "", "content_language"], [18, 1, 1, "", "current_source_url"], [18, 1, 1, "", "document_encoding"], [18, 1, 1, "", "document_url"], [18, 1, 1, "", "event_listeners"], [18, 1, 1, "", "frame_id"], [18, 1, 1, "", "input_checked"], [18, 1, 1, "", "input_value"], [18, 1, 1, "", "is_clickable"], [18, 1, 1, "", "layout_node_index"], [18, 1, 1, "", "node_name"], [18, 1, 1, "", "node_type"], [18, 1, 1, "", "node_value"], [18, 1, 1, "", "option_selected"], [18, 1, 1, "", "origin_url"], [18, 1, 1, "", "pseudo_element_indexes"], [18, 1, 1, "", "pseudo_type"], [18, 1, 1, "", "public_id"], [18, 1, 1, "", "scroll_offset_x"], [18, 1, 1, "", "scroll_offset_y"], [18, 1, 1, "", "shadow_root_type"], [18, 1, 1, "", "system_id"], [18, 1, 1, "", "text_value"]], "nodriver.cdp.dom_snapshot.DocumentSnapshot": [[18, 1, 1, "", "base_url"], [18, 1, 1, "", "content_height"], [18, 1, 1, "", "content_language"], [18, 1, 1, "", "content_width"], [18, 1, 1, "", "document_url"], [18, 1, 1, "", "encoding_name"], [18, 1, 1, "", "frame_id"], [18, 1, 1, "", "layout"], [18, 1, 1, "", "nodes"], [18, 1, 1, "", "public_id"], [18, 1, 1, "", "scroll_offset_x"], [18, 1, 1, "", "scroll_offset_y"], [18, 1, 1, "", "system_id"], [18, 1, 1, "", "text_boxes"], [18, 1, 1, "", "title"]], "nodriver.cdp.dom_snapshot.InlineTextBox": [[18, 1, 1, "", "bounding_box"], [18, 1, 1, "", "num_characters"], [18, 1, 1, "", "start_character_index"]], "nodriver.cdp.dom_snapshot.LayoutTreeNode": [[18, 1, 1, "", "bounding_box"], [18, 1, 1, "", "dom_node_index"], [18, 1, 1, "", "inline_text_nodes"], [18, 1, 1, "", "is_stacking_context"], [18, 1, 1, "", "layout_text"], [18, 1, 1, "", "paint_order"], [18, 1, 1, "", "style_index"]], "nodriver.cdp.dom_snapshot.LayoutTreeSnapshot": [[18, 1, 1, "", "blended_background_colors"], [18, 1, 1, "", "bounds"], [18, 1, 1, "", "client_rects"], [18, 1, 1, "", "node_index"], [18, 1, 1, "", "offset_rects"], [18, 1, 1, "", "paint_orders"], [18, 1, 1, "", "scroll_rects"], [18, 1, 1, "", "stacking_contexts"], [18, 1, 1, "", "styles"], [18, 1, 1, "", "text"], [18, 1, 1, "", "text_color_opacities"]], "nodriver.cdp.dom_snapshot.NameValue": [[18, 1, 1, "", "name"], [18, 1, 1, "", "value"]], "nodriver.cdp.dom_snapshot.NodeTreeSnapshot": [[18, 1, 1, "", "attributes"], [18, 1, 1, "", "backend_node_id"], [18, 1, 1, "", "content_document_index"], [18, 1, 1, "", "current_source_url"], [18, 1, 1, "", "input_checked"], [18, 1, 1, "", "input_value"], [18, 1, 1, "", "is_clickable"], [18, 1, 1, "", "node_name"], [18, 1, 1, "", "node_type"], [18, 1, 1, "", "node_value"], [18, 1, 1, "", "option_selected"], [18, 1, 1, "", "origin_url"], [18, 1, 1, "", "parent_index"], [18, 1, 1, "", "pseudo_identifier"], [18, 1, 1, "", "pseudo_type"], [18, 1, 1, "", "shadow_root_type"], [18, 1, 1, "", "text_value"]], "nodriver.cdp.dom_snapshot.RareBooleanData": [[18, 1, 1, "", "index"]], "nodriver.cdp.dom_snapshot.RareIntegerData": [[18, 1, 1, "", "index"], [18, 1, 1, "", "value"]], "nodriver.cdp.dom_snapshot.RareStringData": [[18, 1, 1, "", "index"], [18, 1, 1, "", "value"]], "nodriver.cdp.dom_snapshot.TextBoxSnapshot": [[18, 1, 1, "", "bounds"], [18, 1, 1, "", "layout_index"], [18, 1, 1, "", "length"], [18, 1, 1, "", "start"]], "nodriver.cdp.dom_storage": [[19, 0, 1, "", "DomStorageItemAdded"], [19, 0, 1, "", "DomStorageItemRemoved"], [19, 0, 1, "", "DomStorageItemUpdated"], [19, 0, 1, "", "DomStorageItemsCleared"], [19, 0, 1, "", "Item"], [19, 0, 1, "", "SerializedStorageKey"], [19, 0, 1, "", "StorageId"], [19, 5, 1, "", "clear"], [19, 5, 1, "", "disable"], [19, 5, 1, "", "enable"], [19, 5, 1, "", "get_dom_storage_items"], [19, 5, 1, "", "remove_dom_storage_item"], [19, 5, 1, "", "set_dom_storage_item"]], "nodriver.cdp.dom_storage.DomStorageItemAdded": [[19, 1, 1, "", "key"], [19, 1, 1, "", "new_value"], [19, 1, 1, "", "storage_id"]], "nodriver.cdp.dom_storage.DomStorageItemRemoved": [[19, 1, 1, "", "key"], [19, 1, 1, "", "storage_id"]], "nodriver.cdp.dom_storage.DomStorageItemUpdated": [[19, 1, 1, "", "key"], [19, 1, 1, "", "new_value"], [19, 1, 1, "", "old_value"], [19, 1, 1, "", "storage_id"]], "nodriver.cdp.dom_storage.DomStorageItemsCleared": [[19, 1, 1, "", "storage_id"]], "nodriver.cdp.dom_storage.StorageId": [[19, 1, 1, "", "is_local_storage"], [19, 1, 1, "", "security_origin"], [19, 1, 1, "", "storage_key"]], "nodriver.cdp.emulation": [[20, 0, 1, "", "DevicePosture"], [20, 0, 1, "", "DisabledImageType"], [20, 0, 1, "", "DisplayFeature"], [20, 0, 1, "", "MediaFeature"], [20, 0, 1, "", "ScreenOrientation"], [20, 0, 1, "", "SensorMetadata"], [20, 0, 1, "", "SensorReading"], [20, 0, 1, "", "SensorReadingQuaternion"], [20, 0, 1, "", "SensorReadingSingle"], [20, 0, 1, "", "SensorReadingXYZ"], [20, 0, 1, "", "SensorType"], [20, 0, 1, "", "UserAgentBrandVersion"], [20, 0, 1, "", "UserAgentMetadata"], [20, 0, 1, "", "VirtualTimeBudgetExpired"], [20, 0, 1, "", "VirtualTimePolicy"], [20, 5, 1, "", "can_emulate"], [20, 5, 1, "", "clear_device_metrics_override"], [20, 5, 1, "", "clear_device_posture_override"], [20, 5, 1, "", "clear_geolocation_override"], [20, 5, 1, "", "clear_idle_override"], [20, 5, 1, "", "get_overridden_sensor_information"], [20, 5, 1, "", "reset_page_scale_factor"], [20, 5, 1, "", "set_auto_dark_mode_override"], [20, 5, 1, "", "set_automation_override"], [20, 5, 1, "", "set_cpu_throttling_rate"], [20, 5, 1, "", "set_default_background_color_override"], [20, 5, 1, "", "set_device_metrics_override"], [20, 5, 1, "", "set_device_posture_override"], [20, 5, 1, "", "set_disabled_image_types"], [20, 5, 1, "", "set_document_cookie_disabled"], [20, 5, 1, "", "set_emit_touch_events_for_mouse"], [20, 5, 1, "", "set_emulated_media"], [20, 5, 1, "", "set_emulated_vision_deficiency"], [20, 5, 1, "", "set_focus_emulation_enabled"], [20, 5, 1, "", "set_geolocation_override"], [20, 5, 1, "", "set_hardware_concurrency_override"], [20, 5, 1, "", "set_idle_override"], [20, 5, 1, "", "set_locale_override"], [20, 5, 1, "", "set_navigator_overrides"], [20, 5, 1, "", "set_page_scale_factor"], [20, 5, 1, "", "set_script_execution_disabled"], [20, 5, 1, "", "set_scrollbars_hidden"], [20, 5, 1, "", "set_sensor_override_enabled"], [20, 5, 1, "", "set_sensor_override_readings"], [20, 5, 1, "", "set_timezone_override"], [20, 5, 1, "", "set_touch_emulation_enabled"], [20, 5, 1, "", "set_user_agent_override"], [20, 5, 1, "", "set_virtual_time_policy"], [20, 5, 1, "", "set_visible_size"]], "nodriver.cdp.emulation.DevicePosture": [[20, 1, 1, "", "type_"]], "nodriver.cdp.emulation.DisabledImageType": [[20, 1, 1, "", "AVIF"], [20, 1, 1, "", "WEBP"]], "nodriver.cdp.emulation.DisplayFeature": [[20, 1, 1, "", "mask_length"], [20, 1, 1, "", "offset"], [20, 1, 1, "", "orientation"]], "nodriver.cdp.emulation.MediaFeature": [[20, 1, 1, "", "name"], [20, 1, 1, "", "value"]], "nodriver.cdp.emulation.ScreenOrientation": [[20, 1, 1, "", "angle"], [20, 1, 1, "", "type_"]], "nodriver.cdp.emulation.SensorMetadata": [[20, 1, 1, "", "available"], [20, 1, 1, "", "maximum_frequency"], [20, 1, 1, "", "minimum_frequency"]], "nodriver.cdp.emulation.SensorReading": [[20, 1, 1, "", "quaternion"], [20, 1, 1, "", "single"], [20, 1, 1, "", "xyz"]], "nodriver.cdp.emulation.SensorReadingQuaternion": [[20, 1, 1, "", "w"], [20, 1, 1, "", "x"], [20, 1, 1, "", "y"], [20, 1, 1, "", "z"]], "nodriver.cdp.emulation.SensorReadingSingle": [[20, 1, 1, "", "value"]], "nodriver.cdp.emulation.SensorReadingXYZ": [[20, 1, 1, "", "x"], [20, 1, 1, "", "y"], [20, 1, 1, "", "z"]], "nodriver.cdp.emulation.SensorType": [[20, 1, 1, "", "ABSOLUTE_ORIENTATION"], [20, 1, 1, "", "ACCELEROMETER"], [20, 1, 1, "", "AMBIENT_LIGHT"], [20, 1, 1, "", "GRAVITY"], [20, 1, 1, "", "GYROSCOPE"], [20, 1, 1, "", "LINEAR_ACCELERATION"], [20, 1, 1, "", "MAGNETOMETER"], [20, 1, 1, "", "PROXIMITY"], [20, 1, 1, "", "RELATIVE_ORIENTATION"]], "nodriver.cdp.emulation.UserAgentBrandVersion": [[20, 1, 1, "", "brand"], [20, 1, 1, "", "version"]], "nodriver.cdp.emulation.UserAgentMetadata": [[20, 1, 1, "", "architecture"], [20, 1, 1, "", "bitness"], [20, 1, 1, "", "brands"], [20, 1, 1, "", "full_version"], [20, 1, 1, "", "full_version_list"], [20, 1, 1, "", "mobile"], [20, 1, 1, "", "model"], [20, 1, 1, "", "platform"], [20, 1, 1, "", "platform_version"], [20, 1, 1, "", "wow64"]], "nodriver.cdp.emulation.VirtualTimePolicy": [[20, 1, 1, "", "ADVANCE"], [20, 1, 1, "", "PAUSE"], [20, 1, 1, "", "PAUSE_IF_NETWORK_FETCHES_PENDING"]], "nodriver.cdp.event_breakpoints": [[21, 5, 1, "", "disable"], [21, 5, 1, "", "remove_instrumentation_breakpoint"], [21, 5, 1, "", "set_instrumentation_breakpoint"]], "nodriver.cdp.extensions": [[22, 5, 1, "", "load_unpacked"]], "nodriver.cdp.fed_cm": [[23, 0, 1, "", "Account"], [23, 0, 1, "", "AccountUrlType"], [23, 0, 1, "", "DialogButton"], [23, 0, 1, "", "DialogClosed"], [23, 0, 1, "", "DialogShown"], [23, 0, 1, "", "DialogType"], [23, 0, 1, "", "LoginState"], [23, 5, 1, "", "click_dialog_button"], [23, 5, 1, "", "disable"], [23, 5, 1, "", "dismiss_dialog"], [23, 5, 1, "", "enable"], [23, 5, 1, "", "open_url"], [23, 5, 1, "", "reset_cooldown"], [23, 5, 1, "", "select_account"]], "nodriver.cdp.fed_cm.Account": [[23, 1, 1, "", "account_id"], [23, 1, 1, "", "email"], [23, 1, 1, "", "given_name"], [23, 1, 1, "", "idp_config_url"], [23, 1, 1, "", "idp_login_url"], [23, 1, 1, "", "login_state"], [23, 1, 1, "", "name"], [23, 1, 1, "", "picture_url"], [23, 1, 1, "", "privacy_policy_url"], [23, 1, 1, "", "terms_of_service_url"]], "nodriver.cdp.fed_cm.AccountUrlType": [[23, 1, 1, "", "PRIVACY_POLICY"], [23, 1, 1, "", "TERMS_OF_SERVICE"]], "nodriver.cdp.fed_cm.DialogButton": [[23, 1, 1, "", "CONFIRM_IDP_LOGIN_CONTINUE"], [23, 1, 1, "", "ERROR_GOT_IT"], [23, 1, 1, "", "ERROR_MORE_DETAILS"]], "nodriver.cdp.fed_cm.DialogClosed": [[23, 1, 1, "", "dialog_id"]], "nodriver.cdp.fed_cm.DialogShown": [[23, 1, 1, "", "accounts"], [23, 1, 1, "", "dialog_id"], [23, 1, 1, "", "dialog_type"], [23, 1, 1, "", "subtitle"], [23, 1, 1, "", "title"]], "nodriver.cdp.fed_cm.DialogType": [[23, 1, 1, "", "ACCOUNT_CHOOSER"], [23, 1, 1, "", "AUTO_REAUTHN"], [23, 1, 1, "", "CONFIRM_IDP_LOGIN"], [23, 1, 1, "", "ERROR"]], "nodriver.cdp.fed_cm.LoginState": [[23, 1, 1, "", "SIGN_IN"], [23, 1, 1, "", "SIGN_UP"]], "nodriver.cdp.fetch": [[24, 0, 1, "", "AuthChallenge"], [24, 0, 1, "", "AuthChallengeResponse"], [24, 0, 1, "", "AuthRequired"], [24, 0, 1, "", "HeaderEntry"], [24, 0, 1, "", "RequestId"], [24, 0, 1, "", "RequestPattern"], [24, 0, 1, "", "RequestPaused"], [24, 0, 1, "", "RequestStage"], [24, 5, 1, "", "continue_request"], [24, 5, 1, "", "continue_response"], [24, 5, 1, "", "continue_with_auth"], [24, 5, 1, "", "disable"], [24, 5, 1, "", "enable"], [24, 5, 1, "", "fail_request"], [24, 5, 1, "", "fulfill_request"], [24, 5, 1, "", "get_response_body"], [24, 5, 1, "", "take_response_body_as_stream"]], "nodriver.cdp.fetch.AuthChallenge": [[24, 1, 1, "", "origin"], [24, 1, 1, "", "realm"], [24, 1, 1, "", "scheme"], [24, 1, 1, "", "source"]], "nodriver.cdp.fetch.AuthChallengeResponse": [[24, 1, 1, "", "password"], [24, 1, 1, "", "response"], [24, 1, 1, "", "username"]], "nodriver.cdp.fetch.AuthRequired": [[24, 1, 1, "", "auth_challenge"], [24, 1, 1, "", "frame_id"], [24, 1, 1, "", "request"], [24, 1, 1, "", "request_id"], [24, 1, 1, "", "resource_type"]], "nodriver.cdp.fetch.HeaderEntry": [[24, 1, 1, "", "name"], [24, 1, 1, "", "value"]], "nodriver.cdp.fetch.RequestPattern": [[24, 1, 1, "", "request_stage"], [24, 1, 1, "", "resource_type"], [24, 1, 1, "", "url_pattern"]], "nodriver.cdp.fetch.RequestPaused": [[24, 1, 1, "", "frame_id"], [24, 1, 1, "", "network_id"], [24, 1, 1, "", "redirected_request_id"], [24, 1, 1, "", "request"], [24, 1, 1, "", "request_id"], [24, 1, 1, "", "resource_type"], [24, 1, 1, "", "response_error_reason"], [24, 1, 1, "", "response_headers"], [24, 1, 1, "", "response_status_code"], [24, 1, 1, "", "response_status_text"]], "nodriver.cdp.fetch.RequestStage": [[24, 1, 1, "", "REQUEST"], [24, 1, 1, "", "RESPONSE"]], "nodriver.cdp.headless_experimental": [[25, 0, 1, "", "ScreenshotParams"], [25, 5, 1, "", "begin_frame"], [25, 5, 1, "", "disable"], [25, 5, 1, "", "enable"]], "nodriver.cdp.headless_experimental.ScreenshotParams": [[25, 1, 1, "", "format_"], [25, 1, 1, "", "optimize_for_speed"], [25, 1, 1, "", "quality"]], "nodriver.cdp.heap_profiler": [[26, 0, 1, "", "AddHeapSnapshotChunk"], [26, 0, 1, "", "HeapSnapshotObjectId"], [26, 0, 1, "", "HeapStatsUpdate"], [26, 0, 1, "", "LastSeenObjectId"], [26, 0, 1, "", "ReportHeapSnapshotProgress"], [26, 0, 1, "", "ResetProfiles"], [26, 0, 1, "", "SamplingHeapProfile"], [26, 0, 1, "", "SamplingHeapProfileNode"], [26, 0, 1, "", "SamplingHeapProfileSample"], [26, 5, 1, "", "add_inspected_heap_object"], [26, 5, 1, "", "collect_garbage"], [26, 5, 1, "", "disable"], [26, 5, 1, "", "enable"], [26, 5, 1, "", "get_heap_object_id"], [26, 5, 1, "", "get_object_by_heap_object_id"], [26, 5, 1, "", "get_sampling_profile"], [26, 5, 1, "", "start_sampling"], [26, 5, 1, "", "start_tracking_heap_objects"], [26, 5, 1, "", "stop_sampling"], [26, 5, 1, "", "stop_tracking_heap_objects"], [26, 5, 1, "", "take_heap_snapshot"]], "nodriver.cdp.heap_profiler.AddHeapSnapshotChunk": [[26, 1, 1, "", "chunk"]], "nodriver.cdp.heap_profiler.HeapStatsUpdate": [[26, 1, 1, "", "stats_update"]], "nodriver.cdp.heap_profiler.LastSeenObjectId": [[26, 1, 1, "", "last_seen_object_id"], [26, 1, 1, "", "timestamp"]], "nodriver.cdp.heap_profiler.ReportHeapSnapshotProgress": [[26, 1, 1, "", "done"], [26, 1, 1, "", "finished"], [26, 1, 1, "", "total"]], "nodriver.cdp.heap_profiler.SamplingHeapProfile": [[26, 1, 1, "", "head"], [26, 1, 1, "", "samples"]], "nodriver.cdp.heap_profiler.SamplingHeapProfileNode": [[26, 1, 1, "", "call_frame"], [26, 1, 1, "", "children"], [26, 1, 1, "", "id_"], [26, 1, 1, "", "self_size"]], "nodriver.cdp.heap_profiler.SamplingHeapProfileSample": [[26, 1, 1, "", "node_id"], [26, 1, 1, "", "ordinal"], [26, 1, 1, "", "size"]], "nodriver.cdp.indexed_db": [[27, 0, 1, "", "DataEntry"], [27, 0, 1, "", "DatabaseWithObjectStores"], [27, 0, 1, "", "Key"], [27, 0, 1, "", "KeyPath"], [27, 0, 1, "", "KeyRange"], [27, 0, 1, "", "ObjectStore"], [27, 0, 1, "", "ObjectStoreIndex"], [27, 5, 1, "", "clear_object_store"], [27, 5, 1, "", "delete_database"], [27, 5, 1, "", "delete_object_store_entries"], [27, 5, 1, "", "disable"], [27, 5, 1, "", "enable"], [27, 5, 1, "", "get_metadata"], [27, 5, 1, "", "request_data"], [27, 5, 1, "", "request_database"], [27, 5, 1, "", "request_database_names"]], "nodriver.cdp.indexed_db.DataEntry": [[27, 1, 1, "", "key"], [27, 1, 1, "", "primary_key"], [27, 1, 1, "", "value"]], "nodriver.cdp.indexed_db.DatabaseWithObjectStores": [[27, 1, 1, "", "name"], [27, 1, 1, "", "object_stores"], [27, 1, 1, "", "version"]], "nodriver.cdp.indexed_db.Key": [[27, 1, 1, "", "array"], [27, 1, 1, "", "date"], [27, 1, 1, "", "number"], [27, 1, 1, "", "string"], [27, 1, 1, "", "type_"]], "nodriver.cdp.indexed_db.KeyPath": [[27, 1, 1, "", "array"], [27, 1, 1, "", "string"], [27, 1, 1, "", "type_"]], "nodriver.cdp.indexed_db.KeyRange": [[27, 1, 1, "", "lower"], [27, 1, 1, "", "lower_open"], [27, 1, 1, "", "upper"], [27, 1, 1, "", "upper_open"]], "nodriver.cdp.indexed_db.ObjectStore": [[27, 1, 1, "", "auto_increment"], [27, 1, 1, "", "indexes"], [27, 1, 1, "", "key_path"], [27, 1, 1, "", "name"]], "nodriver.cdp.indexed_db.ObjectStoreIndex": [[27, 1, 1, "", "key_path"], [27, 1, 1, "", "multi_entry"], [27, 1, 1, "", "name"], [27, 1, 1, "", "unique"]], "nodriver.cdp.input_": [[28, 0, 1, "", "DragData"], [28, 0, 1, "", "DragDataItem"], [28, 0, 1, "", "DragIntercepted"], [28, 0, 1, "", "GestureSourceType"], [28, 0, 1, "", "MouseButton"], [28, 0, 1, "", "TimeSinceEpoch"], [28, 0, 1, "", "TouchPoint"], [28, 5, 1, "", "cancel_dragging"], [28, 5, 1, "", "dispatch_drag_event"], [28, 5, 1, "", "dispatch_key_event"], [28, 5, 1, "", "dispatch_mouse_event"], [28, 5, 1, "", "dispatch_touch_event"], [28, 5, 1, "", "emulate_touch_from_mouse_event"], [28, 5, 1, "", "ime_set_composition"], [28, 5, 1, "", "insert_text"], [28, 5, 1, "", "set_ignore_input_events"], [28, 5, 1, "", "set_intercept_drags"], [28, 5, 1, "", "synthesize_pinch_gesture"], [28, 5, 1, "", "synthesize_scroll_gesture"], [28, 5, 1, "", "synthesize_tap_gesture"]], "nodriver.cdp.input_.DragData": [[28, 1, 1, "", "drag_operations_mask"], [28, 1, 1, "", "files"], [28, 1, 1, "", "items"]], "nodriver.cdp.input_.DragDataItem": [[28, 1, 1, "", "base_url"], [28, 1, 1, "", "data"], [28, 1, 1, "", "mime_type"], [28, 1, 1, "", "title"]], "nodriver.cdp.input_.DragIntercepted": [[28, 1, 1, "", "data"]], "nodriver.cdp.input_.GestureSourceType": [[28, 1, 1, "", "DEFAULT"], [28, 1, 1, "", "MOUSE"], [28, 1, 1, "", "TOUCH"]], "nodriver.cdp.input_.MouseButton": [[28, 1, 1, "", "BACK"], [28, 1, 1, "", "FORWARD"], [28, 1, 1, "", "LEFT"], [28, 1, 1, "", "MIDDLE"], [28, 1, 1, "", "NONE"], [28, 1, 1, "", "RIGHT"]], "nodriver.cdp.input_.TouchPoint": [[28, 1, 1, "", "force"], [28, 1, 1, "", "id_"], [28, 1, 1, "", "radius_x"], [28, 1, 1, "", "radius_y"], [28, 1, 1, "", "rotation_angle"], [28, 1, 1, "", "tangential_pressure"], [28, 1, 1, "", "tilt_x"], [28, 1, 1, "", "tilt_y"], [28, 1, 1, "", "twist"], [28, 1, 1, "", "x"], [28, 1, 1, "", "y"]], "nodriver.cdp.inspector": [[29, 0, 1, "", "Detached"], [29, 0, 1, "", "TargetCrashed"], [29, 0, 1, "", "TargetReloadedAfterCrash"], [29, 5, 1, "", "disable"], [29, 5, 1, "", "enable"]], "nodriver.cdp.inspector.Detached": [[29, 1, 1, "", "reason"]], "nodriver.cdp.io": [[30, 0, 1, "", "StreamHandle"], [30, 5, 1, "", "close"], [30, 5, 1, "", "read"], [30, 5, 1, "", "resolve_blob"]], "nodriver.cdp.layer_tree": [[31, 0, 1, "", "Layer"], [31, 0, 1, "", "LayerId"], [31, 0, 1, "", "LayerPainted"], [31, 0, 1, "", "LayerTreeDidChange"], [31, 0, 1, "", "PaintProfile"], [31, 0, 1, "", "PictureTile"], [31, 0, 1, "", "ScrollRect"], [31, 0, 1, "", "SnapshotId"], [31, 0, 1, "", "StickyPositionConstraint"], [31, 5, 1, "", "compositing_reasons"], [31, 5, 1, "", "disable"], [31, 5, 1, "", "enable"], [31, 5, 1, "", "load_snapshot"], [31, 5, 1, "", "make_snapshot"], [31, 5, 1, "", "profile_snapshot"], [31, 5, 1, "", "release_snapshot"], [31, 5, 1, "", "replay_snapshot"], [31, 5, 1, "", "snapshot_command_log"]], "nodriver.cdp.layer_tree.Layer": [[31, 1, 1, "", "anchor_x"], [31, 1, 1, "", "anchor_y"], [31, 1, 1, "", "anchor_z"], [31, 1, 1, "", "backend_node_id"], [31, 1, 1, "", "draws_content"], [31, 1, 1, "", "height"], [31, 1, 1, "", "invisible"], [31, 1, 1, "", "layer_id"], [31, 1, 1, "", "offset_x"], [31, 1, 1, "", "offset_y"], [31, 1, 1, "", "paint_count"], [31, 1, 1, "", "parent_layer_id"], [31, 1, 1, "", "scroll_rects"], [31, 1, 1, "", "sticky_position_constraint"], [31, 1, 1, "", "transform"], [31, 1, 1, "", "width"]], "nodriver.cdp.layer_tree.LayerPainted": [[31, 1, 1, "", "clip"], [31, 1, 1, "", "layer_id"]], "nodriver.cdp.layer_tree.LayerTreeDidChange": [[31, 1, 1, "", "layers"]], "nodriver.cdp.layer_tree.PictureTile": [[31, 1, 1, "", "picture"], [31, 1, 1, "", "x"], [31, 1, 1, "", "y"]], "nodriver.cdp.layer_tree.ScrollRect": [[31, 1, 1, "", "rect"], [31, 1, 1, "", "type_"]], "nodriver.cdp.layer_tree.StickyPositionConstraint": [[31, 1, 1, "", "containing_block_rect"], [31, 1, 1, "", "nearest_layer_shifting_containing_block"], [31, 1, 1, "", "nearest_layer_shifting_sticky_box"], [31, 1, 1, "", "sticky_box_rect"]], "nodriver.cdp.log": [[32, 0, 1, "", "EntryAdded"], [32, 0, 1, "", "LogEntry"], [32, 0, 1, "", "ViolationSetting"], [32, 5, 1, "", "clear"], [32, 5, 1, "", "disable"], [32, 5, 1, "", "enable"], [32, 5, 1, "", "start_violations_report"], [32, 5, 1, "", "stop_violations_report"]], "nodriver.cdp.log.EntryAdded": [[32, 1, 1, "", "entry"]], "nodriver.cdp.log.LogEntry": [[32, 1, 1, "", "args"], [32, 1, 1, "", "category"], [32, 1, 1, "", "level"], [32, 1, 1, "", "line_number"], [32, 1, 1, "", "network_request_id"], [32, 1, 1, "", "source"], [32, 1, 1, "", "stack_trace"], [32, 1, 1, "", "text"], [32, 1, 1, "", "timestamp"], [32, 1, 1, "", "url"], [32, 1, 1, "", "worker_id"]], "nodriver.cdp.log.ViolationSetting": [[32, 1, 1, "", "name"], [32, 1, 1, "", "threshold"]], "nodriver.cdp.media": [[33, 0, 1, "", "PlayerError"], [33, 0, 1, "", "PlayerErrorSourceLocation"], [33, 0, 1, "", "PlayerErrorsRaised"], [33, 0, 1, "", "PlayerEvent"], [33, 0, 1, "", "PlayerEventsAdded"], [33, 0, 1, "", "PlayerId"], [33, 0, 1, "", "PlayerMessage"], [33, 0, 1, "", "PlayerMessagesLogged"], [33, 0, 1, "", "PlayerPropertiesChanged"], [33, 0, 1, "", "PlayerProperty"], [33, 0, 1, "", "PlayersCreated"], [33, 0, 1, "", "Timestamp"], [33, 5, 1, "", "disable"], [33, 5, 1, "", "enable"]], "nodriver.cdp.media.PlayerError": [[33, 1, 1, "", "cause"], [33, 1, 1, "", "code"], [33, 1, 1, "", "data"], [33, 1, 1, "", "error_type"], [33, 1, 1, "", "stack"]], "nodriver.cdp.media.PlayerErrorSourceLocation": [[33, 1, 1, "", "file"], [33, 1, 1, "", "line"]], "nodriver.cdp.media.PlayerErrorsRaised": [[33, 1, 1, "", "errors"], [33, 1, 1, "", "player_id"]], "nodriver.cdp.media.PlayerEvent": [[33, 1, 1, "", "timestamp"], [33, 1, 1, "", "value"]], "nodriver.cdp.media.PlayerEventsAdded": [[33, 1, 1, "", "events"], [33, 1, 1, "", "player_id"]], "nodriver.cdp.media.PlayerMessage": [[33, 1, 1, "", "level"], [33, 1, 1, "", "message"]], "nodriver.cdp.media.PlayerMessagesLogged": [[33, 1, 1, "", "messages"], [33, 1, 1, "", "player_id"]], "nodriver.cdp.media.PlayerPropertiesChanged": [[33, 1, 1, "", "player_id"], [33, 1, 1, "", "properties"]], "nodriver.cdp.media.PlayerProperty": [[33, 1, 1, "", "name"], [33, 1, 1, "", "value"]], "nodriver.cdp.media.PlayersCreated": [[33, 1, 1, "", "players"]], "nodriver.cdp.memory": [[34, 0, 1, "", "Module"], [34, 0, 1, "", "PressureLevel"], [34, 0, 1, "", "SamplingProfile"], [34, 0, 1, "", "SamplingProfileNode"], [34, 5, 1, "", "forcibly_purge_java_script_memory"], [34, 5, 1, "", "get_all_time_sampling_profile"], [34, 5, 1, "", "get_browser_sampling_profile"], [34, 5, 1, "", "get_dom_counters"], [34, 5, 1, "", "get_sampling_profile"], [34, 5, 1, "", "prepare_for_leak_detection"], [34, 5, 1, "", "set_pressure_notifications_suppressed"], [34, 5, 1, "", "simulate_pressure_notification"], [34, 5, 1, "", "start_sampling"], [34, 5, 1, "", "stop_sampling"]], "nodriver.cdp.memory.Module": [[34, 1, 1, "", "base_address"], [34, 1, 1, "", "name"], [34, 1, 1, "", "size"], [34, 1, 1, "", "uuid"]], "nodriver.cdp.memory.PressureLevel": [[34, 1, 1, "", "CRITICAL"], [34, 1, 1, "", "MODERATE"]], "nodriver.cdp.memory.SamplingProfile": [[34, 1, 1, "", "modules"], [34, 1, 1, "", "samples"]], "nodriver.cdp.memory.SamplingProfileNode": [[34, 1, 1, "", "size"], [34, 1, 1, "", "stack"], [34, 1, 1, "", "total"]], "nodriver.cdp.network": [[35, 0, 1, "", "AlternateProtocolUsage"], [35, 0, 1, "", "AssociatedCookie"], [35, 0, 1, "", "AuthChallenge"], [35, 0, 1, "", "AuthChallengeResponse"], [35, 0, 1, "", "BlockedReason"], [35, 0, 1, "", "BlockedSetCookieWithReason"], [35, 0, 1, "", "CachedResource"], [35, 0, 1, "", "CertificateTransparencyCompliance"], [35, 0, 1, "", "ClientSecurityState"], [35, 0, 1, "", "ConnectTiming"], [35, 0, 1, "", "ConnectionType"], [35, 0, 1, "", "ContentEncoding"], [35, 0, 1, "", "ContentSecurityPolicySource"], [35, 0, 1, "", "ContentSecurityPolicyStatus"], [35, 0, 1, "", "Cookie"], [35, 0, 1, "", "CookieBlockedReason"], [35, 0, 1, "", "CookieExemptionReason"], [35, 0, 1, "", "CookieParam"], [35, 0, 1, "", "CookiePartitionKey"], [35, 0, 1, "", "CookiePriority"], [35, 0, 1, "", "CookieSameSite"], [35, 0, 1, "", "CookieSourceScheme"], [35, 0, 1, "", "CorsError"], [35, 0, 1, "", "CorsErrorStatus"], [35, 0, 1, "", "CrossOriginEmbedderPolicyStatus"], [35, 0, 1, "", "CrossOriginEmbedderPolicyValue"], [35, 0, 1, "", "CrossOriginOpenerPolicyStatus"], [35, 0, 1, "", "CrossOriginOpenerPolicyValue"], [35, 0, 1, "", "DataReceived"], [35, 0, 1, "", "ErrorReason"], [35, 0, 1, "", "EventSourceMessageReceived"], [35, 0, 1, "", "ExemptedSetCookieWithReason"], [35, 0, 1, "", "Headers"], [35, 0, 1, "", "IPAddressSpace"], [35, 0, 1, "", "Initiator"], [35, 0, 1, "", "InterceptionId"], [35, 0, 1, "", "InterceptionStage"], [35, 0, 1, "", "LoadNetworkResourceOptions"], [35, 0, 1, "", "LoadNetworkResourcePageResult"], [35, 0, 1, "", "LoaderId"], [35, 0, 1, "", "LoadingFailed"], [35, 0, 1, "", "LoadingFinished"], [35, 0, 1, "", "MonotonicTime"], [35, 0, 1, "", "PolicyUpdated"], [35, 0, 1, "", "PostDataEntry"], [35, 0, 1, "", "PrivateNetworkRequestPolicy"], [35, 0, 1, "", "ReportId"], [35, 0, 1, "", "ReportStatus"], [35, 0, 1, "", "ReportingApiEndpoint"], [35, 0, 1, "", "ReportingApiEndpointsChangedForOrigin"], [35, 0, 1, "", "ReportingApiReport"], [35, 0, 1, "", "ReportingApiReportAdded"], [35, 0, 1, "", "ReportingApiReportUpdated"], [35, 0, 1, "", "Request"], [35, 0, 1, "", "RequestId"], [35, 0, 1, "", "RequestIntercepted"], [35, 0, 1, "", "RequestPattern"], [35, 0, 1, "", "RequestServedFromCache"], [35, 0, 1, "", "RequestWillBeSent"], [35, 0, 1, "", "RequestWillBeSentExtraInfo"], [35, 0, 1, "", "ResourceChangedPriority"], [35, 0, 1, "", "ResourcePriority"], [35, 0, 1, "", "ResourceTiming"], [35, 0, 1, "", "ResourceType"], [35, 0, 1, "", "Response"], [35, 0, 1, "", "ResponseReceived"], [35, 0, 1, "", "ResponseReceivedEarlyHints"], [35, 0, 1, "", "ResponseReceivedExtraInfo"], [35, 0, 1, "", "SecurityDetails"], [35, 0, 1, "", "SecurityIsolationStatus"], [35, 0, 1, "", "ServiceWorkerResponseSource"], [35, 0, 1, "", "ServiceWorkerRouterInfo"], [35, 0, 1, "", "ServiceWorkerRouterSource"], [35, 0, 1, "", "SetCookieBlockedReason"], [35, 0, 1, "", "SignedCertificateTimestamp"], [35, 0, 1, "", "SignedExchangeError"], [35, 0, 1, "", "SignedExchangeErrorField"], [35, 0, 1, "", "SignedExchangeHeader"], [35, 0, 1, "", "SignedExchangeInfo"], [35, 0, 1, "", "SignedExchangeReceived"], [35, 0, 1, "", "SignedExchangeSignature"], [35, 0, 1, "", "SubresourceWebBundleInnerResponseError"], [35, 0, 1, "", "SubresourceWebBundleInnerResponseParsed"], [35, 0, 1, "", "SubresourceWebBundleMetadataError"], [35, 0, 1, "", "SubresourceWebBundleMetadataReceived"], [35, 0, 1, "", "TimeSinceEpoch"], [35, 0, 1, "", "TrustTokenOperationDone"], [35, 0, 1, "", "TrustTokenOperationType"], [35, 0, 1, "", "TrustTokenParams"], [35, 0, 1, "", "WebSocketClosed"], [35, 0, 1, "", "WebSocketCreated"], [35, 0, 1, "", "WebSocketFrame"], [35, 0, 1, "", "WebSocketFrameError"], [35, 0, 1, "", "WebSocketFrameReceived"], [35, 0, 1, "", "WebSocketFrameSent"], [35, 0, 1, "", "WebSocketHandshakeResponseReceived"], [35, 0, 1, "", "WebSocketRequest"], [35, 0, 1, "", "WebSocketResponse"], [35, 0, 1, "", "WebSocketWillSendHandshakeRequest"], [35, 0, 1, "", "WebTransportClosed"], [35, 0, 1, "", "WebTransportConnectionEstablished"], [35, 0, 1, "", "WebTransportCreated"], [35, 5, 1, "", "can_clear_browser_cache"], [35, 5, 1, "", "can_clear_browser_cookies"], [35, 5, 1, "", "can_emulate_network_conditions"], [35, 5, 1, "", "clear_accepted_encodings_override"], [35, 5, 1, "", "clear_browser_cache"], [35, 5, 1, "", "clear_browser_cookies"], [35, 5, 1, "", "continue_intercepted_request"], [35, 5, 1, "", "delete_cookies"], [35, 5, 1, "", "disable"], [35, 5, 1, "", "emulate_network_conditions"], [35, 5, 1, "", "enable"], [35, 5, 1, "", "enable_reporting_api"], [35, 5, 1, "", "get_all_cookies"], [35, 5, 1, "", "get_certificate"], [35, 5, 1, "", "get_cookies"], [35, 5, 1, "", "get_request_post_data"], [35, 5, 1, "", "get_response_body"], [35, 5, 1, "", "get_response_body_for_interception"], [35, 5, 1, "", "get_security_isolation_status"], [35, 5, 1, "", "load_network_resource"], [35, 5, 1, "", "replay_xhr"], [35, 5, 1, "", "search_in_response_body"], [35, 5, 1, "", "set_accepted_encodings"], [35, 5, 1, "", "set_attach_debug_stack"], [35, 5, 1, "", "set_blocked_ur_ls"], [35, 5, 1, "", "set_bypass_service_worker"], [35, 5, 1, "", "set_cache_disabled"], [35, 5, 1, "", "set_cookie"], [35, 5, 1, "", "set_cookies"], [35, 5, 1, "", "set_extra_http_headers"], [35, 5, 1, "", "set_request_interception"], [35, 5, 1, "", "set_user_agent_override"], [35, 5, 1, "", "stream_resource_content"], [35, 5, 1, "", "take_response_body_for_interception_as_stream"]], "nodriver.cdp.network.AlternateProtocolUsage": [[35, 1, 1, "", "ALTERNATIVE_JOB_WON_RACE"], [35, 1, 1, "", "ALTERNATIVE_JOB_WON_WITHOUT_RACE"], [35, 1, 1, "", "BROKEN"], [35, 1, 1, "", "DNS_ALPN_H3_JOB_WON_RACE"], [35, 1, 1, "", "DNS_ALPN_H3_JOB_WON_WITHOUT_RACE"], [35, 1, 1, "", "MAIN_JOB_WON_RACE"], [35, 1, 1, "", "MAPPING_MISSING"], [35, 1, 1, "", "UNSPECIFIED_REASON"]], "nodriver.cdp.network.AssociatedCookie": [[35, 1, 1, "", "blocked_reasons"], [35, 1, 1, "", "cookie"], [35, 1, 1, "", "exemption_reason"]], "nodriver.cdp.network.AuthChallenge": [[35, 1, 1, "", "origin"], [35, 1, 1, "", "realm"], [35, 1, 1, "", "scheme"], [35, 1, 1, "", "source"]], "nodriver.cdp.network.AuthChallengeResponse": [[35, 1, 1, "", "password"], [35, 1, 1, "", "response"], [35, 1, 1, "", "username"]], "nodriver.cdp.network.BlockedReason": [[35, 1, 1, "", "COEP_FRAME_RESOURCE_NEEDS_COEP_HEADER"], [35, 1, 1, "", "CONTENT_TYPE"], [35, 1, 1, "", "COOP_SANDBOXED_IFRAME_CANNOT_NAVIGATE_TO_COOP_PAGE"], [35, 1, 1, "", "CORP_NOT_SAME_ORIGIN"], [35, 1, 1, "", "CORP_NOT_SAME_ORIGIN_AFTER_DEFAULTED_TO_SAME_ORIGIN_BY_COEP"], [35, 1, 1, "", "CORP_NOT_SAME_ORIGIN_AFTER_DEFAULTED_TO_SAME_ORIGIN_BY_COEP_AND_DIP"], [35, 1, 1, "", "CORP_NOT_SAME_ORIGIN_AFTER_DEFAULTED_TO_SAME_ORIGIN_BY_DIP"], [35, 1, 1, "", "CORP_NOT_SAME_SITE"], [35, 1, 1, "", "CSP"], [35, 1, 1, "", "INSPECTOR"], [35, 1, 1, "", "MIXED_CONTENT"], [35, 1, 1, "", "ORIGIN"], [35, 1, 1, "", "OTHER"], [35, 1, 1, "", "SUBRESOURCE_FILTER"]], "nodriver.cdp.network.BlockedSetCookieWithReason": [[35, 1, 1, "", "blocked_reasons"], [35, 1, 1, "", "cookie"], [35, 1, 1, "", "cookie_line"]], "nodriver.cdp.network.CachedResource": [[35, 1, 1, "", "body_size"], [35, 1, 1, "", "response"], [35, 1, 1, "", "type_"], [35, 1, 1, "", "url"]], "nodriver.cdp.network.CertificateTransparencyCompliance": [[35, 1, 1, "", "COMPLIANT"], [35, 1, 1, "", "NOT_COMPLIANT"], [35, 1, 1, "", "UNKNOWN"]], "nodriver.cdp.network.ClientSecurityState": [[35, 1, 1, "", "initiator_ip_address_space"], [35, 1, 1, "", "initiator_is_secure_context"], [35, 1, 1, "", "private_network_request_policy"]], "nodriver.cdp.network.ConnectTiming": [[35, 1, 1, "", "request_time"]], "nodriver.cdp.network.ConnectionType": [[35, 1, 1, "", "BLUETOOTH"], [35, 1, 1, "", "CELLULAR2G"], [35, 1, 1, "", "CELLULAR3G"], [35, 1, 1, "", "CELLULAR4G"], [35, 1, 1, "", "ETHERNET"], [35, 1, 1, "", "NONE"], [35, 1, 1, "", "OTHER"], [35, 1, 1, "", "WIFI"], [35, 1, 1, "", "WIMAX"]], "nodriver.cdp.network.ContentEncoding": [[35, 1, 1, "", "BR"], [35, 1, 1, "", "DEFLATE"], [35, 1, 1, "", "GZIP"], [35, 1, 1, "", "ZSTD"]], "nodriver.cdp.network.ContentSecurityPolicySource": [[35, 1, 1, "", "HTTP"], [35, 1, 1, "", "META"]], "nodriver.cdp.network.ContentSecurityPolicyStatus": [[35, 1, 1, "", "effective_directives"], [35, 1, 1, "", "is_enforced"], [35, 1, 1, "", "source"]], "nodriver.cdp.network.Cookie": [[35, 1, 1, "", "domain"], [35, 1, 1, "", "expires"], [35, 1, 1, "", "http_only"], [35, 1, 1, "", "name"], [35, 1, 1, "", "partition_key"], [35, 1, 1, "", "partition_key_opaque"], [35, 1, 1, "", "path"], [35, 1, 1, "", "priority"], [35, 1, 1, "", "same_party"], [35, 1, 1, "", "same_site"], [35, 1, 1, "", "secure"], [35, 1, 1, "", "session"], [35, 1, 1, "", "size"], [35, 1, 1, "", "source_port"], [35, 1, 1, "", "source_scheme"], [35, 1, 1, "", "value"]], "nodriver.cdp.network.CookieBlockedReason": [[35, 1, 1, "", "DOMAIN_MISMATCH"], [35, 1, 1, "", "NAME_VALUE_PAIR_EXCEEDS_MAX_SIZE"], [35, 1, 1, "", "NOT_ON_PATH"], [35, 1, 1, "", "SAME_PARTY_FROM_CROSS_PARTY_CONTEXT"], [35, 1, 1, "", "SAME_SITE_LAX"], [35, 1, 1, "", "SAME_SITE_NONE_INSECURE"], [35, 1, 1, "", "SAME_SITE_STRICT"], [35, 1, 1, "", "SAME_SITE_UNSPECIFIED_TREATED_AS_LAX"], [35, 1, 1, "", "SCHEMEFUL_SAME_SITE_LAX"], [35, 1, 1, "", "SCHEMEFUL_SAME_SITE_STRICT"], [35, 1, 1, "", "SCHEMEFUL_SAME_SITE_UNSPECIFIED_TREATED_AS_LAX"], [35, 1, 1, "", "SECURE_ONLY"], [35, 1, 1, "", "THIRD_PARTY_BLOCKED_IN_FIRST_PARTY_SET"], [35, 1, 1, "", "THIRD_PARTY_PHASEOUT"], [35, 1, 1, "", "UNKNOWN_ERROR"], [35, 1, 1, "", "USER_PREFERENCES"]], "nodriver.cdp.network.CookieExemptionReason": [[35, 1, 1, "", "CORS_OPT_IN"], [35, 1, 1, "", "ENTERPRISE_POLICY"], [35, 1, 1, "", "NONE"], [35, 1, 1, "", "SCHEME"], [35, 1, 1, "", "STORAGE_ACCESS"], [35, 1, 1, "", "TOP_LEVEL_STORAGE_ACCESS"], [35, 1, 1, "", "TPCD_DEPRECATION_TRIAL"], [35, 1, 1, "", "TPCD_HEURISTICS"], [35, 1, 1, "", "TPCD_METADATA"], [35, 1, 1, "", "USER_SETTING"]], "nodriver.cdp.network.CookieParam": [[35, 1, 1, "", "domain"], [35, 1, 1, "", "expires"], [35, 1, 1, "", "http_only"], [35, 1, 1, "", "name"], [35, 1, 1, "", "partition_key"], [35, 1, 1, "", "path"], [35, 1, 1, "", "priority"], [35, 1, 1, "", "same_party"], [35, 1, 1, "", "same_site"], [35, 1, 1, "", "secure"], [35, 1, 1, "", "source_port"], [35, 1, 1, "", "source_scheme"], [35, 1, 1, "", "url"], [35, 1, 1, "", "value"]], "nodriver.cdp.network.CookiePartitionKey": [[35, 1, 1, "", "has_cross_site_ancestor"], [35, 1, 1, "", "top_level_site"]], "nodriver.cdp.network.CookiePriority": [[35, 1, 1, "", "HIGH"], [35, 1, 1, "", "LOW"], [35, 1, 1, "", "MEDIUM"]], "nodriver.cdp.network.CookieSameSite": [[35, 1, 1, "", "LAX"], [35, 1, 1, "", "NONE"], [35, 1, 1, "", "STRICT"]], "nodriver.cdp.network.CookieSourceScheme": [[35, 1, 1, "", "NON_SECURE"], [35, 1, 1, "", "SECURE"], [35, 1, 1, "", "UNSET"]], "nodriver.cdp.network.CorsError": [[35, 1, 1, "", "ALLOW_ORIGIN_MISMATCH"], [35, 1, 1, "", "CORS_DISABLED_SCHEME"], [35, 1, 1, "", "DISALLOWED_BY_MODE"], [35, 1, 1, "", "HEADER_DISALLOWED_BY_PREFLIGHT_RESPONSE"], [35, 1, 1, "", "INSECURE_PRIVATE_NETWORK"], [35, 1, 1, "", "INVALID_ALLOW_CREDENTIALS"], [35, 1, 1, "", "INVALID_ALLOW_HEADERS_PREFLIGHT_RESPONSE"], [35, 1, 1, "", "INVALID_ALLOW_METHODS_PREFLIGHT_RESPONSE"], [35, 1, 1, "", "INVALID_ALLOW_ORIGIN_VALUE"], [35, 1, 1, "", "INVALID_PRIVATE_NETWORK_ACCESS"], [35, 1, 1, "", "INVALID_RESPONSE"], [35, 1, 1, "", "METHOD_DISALLOWED_BY_PREFLIGHT_RESPONSE"], [35, 1, 1, "", "MISSING_ALLOW_ORIGIN_HEADER"], [35, 1, 1, "", "MULTIPLE_ALLOW_ORIGIN_VALUES"], [35, 1, 1, "", "NO_CORS_REDIRECT_MODE_NOT_FOLLOW"], [35, 1, 1, "", "PREFLIGHT_ALLOW_ORIGIN_MISMATCH"], [35, 1, 1, "", "PREFLIGHT_DISALLOWED_REDIRECT"], [35, 1, 1, "", "PREFLIGHT_INVALID_ALLOW_CREDENTIALS"], [35, 1, 1, "", "PREFLIGHT_INVALID_ALLOW_EXTERNAL"], [35, 1, 1, "", "PREFLIGHT_INVALID_ALLOW_ORIGIN_VALUE"], [35, 1, 1, "", "PREFLIGHT_INVALID_ALLOW_PRIVATE_NETWORK"], [35, 1, 1, "", "PREFLIGHT_INVALID_STATUS"], [35, 1, 1, "", "PREFLIGHT_MISSING_ALLOW_EXTERNAL"], [35, 1, 1, "", "PREFLIGHT_MISSING_ALLOW_ORIGIN_HEADER"], [35, 1, 1, "", "PREFLIGHT_MISSING_ALLOW_PRIVATE_NETWORK"], [35, 1, 1, "", "PREFLIGHT_MISSING_PRIVATE_NETWORK_ACCESS_ID"], [35, 1, 1, "", "PREFLIGHT_MISSING_PRIVATE_NETWORK_ACCESS_NAME"], [35, 1, 1, "", "PREFLIGHT_MULTIPLE_ALLOW_ORIGIN_VALUES"], [35, 1, 1, "", "PREFLIGHT_WILDCARD_ORIGIN_NOT_ALLOWED"], [35, 1, 1, "", "PRIVATE_NETWORK_ACCESS_PERMISSION_DENIED"], [35, 1, 1, "", "PRIVATE_NETWORK_ACCESS_PERMISSION_UNAVAILABLE"], [35, 1, 1, "", "REDIRECT_CONTAINS_CREDENTIALS"], [35, 1, 1, "", "UNEXPECTED_PRIVATE_NETWORK_ACCESS"], [35, 1, 1, "", "WILDCARD_ORIGIN_NOT_ALLOWED"]], "nodriver.cdp.network.CorsErrorStatus": [[35, 1, 1, "", "cors_error"], [35, 1, 1, "", "failed_parameter"]], "nodriver.cdp.network.CrossOriginEmbedderPolicyStatus": [[35, 1, 1, "", "report_only_reporting_endpoint"], [35, 1, 1, "", "report_only_value"], [35, 1, 1, "", "reporting_endpoint"], [35, 1, 1, "", "value"]], "nodriver.cdp.network.CrossOriginEmbedderPolicyValue": [[35, 1, 1, "", "CREDENTIALLESS"], [35, 1, 1, "", "NONE"], [35, 1, 1, "", "REQUIRE_CORP"]], "nodriver.cdp.network.CrossOriginOpenerPolicyStatus": [[35, 1, 1, "", "report_only_reporting_endpoint"], [35, 1, 1, "", "report_only_value"], [35, 1, 1, "", "reporting_endpoint"], [35, 1, 1, "", "value"]], "nodriver.cdp.network.CrossOriginOpenerPolicyValue": [[35, 1, 1, "", "RESTRICT_PROPERTIES"], [35, 1, 1, "", "RESTRICT_PROPERTIES_PLUS_COEP"], [35, 1, 1, "", "SAME_ORIGIN"], [35, 1, 1, "", "SAME_ORIGIN_ALLOW_POPUPS"], [35, 1, 1, "", "SAME_ORIGIN_PLUS_COEP"], [35, 1, 1, "", "UNSAFE_NONE"]], "nodriver.cdp.network.DataReceived": [[35, 1, 1, "", "data"], [35, 1, 1, "", "data_length"], [35, 1, 1, "", "encoded_data_length"], [35, 1, 1, "", "request_id"], [35, 1, 1, "", "timestamp"]], "nodriver.cdp.network.ErrorReason": [[35, 1, 1, "", "ABORTED"], [35, 1, 1, "", "ACCESS_DENIED"], [35, 1, 1, "", "ADDRESS_UNREACHABLE"], [35, 1, 1, "", "BLOCKED_BY_CLIENT"], [35, 1, 1, "", "BLOCKED_BY_RESPONSE"], [35, 1, 1, "", "CONNECTION_ABORTED"], [35, 1, 1, "", "CONNECTION_CLOSED"], [35, 1, 1, "", "CONNECTION_FAILED"], [35, 1, 1, "", "CONNECTION_REFUSED"], [35, 1, 1, "", "CONNECTION_RESET"], [35, 1, 1, "", "FAILED"], [35, 1, 1, "", "INTERNET_DISCONNECTED"], [35, 1, 1, "", "NAME_NOT_RESOLVED"], [35, 1, 1, "", "TIMED_OUT"]], "nodriver.cdp.network.EventSourceMessageReceived": [[35, 1, 1, "", "data"], [35, 1, 1, "", "event_id"], [35, 1, 1, "", "event_name"], [35, 1, 1, "", "request_id"], [35, 1, 1, "", "timestamp"]], "nodriver.cdp.network.ExemptedSetCookieWithReason": [[35, 1, 1, "", "cookie"], [35, 1, 1, "", "cookie_line"], [35, 1, 1, "", "exemption_reason"]], "nodriver.cdp.network.IPAddressSpace": [[35, 1, 1, "", "LOCAL"], [35, 1, 1, "", "PRIVATE"], [35, 1, 1, "", "PUBLIC"], [35, 1, 1, "", "UNKNOWN"]], "nodriver.cdp.network.Initiator": [[35, 1, 1, "", "column_number"], [35, 1, 1, "", "line_number"], [35, 1, 1, "", "request_id"], [35, 1, 1, "", "stack"], [35, 1, 1, "", "type_"], [35, 1, 1, "", "url"]], "nodriver.cdp.network.InterceptionStage": [[35, 1, 1, "", "HEADERS_RECEIVED"], [35, 1, 1, "", "REQUEST"]], "nodriver.cdp.network.LoadNetworkResourceOptions": [[35, 1, 1, "", "disable_cache"], [35, 1, 1, "", "include_credentials"]], "nodriver.cdp.network.LoadNetworkResourcePageResult": [[35, 1, 1, "", "headers"], [35, 1, 1, "", "http_status_code"], [35, 1, 1, "", "net_error"], [35, 1, 1, "", "net_error_name"], [35, 1, 1, "", "stream"], [35, 1, 1, "", "success"]], "nodriver.cdp.network.LoadingFailed": [[35, 1, 1, "", "blocked_reason"], [35, 1, 1, "", "canceled"], [35, 1, 1, "", "cors_error_status"], [35, 1, 1, "", "error_text"], [35, 1, 1, "", "request_id"], [35, 1, 1, "", "timestamp"], [35, 1, 1, "", "type_"]], "nodriver.cdp.network.LoadingFinished": [[35, 1, 1, "", "encoded_data_length"], [35, 1, 1, "", "request_id"], [35, 1, 1, "", "timestamp"]], "nodriver.cdp.network.PostDataEntry": [[35, 1, 1, "", "bytes_"]], "nodriver.cdp.network.PrivateNetworkRequestPolicy": [[35, 1, 1, "", "ALLOW"], [35, 1, 1, "", "BLOCK_FROM_INSECURE_TO_MORE_PRIVATE"], [35, 1, 1, "", "PREFLIGHT_BLOCK"], [35, 1, 1, "", "PREFLIGHT_WARN"], [35, 1, 1, "", "WARN_FROM_INSECURE_TO_MORE_PRIVATE"]], "nodriver.cdp.network.ReportStatus": [[35, 1, 1, "", "MARKED_FOR_REMOVAL"], [35, 1, 1, "", "PENDING"], [35, 1, 1, "", "QUEUED"], [35, 1, 1, "", "SUCCESS"]], "nodriver.cdp.network.ReportingApiEndpoint": [[35, 1, 1, "", "group_name"], [35, 1, 1, "", "url"]], "nodriver.cdp.network.ReportingApiEndpointsChangedForOrigin": [[35, 1, 1, "", "endpoints"], [35, 1, 1, "", "origin"]], "nodriver.cdp.network.ReportingApiReport": [[35, 1, 1, "", "body"], [35, 1, 1, "", "completed_attempts"], [35, 1, 1, "", "depth"], [35, 1, 1, "", "destination"], [35, 1, 1, "", "id_"], [35, 1, 1, "", "initiator_url"], [35, 1, 1, "", "status"], [35, 1, 1, "", "timestamp"], [35, 1, 1, "", "type_"]], "nodriver.cdp.network.ReportingApiReportAdded": [[35, 1, 1, "", "report"]], "nodriver.cdp.network.ReportingApiReportUpdated": [[35, 1, 1, "", "report"]], "nodriver.cdp.network.Request": [[35, 1, 1, "", "has_post_data"], [35, 1, 1, "", "headers"], [35, 1, 1, "", "initial_priority"], [35, 1, 1, "", "is_link_preload"], [35, 1, 1, "", "is_same_site"], [35, 1, 1, "", "method"], [35, 1, 1, "", "mixed_content_type"], [35, 1, 1, "", "post_data"], [35, 1, 1, "", "post_data_entries"], [35, 1, 1, "", "referrer_policy"], [35, 1, 1, "", "trust_token_params"], [35, 1, 1, "", "url"], [35, 1, 1, "", "url_fragment"]], "nodriver.cdp.network.RequestIntercepted": [[35, 1, 1, "", "auth_challenge"], [35, 1, 1, "", "frame_id"], [35, 1, 1, "", "interception_id"], [35, 1, 1, "", "is_download"], [35, 1, 1, "", "is_navigation_request"], [35, 1, 1, "", "redirect_url"], [35, 1, 1, "", "request"], [35, 1, 1, "", "request_id"], [35, 1, 1, "", "resource_type"], [35, 1, 1, "", "response_error_reason"], [35, 1, 1, "", "response_headers"], [35, 1, 1, "", "response_status_code"]], "nodriver.cdp.network.RequestPattern": [[35, 1, 1, "", "interception_stage"], [35, 1, 1, "", "resource_type"], [35, 1, 1, "", "url_pattern"]], "nodriver.cdp.network.RequestServedFromCache": [[35, 1, 1, "", "request_id"]], "nodriver.cdp.network.RequestWillBeSent": [[35, 1, 1, "", "document_url"], [35, 1, 1, "", "frame_id"], [35, 1, 1, "", "has_user_gesture"], [35, 1, 1, "", "initiator"], [35, 1, 1, "", "loader_id"], [35, 1, 1, "", "redirect_has_extra_info"], [35, 1, 1, "", "redirect_response"], [35, 1, 1, "", "request"], [35, 1, 1, "", "request_id"], [35, 1, 1, "", "timestamp"], [35, 1, 1, "", "type_"], [35, 1, 1, "", "wall_time"]], "nodriver.cdp.network.RequestWillBeSentExtraInfo": [[35, 1, 1, "", "associated_cookies"], [35, 1, 1, "", "client_security_state"], [35, 1, 1, "", "connect_timing"], [35, 1, 1, "", "headers"], [35, 1, 1, "", "request_id"], [35, 1, 1, "", "site_has_cookie_in_other_partition"]], "nodriver.cdp.network.ResourceChangedPriority": [[35, 1, 1, "", "new_priority"], [35, 1, 1, "", "request_id"], [35, 1, 1, "", "timestamp"]], "nodriver.cdp.network.ResourcePriority": [[35, 1, 1, "", "HIGH"], [35, 1, 1, "", "LOW"], [35, 1, 1, "", "MEDIUM"], [35, 1, 1, "", "VERY_HIGH"], [35, 1, 1, "", "VERY_LOW"]], "nodriver.cdp.network.ResourceTiming": [[35, 1, 1, "", "connect_end"], [35, 1, 1, "", "connect_start"], [35, 1, 1, "", "dns_end"], [35, 1, 1, "", "dns_start"], [35, 1, 1, "", "proxy_end"], [35, 1, 1, "", "proxy_start"], [35, 1, 1, "", "push_end"], [35, 1, 1, "", "push_start"], [35, 1, 1, "", "receive_headers_end"], [35, 1, 1, "", "receive_headers_start"], [35, 1, 1, "", "request_time"], [35, 1, 1, "", "send_end"], [35, 1, 1, "", "send_start"], [35, 1, 1, "", "ssl_end"], [35, 1, 1, "", "ssl_start"], [35, 1, 1, "", "worker_cache_lookup_start"], [35, 1, 1, "", "worker_fetch_start"], [35, 1, 1, "", "worker_ready"], [35, 1, 1, "", "worker_respond_with_settled"], [35, 1, 1, "", "worker_router_evaluation_start"], [35, 1, 1, "", "worker_start"]], "nodriver.cdp.network.ResourceType": [[35, 1, 1, "", "CSP_VIOLATION_REPORT"], [35, 1, 1, "", "DOCUMENT"], [35, 1, 1, "", "EVENT_SOURCE"], [35, 1, 1, "", "FETCH"], [35, 1, 1, "", "FONT"], [35, 1, 1, "", "IMAGE"], [35, 1, 1, "", "MANIFEST"], [35, 1, 1, "", "MEDIA"], [35, 1, 1, "", "OTHER"], [35, 1, 1, "", "PING"], [35, 1, 1, "", "PREFETCH"], [35, 1, 1, "", "PREFLIGHT"], [35, 1, 1, "", "SCRIPT"], [35, 1, 1, "", "SIGNED_EXCHANGE"], [35, 1, 1, "", "STYLESHEET"], [35, 1, 1, "", "TEXT_TRACK"], [35, 1, 1, "", "WEB_SOCKET"], [35, 1, 1, "", "XHR"]], "nodriver.cdp.network.Response": [[35, 1, 1, "", "alternate_protocol_usage"], [35, 1, 1, "", "cache_storage_cache_name"], [35, 1, 1, "", "charset"], [35, 1, 1, "", "connection_id"], [35, 1, 1, "", "connection_reused"], [35, 1, 1, "", "encoded_data_length"], [35, 1, 1, "", "from_disk_cache"], [35, 1, 1, "", "from_early_hints"], [35, 1, 1, "", "from_prefetch_cache"], [35, 1, 1, "", "from_service_worker"], [35, 1, 1, "", "headers"], [35, 1, 1, "", "headers_text"], [35, 1, 1, "", "mime_type"], [35, 1, 1, "", "protocol"], [35, 1, 1, "", "remote_ip_address"], [35, 1, 1, "", "remote_port"], [35, 1, 1, "", "request_headers"], [35, 1, 1, "", "request_headers_text"], [35, 1, 1, "", "response_time"], [35, 1, 1, "", "security_details"], [35, 1, 1, "", "security_state"], [35, 1, 1, "", "service_worker_response_source"], [35, 1, 1, "", "service_worker_router_info"], [35, 1, 1, "", "status"], [35, 1, 1, "", "status_text"], [35, 1, 1, "", "timing"], [35, 1, 1, "", "url"]], "nodriver.cdp.network.ResponseReceived": [[35, 1, 1, "", "frame_id"], [35, 1, 1, "", "has_extra_info"], [35, 1, 1, "", "loader_id"], [35, 1, 1, "", "request_id"], [35, 1, 1, "", "response"], [35, 1, 1, "", "timestamp"], [35, 1, 1, "", "type_"]], "nodriver.cdp.network.ResponseReceivedEarlyHints": [[35, 1, 1, "", "headers"], [35, 1, 1, "", "request_id"]], "nodriver.cdp.network.ResponseReceivedExtraInfo": [[35, 1, 1, "", "blocked_cookies"], [35, 1, 1, "", "cookie_partition_key"], [35, 1, 1, "", "cookie_partition_key_opaque"], [35, 1, 1, "", "exempted_cookies"], [35, 1, 1, "", "headers"], [35, 1, 1, "", "headers_text"], [35, 1, 1, "", "request_id"], [35, 1, 1, "", "resource_ip_address_space"], [35, 1, 1, "", "status_code"]], "nodriver.cdp.network.SecurityDetails": [[35, 1, 1, "", "certificate_id"], [35, 1, 1, "", "certificate_transparency_compliance"], [35, 1, 1, "", "cipher"], [35, 1, 1, "", "encrypted_client_hello"], [35, 1, 1, "", "issuer"], [35, 1, 1, "", "key_exchange"], [35, 1, 1, "", "key_exchange_group"], [35, 1, 1, "", "mac"], [35, 1, 1, "", "protocol"], [35, 1, 1, "", "san_list"], [35, 1, 1, "", "server_signature_algorithm"], [35, 1, 1, "", "signed_certificate_timestamp_list"], [35, 1, 1, "", "subject_name"], [35, 1, 1, "", "valid_from"], [35, 1, 1, "", "valid_to"]], "nodriver.cdp.network.SecurityIsolationStatus": [[35, 1, 1, "", "coep"], [35, 1, 1, "", "coop"], [35, 1, 1, "", "csp"]], "nodriver.cdp.network.ServiceWorkerResponseSource": [[35, 1, 1, "", "CACHE_STORAGE"], [35, 1, 1, "", "FALLBACK_CODE"], [35, 1, 1, "", "HTTP_CACHE"], [35, 1, 1, "", "NETWORK"]], "nodriver.cdp.network.ServiceWorkerRouterInfo": [[35, 1, 1, "", "actual_source_type"], [35, 1, 1, "", "matched_source_type"], [35, 1, 1, "", "rule_id_matched"]], "nodriver.cdp.network.ServiceWorkerRouterSource": [[35, 1, 1, "", "CACHE"], [35, 1, 1, "", "FETCH_EVENT"], [35, 1, 1, "", "NETWORK"], [35, 1, 1, "", "RACE_NETWORK_AND_FETCH_HANDLER"]], "nodriver.cdp.network.SetCookieBlockedReason": [[35, 1, 1, "", "DISALLOWED_CHARACTER"], [35, 1, 1, "", "INVALID_DOMAIN"], [35, 1, 1, "", "INVALID_PREFIX"], [35, 1, 1, "", "NAME_VALUE_PAIR_EXCEEDS_MAX_SIZE"], [35, 1, 1, "", "NO_COOKIE_CONTENT"], [35, 1, 1, "", "OVERWRITE_SECURE"], [35, 1, 1, "", "SAME_PARTY_CONFLICTS_WITH_OTHER_ATTRIBUTES"], [35, 1, 1, "", "SAME_PARTY_FROM_CROSS_PARTY_CONTEXT"], [35, 1, 1, "", "SAME_SITE_LAX"], [35, 1, 1, "", "SAME_SITE_NONE_INSECURE"], [35, 1, 1, "", "SAME_SITE_STRICT"], [35, 1, 1, "", "SAME_SITE_UNSPECIFIED_TREATED_AS_LAX"], [35, 1, 1, "", "SCHEMEFUL_SAME_SITE_LAX"], [35, 1, 1, "", "SCHEMEFUL_SAME_SITE_STRICT"], [35, 1, 1, "", "SCHEMEFUL_SAME_SITE_UNSPECIFIED_TREATED_AS_LAX"], [35, 1, 1, "", "SCHEME_NOT_SUPPORTED"], [35, 1, 1, "", "SECURE_ONLY"], [35, 1, 1, "", "SYNTAX_ERROR"], [35, 1, 1, "", "THIRD_PARTY_BLOCKED_IN_FIRST_PARTY_SET"], [35, 1, 1, "", "THIRD_PARTY_PHASEOUT"], [35, 1, 1, "", "UNKNOWN_ERROR"], [35, 1, 1, "", "USER_PREFERENCES"]], "nodriver.cdp.network.SignedCertificateTimestamp": [[35, 1, 1, "", "hash_algorithm"], [35, 1, 1, "", "log_description"], [35, 1, 1, "", "log_id"], [35, 1, 1, "", "origin"], [35, 1, 1, "", "signature_algorithm"], [35, 1, 1, "", "signature_data"], [35, 1, 1, "", "status"], [35, 1, 1, "", "timestamp"]], "nodriver.cdp.network.SignedExchangeError": [[35, 1, 1, "", "error_field"], [35, 1, 1, "", "message"], [35, 1, 1, "", "signature_index"]], "nodriver.cdp.network.SignedExchangeErrorField": [[35, 1, 1, "", "SIGNATURE_CERT_SHA256"], [35, 1, 1, "", "SIGNATURE_CERT_URL"], [35, 1, 1, "", "SIGNATURE_INTEGRITY"], [35, 1, 1, "", "SIGNATURE_SIG"], [35, 1, 1, "", "SIGNATURE_TIMESTAMPS"], [35, 1, 1, "", "SIGNATURE_VALIDITY_URL"]], "nodriver.cdp.network.SignedExchangeHeader": [[35, 1, 1, "", "header_integrity"], [35, 1, 1, "", "request_url"], [35, 1, 1, "", "response_code"], [35, 1, 1, "", "response_headers"], [35, 1, 1, "", "signatures"]], "nodriver.cdp.network.SignedExchangeInfo": [[35, 1, 1, "", "errors"], [35, 1, 1, "", "header"], [35, 1, 1, "", "outer_response"], [35, 1, 1, "", "security_details"]], "nodriver.cdp.network.SignedExchangeReceived": [[35, 1, 1, "", "info"], [35, 1, 1, "", "request_id"]], "nodriver.cdp.network.SignedExchangeSignature": [[35, 1, 1, "", "cert_sha256"], [35, 1, 1, "", "cert_url"], [35, 1, 1, "", "certificates"], [35, 1, 1, "", "date"], [35, 1, 1, "", "expires"], [35, 1, 1, "", "integrity"], [35, 1, 1, "", "label"], [35, 1, 1, "", "signature"], [35, 1, 1, "", "validity_url"]], "nodriver.cdp.network.SubresourceWebBundleInnerResponseError": [[35, 1, 1, "", "bundle_request_id"], [35, 1, 1, "", "error_message"], [35, 1, 1, "", "inner_request_id"], [35, 1, 1, "", "inner_request_url"]], "nodriver.cdp.network.SubresourceWebBundleInnerResponseParsed": [[35, 1, 1, "", "bundle_request_id"], [35, 1, 1, "", "inner_request_id"], [35, 1, 1, "", "inner_request_url"]], "nodriver.cdp.network.SubresourceWebBundleMetadataError": [[35, 1, 1, "", "error_message"], [35, 1, 1, "", "request_id"]], "nodriver.cdp.network.SubresourceWebBundleMetadataReceived": [[35, 1, 1, "", "request_id"], [35, 1, 1, "", "urls"]], "nodriver.cdp.network.TrustTokenOperationDone": [[35, 1, 1, "", "issued_token_count"], [35, 1, 1, "", "issuer_origin"], [35, 1, 1, "", "request_id"], [35, 1, 1, "", "status"], [35, 1, 1, "", "top_level_origin"], [35, 1, 1, "", "type_"]], "nodriver.cdp.network.TrustTokenOperationType": [[35, 1, 1, "", "ISSUANCE"], [35, 1, 1, "", "REDEMPTION"], [35, 1, 1, "", "SIGNING"]], "nodriver.cdp.network.TrustTokenParams": [[35, 1, 1, "", "issuers"], [35, 1, 1, "", "operation"], [35, 1, 1, "", "refresh_policy"]], "nodriver.cdp.network.WebSocketClosed": [[35, 1, 1, "", "request_id"], [35, 1, 1, "", "timestamp"]], "nodriver.cdp.network.WebSocketCreated": [[35, 1, 1, "", "initiator"], [35, 1, 1, "", "request_id"], [35, 1, 1, "", "url"]], "nodriver.cdp.network.WebSocketFrame": [[35, 1, 1, "", "mask"], [35, 1, 1, "", "opcode"], [35, 1, 1, "", "payload_data"]], "nodriver.cdp.network.WebSocketFrameError": [[35, 1, 1, "", "error_message"], [35, 1, 1, "", "request_id"], [35, 1, 1, "", "timestamp"]], "nodriver.cdp.network.WebSocketFrameReceived": [[35, 1, 1, "", "request_id"], [35, 1, 1, "", "response"], [35, 1, 1, "", "timestamp"]], "nodriver.cdp.network.WebSocketFrameSent": [[35, 1, 1, "", "request_id"], [35, 1, 1, "", "response"], [35, 1, 1, "", "timestamp"]], "nodriver.cdp.network.WebSocketHandshakeResponseReceived": [[35, 1, 1, "", "request_id"], [35, 1, 1, "", "response"], [35, 1, 1, "", "timestamp"]], "nodriver.cdp.network.WebSocketRequest": [[35, 1, 1, "", "headers"]], "nodriver.cdp.network.WebSocketResponse": [[35, 1, 1, "", "headers"], [35, 1, 1, "", "headers_text"], [35, 1, 1, "", "request_headers"], [35, 1, 1, "", "request_headers_text"], [35, 1, 1, "", "status"], [35, 1, 1, "", "status_text"]], "nodriver.cdp.network.WebSocketWillSendHandshakeRequest": [[35, 1, 1, "", "request"], [35, 1, 1, "", "request_id"], [35, 1, 1, "", "timestamp"], [35, 1, 1, "", "wall_time"]], "nodriver.cdp.network.WebTransportClosed": [[35, 1, 1, "", "timestamp"], [35, 1, 1, "", "transport_id"]], "nodriver.cdp.network.WebTransportConnectionEstablished": [[35, 1, 1, "", "timestamp"], [35, 1, 1, "", "transport_id"]], "nodriver.cdp.network.WebTransportCreated": [[35, 1, 1, "", "initiator"], [35, 1, 1, "", "timestamp"], [35, 1, 1, "", "transport_id"], [35, 1, 1, "", "url"]], "nodriver.cdp.overlay": [[36, 0, 1, "", "BoxStyle"], [36, 0, 1, "", "ColorFormat"], [36, 0, 1, "", "ContainerQueryContainerHighlightConfig"], [36, 0, 1, "", "ContainerQueryHighlightConfig"], [36, 0, 1, "", "ContrastAlgorithm"], [36, 0, 1, "", "FlexContainerHighlightConfig"], [36, 0, 1, "", "FlexItemHighlightConfig"], [36, 0, 1, "", "FlexNodeHighlightConfig"], [36, 0, 1, "", "GridHighlightConfig"], [36, 0, 1, "", "GridNodeHighlightConfig"], [36, 0, 1, "", "HighlightConfig"], [36, 0, 1, "", "HingeConfig"], [36, 0, 1, "", "InspectMode"], [36, 0, 1, "", "InspectModeCanceled"], [36, 0, 1, "", "InspectNodeRequested"], [36, 0, 1, "", "IsolatedElementHighlightConfig"], [36, 0, 1, "", "IsolationModeHighlightConfig"], [36, 0, 1, "", "LineStyle"], [36, 0, 1, "", "NodeHighlightRequested"], [36, 0, 1, "", "ScreenshotRequested"], [36, 0, 1, "", "ScrollSnapContainerHighlightConfig"], [36, 0, 1, "", "ScrollSnapHighlightConfig"], [36, 0, 1, "", "SourceOrderConfig"], [36, 0, 1, "", "WindowControlsOverlayConfig"], [36, 5, 1, "", "disable"], [36, 5, 1, "", "enable"], [36, 5, 1, "", "get_grid_highlight_objects_for_test"], [36, 5, 1, "", "get_highlight_object_for_test"], [36, 5, 1, "", "get_source_order_highlight_object_for_test"], [36, 5, 1, "", "hide_highlight"], [36, 5, 1, "", "highlight_frame"], [36, 5, 1, "", "highlight_node"], [36, 5, 1, "", "highlight_quad"], [36, 5, 1, "", "highlight_rect"], [36, 5, 1, "", "highlight_source_order"], [36, 5, 1, "", "set_inspect_mode"], [36, 5, 1, "", "set_paused_in_debugger_message"], [36, 5, 1, "", "set_show_ad_highlights"], [36, 5, 1, "", "set_show_container_query_overlays"], [36, 5, 1, "", "set_show_debug_borders"], [36, 5, 1, "", "set_show_flex_overlays"], [36, 5, 1, "", "set_show_fps_counter"], [36, 5, 1, "", "set_show_grid_overlays"], [36, 5, 1, "", "set_show_hinge"], [36, 5, 1, "", "set_show_hit_test_borders"], [36, 5, 1, "", "set_show_isolated_elements"], [36, 5, 1, "", "set_show_layout_shift_regions"], [36, 5, 1, "", "set_show_paint_rects"], [36, 5, 1, "", "set_show_scroll_bottleneck_rects"], [36, 5, 1, "", "set_show_scroll_snap_overlays"], [36, 5, 1, "", "set_show_viewport_size_on_resize"], [36, 5, 1, "", "set_show_web_vitals"], [36, 5, 1, "", "set_show_window_controls_overlay"]], "nodriver.cdp.overlay.BoxStyle": [[36, 1, 1, "", "fill_color"], [36, 1, 1, "", "hatch_color"]], "nodriver.cdp.overlay.ColorFormat": [[36, 1, 1, "", "HEX_"], [36, 1, 1, "", "HSL"], [36, 1, 1, "", "HWB"], [36, 1, 1, "", "RGB"]], "nodriver.cdp.overlay.ContainerQueryContainerHighlightConfig": [[36, 1, 1, "", "container_border"], [36, 1, 1, "", "descendant_border"]], "nodriver.cdp.overlay.ContainerQueryHighlightConfig": [[36, 1, 1, "", "container_query_container_highlight_config"], [36, 1, 1, "", "node_id"]], "nodriver.cdp.overlay.ContrastAlgorithm": [[36, 1, 1, "", "AA"], [36, 1, 1, "", "AAA"], [36, 1, 1, "", "APCA"]], "nodriver.cdp.overlay.FlexContainerHighlightConfig": [[36, 1, 1, "", "column_gap_space"], [36, 1, 1, "", "container_border"], [36, 1, 1, "", "cross_alignment"], [36, 1, 1, "", "cross_distributed_space"], [36, 1, 1, "", "item_separator"], [36, 1, 1, "", "line_separator"], [36, 1, 1, "", "main_distributed_space"], [36, 1, 1, "", "row_gap_space"]], "nodriver.cdp.overlay.FlexItemHighlightConfig": [[36, 1, 1, "", "base_size_border"], [36, 1, 1, "", "base_size_box"], [36, 1, 1, "", "flexibility_arrow"]], "nodriver.cdp.overlay.FlexNodeHighlightConfig": [[36, 1, 1, "", "flex_container_highlight_config"], [36, 1, 1, "", "node_id"]], "nodriver.cdp.overlay.GridHighlightConfig": [[36, 1, 1, "", "area_border_color"], [36, 1, 1, "", "cell_border_color"], [36, 1, 1, "", "cell_border_dash"], [36, 1, 1, "", "column_gap_color"], [36, 1, 1, "", "column_hatch_color"], [36, 1, 1, "", "column_line_color"], [36, 1, 1, "", "column_line_dash"], [36, 1, 1, "", "grid_background_color"], [36, 1, 1, "", "grid_border_color"], [36, 1, 1, "", "grid_border_dash"], [36, 1, 1, "", "row_gap_color"], [36, 1, 1, "", "row_hatch_color"], [36, 1, 1, "", "row_line_color"], [36, 1, 1, "", "row_line_dash"], [36, 1, 1, "", "show_area_names"], [36, 1, 1, "", "show_grid_extension_lines"], [36, 1, 1, "", "show_line_names"], [36, 1, 1, "", "show_negative_line_numbers"], [36, 1, 1, "", "show_positive_line_numbers"], [36, 1, 1, "", "show_track_sizes"]], "nodriver.cdp.overlay.GridNodeHighlightConfig": [[36, 1, 1, "", "grid_highlight_config"], [36, 1, 1, "", "node_id"]], "nodriver.cdp.overlay.HighlightConfig": [[36, 1, 1, "", "border_color"], [36, 1, 1, "", "color_format"], [36, 1, 1, "", "container_query_container_highlight_config"], [36, 1, 1, "", "content_color"], [36, 1, 1, "", "contrast_algorithm"], [36, 1, 1, "", "css_grid_color"], [36, 1, 1, "", "event_target_color"], [36, 1, 1, "", "flex_container_highlight_config"], [36, 1, 1, "", "flex_item_highlight_config"], [36, 1, 1, "", "grid_highlight_config"], [36, 1, 1, "", "margin_color"], [36, 1, 1, "", "padding_color"], [36, 1, 1, "", "shape_color"], [36, 1, 1, "", "shape_margin_color"], [36, 1, 1, "", "show_accessibility_info"], [36, 1, 1, "", "show_extension_lines"], [36, 1, 1, "", "show_info"], [36, 1, 1, "", "show_rulers"], [36, 1, 1, "", "show_styles"]], "nodriver.cdp.overlay.HingeConfig": [[36, 1, 1, "", "content_color"], [36, 1, 1, "", "outline_color"], [36, 1, 1, "", "rect"]], "nodriver.cdp.overlay.InspectMode": [[36, 1, 1, "", "CAPTURE_AREA_SCREENSHOT"], [36, 1, 1, "", "NONE"], [36, 1, 1, "", "SEARCH_FOR_NODE"], [36, 1, 1, "", "SEARCH_FOR_UA_SHADOW_DOM"], [36, 1, 1, "", "SHOW_DISTANCES"]], "nodriver.cdp.overlay.InspectNodeRequested": [[36, 1, 1, "", "backend_node_id"]], "nodriver.cdp.overlay.IsolatedElementHighlightConfig": [[36, 1, 1, "", "isolation_mode_highlight_config"], [36, 1, 1, "", "node_id"]], "nodriver.cdp.overlay.IsolationModeHighlightConfig": [[36, 1, 1, "", "mask_color"], [36, 1, 1, "", "resizer_color"], [36, 1, 1, "", "resizer_handle_color"]], "nodriver.cdp.overlay.LineStyle": [[36, 1, 1, "", "color"], [36, 1, 1, "", "pattern"]], "nodriver.cdp.overlay.NodeHighlightRequested": [[36, 1, 1, "", "node_id"]], "nodriver.cdp.overlay.ScreenshotRequested": [[36, 1, 1, "", "viewport"]], "nodriver.cdp.overlay.ScrollSnapContainerHighlightConfig": [[36, 1, 1, "", "scroll_margin_color"], [36, 1, 1, "", "scroll_padding_color"], [36, 1, 1, "", "snap_area_border"], [36, 1, 1, "", "snapport_border"]], "nodriver.cdp.overlay.ScrollSnapHighlightConfig": [[36, 1, 1, "", "node_id"], [36, 1, 1, "", "scroll_snap_container_highlight_config"]], "nodriver.cdp.overlay.SourceOrderConfig": [[36, 1, 1, "", "child_outline_color"], [36, 1, 1, "", "parent_outline_color"]], "nodriver.cdp.overlay.WindowControlsOverlayConfig": [[36, 1, 1, "", "selected_platform"], [36, 1, 1, "", "show_css"], [36, 1, 1, "", "theme_color"]], "nodriver.cdp.page": [[37, 0, 1, "", "AdFrameExplanation"], [37, 0, 1, "", "AdFrameStatus"], [37, 0, 1, "", "AdFrameType"], [37, 0, 1, "", "AdScriptId"], [37, 0, 1, "", "AppManifestError"], [37, 0, 1, "", "AppManifestParsedProperties"], [37, 0, 1, "", "AutoResponseMode"], [37, 0, 1, "", "BackForwardCacheBlockingDetails"], [37, 0, 1, "", "BackForwardCacheNotRestoredExplanation"], [37, 0, 1, "", "BackForwardCacheNotRestoredExplanationTree"], [37, 0, 1, "", "BackForwardCacheNotRestoredReason"], [37, 0, 1, "", "BackForwardCacheNotRestoredReasonType"], [37, 0, 1, "", "BackForwardCacheNotUsed"], [37, 0, 1, "", "ClientNavigationDisposition"], [37, 0, 1, "", "ClientNavigationReason"], [37, 0, 1, "", "CompilationCacheParams"], [37, 0, 1, "", "CompilationCacheProduced"], [37, 0, 1, "", "CrossOriginIsolatedContextType"], [37, 0, 1, "", "DialogType"], [37, 0, 1, "", "DocumentOpened"], [37, 0, 1, "", "DomContentEventFired"], [37, 0, 1, "", "DownloadProgress"], [37, 0, 1, "", "DownloadWillBegin"], [37, 0, 1, "", "FileChooserOpened"], [37, 0, 1, "", "FileFilter"], [37, 0, 1, "", "FileHandler"], [37, 0, 1, "", "FontFamilies"], [37, 0, 1, "", "FontSizes"], [37, 0, 1, "", "Frame"], [37, 0, 1, "", "FrameAttached"], [37, 0, 1, "", "FrameClearedScheduledNavigation"], [37, 0, 1, "", "FrameDetached"], [37, 0, 1, "", "FrameId"], [37, 0, 1, "", "FrameNavigated"], [37, 0, 1, "", "FrameRequestedNavigation"], [37, 0, 1, "", "FrameResized"], [37, 0, 1, "", "FrameResource"], [37, 0, 1, "", "FrameResourceTree"], [37, 0, 1, "", "FrameScheduledNavigation"], [37, 0, 1, "", "FrameStartedLoading"], [37, 0, 1, "", "FrameStoppedLoading"], [37, 0, 1, "", "FrameTree"], [37, 0, 1, "", "GatedAPIFeatures"], [37, 0, 1, "", "ImageResource"], [37, 0, 1, "", "InstallabilityError"], [37, 0, 1, "", "InstallabilityErrorArgument"], [37, 0, 1, "", "InterstitialHidden"], [37, 0, 1, "", "InterstitialShown"], [37, 0, 1, "", "JavascriptDialogClosed"], [37, 0, 1, "", "JavascriptDialogOpening"], [37, 0, 1, "", "LaunchHandler"], [37, 0, 1, "", "LayoutViewport"], [37, 0, 1, "", "LifecycleEvent"], [37, 0, 1, "", "LoadEventFired"], [37, 0, 1, "", "NavigatedWithinDocument"], [37, 0, 1, "", "NavigationEntry"], [37, 0, 1, "", "NavigationType"], [37, 0, 1, "", "OriginTrial"], [37, 0, 1, "", "OriginTrialStatus"], [37, 0, 1, "", "OriginTrialToken"], [37, 0, 1, "", "OriginTrialTokenStatus"], [37, 0, 1, "", "OriginTrialTokenWithStatus"], [37, 0, 1, "", "OriginTrialUsageRestriction"], [37, 0, 1, "", "PermissionsPolicyBlockLocator"], [37, 0, 1, "", "PermissionsPolicyBlockReason"], [37, 0, 1, "", "PermissionsPolicyFeature"], [37, 0, 1, "", "PermissionsPolicyFeatureState"], [37, 0, 1, "", "ProtocolHandler"], [37, 0, 1, "", "ReferrerPolicy"], [37, 0, 1, "", "RelatedApplication"], [37, 0, 1, "", "ScopeExtension"], [37, 0, 1, "", "ScreencastFrame"], [37, 0, 1, "", "ScreencastFrameMetadata"], [37, 0, 1, "", "ScreencastVisibilityChanged"], [37, 0, 1, "", "Screenshot"], [37, 0, 1, "", "ScriptFontFamilies"], [37, 0, 1, "", "ScriptIdentifier"], [37, 0, 1, "", "SecureContextType"], [37, 0, 1, "", "ShareTarget"], [37, 0, 1, "", "Shortcut"], [37, 0, 1, "", "TransitionType"], [37, 0, 1, "", "Viewport"], [37, 0, 1, "", "VisualViewport"], [37, 0, 1, "", "WebAppManifest"], [37, 0, 1, "", "WindowOpen"], [37, 5, 1, "", "add_compilation_cache"], [37, 5, 1, "", "add_script_to_evaluate_on_load"], [37, 5, 1, "", "add_script_to_evaluate_on_new_document"], [37, 5, 1, "", "bring_to_front"], [37, 5, 1, "", "capture_screenshot"], [37, 5, 1, "", "capture_snapshot"], [37, 5, 1, "", "clear_compilation_cache"], [37, 5, 1, "", "clear_device_metrics_override"], [37, 5, 1, "", "clear_device_orientation_override"], [37, 5, 1, "", "clear_geolocation_override"], [37, 5, 1, "", "close"], [37, 5, 1, "", "crash"], [37, 5, 1, "", "create_isolated_world"], [37, 5, 1, "", "delete_cookie"], [37, 5, 1, "", "disable"], [37, 5, 1, "", "enable"], [37, 5, 1, "", "generate_test_report"], [37, 5, 1, "", "get_ad_script_id"], [37, 5, 1, "", "get_app_id"], [37, 5, 1, "", "get_app_manifest"], [37, 5, 1, "", "get_frame_tree"], [37, 5, 1, "", "get_installability_errors"], [37, 5, 1, "", "get_layout_metrics"], [37, 5, 1, "", "get_manifest_icons"], [37, 5, 1, "", "get_navigation_history"], [37, 5, 1, "", "get_origin_trials"], [37, 5, 1, "", "get_permissions_policy_state"], [37, 5, 1, "", "get_resource_content"], [37, 5, 1, "", "get_resource_tree"], [37, 5, 1, "", "handle_java_script_dialog"], [37, 5, 1, "", "navigate"], [37, 5, 1, "", "navigate_to_history_entry"], [37, 5, 1, "", "print_to_pdf"], [37, 5, 1, "", "produce_compilation_cache"], [37, 5, 1, "", "reload"], [37, 5, 1, "", "remove_script_to_evaluate_on_load"], [37, 5, 1, "", "remove_script_to_evaluate_on_new_document"], [37, 5, 1, "", "reset_navigation_history"], [37, 5, 1, "", "screencast_frame_ack"], [37, 5, 1, "", "search_in_resource"], [37, 5, 1, "", "set_ad_blocking_enabled"], [37, 5, 1, "", "set_bypass_csp"], [37, 5, 1, "", "set_device_metrics_override"], [37, 5, 1, "", "set_device_orientation_override"], [37, 5, 1, "", "set_document_content"], [37, 5, 1, "", "set_download_behavior"], [37, 5, 1, "", "set_font_families"], [37, 5, 1, "", "set_font_sizes"], [37, 5, 1, "", "set_geolocation_override"], [37, 5, 1, "", "set_intercept_file_chooser_dialog"], [37, 5, 1, "", "set_lifecycle_events_enabled"], [37, 5, 1, "", "set_prerendering_allowed"], [37, 5, 1, "", "set_rph_registration_mode"], [37, 5, 1, "", "set_spc_transaction_mode"], [37, 5, 1, "", "set_touch_emulation_enabled"], [37, 5, 1, "", "set_web_lifecycle_state"], [37, 5, 1, "", "start_screencast"], [37, 5, 1, "", "stop_loading"], [37, 5, 1, "", "stop_screencast"], [37, 5, 1, "", "wait_for_debugger"]], "nodriver.cdp.page.AdFrameExplanation": [[37, 1, 1, "", "CREATED_BY_AD_SCRIPT"], [37, 1, 1, "", "MATCHED_BLOCKING_RULE"], [37, 1, 1, "", "PARENT_IS_AD"]], "nodriver.cdp.page.AdFrameStatus": [[37, 1, 1, "", "ad_frame_type"], [37, 1, 1, "", "explanations"]], "nodriver.cdp.page.AdFrameType": [[37, 1, 1, "", "CHILD"], [37, 1, 1, "", "NONE"], [37, 1, 1, "", "ROOT"]], "nodriver.cdp.page.AdScriptId": [[37, 1, 1, "", "debugger_id"], [37, 1, 1, "", "script_id"]], "nodriver.cdp.page.AppManifestError": [[37, 1, 1, "", "column"], [37, 1, 1, "", "critical"], [37, 1, 1, "", "line"], [37, 1, 1, "", "message"]], "nodriver.cdp.page.AppManifestParsedProperties": [[37, 1, 1, "", "scope"]], "nodriver.cdp.page.AutoResponseMode": [[37, 1, 1, "", "AUTO_ACCEPT"], [37, 1, 1, "", "AUTO_OPT_OUT"], [37, 1, 1, "", "AUTO_REJECT"], [37, 1, 1, "", "NONE"]], "nodriver.cdp.page.BackForwardCacheBlockingDetails": [[37, 1, 1, "", "column_number"], [37, 1, 1, "", "function"], [37, 1, 1, "", "line_number"], [37, 1, 1, "", "url"]], "nodriver.cdp.page.BackForwardCacheNotRestoredExplanation": [[37, 1, 1, "", "context"], [37, 1, 1, "", "details"], [37, 1, 1, "", "reason"], [37, 1, 1, "", "type_"]], "nodriver.cdp.page.BackForwardCacheNotRestoredExplanationTree": [[37, 1, 1, "", "children"], [37, 1, 1, "", "explanations"], [37, 1, 1, "", "url"]], "nodriver.cdp.page.BackForwardCacheNotRestoredReason": [[37, 1, 1, "", "ACTIVATION_NAVIGATIONS_DISALLOWED_FOR_BUG1234857"], [37, 1, 1, "", "APP_BANNER"], [37, 1, 1, "", "BACK_FORWARD_CACHE_DISABLED"], [37, 1, 1, "", "BACK_FORWARD_CACHE_DISABLED_BY_COMMAND_LINE"], [37, 1, 1, "", "BACK_FORWARD_CACHE_DISABLED_BY_LOW_MEMORY"], [37, 1, 1, "", "BACK_FORWARD_CACHE_DISABLED_FOR_DELEGATE"], [37, 1, 1, "", "BACK_FORWARD_CACHE_DISABLED_FOR_PRERENDER"], [37, 1, 1, "", "BROADCAST_CHANNEL"], [37, 1, 1, "", "BROADCAST_CHANNEL_ON_MESSAGE"], [37, 1, 1, "", "BROWSING_INSTANCE_NOT_SWAPPED"], [37, 1, 1, "", "CACHE_CONTROL_NO_STORE"], [37, 1, 1, "", "CACHE_CONTROL_NO_STORE_COOKIE_MODIFIED"], [37, 1, 1, "", "CACHE_CONTROL_NO_STORE_HTTP_ONLY_COOKIE_MODIFIED"], [37, 1, 1, "", "CACHE_FLUSHED"], [37, 1, 1, "", "CACHE_LIMIT"], [37, 1, 1, "", "CONFLICTING_BROWSING_INSTANCE"], [37, 1, 1, "", "CONTAINS_PLUGINS"], [37, 1, 1, "", "CONTENT_FILE_CHOOSER"], [37, 1, 1, "", "CONTENT_FILE_SYSTEM_ACCESS"], [37, 1, 1, "", "CONTENT_MEDIA_DEVICES_DISPATCHER_HOST"], [37, 1, 1, "", "CONTENT_MEDIA_SESSION_SERVICE"], [37, 1, 1, "", "CONTENT_SCREEN_READER"], [37, 1, 1, "", "CONTENT_SECURITY_HANDLER"], [37, 1, 1, "", "CONTENT_SERIAL"], [37, 1, 1, "", "CONTENT_WEB_AUTHENTICATION_API"], [37, 1, 1, "", "CONTENT_WEB_BLUETOOTH"], [37, 1, 1, "", "CONTENT_WEB_USB"], [37, 1, 1, "", "COOKIE_DISABLED"], [37, 1, 1, "", "COOKIE_FLUSHED"], [37, 1, 1, "", "DISABLE_FOR_RENDER_FRAME_HOST_CALLED"], [37, 1, 1, "", "DOCUMENT_LOADED"], [37, 1, 1, "", "DOMAIN_NOT_ALLOWED"], [37, 1, 1, "", "DUMMY"], [37, 1, 1, "", "EMBEDDER_APP_BANNER_MANAGER"], [37, 1, 1, "", "EMBEDDER_CHROME_PASSWORD_MANAGER_CLIENT_BIND_CREDENTIAL_MANAGER"], [37, 1, 1, "", "EMBEDDER_DOM_DISTILLER_SELF_DELETING_REQUEST_DELEGATE"], [37, 1, 1, "", "EMBEDDER_DOM_DISTILLER_VIEWER_SOURCE"], [37, 1, 1, "", "EMBEDDER_EXTENSIONS"], [37, 1, 1, "", "EMBEDDER_EXTENSION_MESSAGING"], [37, 1, 1, "", "EMBEDDER_EXTENSION_MESSAGING_FOR_OPEN_PORT"], [37, 1, 1, "", "EMBEDDER_EXTENSION_SENT_MESSAGE_TO_CACHED_FRAME"], [37, 1, 1, "", "EMBEDDER_MODAL_DIALOG"], [37, 1, 1, "", "EMBEDDER_OFFLINE_PAGE"], [37, 1, 1, "", "EMBEDDER_OOM_INTERVENTION_TAB_HELPER"], [37, 1, 1, "", "EMBEDDER_PERMISSION_REQUEST_MANAGER"], [37, 1, 1, "", "EMBEDDER_POPUP_BLOCKER_TAB_HELPER"], [37, 1, 1, "", "EMBEDDER_SAFE_BROWSING_THREAT_DETAILS"], [37, 1, 1, "", "EMBEDDER_SAFE_BROWSING_TRIGGERED_POPUP_BLOCKER"], [37, 1, 1, "", "ENTERED_BACK_FORWARD_CACHE_BEFORE_SERVICE_WORKER_HOST_ADDED"], [37, 1, 1, "", "ERROR_DOCUMENT"], [37, 1, 1, "", "FENCED_FRAMES_EMBEDDER"], [37, 1, 1, "", "FOREGROUND_CACHE_LIMIT"], [37, 1, 1, "", "HAVE_INNER_CONTENTS"], [37, 1, 1, "", "HTTP_AUTH_REQUIRED"], [37, 1, 1, "", "HTTP_METHOD_NOT_GET"], [37, 1, 1, "", "HTTP_STATUS_NOT_OK"], [37, 1, 1, "", "IDLE_MANAGER"], [37, 1, 1, "", "IGNORE_EVENT_AND_EVICT"], [37, 1, 1, "", "INDEXED_DB_EVENT"], [37, 1, 1, "", "INJECTED_JAVASCRIPT"], [37, 1, 1, "", "INJECTED_STYLE_SHEET"], [37, 1, 1, "", "JAVA_SCRIPT_EXECUTION"], [37, 1, 1, "", "JS_NETWORK_REQUEST_RECEIVED_CACHE_CONTROL_NO_STORE_RESOURCE"], [37, 1, 1, "", "KEEPALIVE_REQUEST"], [37, 1, 1, "", "KEYBOARD_LOCK"], [37, 1, 1, "", "LIVE_MEDIA_STREAM_TRACK"], [37, 1, 1, "", "LOADING"], [37, 1, 1, "", "MAIN_RESOURCE_HAS_CACHE_CONTROL_NO_CACHE"], [37, 1, 1, "", "MAIN_RESOURCE_HAS_CACHE_CONTROL_NO_STORE"], [37, 1, 1, "", "NAVIGATION_CANCELLED_WHILE_RESTORING"], [37, 1, 1, "", "NETWORK_EXCEEDS_BUFFER_LIMIT"], [37, 1, 1, "", "NETWORK_REQUEST_DATAPIPE_DRAINED_AS_BYTES_CONSUMER"], [37, 1, 1, "", "NETWORK_REQUEST_REDIRECTED"], [37, 1, 1, "", "NETWORK_REQUEST_TIMEOUT"], [37, 1, 1, "", "NOT_MOST_RECENT_NAVIGATION_ENTRY"], [37, 1, 1, "", "NOT_PRIMARY_MAIN_FRAME"], [37, 1, 1, "", "NO_RESPONSE_HEAD"], [37, 1, 1, "", "OUTSTANDING_NETWORK_REQUEST_DIRECT_SOCKET"], [37, 1, 1, "", "OUTSTANDING_NETWORK_REQUEST_FETCH"], [37, 1, 1, "", "OUTSTANDING_NETWORK_REQUEST_OTHERS"], [37, 1, 1, "", "OUTSTANDING_NETWORK_REQUEST_XHR"], [37, 1, 1, "", "PARSER_ABORTED"], [37, 1, 1, "", "PAYMENT_MANAGER"], [37, 1, 1, "", "PICTURE_IN_PICTURE"], [37, 1, 1, "", "PORTAL"], [37, 1, 1, "", "PRINTING"], [37, 1, 1, "", "RELATED_ACTIVE_CONTENTS_EXIST"], [37, 1, 1, "", "RENDERER_PROCESS_CRASHED"], [37, 1, 1, "", "RENDERER_PROCESS_KILLED"], [37, 1, 1, "", "RENDER_FRAME_HOST_REUSED_CROSS_SITE"], [37, 1, 1, "", "RENDER_FRAME_HOST_REUSED_SAME_SITE"], [37, 1, 1, "", "REQUESTED_AUDIO_CAPTURE_PERMISSION"], [37, 1, 1, "", "REQUESTED_BACKGROUND_WORK_PERMISSION"], [37, 1, 1, "", "REQUESTED_BACK_FORWARD_CACHE_BLOCKED_SENSORS"], [37, 1, 1, "", "REQUESTED_BY_WEB_VIEW_CLIENT"], [37, 1, 1, "", "REQUESTED_MIDI_PERMISSION"], [37, 1, 1, "", "REQUESTED_STORAGE_ACCESS_GRANT"], [37, 1, 1, "", "REQUESTED_VIDEO_CAPTURE_PERMISSION"], [37, 1, 1, "", "SCHEDULER_TRACKED_FEATURE_USED"], [37, 1, 1, "", "SCHEME_NOT_HTTP_OR_HTTPS"], [37, 1, 1, "", "SERVICE_WORKER_CLAIM"], [37, 1, 1, "", "SERVICE_WORKER_POST_MESSAGE"], [37, 1, 1, "", "SERVICE_WORKER_UNREGISTRATION"], [37, 1, 1, "", "SERVICE_WORKER_VERSION_ACTIVATION"], [37, 1, 1, "", "SESSION_RESTORED"], [37, 1, 1, "", "SHARED_WORKER"], [37, 1, 1, "", "SMART_CARD"], [37, 1, 1, "", "SPEECH_RECOGNIZER"], [37, 1, 1, "", "SPEECH_SYNTHESIS"], [37, 1, 1, "", "SUBFRAME_IS_NAVIGATING"], [37, 1, 1, "", "SUBRESOURCE_HAS_CACHE_CONTROL_NO_CACHE"], [37, 1, 1, "", "SUBRESOURCE_HAS_CACHE_CONTROL_NO_STORE"], [37, 1, 1, "", "TIMEOUT"], [37, 1, 1, "", "TIMEOUT_PUTTING_IN_CACHE"], [37, 1, 1, "", "UNKNOWN"], [37, 1, 1, "", "UNLOAD_HANDLER"], [37, 1, 1, "", "UNLOAD_HANDLER_EXISTS_IN_MAIN_FRAME"], [37, 1, 1, "", "UNLOAD_HANDLER_EXISTS_IN_SUB_FRAME"], [37, 1, 1, "", "USER_AGENT_OVERRIDE_DIFFERS"], [37, 1, 1, "", "WAS_GRANTED_MEDIA_ACCESS"], [37, 1, 1, "", "WEB_DATABASE"], [37, 1, 1, "", "WEB_HID"], [37, 1, 1, "", "WEB_LOCKS"], [37, 1, 1, "", "WEB_NFC"], [37, 1, 1, "", "WEB_OTP_SERVICE"], [37, 1, 1, "", "WEB_RTC"], [37, 1, 1, "", "WEB_RTC_STICKY"], [37, 1, 1, "", "WEB_SHARE"], [37, 1, 1, "", "WEB_SOCKET"], [37, 1, 1, "", "WEB_SOCKET_STICKY"], [37, 1, 1, "", "WEB_TRANSPORT"], [37, 1, 1, "", "WEB_TRANSPORT_STICKY"], [37, 1, 1, "", "WEB_VIEW_DOCUMENT_START_JAVASCRIPT_CHANGED"], [37, 1, 1, "", "WEB_VIEW_JAVA_SCRIPT_OBJECT_CHANGED"], [37, 1, 1, "", "WEB_VIEW_MESSAGE_LISTENER_INJECTED"], [37, 1, 1, "", "WEB_VIEW_SAFE_BROWSING_ALLOWLIST_CHANGED"], [37, 1, 1, "", "WEB_VIEW_SETTINGS_CHANGED"], [37, 1, 1, "", "WEB_XR"]], "nodriver.cdp.page.BackForwardCacheNotRestoredReasonType": [[37, 1, 1, "", "CIRCUMSTANTIAL"], [37, 1, 1, "", "PAGE_SUPPORT_NEEDED"], [37, 1, 1, "", "SUPPORT_PENDING"]], "nodriver.cdp.page.BackForwardCacheNotUsed": [[37, 1, 1, "", "frame_id"], [37, 1, 1, "", "loader_id"], [37, 1, 1, "", "not_restored_explanations"], [37, 1, 1, "", "not_restored_explanations_tree"]], "nodriver.cdp.page.ClientNavigationDisposition": [[37, 1, 1, "", "CURRENT_TAB"], [37, 1, 1, "", "DOWNLOAD"], [37, 1, 1, "", "NEW_TAB"], [37, 1, 1, "", "NEW_WINDOW"]], "nodriver.cdp.page.ClientNavigationReason": [[37, 1, 1, "", "ANCHOR_CLICK"], [37, 1, 1, "", "FORM_SUBMISSION_GET"], [37, 1, 1, "", "FORM_SUBMISSION_POST"], [37, 1, 1, "", "HTTP_HEADER_REFRESH"], [37, 1, 1, "", "META_TAG_REFRESH"], [37, 1, 1, "", "PAGE_BLOCK_INTERSTITIAL"], [37, 1, 1, "", "RELOAD"], [37, 1, 1, "", "SCRIPT_INITIATED"]], "nodriver.cdp.page.CompilationCacheParams": [[37, 1, 1, "", "eager"], [37, 1, 1, "", "url"]], "nodriver.cdp.page.CompilationCacheProduced": [[37, 1, 1, "", "data"], [37, 1, 1, "", "url"]], "nodriver.cdp.page.CrossOriginIsolatedContextType": [[37, 1, 1, "", "ISOLATED"], [37, 1, 1, "", "NOT_ISOLATED"], [37, 1, 1, "", "NOT_ISOLATED_FEATURE_DISABLED"]], "nodriver.cdp.page.DialogType": [[37, 1, 1, "", "ALERT"], [37, 1, 1, "", "BEFOREUNLOAD"], [37, 1, 1, "", "CONFIRM"], [37, 1, 1, "", "PROMPT"]], "nodriver.cdp.page.DocumentOpened": [[37, 1, 1, "", "frame"]], "nodriver.cdp.page.DomContentEventFired": [[37, 1, 1, "", "timestamp"]], "nodriver.cdp.page.DownloadProgress": [[37, 1, 1, "", "guid"], [37, 1, 1, "", "received_bytes"], [37, 1, 1, "", "state"], [37, 1, 1, "", "total_bytes"]], "nodriver.cdp.page.DownloadWillBegin": [[37, 1, 1, "", "frame_id"], [37, 1, 1, "", "guid"], [37, 1, 1, "", "suggested_filename"], [37, 1, 1, "", "url"]], "nodriver.cdp.page.FileChooserOpened": [[37, 1, 1, "", "backend_node_id"], [37, 1, 1, "", "frame_id"], [37, 1, 1, "", "mode"]], "nodriver.cdp.page.FileFilter": [[37, 1, 1, "", "accepts"], [37, 1, 1, "", "name"]], "nodriver.cdp.page.FileHandler": [[37, 1, 1, "", "accepts"], [37, 1, 1, "", "action"], [37, 1, 1, "", "icons"], [37, 1, 1, "", "launch_type"], [37, 1, 1, "", "name"]], "nodriver.cdp.page.FontFamilies": [[37, 1, 1, "", "cursive"], [37, 1, 1, "", "fantasy"], [37, 1, 1, "", "fixed"], [37, 1, 1, "", "math"], [37, 1, 1, "", "sans_serif"], [37, 1, 1, "", "serif"], [37, 1, 1, "", "standard"]], "nodriver.cdp.page.FontSizes": [[37, 1, 1, "", "fixed"], [37, 1, 1, "", "standard"]], "nodriver.cdp.page.Frame": [[37, 1, 1, "", "ad_frame_status"], [37, 1, 1, "", "cross_origin_isolated_context_type"], [37, 1, 1, "", "domain_and_registry"], [37, 1, 1, "", "gated_api_features"], [37, 1, 1, "", "id_"], [37, 1, 1, "", "loader_id"], [37, 1, 1, "", "mime_type"], [37, 1, 1, "", "name"], [37, 1, 1, "", "parent_id"], [37, 1, 1, "", "secure_context_type"], [37, 1, 1, "", "security_origin"], [37, 1, 1, "", "unreachable_url"], [37, 1, 1, "", "url"], [37, 1, 1, "", "url_fragment"]], "nodriver.cdp.page.FrameAttached": [[37, 1, 1, "", "frame_id"], [37, 1, 1, "", "parent_frame_id"], [37, 1, 1, "", "stack"]], "nodriver.cdp.page.FrameClearedScheduledNavigation": [[37, 1, 1, "", "frame_id"]], "nodriver.cdp.page.FrameDetached": [[37, 1, 1, "", "frame_id"], [37, 1, 1, "", "reason"]], "nodriver.cdp.page.FrameNavigated": [[37, 1, 1, "", "frame"], [37, 1, 1, "", "type_"]], "nodriver.cdp.page.FrameRequestedNavigation": [[37, 1, 1, "", "disposition"], [37, 1, 1, "", "frame_id"], [37, 1, 1, "", "reason"], [37, 1, 1, "", "url"]], "nodriver.cdp.page.FrameResource": [[37, 1, 1, "", "canceled"], [37, 1, 1, "", "content_size"], [37, 1, 1, "", "failed"], [37, 1, 1, "", "last_modified"], [37, 1, 1, "", "mime_type"], [37, 1, 1, "", "type_"], [37, 1, 1, "", "url"]], "nodriver.cdp.page.FrameResourceTree": [[37, 1, 1, "", "child_frames"], [37, 1, 1, "", "frame"], [37, 1, 1, "", "resources"]], "nodriver.cdp.page.FrameScheduledNavigation": [[37, 1, 1, "", "delay"], [37, 1, 1, "", "frame_id"], [37, 1, 1, "", "reason"], [37, 1, 1, "", "url"]], "nodriver.cdp.page.FrameStartedLoading": [[37, 1, 1, "", "frame_id"]], "nodriver.cdp.page.FrameStoppedLoading": [[37, 1, 1, "", "frame_id"]], "nodriver.cdp.page.FrameTree": [[37, 1, 1, "", "child_frames"], [37, 1, 1, "", "frame"]], "nodriver.cdp.page.GatedAPIFeatures": [[37, 1, 1, "", "PERFORMANCE_MEASURE_MEMORY"], [37, 1, 1, "", "PERFORMANCE_PROFILE"], [37, 1, 1, "", "SHARED_ARRAY_BUFFERS"], [37, 1, 1, "", "SHARED_ARRAY_BUFFERS_TRANSFER_ALLOWED"]], "nodriver.cdp.page.ImageResource": [[37, 1, 1, "", "sizes"], [37, 1, 1, "", "type_"], [37, 1, 1, "", "url"]], "nodriver.cdp.page.InstallabilityError": [[37, 1, 1, "", "error_arguments"], [37, 1, 1, "", "error_id"]], "nodriver.cdp.page.InstallabilityErrorArgument": [[37, 1, 1, "", "name"], [37, 1, 1, "", "value"]], "nodriver.cdp.page.JavascriptDialogClosed": [[37, 1, 1, "", "result"], [37, 1, 1, "", "user_input"]], "nodriver.cdp.page.JavascriptDialogOpening": [[37, 1, 1, "", "default_prompt"], [37, 1, 1, "", "has_browser_handler"], [37, 1, 1, "", "message"], [37, 1, 1, "", "type_"], [37, 1, 1, "", "url"]], "nodriver.cdp.page.LaunchHandler": [[37, 1, 1, "", "client_mode"]], "nodriver.cdp.page.LayoutViewport": [[37, 1, 1, "", "client_height"], [37, 1, 1, "", "client_width"], [37, 1, 1, "", "page_x"], [37, 1, 1, "", "page_y"]], "nodriver.cdp.page.LifecycleEvent": [[37, 1, 1, "", "frame_id"], [37, 1, 1, "", "loader_id"], [37, 1, 1, "", "name"], [37, 1, 1, "", "timestamp"]], "nodriver.cdp.page.LoadEventFired": [[37, 1, 1, "", "timestamp"]], "nodriver.cdp.page.NavigatedWithinDocument": [[37, 1, 1, "", "frame_id"], [37, 1, 1, "", "url"]], "nodriver.cdp.page.NavigationEntry": [[37, 1, 1, "", "id_"], [37, 1, 1, "", "title"], [37, 1, 1, "", "transition_type"], [37, 1, 1, "", "url"], [37, 1, 1, "", "user_typed_url"]], "nodriver.cdp.page.NavigationType": [[37, 1, 1, "", "BACK_FORWARD_CACHE_RESTORE"], [37, 1, 1, "", "NAVIGATION"]], "nodriver.cdp.page.OriginTrial": [[37, 1, 1, "", "status"], [37, 1, 1, "", "tokens_with_status"], [37, 1, 1, "", "trial_name"]], "nodriver.cdp.page.OriginTrialStatus": [[37, 1, 1, "", "ENABLED"], [37, 1, 1, "", "OS_NOT_SUPPORTED"], [37, 1, 1, "", "TRIAL_NOT_ALLOWED"], [37, 1, 1, "", "VALID_TOKEN_NOT_PROVIDED"]], "nodriver.cdp.page.OriginTrialToken": [[37, 1, 1, "", "expiry_time"], [37, 1, 1, "", "is_third_party"], [37, 1, 1, "", "match_sub_domains"], [37, 1, 1, "", "origin"], [37, 1, 1, "", "trial_name"], [37, 1, 1, "", "usage_restriction"]], "nodriver.cdp.page.OriginTrialTokenStatus": [[37, 1, 1, "", "EXPIRED"], [37, 1, 1, "", "FEATURE_DISABLED"], [37, 1, 1, "", "FEATURE_DISABLED_FOR_USER"], [37, 1, 1, "", "INSECURE"], [37, 1, 1, "", "INVALID_SIGNATURE"], [37, 1, 1, "", "MALFORMED"], [37, 1, 1, "", "NOT_SUPPORTED"], [37, 1, 1, "", "SUCCESS"], [37, 1, 1, "", "TOKEN_DISABLED"], [37, 1, 1, "", "UNKNOWN_TRIAL"], [37, 1, 1, "", "WRONG_ORIGIN"], [37, 1, 1, "", "WRONG_VERSION"]], "nodriver.cdp.page.OriginTrialTokenWithStatus": [[37, 1, 1, "", "parsed_token"], [37, 1, 1, "", "raw_token_text"], [37, 1, 1, "", "status"]], "nodriver.cdp.page.OriginTrialUsageRestriction": [[37, 1, 1, "", "NONE"], [37, 1, 1, "", "SUBSET"]], "nodriver.cdp.page.PermissionsPolicyBlockLocator": [[37, 1, 1, "", "block_reason"], [37, 1, 1, "", "frame_id"]], "nodriver.cdp.page.PermissionsPolicyBlockReason": [[37, 1, 1, "", "HEADER"], [37, 1, 1, "", "IFRAME_ATTRIBUTE"], [37, 1, 1, "", "IN_FENCED_FRAME_TREE"], [37, 1, 1, "", "IN_ISOLATED_APP"]], "nodriver.cdp.page.PermissionsPolicyFeature": [[37, 1, 1, "", "ACCELEROMETER"], [37, 1, 1, "", "AMBIENT_LIGHT_SENSOR"], [37, 1, 1, "", "ATTRIBUTION_REPORTING"], [37, 1, 1, "", "AUTOPLAY"], [37, 1, 1, "", "BLUETOOTH"], [37, 1, 1, "", "BROWSING_TOPICS"], [37, 1, 1, "", "CAMERA"], [37, 1, 1, "", "CAPTURED_SURFACE_CONTROL"], [37, 1, 1, "", "CH_DEVICE_MEMORY"], [37, 1, 1, "", "CH_DOWNLINK"], [37, 1, 1, "", "CH_DPR"], [37, 1, 1, "", "CH_ECT"], [37, 1, 1, "", "CH_PREFERS_COLOR_SCHEME"], [37, 1, 1, "", "CH_PREFERS_REDUCED_MOTION"], [37, 1, 1, "", "CH_PREFERS_REDUCED_TRANSPARENCY"], [37, 1, 1, "", "CH_RTT"], [37, 1, 1, "", "CH_SAVE_DATA"], [37, 1, 1, "", "CH_UA"], [37, 1, 1, "", "CH_UA_ARCH"], [37, 1, 1, "", "CH_UA_BITNESS"], [37, 1, 1, "", "CH_UA_FORM_FACTORS"], [37, 1, 1, "", "CH_UA_FULL_VERSION"], [37, 1, 1, "", "CH_UA_FULL_VERSION_LIST"], [37, 1, 1, "", "CH_UA_MOBILE"], [37, 1, 1, "", "CH_UA_MODEL"], [37, 1, 1, "", "CH_UA_PLATFORM"], [37, 1, 1, "", "CH_UA_PLATFORM_VERSION"], [37, 1, 1, "", "CH_UA_WOW64"], [37, 1, 1, "", "CH_VIEWPORT_HEIGHT"], [37, 1, 1, "", "CH_VIEWPORT_WIDTH"], [37, 1, 1, "", "CH_WIDTH"], [37, 1, 1, "", "CLIPBOARD_READ"], [37, 1, 1, "", "CLIPBOARD_WRITE"], [37, 1, 1, "", "COMPUTE_PRESSURE"], [37, 1, 1, "", "CROSS_ORIGIN_ISOLATED"], [37, 1, 1, "", "DEFERRED_FETCH"], [37, 1, 1, "", "DIRECT_SOCKETS"], [37, 1, 1, "", "DISPLAY_CAPTURE"], [37, 1, 1, "", "DOCUMENT_DOMAIN"], [37, 1, 1, "", "ENCRYPTED_MEDIA"], [37, 1, 1, "", "EXECUTION_WHILE_NOT_RENDERED"], [37, 1, 1, "", "EXECUTION_WHILE_OUT_OF_VIEWPORT"], [37, 1, 1, "", "FOCUS_WITHOUT_USER_ACTIVATION"], [37, 1, 1, "", "FROBULATE"], [37, 1, 1, "", "FULLSCREEN"], [37, 1, 1, "", "GAMEPAD"], [37, 1, 1, "", "GEOLOCATION"], [37, 1, 1, "", "GYROSCOPE"], [37, 1, 1, "", "HID"], [37, 1, 1, "", "IDENTITY_CREDENTIALS_GET"], [37, 1, 1, "", "IDLE_DETECTION"], [37, 1, 1, "", "INTEREST_COHORT"], [37, 1, 1, "", "JOIN_AD_INTEREST_GROUP"], [37, 1, 1, "", "KEYBOARD_MAP"], [37, 1, 1, "", "LOCAL_FONTS"], [37, 1, 1, "", "MAGNETOMETER"], [37, 1, 1, "", "MICROPHONE"], [37, 1, 1, "", "MIDI"], [37, 1, 1, "", "OTP_CREDENTIALS"], [37, 1, 1, "", "PAYMENT"], [37, 1, 1, "", "PICTURE_IN_PICTURE"], [37, 1, 1, "", "PRIVATE_AGGREGATION"], [37, 1, 1, "", "PRIVATE_STATE_TOKEN_ISSUANCE"], [37, 1, 1, "", "PRIVATE_STATE_TOKEN_REDEMPTION"], [37, 1, 1, "", "PUBLICKEY_CREDENTIALS_CREATE"], [37, 1, 1, "", "PUBLICKEY_CREDENTIALS_GET"], [37, 1, 1, "", "RUN_AD_AUCTION"], [37, 1, 1, "", "SCREEN_WAKE_LOCK"], [37, 1, 1, "", "SERIAL"], [37, 1, 1, "", "SHARED_AUTOFILL"], [37, 1, 1, "", "SHARED_STORAGE"], [37, 1, 1, "", "SHARED_STORAGE_SELECT_URL"], [37, 1, 1, "", "SMART_CARD"], [37, 1, 1, "", "SPEAKER_SELECTION"], [37, 1, 1, "", "STORAGE_ACCESS"], [37, 1, 1, "", "SUB_APPS"], [37, 1, 1, "", "SYNC_XHR"], [37, 1, 1, "", "UNLOAD"], [37, 1, 1, "", "USB"], [37, 1, 1, "", "USB_UNRESTRICTED"], [37, 1, 1, "", "VERTICAL_SCROLL"], [37, 1, 1, "", "WEB_PRINTING"], [37, 1, 1, "", "WEB_SHARE"], [37, 1, 1, "", "WINDOW_MANAGEMENT"], [37, 1, 1, "", "XR_SPATIAL_TRACKING"]], "nodriver.cdp.page.PermissionsPolicyFeatureState": [[37, 1, 1, "", "allowed"], [37, 1, 1, "", "feature"], [37, 1, 1, "", "locator"]], "nodriver.cdp.page.ProtocolHandler": [[37, 1, 1, "", "protocol"], [37, 1, 1, "", "url"]], "nodriver.cdp.page.ReferrerPolicy": [[37, 1, 1, "", "NO_REFERRER"], [37, 1, 1, "", "NO_REFERRER_WHEN_DOWNGRADE"], [37, 1, 1, "", "ORIGIN"], [37, 1, 1, "", "ORIGIN_WHEN_CROSS_ORIGIN"], [37, 1, 1, "", "SAME_ORIGIN"], [37, 1, 1, "", "STRICT_ORIGIN"], [37, 1, 1, "", "STRICT_ORIGIN_WHEN_CROSS_ORIGIN"], [37, 1, 1, "", "UNSAFE_URL"]], "nodriver.cdp.page.RelatedApplication": [[37, 1, 1, "", "id_"], [37, 1, 1, "", "url"]], "nodriver.cdp.page.ScopeExtension": [[37, 1, 1, "", "has_origin_wildcard"], [37, 1, 1, "", "origin"]], "nodriver.cdp.page.ScreencastFrame": [[37, 1, 1, "", "data"], [37, 1, 1, "", "metadata"], [37, 1, 1, "", "session_id"]], "nodriver.cdp.page.ScreencastFrameMetadata": [[37, 1, 1, "", "device_height"], [37, 1, 1, "", "device_width"], [37, 1, 1, "", "offset_top"], [37, 1, 1, "", "page_scale_factor"], [37, 1, 1, "", "scroll_offset_x"], [37, 1, 1, "", "scroll_offset_y"], [37, 1, 1, "", "timestamp"]], "nodriver.cdp.page.ScreencastVisibilityChanged": [[37, 1, 1, "", "visible"]], "nodriver.cdp.page.Screenshot": [[37, 1, 1, "", "form_factor"], [37, 1, 1, "", "image"], [37, 1, 1, "", "label"]], "nodriver.cdp.page.ScriptFontFamilies": [[37, 1, 1, "", "font_families"], [37, 1, 1, "", "script"]], "nodriver.cdp.page.SecureContextType": [[37, 1, 1, "", "INSECURE_ANCESTOR"], [37, 1, 1, "", "INSECURE_SCHEME"], [37, 1, 1, "", "SECURE"], [37, 1, 1, "", "SECURE_LOCALHOST"]], "nodriver.cdp.page.ShareTarget": [[37, 1, 1, "", "action"], [37, 1, 1, "", "enctype"], [37, 1, 1, "", "files"], [37, 1, 1, "", "method"], [37, 1, 1, "", "text"], [37, 1, 1, "", "title"], [37, 1, 1, "", "url"]], "nodriver.cdp.page.Shortcut": [[37, 1, 1, "", "name"], [37, 1, 1, "", "url"]], "nodriver.cdp.page.TransitionType": [[37, 1, 1, "", "ADDRESS_BAR"], [37, 1, 1, "", "AUTO_BOOKMARK"], [37, 1, 1, "", "AUTO_SUBFRAME"], [37, 1, 1, "", "AUTO_TOPLEVEL"], [37, 1, 1, "", "FORM_SUBMIT"], [37, 1, 1, "", "GENERATED"], [37, 1, 1, "", "KEYWORD"], [37, 1, 1, "", "KEYWORD_GENERATED"], [37, 1, 1, "", "LINK"], [37, 1, 1, "", "MANUAL_SUBFRAME"], [37, 1, 1, "", "OTHER"], [37, 1, 1, "", "RELOAD"], [37, 1, 1, "", "TYPED"]], "nodriver.cdp.page.Viewport": [[37, 1, 1, "", "height"], [37, 1, 1, "", "scale"], [37, 1, 1, "", "width"], [37, 1, 1, "", "x"], [37, 1, 1, "", "y"]], "nodriver.cdp.page.VisualViewport": [[37, 1, 1, "", "client_height"], [37, 1, 1, "", "client_width"], [37, 1, 1, "", "offset_x"], [37, 1, 1, "", "offset_y"], [37, 1, 1, "", "page_x"], [37, 1, 1, "", "page_y"], [37, 1, 1, "", "scale"], [37, 1, 1, "", "zoom"]], "nodriver.cdp.page.WebAppManifest": [[37, 1, 1, "", "background_color"], [37, 1, 1, "", "description"], [37, 1, 1, "", "dir_"], [37, 1, 1, "", "display"], [37, 1, 1, "", "display_overrides"], [37, 1, 1, "", "file_handlers"], [37, 1, 1, "", "icons"], [37, 1, 1, "", "id_"], [37, 1, 1, "", "lang"], [37, 1, 1, "", "launch_handler"], [37, 1, 1, "", "name"], [37, 1, 1, "", "orientation"], [37, 1, 1, "", "prefer_related_applications"], [37, 1, 1, "", "protocol_handlers"], [37, 1, 1, "", "related_applications"], [37, 1, 1, "", "scope"], [37, 1, 1, "", "scope_extensions"], [37, 1, 1, "", "screenshots"], [37, 1, 1, "", "share_target"], [37, 1, 1, "", "short_name"], [37, 1, 1, "", "shortcuts"], [37, 1, 1, "", "start_url"], [37, 1, 1, "", "theme_color"]], "nodriver.cdp.page.WindowOpen": [[37, 1, 1, "", "url"], [37, 1, 1, "", "user_gesture"], [37, 1, 1, "", "window_features"], [37, 1, 1, "", "window_name"]], "nodriver.cdp.performance": [[38, 0, 1, "", "Metric"], [38, 0, 1, "", "Metrics"], [38, 5, 1, "", "disable"], [38, 5, 1, "", "enable"], [38, 5, 1, "", "get_metrics"], [38, 5, 1, "", "set_time_domain"]], "nodriver.cdp.performance.Metric": [[38, 1, 1, "", "name"], [38, 1, 1, "", "value"]], "nodriver.cdp.performance.Metrics": [[38, 1, 1, "", "metrics"], [38, 1, 1, "", "title"]], "nodriver.cdp.performance_timeline": [[39, 0, 1, "", "LargestContentfulPaint"], [39, 0, 1, "", "LayoutShift"], [39, 0, 1, "", "LayoutShiftAttribution"], [39, 0, 1, "", "TimelineEvent"], [39, 0, 1, "", "TimelineEventAdded"], [39, 5, 1, "", "enable"]], "nodriver.cdp.performance_timeline.LargestContentfulPaint": [[39, 1, 1, "", "element_id"], [39, 1, 1, "", "load_time"], [39, 1, 1, "", "node_id"], [39, 1, 1, "", "render_time"], [39, 1, 1, "", "size"], [39, 1, 1, "", "url"]], "nodriver.cdp.performance_timeline.LayoutShift": [[39, 1, 1, "", "had_recent_input"], [39, 1, 1, "", "last_input_time"], [39, 1, 1, "", "sources"], [39, 1, 1, "", "value"]], "nodriver.cdp.performance_timeline.LayoutShiftAttribution": [[39, 1, 1, "", "current_rect"], [39, 1, 1, "", "node_id"], [39, 1, 1, "", "previous_rect"]], "nodriver.cdp.performance_timeline.TimelineEvent": [[39, 1, 1, "", "duration"], [39, 1, 1, "", "frame_id"], [39, 1, 1, "", "layout_shift_details"], [39, 1, 1, "", "lcp_details"], [39, 1, 1, "", "name"], [39, 1, 1, "", "time"], [39, 1, 1, "", "type_"]], "nodriver.cdp.performance_timeline.TimelineEventAdded": [[39, 1, 1, "", "event"]], "nodriver.cdp.preload": [[40, 0, 1, "", "PrefetchStatus"], [40, 0, 1, "", "PrefetchStatusUpdated"], [40, 0, 1, "", "PreloadEnabledStateUpdated"], [40, 0, 1, "", "PreloadingAttemptKey"], [40, 0, 1, "", "PreloadingAttemptSource"], [40, 0, 1, "", "PreloadingAttemptSourcesUpdated"], [40, 0, 1, "", "PreloadingStatus"], [40, 0, 1, "", "PrerenderFinalStatus"], [40, 0, 1, "", "PrerenderMismatchedHeaders"], [40, 0, 1, "", "PrerenderStatusUpdated"], [40, 0, 1, "", "RuleSet"], [40, 0, 1, "", "RuleSetErrorType"], [40, 0, 1, "", "RuleSetId"], [40, 0, 1, "", "RuleSetRemoved"], [40, 0, 1, "", "RuleSetUpdated"], [40, 0, 1, "", "SpeculationAction"], [40, 0, 1, "", "SpeculationTargetHint"], [40, 5, 1, "", "disable"], [40, 5, 1, "", "enable"]], "nodriver.cdp.preload.PrefetchStatus": [[40, 1, 1, "", "PREFETCH_ALLOWED"], [40, 1, 1, "", "PREFETCH_EVICTED_AFTER_CANDIDATE_REMOVED"], [40, 1, 1, "", "PREFETCH_EVICTED_FOR_NEWER_PREFETCH"], [40, 1, 1, "", "PREFETCH_FAILED_INELIGIBLE_REDIRECT"], [40, 1, 1, "", "PREFETCH_FAILED_INVALID_REDIRECT"], [40, 1, 1, "", "PREFETCH_FAILED_MIME_NOT_SUPPORTED"], [40, 1, 1, "", "PREFETCH_FAILED_NET_ERROR"], [40, 1, 1, "", "PREFETCH_FAILED_NON2_XX"], [40, 1, 1, "", "PREFETCH_FAILED_PER_PAGE_LIMIT_EXCEEDED"], [40, 1, 1, "", "PREFETCH_HELDBACK"], [40, 1, 1, "", "PREFETCH_INELIGIBLE_RETRY_AFTER"], [40, 1, 1, "", "PREFETCH_IS_PRIVACY_DECOY"], [40, 1, 1, "", "PREFETCH_IS_STALE"], [40, 1, 1, "", "PREFETCH_NOT_ELIGIBLE_BATTERY_SAVER_ENABLED"], [40, 1, 1, "", "PREFETCH_NOT_ELIGIBLE_BROWSER_CONTEXT_OFF_THE_RECORD"], [40, 1, 1, "", "PREFETCH_NOT_ELIGIBLE_DATA_SAVER_ENABLED"], [40, 1, 1, "", "PREFETCH_NOT_ELIGIBLE_EXISTING_PROXY"], [40, 1, 1, "", "PREFETCH_NOT_ELIGIBLE_HOST_IS_NON_UNIQUE"], [40, 1, 1, "", "PREFETCH_NOT_ELIGIBLE_NON_DEFAULT_STORAGE_PARTITION"], [40, 1, 1, "", "PREFETCH_NOT_ELIGIBLE_PRELOADING_DISABLED"], [40, 1, 1, "", "PREFETCH_NOT_ELIGIBLE_SAME_SITE_CROSS_ORIGIN_PREFETCH_REQUIRED_PROXY"], [40, 1, 1, "", "PREFETCH_NOT_ELIGIBLE_SCHEME_IS_NOT_HTTPS"], [40, 1, 1, "", "PREFETCH_NOT_ELIGIBLE_USER_HAS_COOKIES"], [40, 1, 1, "", "PREFETCH_NOT_ELIGIBLE_USER_HAS_SERVICE_WORKER"], [40, 1, 1, "", "PREFETCH_NOT_FINISHED_IN_TIME"], [40, 1, 1, "", "PREFETCH_NOT_STARTED"], [40, 1, 1, "", "PREFETCH_NOT_USED_COOKIES_CHANGED"], [40, 1, 1, "", "PREFETCH_NOT_USED_PROBE_FAILED"], [40, 1, 1, "", "PREFETCH_PROXY_NOT_AVAILABLE"], [40, 1, 1, "", "PREFETCH_RESPONSE_USED"], [40, 1, 1, "", "PREFETCH_SUCCESSFUL_BUT_NOT_USED"]], "nodriver.cdp.preload.PrefetchStatusUpdated": [[40, 1, 1, "", "initiating_frame_id"], [40, 1, 1, "", "key"], [40, 1, 1, "", "prefetch_status"], [40, 1, 1, "", "prefetch_url"], [40, 1, 1, "", "request_id"], [40, 1, 1, "", "status"]], "nodriver.cdp.preload.PreloadEnabledStateUpdated": [[40, 1, 1, "", "disabled_by_battery_saver"], [40, 1, 1, "", "disabled_by_data_saver"], [40, 1, 1, "", "disabled_by_holdback_prefetch_speculation_rules"], [40, 1, 1, "", "disabled_by_holdback_prerender_speculation_rules"], [40, 1, 1, "", "disabled_by_preference"]], "nodriver.cdp.preload.PreloadingAttemptKey": [[40, 1, 1, "", "action"], [40, 1, 1, "", "loader_id"], [40, 1, 1, "", "target_hint"], [40, 1, 1, "", "url"]], "nodriver.cdp.preload.PreloadingAttemptSource": [[40, 1, 1, "", "key"], [40, 1, 1, "", "node_ids"], [40, 1, 1, "", "rule_set_ids"]], "nodriver.cdp.preload.PreloadingAttemptSourcesUpdated": [[40, 1, 1, "", "loader_id"], [40, 1, 1, "", "preloading_attempt_sources"]], "nodriver.cdp.preload.PreloadingStatus": [[40, 1, 1, "", "FAILURE"], [40, 1, 1, "", "NOT_SUPPORTED"], [40, 1, 1, "", "PENDING"], [40, 1, 1, "", "READY"], [40, 1, 1, "", "RUNNING"], [40, 1, 1, "", "SUCCESS"]], "nodriver.cdp.preload.PrerenderFinalStatus": [[40, 1, 1, "", "ACTIVATED"], [40, 1, 1, "", "ACTIVATED_BEFORE_STARTED"], [40, 1, 1, "", "ACTIVATED_DURING_MAIN_FRAME_NAVIGATION"], [40, 1, 1, "", "ACTIVATED_IN_BACKGROUND"], [40, 1, 1, "", "ACTIVATED_WITH_AUXILIARY_BROWSING_CONTEXTS"], [40, 1, 1, "", "ACTIVATION_FRAME_POLICY_NOT_COMPATIBLE"], [40, 1, 1, "", "ACTIVATION_NAVIGATION_DESTROYED_BEFORE_SUCCESS"], [40, 1, 1, "", "ACTIVATION_NAVIGATION_PARAMETER_MISMATCH"], [40, 1, 1, "", "ACTIVATION_URL_HAS_EFFECTIVE_URL"], [40, 1, 1, "", "ALL_PRERENDERING_CANCELED"], [40, 1, 1, "", "AUDIO_OUTPUT_DEVICE_REQUESTED"], [40, 1, 1, "", "BATTERY_SAVER_ENABLED"], [40, 1, 1, "", "BLOCKED_BY_CLIENT"], [40, 1, 1, "", "CANCEL_ALL_HOSTS_FOR_TESTING"], [40, 1, 1, "", "CLIENT_CERT_REQUESTED"], [40, 1, 1, "", "CROSS_SITE_NAVIGATION_IN_INITIAL_NAVIGATION"], [40, 1, 1, "", "CROSS_SITE_NAVIGATION_IN_MAIN_FRAME_NAVIGATION"], [40, 1, 1, "", "CROSS_SITE_REDIRECT_IN_INITIAL_NAVIGATION"], [40, 1, 1, "", "CROSS_SITE_REDIRECT_IN_MAIN_FRAME_NAVIGATION"], [40, 1, 1, "", "DATA_SAVER_ENABLED"], [40, 1, 1, "", "DESTROYED"], [40, 1, 1, "", "DID_FAIL_LOAD"], [40, 1, 1, "", "DOWNLOAD"], [40, 1, 1, "", "EMBEDDER_HOST_DISALLOWED"], [40, 1, 1, "", "INACTIVE_PAGE_RESTRICTION"], [40, 1, 1, "", "INVALID_SCHEME_NAVIGATION"], [40, 1, 1, "", "INVALID_SCHEME_REDIRECT"], [40, 1, 1, "", "JAVA_SCRIPT_INTERFACE_ADDED"], [40, 1, 1, "", "JAVA_SCRIPT_INTERFACE_REMOVED"], [40, 1, 1, "", "LOGIN_AUTH_REQUESTED"], [40, 1, 1, "", "LOW_END_DEVICE"], [40, 1, 1, "", "MAIN_FRAME_NAVIGATION"], [40, 1, 1, "", "MAX_NUM_OF_RUNNING_EAGER_PRERENDERS_EXCEEDED"], [40, 1, 1, "", "MAX_NUM_OF_RUNNING_EMBEDDER_PRERENDERS_EXCEEDED"], [40, 1, 1, "", "MAX_NUM_OF_RUNNING_NON_EAGER_PRERENDERS_EXCEEDED"], [40, 1, 1, "", "MEMORY_LIMIT_EXCEEDED"], [40, 1, 1, "", "MEMORY_PRESSURE_AFTER_TRIGGERED"], [40, 1, 1, "", "MEMORY_PRESSURE_ON_TRIGGER"], [40, 1, 1, "", "MIXED_CONTENT"], [40, 1, 1, "", "MOJO_BINDER_POLICY"], [40, 1, 1, "", "NAVIGATION_BAD_HTTP_STATUS"], [40, 1, 1, "", "NAVIGATION_NOT_COMMITTED"], [40, 1, 1, "", "NAVIGATION_REQUEST_BLOCKED_BY_CSP"], [40, 1, 1, "", "NAVIGATION_REQUEST_NETWORK_ERROR"], [40, 1, 1, "", "PRELOADING_DISABLED"], [40, 1, 1, "", "PRELOADING_UNSUPPORTED_BY_WEB_CONTENTS"], [40, 1, 1, "", "PRERENDERING_DISABLED_BY_DEV_TOOLS"], [40, 1, 1, "", "PRERENDERING_URL_HAS_EFFECTIVE_URL"], [40, 1, 1, "", "PRIMARY_MAIN_FRAME_RENDERER_PROCESS_CRASHED"], [40, 1, 1, "", "PRIMARY_MAIN_FRAME_RENDERER_PROCESS_KILLED"], [40, 1, 1, "", "REDIRECTED_PRERENDERING_URL_HAS_EFFECTIVE_URL"], [40, 1, 1, "", "RENDERER_PROCESS_CRASHED"], [40, 1, 1, "", "RENDERER_PROCESS_KILLED"], [40, 1, 1, "", "SAME_SITE_CROSS_ORIGIN_NAVIGATION_NOT_OPT_IN_IN_INITIAL_NAVIGATION"], [40, 1, 1, "", "SAME_SITE_CROSS_ORIGIN_NAVIGATION_NOT_OPT_IN_IN_MAIN_FRAME_NAVIGATION"], [40, 1, 1, "", "SAME_SITE_CROSS_ORIGIN_REDIRECT_NOT_OPT_IN_IN_INITIAL_NAVIGATION"], [40, 1, 1, "", "SAME_SITE_CROSS_ORIGIN_REDIRECT_NOT_OPT_IN_IN_MAIN_FRAME_NAVIGATION"], [40, 1, 1, "", "SPECULATION_RULE_REMOVED"], [40, 1, 1, "", "SSL_CERTIFICATE_ERROR"], [40, 1, 1, "", "START_FAILED"], [40, 1, 1, "", "STOP"], [40, 1, 1, "", "TAB_CLOSED_BY_USER_GESTURE"], [40, 1, 1, "", "TAB_CLOSED_WITHOUT_USER_GESTURE"], [40, 1, 1, "", "TIMEOUT_BACKGROUNDED"], [40, 1, 1, "", "TRIGGER_BACKGROUNDED"], [40, 1, 1, "", "TRIGGER_DESTROYED"], [40, 1, 1, "", "TRIGGER_URL_HAS_EFFECTIVE_URL"], [40, 1, 1, "", "UA_CHANGE_REQUIRES_RELOAD"]], "nodriver.cdp.preload.PrerenderMismatchedHeaders": [[40, 1, 1, "", "activation_value"], [40, 1, 1, "", "header_name"], [40, 1, 1, "", "initial_value"]], "nodriver.cdp.preload.PrerenderStatusUpdated": [[40, 1, 1, "", "disallowed_mojo_interface"], [40, 1, 1, "", "key"], [40, 1, 1, "", "mismatched_headers"], [40, 1, 1, "", "prerender_status"], [40, 1, 1, "", "status"]], "nodriver.cdp.preload.RuleSet": [[40, 1, 1, "", "backend_node_id"], [40, 1, 1, "", "error_message"], [40, 1, 1, "", "error_type"], [40, 1, 1, "", "id_"], [40, 1, 1, "", "loader_id"], [40, 1, 1, "", "request_id"], [40, 1, 1, "", "source_text"], [40, 1, 1, "", "url"]], "nodriver.cdp.preload.RuleSetErrorType": [[40, 1, 1, "", "INVALID_RULES_SKIPPED"], [40, 1, 1, "", "SOURCE_IS_NOT_JSON_OBJECT"]], "nodriver.cdp.preload.RuleSetRemoved": [[40, 1, 1, "", "id_"]], "nodriver.cdp.preload.RuleSetUpdated": [[40, 1, 1, "", "rule_set"]], "nodriver.cdp.preload.SpeculationAction": [[40, 1, 1, "", "PREFETCH"], [40, 1, 1, "", "PRERENDER"]], "nodriver.cdp.preload.SpeculationTargetHint": [[40, 1, 1, "", "BLANK"], [40, 1, 1, "", "SELF"]], "nodriver.cdp.profiler": [[41, 0, 1, "", "ConsoleProfileFinished"], [41, 0, 1, "", "ConsoleProfileStarted"], [41, 0, 1, "", "CoverageRange"], [41, 0, 1, "", "FunctionCoverage"], [41, 0, 1, "", "PositionTickInfo"], [41, 0, 1, "", "PreciseCoverageDeltaUpdate"], [41, 0, 1, "", "Profile"], [41, 0, 1, "", "ProfileNode"], [41, 0, 1, "", "ScriptCoverage"], [41, 5, 1, "", "disable"], [41, 5, 1, "", "enable"], [41, 5, 1, "", "get_best_effort_coverage"], [41, 5, 1, "", "set_sampling_interval"], [41, 5, 1, "", "start"], [41, 5, 1, "", "start_precise_coverage"], [41, 5, 1, "", "stop"], [41, 5, 1, "", "stop_precise_coverage"], [41, 5, 1, "", "take_precise_coverage"]], "nodriver.cdp.profiler.ConsoleProfileFinished": [[41, 1, 1, "", "id_"], [41, 1, 1, "", "location"], [41, 1, 1, "", "profile"], [41, 1, 1, "", "title"]], "nodriver.cdp.profiler.ConsoleProfileStarted": [[41, 1, 1, "", "id_"], [41, 1, 1, "", "location"], [41, 1, 1, "", "title"]], "nodriver.cdp.profiler.CoverageRange": [[41, 1, 1, "", "count"], [41, 1, 1, "", "end_offset"], [41, 1, 1, "", "start_offset"]], "nodriver.cdp.profiler.FunctionCoverage": [[41, 1, 1, "", "function_name"], [41, 1, 1, "", "is_block_coverage"], [41, 1, 1, "", "ranges"]], "nodriver.cdp.profiler.PositionTickInfo": [[41, 1, 1, "", "line"], [41, 1, 1, "", "ticks"]], "nodriver.cdp.profiler.PreciseCoverageDeltaUpdate": [[41, 1, 1, "", "occasion"], [41, 1, 1, "", "result"], [41, 1, 1, "", "timestamp"]], "nodriver.cdp.profiler.Profile": [[41, 1, 1, "", "end_time"], [41, 1, 1, "", "nodes"], [41, 1, 1, "", "samples"], [41, 1, 1, "", "start_time"], [41, 1, 1, "", "time_deltas"]], "nodriver.cdp.profiler.ProfileNode": [[41, 1, 1, "", "call_frame"], [41, 1, 1, "", "children"], [41, 1, 1, "", "deopt_reason"], [41, 1, 1, "", "hit_count"], [41, 1, 1, "", "id_"], [41, 1, 1, "", "position_ticks"]], "nodriver.cdp.profiler.ScriptCoverage": [[41, 1, 1, "", "functions"], [41, 1, 1, "", "script_id"], [41, 1, 1, "", "url"]], "nodriver.cdp.pwa": [[42, 0, 1, "", "DisplayMode"], [42, 0, 1, "", "FileHandler"], [42, 0, 1, "", "FileHandlerAccept"], [42, 5, 1, "", "change_app_user_settings"], [42, 5, 1, "", "get_os_app_state"], [42, 5, 1, "", "install"], [42, 5, 1, "", "launch"], [42, 5, 1, "", "launch_files_in_app"], [42, 5, 1, "", "open_current_page_in_app"], [42, 5, 1, "", "uninstall"]], "nodriver.cdp.pwa.DisplayMode": [[42, 1, 1, "", "BROWSER"], [42, 1, 1, "", "STANDALONE"]], "nodriver.cdp.pwa.FileHandler": [[42, 1, 1, "", "accepts"], [42, 1, 1, "", "action"], [42, 1, 1, "", "display_name"]], "nodriver.cdp.pwa.FileHandlerAccept": [[42, 1, 1, "", "file_extensions"], [42, 1, 1, "", "media_type"]], "nodriver.cdp.runtime": [[43, 0, 1, "", "BindingCalled"], [43, 0, 1, "", "CallArgument"], [43, 0, 1, "", "CallFrame"], [43, 0, 1, "", "ConsoleAPICalled"], [43, 0, 1, "", "CustomPreview"], [43, 0, 1, "", "DeepSerializedValue"], [43, 0, 1, "", "EntryPreview"], [43, 0, 1, "", "ExceptionDetails"], [43, 0, 1, "", "ExceptionRevoked"], [43, 0, 1, "", "ExceptionThrown"], [43, 0, 1, "", "ExecutionContextCreated"], [43, 0, 1, "", "ExecutionContextDescription"], [43, 0, 1, "", "ExecutionContextDestroyed"], [43, 0, 1, "", "ExecutionContextId"], [43, 0, 1, "", "ExecutionContextsCleared"], [43, 0, 1, "", "InspectRequested"], [43, 0, 1, "", "InternalPropertyDescriptor"], [43, 0, 1, "", "ObjectPreview"], [43, 0, 1, "", "PrivatePropertyDescriptor"], [43, 0, 1, "", "PropertyDescriptor"], [43, 0, 1, "", "PropertyPreview"], [43, 0, 1, "", "RemoteObject"], [43, 0, 1, "", "RemoteObjectId"], [43, 0, 1, "", "ScriptId"], [43, 0, 1, "", "SerializationOptions"], [43, 0, 1, "", "StackTrace"], [43, 0, 1, "", "StackTraceId"], [43, 0, 1, "", "TimeDelta"], [43, 0, 1, "", "Timestamp"], [43, 0, 1, "", "UniqueDebuggerId"], [43, 0, 1, "", "UnserializableValue"], [43, 5, 1, "", "add_binding"], [43, 5, 1, "", "await_promise"], [43, 5, 1, "", "call_function_on"], [43, 5, 1, "", "compile_script"], [43, 5, 1, "", "disable"], [43, 5, 1, "", "discard_console_entries"], [43, 5, 1, "", "enable"], [43, 5, 1, "", "evaluate"], [43, 5, 1, "", "get_exception_details"], [43, 5, 1, "", "get_heap_usage"], [43, 5, 1, "", "get_isolate_id"], [43, 5, 1, "", "get_properties"], [43, 5, 1, "", "global_lexical_scope_names"], [43, 5, 1, "", "query_objects"], [43, 5, 1, "", "release_object"], [43, 5, 1, "", "release_object_group"], [43, 5, 1, "", "remove_binding"], [43, 5, 1, "", "run_if_waiting_for_debugger"], [43, 5, 1, "", "run_script"], [43, 5, 1, "", "set_async_call_stack_depth"], [43, 5, 1, "", "set_custom_object_formatter_enabled"], [43, 5, 1, "", "set_max_call_stack_size_to_capture"], [43, 5, 1, "", "terminate_execution"]], "nodriver.cdp.runtime.BindingCalled": [[43, 1, 1, "", "execution_context_id"], [43, 1, 1, "", "name"], [43, 1, 1, "", "payload"]], "nodriver.cdp.runtime.CallArgument": [[43, 1, 1, "", "object_id"], [43, 1, 1, "", "unserializable_value"], [43, 1, 1, "", "value"]], "nodriver.cdp.runtime.CallFrame": [[43, 1, 1, "", "column_number"], [43, 1, 1, "", "function_name"], [43, 1, 1, "", "line_number"], [43, 1, 1, "", "script_id"], [43, 1, 1, "", "url"]], "nodriver.cdp.runtime.ConsoleAPICalled": [[43, 1, 1, "", "args"], [43, 1, 1, "", "context"], [43, 1, 1, "", "execution_context_id"], [43, 1, 1, "", "stack_trace"], [43, 1, 1, "", "timestamp"], [43, 1, 1, "", "type_"]], "nodriver.cdp.runtime.CustomPreview": [[43, 1, 1, "", "body_getter_id"], [43, 1, 1, "", "header"]], "nodriver.cdp.runtime.DeepSerializedValue": [[43, 1, 1, "", "object_id"], [43, 1, 1, "", "type_"], [43, 1, 1, "", "value"], [43, 1, 1, "", "weak_local_object_reference"]], "nodriver.cdp.runtime.EntryPreview": [[43, 1, 1, "", "key"], [43, 1, 1, "", "value"]], "nodriver.cdp.runtime.ExceptionDetails": [[43, 1, 1, "", "column_number"], [43, 1, 1, "", "exception"], [43, 1, 1, "", "exception_id"], [43, 1, 1, "", "exception_meta_data"], [43, 1, 1, "", "execution_context_id"], [43, 1, 1, "", "line_number"], [43, 1, 1, "", "script_id"], [43, 1, 1, "", "stack_trace"], [43, 1, 1, "", "text"], [43, 1, 1, "", "url"]], "nodriver.cdp.runtime.ExceptionRevoked": [[43, 1, 1, "", "exception_id"], [43, 1, 1, "", "reason"]], "nodriver.cdp.runtime.ExceptionThrown": [[43, 1, 1, "", "exception_details"], [43, 1, 1, "", "timestamp"]], "nodriver.cdp.runtime.ExecutionContextCreated": [[43, 1, 1, "", "context"]], "nodriver.cdp.runtime.ExecutionContextDescription": [[43, 1, 1, "", "aux_data"], [43, 1, 1, "", "id_"], [43, 1, 1, "", "name"], [43, 1, 1, "", "origin"], [43, 1, 1, "", "unique_id"]], "nodriver.cdp.runtime.ExecutionContextDestroyed": [[43, 1, 1, "", "execution_context_id"], [43, 1, 1, "", "execution_context_unique_id"]], "nodriver.cdp.runtime.InspectRequested": [[43, 1, 1, "", "execution_context_id"], [43, 1, 1, "", "hints"], [43, 1, 1, "", "object_"]], "nodriver.cdp.runtime.InternalPropertyDescriptor": [[43, 1, 1, "", "name"], [43, 1, 1, "", "value"]], "nodriver.cdp.runtime.ObjectPreview": [[43, 1, 1, "", "description"], [43, 1, 1, "", "entries"], [43, 1, 1, "", "overflow"], [43, 1, 1, "", "properties"], [43, 1, 1, "", "subtype"], [43, 1, 1, "", "type_"]], "nodriver.cdp.runtime.PrivatePropertyDescriptor": [[43, 1, 1, "", "get"], [43, 1, 1, "", "name"], [43, 1, 1, "", "set_"], [43, 1, 1, "", "value"]], "nodriver.cdp.runtime.PropertyDescriptor": [[43, 1, 1, "", "configurable"], [43, 1, 1, "", "enumerable"], [43, 1, 1, "", "get"], [43, 1, 1, "", "is_own"], [43, 1, 1, "", "name"], [43, 1, 1, "", "set_"], [43, 1, 1, "", "symbol"], [43, 1, 1, "", "value"], [43, 1, 1, "", "was_thrown"], [43, 1, 1, "", "writable"]], "nodriver.cdp.runtime.PropertyPreview": [[43, 1, 1, "", "name"], [43, 1, 1, "", "subtype"], [43, 1, 1, "", "type_"], [43, 1, 1, "", "value"], [43, 1, 1, "", "value_preview"]], "nodriver.cdp.runtime.RemoteObject": [[43, 1, 1, "", "class_name"], [43, 1, 1, "", "custom_preview"], [43, 1, 1, "", "deep_serialized_value"], [43, 1, 1, "", "description"], [43, 1, 1, "", "object_id"], [43, 1, 1, "", "preview"], [43, 1, 1, "", "subtype"], [43, 1, 1, "", "type_"], [43, 1, 1, "", "unserializable_value"], [43, 1, 1, "", "value"]], "nodriver.cdp.runtime.SerializationOptions": [[43, 1, 1, "", "additional_parameters"], [43, 1, 1, "", "max_depth"], [43, 1, 1, "", "serialization"]], "nodriver.cdp.runtime.StackTrace": [[43, 1, 1, "", "call_frames"], [43, 1, 1, "", "description"], [43, 1, 1, "", "parent"], [43, 1, 1, "", "parent_id"]], "nodriver.cdp.runtime.StackTraceId": [[43, 1, 1, "", "debugger_id"], [43, 1, 1, "", "id_"]], "nodriver.cdp.schema": [[44, 0, 1, "", "Domain"], [44, 5, 1, "", "get_domains"]], "nodriver.cdp.schema.Domain": [[44, 1, 1, "", "name"], [44, 1, 1, "", "version"]], "nodriver.cdp.security": [[45, 0, 1, "", "CertificateError"], [45, 0, 1, "", "CertificateErrorAction"], [45, 0, 1, "", "CertificateId"], [45, 0, 1, "", "CertificateSecurityState"], [45, 0, 1, "", "InsecureContentStatus"], [45, 0, 1, "", "MixedContentType"], [45, 0, 1, "", "SafetyTipInfo"], [45, 0, 1, "", "SafetyTipStatus"], [45, 0, 1, "", "SecurityState"], [45, 0, 1, "", "SecurityStateChanged"], [45, 0, 1, "", "SecurityStateExplanation"], [45, 0, 1, "", "VisibleSecurityState"], [45, 0, 1, "", "VisibleSecurityStateChanged"], [45, 5, 1, "", "disable"], [45, 5, 1, "", "enable"], [45, 5, 1, "", "handle_certificate_error"], [45, 5, 1, "", "set_ignore_certificate_errors"], [45, 5, 1, "", "set_override_certificate_errors"]], "nodriver.cdp.security.CertificateError": [[45, 1, 1, "", "error_type"], [45, 1, 1, "", "event_id"], [45, 1, 1, "", "request_url"]], "nodriver.cdp.security.CertificateErrorAction": [[45, 1, 1, "", "CANCEL"], [45, 1, 1, "", "CONTINUE"]], "nodriver.cdp.security.CertificateSecurityState": [[45, 1, 1, "", "certificate"], [45, 1, 1, "", "certificate_has_sha1_signature"], [45, 1, 1, "", "certificate_has_weak_signature"], [45, 1, 1, "", "certificate_network_error"], [45, 1, 1, "", "cipher"], [45, 1, 1, "", "issuer"], [45, 1, 1, "", "key_exchange"], [45, 1, 1, "", "key_exchange_group"], [45, 1, 1, "", "mac"], [45, 1, 1, "", "modern_ssl"], [45, 1, 1, "", "obsolete_ssl_cipher"], [45, 1, 1, "", "obsolete_ssl_key_exchange"], [45, 1, 1, "", "obsolete_ssl_protocol"], [45, 1, 1, "", "obsolete_ssl_signature"], [45, 1, 1, "", "protocol"], [45, 1, 1, "", "subject_name"], [45, 1, 1, "", "valid_from"], [45, 1, 1, "", "valid_to"]], "nodriver.cdp.security.InsecureContentStatus": [[45, 1, 1, "", "contained_mixed_form"], [45, 1, 1, "", "displayed_content_with_cert_errors"], [45, 1, 1, "", "displayed_insecure_content_style"], [45, 1, 1, "", "displayed_mixed_content"], [45, 1, 1, "", "ran_content_with_cert_errors"], [45, 1, 1, "", "ran_insecure_content_style"], [45, 1, 1, "", "ran_mixed_content"]], "nodriver.cdp.security.MixedContentType": [[45, 1, 1, "", "BLOCKABLE"], [45, 1, 1, "", "NONE"], [45, 1, 1, "", "OPTIONALLY_BLOCKABLE"]], "nodriver.cdp.security.SafetyTipInfo": [[45, 1, 1, "", "safe_url"], [45, 1, 1, "", "safety_tip_status"]], "nodriver.cdp.security.SafetyTipStatus": [[45, 1, 1, "", "BAD_REPUTATION"], [45, 1, 1, "", "LOOKALIKE"]], "nodriver.cdp.security.SecurityState": [[45, 1, 1, "", "INFO"], [45, 1, 1, "", "INSECURE"], [45, 1, 1, "", "INSECURE_BROKEN"], [45, 1, 1, "", "NEUTRAL"], [45, 1, 1, "", "SECURE"], [45, 1, 1, "", "UNKNOWN"]], "nodriver.cdp.security.SecurityStateChanged": [[45, 1, 1, "", "explanations"], [45, 1, 1, "", "insecure_content_status"], [45, 1, 1, "", "scheme_is_cryptographic"], [45, 1, 1, "", "security_state"], [45, 1, 1, "", "summary"]], "nodriver.cdp.security.SecurityStateExplanation": [[45, 1, 1, "", "certificate"], [45, 1, 1, "", "description"], [45, 1, 1, "", "mixed_content_type"], [45, 1, 1, "", "recommendations"], [45, 1, 1, "", "security_state"], [45, 1, 1, "", "summary"], [45, 1, 1, "", "title"]], "nodriver.cdp.security.VisibleSecurityState": [[45, 1, 1, "", "certificate_security_state"], [45, 1, 1, "", "safety_tip_info"], [45, 1, 1, "", "security_state"], [45, 1, 1, "", "security_state_issue_ids"]], "nodriver.cdp.security.VisibleSecurityStateChanged": [[45, 1, 1, "", "visible_security_state"]], "nodriver.cdp.service_worker": [[46, 0, 1, "", "RegistrationID"], [46, 0, 1, "", "ServiceWorkerErrorMessage"], [46, 0, 1, "", "ServiceWorkerRegistration"], [46, 0, 1, "", "ServiceWorkerVersion"], [46, 0, 1, "", "ServiceWorkerVersionRunningStatus"], [46, 0, 1, "", "ServiceWorkerVersionStatus"], [46, 0, 1, "", "WorkerErrorReported"], [46, 0, 1, "", "WorkerRegistrationUpdated"], [46, 0, 1, "", "WorkerVersionUpdated"], [46, 5, 1, "", "deliver_push_message"], [46, 5, 1, "", "disable"], [46, 5, 1, "", "dispatch_periodic_sync_event"], [46, 5, 1, "", "dispatch_sync_event"], [46, 5, 1, "", "enable"], [46, 5, 1, "", "inspect_worker"], [46, 5, 1, "", "set_force_update_on_page_load"], [46, 5, 1, "", "skip_waiting"], [46, 5, 1, "", "start_worker"], [46, 5, 1, "", "stop_all_workers"], [46, 5, 1, "", "stop_worker"], [46, 5, 1, "", "unregister"], [46, 5, 1, "", "update_registration"]], "nodriver.cdp.service_worker.ServiceWorkerErrorMessage": [[46, 1, 1, "", "column_number"], [46, 1, 1, "", "error_message"], [46, 1, 1, "", "line_number"], [46, 1, 1, "", "registration_id"], [46, 1, 1, "", "source_url"], [46, 1, 1, "", "version_id"]], "nodriver.cdp.service_worker.ServiceWorkerRegistration": [[46, 1, 1, "", "is_deleted"], [46, 1, 1, "", "registration_id"], [46, 1, 1, "", "scope_url"]], "nodriver.cdp.service_worker.ServiceWorkerVersion": [[46, 1, 1, "", "controlled_clients"], [46, 1, 1, "", "registration_id"], [46, 1, 1, "", "router_rules"], [46, 1, 1, "", "running_status"], [46, 1, 1, "", "script_last_modified"], [46, 1, 1, "", "script_response_time"], [46, 1, 1, "", "script_url"], [46, 1, 1, "", "status"], [46, 1, 1, "", "target_id"], [46, 1, 1, "", "version_id"]], "nodriver.cdp.service_worker.ServiceWorkerVersionRunningStatus": [[46, 1, 1, "", "RUNNING"], [46, 1, 1, "", "STARTING"], [46, 1, 1, "", "STOPPED"], [46, 1, 1, "", "STOPPING"]], "nodriver.cdp.service_worker.ServiceWorkerVersionStatus": [[46, 1, 1, "", "ACTIVATED"], [46, 1, 1, "", "ACTIVATING"], [46, 1, 1, "", "INSTALLED"], [46, 1, 1, "", "INSTALLING"], [46, 1, 1, "", "NEW"], [46, 1, 1, "", "REDUNDANT"]], "nodriver.cdp.service_worker.WorkerErrorReported": [[46, 1, 1, "", "error_message"]], "nodriver.cdp.service_worker.WorkerRegistrationUpdated": [[46, 1, 1, "", "registrations"]], "nodriver.cdp.service_worker.WorkerVersionUpdated": [[46, 1, 1, "", "versions"]], "nodriver.cdp.storage": [[47, 0, 1, "", "AttributionReportingAggregatableDedupKey"], [47, 0, 1, "", "AttributionReportingAggregatableResult"], [47, 0, 1, "", "AttributionReportingAggregatableTriggerData"], [47, 0, 1, "", "AttributionReportingAggregatableValueDictEntry"], [47, 0, 1, "", "AttributionReportingAggregatableValueEntry"], [47, 0, 1, "", "AttributionReportingAggregationKeysEntry"], [47, 0, 1, "", "AttributionReportingEventLevelResult"], [47, 0, 1, "", "AttributionReportingEventReportWindows"], [47, 0, 1, "", "AttributionReportingEventTriggerData"], [47, 0, 1, "", "AttributionReportingFilterConfig"], [47, 0, 1, "", "AttributionReportingFilterDataEntry"], [47, 0, 1, "", "AttributionReportingFilterPair"], [47, 0, 1, "", "AttributionReportingSourceRegistered"], [47, 0, 1, "", "AttributionReportingSourceRegistration"], [47, 0, 1, "", "AttributionReportingSourceRegistrationResult"], [47, 0, 1, "", "AttributionReportingSourceRegistrationTimeConfig"], [47, 0, 1, "", "AttributionReportingSourceType"], [47, 0, 1, "", "AttributionReportingTriggerDataMatching"], [47, 0, 1, "", "AttributionReportingTriggerRegistered"], [47, 0, 1, "", "AttributionReportingTriggerRegistration"], [47, 0, 1, "", "AttributionReportingTriggerSpec"], [47, 0, 1, "", "CacheStorageContentUpdated"], [47, 0, 1, "", "CacheStorageListUpdated"], [47, 0, 1, "", "IndexedDBContentUpdated"], [47, 0, 1, "", "IndexedDBListUpdated"], [47, 0, 1, "", "InterestGroupAccessType"], [47, 0, 1, "", "InterestGroupAccessed"], [47, 0, 1, "", "InterestGroupAuctionEventOccurred"], [47, 0, 1, "", "InterestGroupAuctionEventType"], [47, 0, 1, "", "InterestGroupAuctionFetchType"], [47, 0, 1, "", "InterestGroupAuctionId"], [47, 0, 1, "", "InterestGroupAuctionNetworkRequestCreated"], [47, 0, 1, "", "RelatedWebsiteSet"], [47, 0, 1, "", "SerializedStorageKey"], [47, 0, 1, "", "SharedStorageAccessParams"], [47, 0, 1, "", "SharedStorageAccessType"], [47, 0, 1, "", "SharedStorageAccessed"], [47, 0, 1, "", "SharedStorageEntry"], [47, 0, 1, "", "SharedStorageMetadata"], [47, 0, 1, "", "SharedStorageReportingMetadata"], [47, 0, 1, "", "SharedStorageUrlWithMetadata"], [47, 0, 1, "", "SignedInt64AsBase10"], [47, 0, 1, "", "StorageBucket"], [47, 0, 1, "", "StorageBucketCreatedOrUpdated"], [47, 0, 1, "", "StorageBucketDeleted"], [47, 0, 1, "", "StorageBucketInfo"], [47, 0, 1, "", "StorageBucketsDurability"], [47, 0, 1, "", "StorageType"], [47, 0, 1, "", "TrustTokens"], [47, 0, 1, "", "UnsignedInt128AsBase16"], [47, 0, 1, "", "UnsignedInt64AsBase10"], [47, 0, 1, "", "UsageForType"], [47, 5, 1, "", "clear_cookies"], [47, 5, 1, "", "clear_data_for_origin"], [47, 5, 1, "", "clear_data_for_storage_key"], [47, 5, 1, "", "clear_shared_storage_entries"], [47, 5, 1, "", "clear_trust_tokens"], [47, 5, 1, "", "delete_shared_storage_entry"], [47, 5, 1, "", "delete_storage_bucket"], [47, 5, 1, "", "get_cookies"], [47, 5, 1, "", "get_interest_group_details"], [47, 5, 1, "", "get_related_website_sets"], [47, 5, 1, "", "get_shared_storage_entries"], [47, 5, 1, "", "get_shared_storage_metadata"], [47, 5, 1, "", "get_storage_key_for_frame"], [47, 5, 1, "", "get_trust_tokens"], [47, 5, 1, "", "get_usage_and_quota"], [47, 5, 1, "", "override_quota_for_origin"], [47, 5, 1, "", "reset_shared_storage_budget"], [47, 5, 1, "", "run_bounce_tracking_mitigations"], [47, 5, 1, "", "send_pending_attribution_reports"], [47, 5, 1, "", "set_attribution_reporting_local_testing_mode"], [47, 5, 1, "", "set_attribution_reporting_tracking"], [47, 5, 1, "", "set_cookies"], [47, 5, 1, "", "set_interest_group_auction_tracking"], [47, 5, 1, "", "set_interest_group_tracking"], [47, 5, 1, "", "set_shared_storage_entry"], [47, 5, 1, "", "set_shared_storage_tracking"], [47, 5, 1, "", "set_storage_bucket_tracking"], [47, 5, 1, "", "track_cache_storage_for_origin"], [47, 5, 1, "", "track_cache_storage_for_storage_key"], [47, 5, 1, "", "track_indexed_db_for_origin"], [47, 5, 1, "", "track_indexed_db_for_storage_key"], [47, 5, 1, "", "untrack_cache_storage_for_origin"], [47, 5, 1, "", "untrack_cache_storage_for_storage_key"], [47, 5, 1, "", "untrack_indexed_db_for_origin"], [47, 5, 1, "", "untrack_indexed_db_for_storage_key"]], "nodriver.cdp.storage.AttributionReportingAggregatableDedupKey": [[47, 1, 1, "", "dedup_key"], [47, 1, 1, "", "filters"]], "nodriver.cdp.storage.AttributionReportingAggregatableResult": [[47, 1, 1, "", "DEDUPLICATED"], [47, 1, 1, "", "EXCESSIVE_ATTRIBUTIONS"], [47, 1, 1, "", "EXCESSIVE_REPORTING_ORIGINS"], [47, 1, 1, "", "EXCESSIVE_REPORTS"], [47, 1, 1, "", "INSUFFICIENT_BUDGET"], [47, 1, 1, "", "INTERNAL_ERROR"], [47, 1, 1, "", "NOT_REGISTERED"], [47, 1, 1, "", "NO_CAPACITY_FOR_ATTRIBUTION_DESTINATION"], [47, 1, 1, "", "NO_HISTOGRAMS"], [47, 1, 1, "", "NO_MATCHING_SOURCES"], [47, 1, 1, "", "NO_MATCHING_SOURCE_FILTER_DATA"], [47, 1, 1, "", "PROHIBITED_BY_BROWSER_POLICY"], [47, 1, 1, "", "REPORT_WINDOW_PASSED"], [47, 1, 1, "", "SUCCESS"]], "nodriver.cdp.storage.AttributionReportingAggregatableTriggerData": [[47, 1, 1, "", "filters"], [47, 1, 1, "", "key_piece"], [47, 1, 1, "", "source_keys"]], "nodriver.cdp.storage.AttributionReportingAggregatableValueDictEntry": [[47, 1, 1, "", "key"], [47, 1, 1, "", "value"]], "nodriver.cdp.storage.AttributionReportingAggregatableValueEntry": [[47, 1, 1, "", "filters"], [47, 1, 1, "", "values"]], "nodriver.cdp.storage.AttributionReportingAggregationKeysEntry": [[47, 1, 1, "", "key"], [47, 1, 1, "", "value"]], "nodriver.cdp.storage.AttributionReportingEventLevelResult": [[47, 1, 1, "", "DEDUPLICATED"], [47, 1, 1, "", "EXCESSIVE_ATTRIBUTIONS"], [47, 1, 1, "", "EXCESSIVE_REPORTING_ORIGINS"], [47, 1, 1, "", "EXCESSIVE_REPORTS"], [47, 1, 1, "", "FALSELY_ATTRIBUTED_SOURCE"], [47, 1, 1, "", "INTERNAL_ERROR"], [47, 1, 1, "", "NEVER_ATTRIBUTED_SOURCE"], [47, 1, 1, "", "NOT_REGISTERED"], [47, 1, 1, "", "NO_CAPACITY_FOR_ATTRIBUTION_DESTINATION"], [47, 1, 1, "", "NO_MATCHING_CONFIGURATIONS"], [47, 1, 1, "", "NO_MATCHING_SOURCES"], [47, 1, 1, "", "NO_MATCHING_SOURCE_FILTER_DATA"], [47, 1, 1, "", "NO_MATCHING_TRIGGER_DATA"], [47, 1, 1, "", "PRIORITY_TOO_LOW"], [47, 1, 1, "", "PROHIBITED_BY_BROWSER_POLICY"], [47, 1, 1, "", "REPORT_WINDOW_NOT_STARTED"], [47, 1, 1, "", "REPORT_WINDOW_PASSED"], [47, 1, 1, "", "SUCCESS"], [47, 1, 1, "", "SUCCESS_DROPPED_LOWER_PRIORITY"]], "nodriver.cdp.storage.AttributionReportingEventReportWindows": [[47, 1, 1, "", "ends"], [47, 1, 1, "", "start"]], "nodriver.cdp.storage.AttributionReportingEventTriggerData": [[47, 1, 1, "", "data"], [47, 1, 1, "", "dedup_key"], [47, 1, 1, "", "filters"], [47, 1, 1, "", "priority"]], "nodriver.cdp.storage.AttributionReportingFilterConfig": [[47, 1, 1, "", "filter_values"], [47, 1, 1, "", "lookback_window"]], "nodriver.cdp.storage.AttributionReportingFilterDataEntry": [[47, 1, 1, "", "key"], [47, 1, 1, "", "values"]], "nodriver.cdp.storage.AttributionReportingFilterPair": [[47, 1, 1, "", "filters"], [47, 1, 1, "", "not_filters"]], "nodriver.cdp.storage.AttributionReportingSourceRegistered": [[47, 1, 1, "", "registration"], [47, 1, 1, "", "result"]], "nodriver.cdp.storage.AttributionReportingSourceRegistration": [[47, 1, 1, "", "aggregatable_report_window"], [47, 1, 1, "", "aggregation_keys"], [47, 1, 1, "", "debug_key"], [47, 1, 1, "", "destination_sites"], [47, 1, 1, "", "event_id"], [47, 1, 1, "", "expiry"], [47, 1, 1, "", "filter_data"], [47, 1, 1, "", "priority"], [47, 1, 1, "", "reporting_origin"], [47, 1, 1, "", "source_origin"], [47, 1, 1, "", "time"], [47, 1, 1, "", "trigger_data_matching"], [47, 1, 1, "", "trigger_specs"], [47, 1, 1, "", "type_"]], "nodriver.cdp.storage.AttributionReportingSourceRegistrationResult": [[47, 1, 1, "", "DESTINATION_BOTH_LIMITS_REACHED"], [47, 1, 1, "", "DESTINATION_GLOBAL_LIMIT_REACHED"], [47, 1, 1, "", "DESTINATION_PER_DAY_REPORTING_LIMIT_REACHED"], [47, 1, 1, "", "DESTINATION_REPORTING_LIMIT_REACHED"], [47, 1, 1, "", "EXCEEDS_MAX_CHANNEL_CAPACITY"], [47, 1, 1, "", "EXCEEDS_MAX_TRIGGER_STATE_CARDINALITY"], [47, 1, 1, "", "EXCESSIVE_REPORTING_ORIGINS"], [47, 1, 1, "", "INSUFFICIENT_SOURCE_CAPACITY"], [47, 1, 1, "", "INSUFFICIENT_UNIQUE_DESTINATION_CAPACITY"], [47, 1, 1, "", "INTERNAL_ERROR"], [47, 1, 1, "", "PROHIBITED_BY_BROWSER_POLICY"], [47, 1, 1, "", "REPORTING_ORIGINS_PER_SITE_LIMIT_REACHED"], [47, 1, 1, "", "SUCCESS"], [47, 1, 1, "", "SUCCESS_NOISED"]], "nodriver.cdp.storage.AttributionReportingSourceRegistrationTimeConfig": [[47, 1, 1, "", "EXCLUDE"], [47, 1, 1, "", "INCLUDE"]], "nodriver.cdp.storage.AttributionReportingSourceType": [[47, 1, 1, "", "EVENT"], [47, 1, 1, "", "NAVIGATION"]], "nodriver.cdp.storage.AttributionReportingTriggerDataMatching": [[47, 1, 1, "", "EXACT"], [47, 1, 1, "", "MODULUS"]], "nodriver.cdp.storage.AttributionReportingTriggerRegistered": [[47, 1, 1, "", "aggregatable"], [47, 1, 1, "", "event_level"], [47, 1, 1, "", "registration"]], "nodriver.cdp.storage.AttributionReportingTriggerRegistration": [[47, 1, 1, "", "aggregatable_dedup_keys"], [47, 1, 1, "", "aggregatable_trigger_data"], [47, 1, 1, "", "aggregatable_values"], [47, 1, 1, "", "aggregation_coordinator_origin"], [47, 1, 1, "", "debug_key"], [47, 1, 1, "", "debug_reporting"], [47, 1, 1, "", "event_trigger_data"], [47, 1, 1, "", "filters"], [47, 1, 1, "", "source_registration_time_config"], [47, 1, 1, "", "trigger_context_id"]], "nodriver.cdp.storage.AttributionReportingTriggerSpec": [[47, 1, 1, "", "event_report_windows"], [47, 1, 1, "", "trigger_data"]], "nodriver.cdp.storage.CacheStorageContentUpdated": [[47, 1, 1, "", "bucket_id"], [47, 1, 1, "", "cache_name"], [47, 1, 1, "", "origin"], [47, 1, 1, "", "storage_key"]], "nodriver.cdp.storage.CacheStorageListUpdated": [[47, 1, 1, "", "bucket_id"], [47, 1, 1, "", "origin"], [47, 1, 1, "", "storage_key"]], "nodriver.cdp.storage.IndexedDBContentUpdated": [[47, 1, 1, "", "bucket_id"], [47, 1, 1, "", "database_name"], [47, 1, 1, "", "object_store_name"], [47, 1, 1, "", "origin"], [47, 1, 1, "", "storage_key"]], "nodriver.cdp.storage.IndexedDBListUpdated": [[47, 1, 1, "", "bucket_id"], [47, 1, 1, "", "origin"], [47, 1, 1, "", "storage_key"]], "nodriver.cdp.storage.InterestGroupAccessType": [[47, 1, 1, "", "ADDITIONAL_BID"], [47, 1, 1, "", "ADDITIONAL_BID_WIN"], [47, 1, 1, "", "BID"], [47, 1, 1, "", "CLEAR"], [47, 1, 1, "", "JOIN"], [47, 1, 1, "", "LEAVE"], [47, 1, 1, "", "LOADED"], [47, 1, 1, "", "TOP_LEVEL_ADDITIONAL_BID"], [47, 1, 1, "", "TOP_LEVEL_BID"], [47, 1, 1, "", "UPDATE"], [47, 1, 1, "", "WIN"]], "nodriver.cdp.storage.InterestGroupAccessed": [[47, 1, 1, "", "access_time"], [47, 1, 1, "", "bid"], [47, 1, 1, "", "bid_currency"], [47, 1, 1, "", "component_seller_origin"], [47, 1, 1, "", "name"], [47, 1, 1, "", "owner_origin"], [47, 1, 1, "", "type_"], [47, 1, 1, "", "unique_auction_id"]], "nodriver.cdp.storage.InterestGroupAuctionEventOccurred": [[47, 1, 1, "", "auction_config"], [47, 1, 1, "", "event_time"], [47, 1, 1, "", "parent_auction_id"], [47, 1, 1, "", "type_"], [47, 1, 1, "", "unique_auction_id"]], "nodriver.cdp.storage.InterestGroupAuctionEventType": [[47, 1, 1, "", "CONFIG_RESOLVED"], [47, 1, 1, "", "STARTED"]], "nodriver.cdp.storage.InterestGroupAuctionFetchType": [[47, 1, 1, "", "BIDDER_JS"], [47, 1, 1, "", "BIDDER_TRUSTED_SIGNALS"], [47, 1, 1, "", "BIDDER_WASM"], [47, 1, 1, "", "SELLER_JS"], [47, 1, 1, "", "SELLER_TRUSTED_SIGNALS"]], "nodriver.cdp.storage.InterestGroupAuctionNetworkRequestCreated": [[47, 1, 1, "", "auctions"], [47, 1, 1, "", "request_id"], [47, 1, 1, "", "type_"]], "nodriver.cdp.storage.RelatedWebsiteSet": [[47, 1, 1, "", "associated_sites"], [47, 1, 1, "", "primary_sites"], [47, 1, 1, "", "service_sites"]], "nodriver.cdp.storage.SharedStorageAccessParams": [[47, 1, 1, "", "ignore_if_present"], [47, 1, 1, "", "key"], [47, 1, 1, "", "operation_name"], [47, 1, 1, "", "script_source_url"], [47, 1, 1, "", "serialized_data"], [47, 1, 1, "", "urls_with_metadata"], [47, 1, 1, "", "value"]], "nodriver.cdp.storage.SharedStorageAccessType": [[47, 1, 1, "", "DOCUMENT_ADD_MODULE"], [47, 1, 1, "", "DOCUMENT_APPEND"], [47, 1, 1, "", "DOCUMENT_CLEAR"], [47, 1, 1, "", "DOCUMENT_DELETE"], [47, 1, 1, "", "DOCUMENT_GET"], [47, 1, 1, "", "DOCUMENT_RUN"], [47, 1, 1, "", "DOCUMENT_SELECT_URL"], [47, 1, 1, "", "DOCUMENT_SET"], [47, 1, 1, "", "HEADER_APPEND"], [47, 1, 1, "", "HEADER_CLEAR"], [47, 1, 1, "", "HEADER_DELETE"], [47, 1, 1, "", "HEADER_SET"], [47, 1, 1, "", "WORKLET_APPEND"], [47, 1, 1, "", "WORKLET_CLEAR"], [47, 1, 1, "", "WORKLET_DELETE"], [47, 1, 1, "", "WORKLET_ENTRIES"], [47, 1, 1, "", "WORKLET_GET"], [47, 1, 1, "", "WORKLET_KEYS"], [47, 1, 1, "", "WORKLET_LENGTH"], [47, 1, 1, "", "WORKLET_REMAINING_BUDGET"], [47, 1, 1, "", "WORKLET_SET"]], "nodriver.cdp.storage.SharedStorageAccessed": [[47, 1, 1, "", "access_time"], [47, 1, 1, "", "main_frame_id"], [47, 1, 1, "", "owner_origin"], [47, 1, 1, "", "params"], [47, 1, 1, "", "type_"]], "nodriver.cdp.storage.SharedStorageEntry": [[47, 1, 1, "", "key"], [47, 1, 1, "", "value"]], "nodriver.cdp.storage.SharedStorageMetadata": [[47, 1, 1, "", "bytes_used"], [47, 1, 1, "", "creation_time"], [47, 1, 1, "", "length"], [47, 1, 1, "", "remaining_budget"]], "nodriver.cdp.storage.SharedStorageReportingMetadata": [[47, 1, 1, "", "event_type"], [47, 1, 1, "", "reporting_url"]], "nodriver.cdp.storage.SharedStorageUrlWithMetadata": [[47, 1, 1, "", "reporting_metadata"], [47, 1, 1, "", "url"]], "nodriver.cdp.storage.StorageBucket": [[47, 1, 1, "", "name"], [47, 1, 1, "", "storage_key"]], "nodriver.cdp.storage.StorageBucketCreatedOrUpdated": [[47, 1, 1, "", "bucket_info"]], "nodriver.cdp.storage.StorageBucketDeleted": [[47, 1, 1, "", "bucket_id"]], "nodriver.cdp.storage.StorageBucketInfo": [[47, 1, 1, "", "bucket"], [47, 1, 1, "", "durability"], [47, 1, 1, "", "expiration"], [47, 1, 1, "", "id_"], [47, 1, 1, "", "persistent"], [47, 1, 1, "", "quota"]], "nodriver.cdp.storage.StorageBucketsDurability": [[47, 1, 1, "", "RELAXED"], [47, 1, 1, "", "STRICT"]], "nodriver.cdp.storage.StorageType": [[47, 1, 1, "", "ALL_"], [47, 1, 1, "", "APPCACHE"], [47, 1, 1, "", "CACHE_STORAGE"], [47, 1, 1, "", "COOKIES"], [47, 1, 1, "", "FILE_SYSTEMS"], [47, 1, 1, "", "INDEXEDDB"], [47, 1, 1, "", "INTEREST_GROUPS"], [47, 1, 1, "", "LOCAL_STORAGE"], [47, 1, 1, "", "OTHER"], [47, 1, 1, "", "SERVICE_WORKERS"], [47, 1, 1, "", "SHADER_CACHE"], [47, 1, 1, "", "SHARED_STORAGE"], [47, 1, 1, "", "STORAGE_BUCKETS"], [47, 1, 1, "", "WEBSQL"]], "nodriver.cdp.storage.TrustTokens": [[47, 1, 1, "", "count"], [47, 1, 1, "", "issuer_origin"]], "nodriver.cdp.storage.UsageForType": [[47, 1, 1, "", "storage_type"], [47, 1, 1, "", "usage"]], "nodriver.cdp.system_info": [[48, 0, 1, "", "GPUDevice"], [48, 0, 1, "", "GPUInfo"], [48, 0, 1, "", "ImageDecodeAcceleratorCapability"], [48, 0, 1, "", "ImageType"], [48, 0, 1, "", "ProcessInfo"], [48, 0, 1, "", "Size"], [48, 0, 1, "", "SubsamplingFormat"], [48, 0, 1, "", "VideoDecodeAcceleratorCapability"], [48, 0, 1, "", "VideoEncodeAcceleratorCapability"], [48, 5, 1, "", "get_feature_state"], [48, 5, 1, "", "get_info"], [48, 5, 1, "", "get_process_info"]], "nodriver.cdp.system_info.GPUDevice": [[48, 1, 1, "", "device_id"], [48, 1, 1, "", "device_string"], [48, 1, 1, "", "driver_vendor"], [48, 1, 1, "", "driver_version"], [48, 1, 1, "", "revision"], [48, 1, 1, "", "sub_sys_id"], [48, 1, 1, "", "vendor_id"], [48, 1, 1, "", "vendor_string"]], "nodriver.cdp.system_info.GPUInfo": [[48, 1, 1, "", "aux_attributes"], [48, 1, 1, "", "devices"], [48, 1, 1, "", "driver_bug_workarounds"], [48, 1, 1, "", "feature_status"], [48, 1, 1, "", "image_decoding"], [48, 1, 1, "", "video_decoding"], [48, 1, 1, "", "video_encoding"]], "nodriver.cdp.system_info.ImageDecodeAcceleratorCapability": [[48, 1, 1, "", "image_type"], [48, 1, 1, "", "max_dimensions"], [48, 1, 1, "", "min_dimensions"], [48, 1, 1, "", "subsamplings"]], "nodriver.cdp.system_info.ImageType": [[48, 1, 1, "", "JPEG"], [48, 1, 1, "", "UNKNOWN"], [48, 1, 1, "", "WEBP"]], "nodriver.cdp.system_info.ProcessInfo": [[48, 1, 1, "", "cpu_time"], [48, 1, 1, "", "id_"], [48, 1, 1, "", "type_"]], "nodriver.cdp.system_info.Size": [[48, 1, 1, "", "height"], [48, 1, 1, "", "width"]], "nodriver.cdp.system_info.SubsamplingFormat": [[48, 1, 1, "", "YUV420"], [48, 1, 1, "", "YUV422"], [48, 1, 1, "", "YUV444"]], "nodriver.cdp.system_info.VideoDecodeAcceleratorCapability": [[48, 1, 1, "", "max_resolution"], [48, 1, 1, "", "min_resolution"], [48, 1, 1, "", "profile"]], "nodriver.cdp.system_info.VideoEncodeAcceleratorCapability": [[48, 1, 1, "", "max_framerate_denominator"], [48, 1, 1, "", "max_framerate_numerator"], [48, 1, 1, "", "max_resolution"], [48, 1, 1, "", "profile"]], "nodriver.cdp.target": [[49, 0, 1, "", "AttachedToTarget"], [49, 0, 1, "", "DetachedFromTarget"], [49, 0, 1, "", "FilterEntry"], [49, 0, 1, "", "ReceivedMessageFromTarget"], [49, 0, 1, "", "RemoteLocation"], [49, 0, 1, "", "SessionID"], [49, 0, 1, "", "TargetCrashed"], [49, 0, 1, "", "TargetCreated"], [49, 0, 1, "", "TargetDestroyed"], [49, 0, 1, "", "TargetFilter"], [49, 0, 1, "", "TargetID"], [49, 0, 1, "", "TargetInfo"], [49, 0, 1, "", "TargetInfoChanged"], [49, 5, 1, "", "activate_target"], [49, 5, 1, "", "attach_to_browser_target"], [49, 5, 1, "", "attach_to_target"], [49, 5, 1, "", "auto_attach_related"], [49, 5, 1, "", "close_target"], [49, 5, 1, "", "create_browser_context"], [49, 5, 1, "", "create_target"], [49, 5, 1, "", "detach_from_target"], [49, 5, 1, "", "dispose_browser_context"], [49, 5, 1, "", "expose_dev_tools_protocol"], [49, 5, 1, "", "get_browser_contexts"], [49, 5, 1, "", "get_target_info"], [49, 5, 1, "", "get_targets"], [49, 5, 1, "", "send_message_to_target"], [49, 5, 1, "", "set_auto_attach"], [49, 5, 1, "", "set_discover_targets"], [49, 5, 1, "", "set_remote_locations"]], "nodriver.cdp.target.AttachedToTarget": [[49, 1, 1, "", "session_id"], [49, 1, 1, "", "target_info"], [49, 1, 1, "", "waiting_for_debugger"]], "nodriver.cdp.target.DetachedFromTarget": [[49, 1, 1, "", "session_id"], [49, 1, 1, "", "target_id"]], "nodriver.cdp.target.FilterEntry": [[49, 1, 1, "", "exclude"], [49, 1, 1, "", "type_"]], "nodriver.cdp.target.ReceivedMessageFromTarget": [[49, 1, 1, "", "message"], [49, 1, 1, "", "session_id"], [49, 1, 1, "", "target_id"]], "nodriver.cdp.target.RemoteLocation": [[49, 1, 1, "", "host"], [49, 1, 1, "", "port"]], "nodriver.cdp.target.TargetCrashed": [[49, 1, 1, "", "error_code"], [49, 1, 1, "", "status"], [49, 1, 1, "", "target_id"]], "nodriver.cdp.target.TargetCreated": [[49, 1, 1, "", "target_info"]], "nodriver.cdp.target.TargetDestroyed": [[49, 1, 1, "", "target_id"]], "nodriver.cdp.target.TargetInfo": [[49, 1, 1, "", "attached"], [49, 1, 1, "", "browser_context_id"], [49, 1, 1, "", "can_access_opener"], [49, 1, 1, "", "opener_frame_id"], [49, 1, 1, "", "opener_id"], [49, 1, 1, "", "subtype"], [49, 1, 1, "", "target_id"], [49, 1, 1, "", "title"], [49, 1, 1, "", "type_"], [49, 1, 1, "", "url"]], "nodriver.cdp.target.TargetInfoChanged": [[49, 1, 1, "", "target_info"]], "nodriver.cdp.tethering": [[50, 0, 1, "", "Accepted"], [50, 5, 1, "", "bind"], [50, 5, 1, "", "unbind"]], "nodriver.cdp.tethering.Accepted": [[50, 1, 1, "", "connection_id"], [50, 1, 1, "", "port"]], "nodriver.cdp.tracing": [[51, 0, 1, "", "BufferUsage"], [51, 0, 1, "", "DataCollected"], [51, 0, 1, "", "MemoryDumpConfig"], [51, 0, 1, "", "MemoryDumpLevelOfDetail"], [51, 0, 1, "", "StreamCompression"], [51, 0, 1, "", "StreamFormat"], [51, 0, 1, "", "TraceConfig"], [51, 0, 1, "", "TracingBackend"], [51, 0, 1, "", "TracingComplete"], [51, 5, 1, "", "end"], [51, 5, 1, "", "get_categories"], [51, 5, 1, "", "record_clock_sync_marker"], [51, 5, 1, "", "request_memory_dump"], [51, 5, 1, "", "start"]], "nodriver.cdp.tracing.BufferUsage": [[51, 1, 1, "", "event_count"], [51, 1, 1, "", "percent_full"], [51, 1, 1, "", "value"]], "nodriver.cdp.tracing.DataCollected": [[51, 1, 1, "", "value"]], "nodriver.cdp.tracing.MemoryDumpLevelOfDetail": [[51, 1, 1, "", "BACKGROUND"], [51, 1, 1, "", "DETAILED"], [51, 1, 1, "", "LIGHT"]], "nodriver.cdp.tracing.StreamCompression": [[51, 1, 1, "", "GZIP"], [51, 1, 1, "", "NONE"]], "nodriver.cdp.tracing.StreamFormat": [[51, 1, 1, "", "JSON"], [51, 1, 1, "", "PROTO"]], "nodriver.cdp.tracing.TraceConfig": [[51, 1, 1, "", "enable_argument_filter"], [51, 1, 1, "", "enable_sampling"], [51, 1, 1, "", "enable_systrace"], [51, 1, 1, "", "excluded_categories"], [51, 1, 1, "", "included_categories"], [51, 1, 1, "", "memory_dump_config"], [51, 1, 1, "", "record_mode"], [51, 1, 1, "", "synthetic_delays"], [51, 1, 1, "", "trace_buffer_size_in_kb"]], "nodriver.cdp.tracing.TracingBackend": [[51, 1, 1, "", "AUTO"], [51, 1, 1, "", "CHROME"], [51, 1, 1, "", "SYSTEM"]], "nodriver.cdp.tracing.TracingComplete": [[51, 1, 1, "", "data_loss_occurred"], [51, 1, 1, "", "stream"], [51, 1, 1, "", "stream_compression"], [51, 1, 1, "", "trace_format"]], "nodriver.cdp.web_audio": [[52, 0, 1, "", "AudioListener"], [52, 0, 1, "", "AudioListenerCreated"], [52, 0, 1, "", "AudioListenerWillBeDestroyed"], [52, 0, 1, "", "AudioNode"], [52, 0, 1, "", "AudioNodeCreated"], [52, 0, 1, "", "AudioNodeWillBeDestroyed"], [52, 0, 1, "", "AudioParam"], [52, 0, 1, "", "AudioParamCreated"], [52, 0, 1, "", "AudioParamWillBeDestroyed"], [52, 0, 1, "", "AutomationRate"], [52, 0, 1, "", "BaseAudioContext"], [52, 0, 1, "", "ChannelCountMode"], [52, 0, 1, "", "ChannelInterpretation"], [52, 0, 1, "", "ContextChanged"], [52, 0, 1, "", "ContextCreated"], [52, 0, 1, "", "ContextRealtimeData"], [52, 0, 1, "", "ContextState"], [52, 0, 1, "", "ContextType"], [52, 0, 1, "", "ContextWillBeDestroyed"], [52, 0, 1, "", "GraphObjectId"], [52, 0, 1, "", "NodeParamConnected"], [52, 0, 1, "", "NodeParamDisconnected"], [52, 0, 1, "", "NodeType"], [52, 0, 1, "", "NodesConnected"], [52, 0, 1, "", "NodesDisconnected"], [52, 0, 1, "", "ParamType"], [52, 5, 1, "", "disable"], [52, 5, 1, "", "enable"], [52, 5, 1, "", "get_realtime_data"]], "nodriver.cdp.web_audio.AudioListener": [[52, 1, 1, "", "context_id"], [52, 1, 1, "", "listener_id"]], "nodriver.cdp.web_audio.AudioListenerCreated": [[52, 1, 1, "", "listener"]], "nodriver.cdp.web_audio.AudioListenerWillBeDestroyed": [[52, 1, 1, "", "context_id"], [52, 1, 1, "", "listener_id"]], "nodriver.cdp.web_audio.AudioNode": [[52, 1, 1, "", "channel_count"], [52, 1, 1, "", "channel_count_mode"], [52, 1, 1, "", "channel_interpretation"], [52, 1, 1, "", "context_id"], [52, 1, 1, "", "node_id"], [52, 1, 1, "", "node_type"], [52, 1, 1, "", "number_of_inputs"], [52, 1, 1, "", "number_of_outputs"]], "nodriver.cdp.web_audio.AudioNodeCreated": [[52, 1, 1, "", "node"]], "nodriver.cdp.web_audio.AudioNodeWillBeDestroyed": [[52, 1, 1, "", "context_id"], [52, 1, 1, "", "node_id"]], "nodriver.cdp.web_audio.AudioParam": [[52, 1, 1, "", "context_id"], [52, 1, 1, "", "default_value"], [52, 1, 1, "", "max_value"], [52, 1, 1, "", "min_value"], [52, 1, 1, "", "node_id"], [52, 1, 1, "", "param_id"], [52, 1, 1, "", "param_type"], [52, 1, 1, "", "rate"]], "nodriver.cdp.web_audio.AudioParamCreated": [[52, 1, 1, "", "param"]], "nodriver.cdp.web_audio.AudioParamWillBeDestroyed": [[52, 1, 1, "", "context_id"], [52, 1, 1, "", "node_id"], [52, 1, 1, "", "param_id"]], "nodriver.cdp.web_audio.AutomationRate": [[52, 1, 1, "", "A_RATE"], [52, 1, 1, "", "K_RATE"]], "nodriver.cdp.web_audio.BaseAudioContext": [[52, 1, 1, "", "callback_buffer_size"], [52, 1, 1, "", "context_id"], [52, 1, 1, "", "context_state"], [52, 1, 1, "", "context_type"], [52, 1, 1, "", "max_output_channel_count"], [52, 1, 1, "", "realtime_data"], [52, 1, 1, "", "sample_rate"]], "nodriver.cdp.web_audio.ChannelCountMode": [[52, 1, 1, "", "CLAMPED_MAX"], [52, 1, 1, "", "EXPLICIT"], [52, 1, 1, "", "MAX_"]], "nodriver.cdp.web_audio.ChannelInterpretation": [[52, 1, 1, "", "DISCRETE"], [52, 1, 1, "", "SPEAKERS"]], "nodriver.cdp.web_audio.ContextChanged": [[52, 1, 1, "", "context"]], "nodriver.cdp.web_audio.ContextCreated": [[52, 1, 1, "", "context"]], "nodriver.cdp.web_audio.ContextRealtimeData": [[52, 1, 1, "", "callback_interval_mean"], [52, 1, 1, "", "callback_interval_variance"], [52, 1, 1, "", "current_time"], [52, 1, 1, "", "render_capacity"]], "nodriver.cdp.web_audio.ContextState": [[52, 1, 1, "", "CLOSED"], [52, 1, 1, "", "RUNNING"], [52, 1, 1, "", "SUSPENDED"]], "nodriver.cdp.web_audio.ContextType": [[52, 1, 1, "", "OFFLINE"], [52, 1, 1, "", "REALTIME"]], "nodriver.cdp.web_audio.ContextWillBeDestroyed": [[52, 1, 1, "", "context_id"]], "nodriver.cdp.web_audio.NodeParamConnected": [[52, 1, 1, "", "context_id"], [52, 1, 1, "", "destination_id"], [52, 1, 1, "", "source_id"], [52, 1, 1, "", "source_output_index"]], "nodriver.cdp.web_audio.NodeParamDisconnected": [[52, 1, 1, "", "context_id"], [52, 1, 1, "", "destination_id"], [52, 1, 1, "", "source_id"], [52, 1, 1, "", "source_output_index"]], "nodriver.cdp.web_audio.NodesConnected": [[52, 1, 1, "", "context_id"], [52, 1, 1, "", "destination_id"], [52, 1, 1, "", "destination_input_index"], [52, 1, 1, "", "source_id"], [52, 1, 1, "", "source_output_index"]], "nodriver.cdp.web_audio.NodesDisconnected": [[52, 1, 1, "", "context_id"], [52, 1, 1, "", "destination_id"], [52, 1, 1, "", "destination_input_index"], [52, 1, 1, "", "source_id"], [52, 1, 1, "", "source_output_index"]], "nodriver.cdp.web_authn": [[53, 0, 1, "", "AuthenticatorId"], [53, 0, 1, "", "AuthenticatorProtocol"], [53, 0, 1, "", "AuthenticatorTransport"], [53, 0, 1, "", "Credential"], [53, 0, 1, "", "CredentialAdded"], [53, 0, 1, "", "CredentialAsserted"], [53, 0, 1, "", "Ctap2Version"], [53, 0, 1, "", "VirtualAuthenticatorOptions"], [53, 5, 1, "", "add_credential"], [53, 5, 1, "", "add_virtual_authenticator"], [53, 5, 1, "", "clear_credentials"], [53, 5, 1, "", "disable"], [53, 5, 1, "", "enable"], [53, 5, 1, "", "get_credential"], [53, 5, 1, "", "get_credentials"], [53, 5, 1, "", "remove_credential"], [53, 5, 1, "", "remove_virtual_authenticator"], [53, 5, 1, "", "set_automatic_presence_simulation"], [53, 5, 1, "", "set_credential_properties"], [53, 5, 1, "", "set_response_override_bits"], [53, 5, 1, "", "set_user_verified"]], "nodriver.cdp.web_authn.AuthenticatorProtocol": [[53, 1, 1, "", "CTAP2"], [53, 1, 1, "", "U2F"]], "nodriver.cdp.web_authn.AuthenticatorTransport": [[53, 1, 1, "", "BLE"], [53, 1, 1, "", "CABLE"], [53, 1, 1, "", "INTERNAL"], [53, 1, 1, "", "NFC"], [53, 1, 1, "", "USB"]], "nodriver.cdp.web_authn.Credential": [[53, 1, 1, "", "backup_eligibility"], [53, 1, 1, "", "backup_state"], [53, 1, 1, "", "credential_id"], [53, 1, 1, "", "is_resident_credential"], [53, 1, 1, "", "large_blob"], [53, 1, 1, "", "private_key"], [53, 1, 1, "", "rp_id"], [53, 1, 1, "", "sign_count"], [53, 1, 1, "", "user_handle"]], "nodriver.cdp.web_authn.CredentialAdded": [[53, 1, 1, "", "authenticator_id"], [53, 1, 1, "", "credential"]], "nodriver.cdp.web_authn.CredentialAsserted": [[53, 1, 1, "", "authenticator_id"], [53, 1, 1, "", "credential"]], "nodriver.cdp.web_authn.Ctap2Version": [[53, 1, 1, "", "CTAP2_0"], [53, 1, 1, "", "CTAP2_1"]], "nodriver.cdp.web_authn.VirtualAuthenticatorOptions": [[53, 1, 1, "", "automatic_presence_simulation"], [53, 1, 1, "", "ctap2_version"], [53, 1, 1, "", "default_backup_eligibility"], [53, 1, 1, "", "default_backup_state"], [53, 1, 1, "", "has_cred_blob"], [53, 1, 1, "", "has_large_blob"], [53, 1, 1, "", "has_min_pin_length"], [53, 1, 1, "", "has_prf"], [53, 1, 1, "", "has_resident_key"], [53, 1, 1, "", "has_user_verification"], [53, 1, 1, "", "is_user_verified"], [53, 1, 1, "", "protocol"], [53, 1, 1, "", "transport"]], "nodriver.core": [[56, 4, 0, "-", "_contradict"]], "nodriver.core._contradict": [[56, 0, 1, "id0", "ContraDict"], [56, 5, 1, "", "cdict"]], "nodriver.core._contradict.ContraDict": [[56, 3, 1, "id1", "clear"], [56, 3, 1, "id2", "copy"], [56, 3, 1, "id3", "fromkeys"], [56, 3, 1, "id4", "get"], [56, 3, 1, "id5", "items"], [56, 3, 1, "id6", "keys"], [56, 3, 1, "id7", "pop"], [56, 3, 1, "id8", "popitem"], [56, 3, 1, "id9", "setdefault"], [56, 3, 1, "id10", "update"], [56, 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, 59], "some": [0, 57, 59], "featur": [0, 59], "quick": 0, "start": [0, 58], "main": 0, "object": [0, 1], "cdp": [0, 1, 57], "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], "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, 57], "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], "anim": 3, "audit": 4, "autofil": 5, "backgroundservic": 6, "browser": [7, 54], "cachestorag": 8, "cast": 9, "consol": 10, "css": 11, "databas": 12, "debugg": 13, "deviceaccess": 14, "deviceorient": 15, "dom": 16, "domdebugg": 17, "domsnapshot": 18, "domstorag": 19, "emul": 20, "eventbreakpoint": 21, "extens": 22, "fedcm": 23, "fetch": 24, "headlessexperiment": 25, "heapprofil": 26, "indexeddb": 27, "input": 28, "inspector": 29, "io": 30, "layertre": 31, "log": 32, "media": 33, "memori": 34, "network": 35, "overlai": 36, "page": 37, "perform": 38, "performancetimelin": 39, "preload": 40, "profil": 41, "pwa": 42, "runtim": 43, "schema": 44, "secur": 45, "servicework": 46, "storag": 47, "systeminfo": 48, "target": 49, "tether": 50, "trace": 51, "webaudio": 52, "webauthn": 53, "class": [54, 55, 56, 57], "cooki": 54, "element": 55, "other": [56, 57], "helper": 56, "config": 56, "contradict": 56, "function": 56, "tab": 57, "custom": [57, 58], "us": 57, "often": 57, "need": 57, "simpli": 57, "requir": 57, "method": 57, "find": 57, "text": 57, "best_match": 57, "true": 57, "select": 57, "selector": 57, "select_al": 57, "await": 57, "send": 57, "quickstart": 58, "guid": 58, "instal": [58, 59], "usag": [58, 59], "exampl": [58, 59], "more": 58, "complet": 58, "option": 58, "altern": 58, "titl": 60, "section": 60, "subsect": 60, "paragraph": 60, "tabl": 60, "click": 0, "here": 0, "FOR": 0, "doc": 0}, "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": {"CDP object": [[1, "cdp-object"], [0, "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"]], "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"]], "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"]], "Animation": [[3, "animation"]], "Audits": [[4, "audits"]], "Autofill": [[5, "autofill"]], "BackgroundService": [[6, "backgroundservice"]], "Browser": [[7, "browser"]], "CacheStorage": [[8, "cachestorage"]], "Cast": [[9, "cast"]], "Console": [[10, "console"]], "CSS": [[11, "css"]], "Database": [[12, "database"]], "Debugger": [[13, "debugger"]], "DeviceAccess": [[14, "deviceaccess"]], "DeviceOrientation": [[15, "deviceorientation"]], "DOM": [[16, "dom"]], "DOMDebugger": [[17, "domdebugger"]], "DOMSnapshot": [[18, "domsnapshot"]], "DOMStorage": [[19, "domstorage"]], "Emulation": [[20, "emulation"]], "EventBreakpoints": [[21, "eventbreakpoints"]], "Extensions": [[22, "extensions"]], "FedCm": [[23, "fedcm"]], "Fetch": [[24, "fetch"]], "HeadlessExperimental": [[25, "headlessexperimental"]], "HeapProfiler": [[26, "heapprofiler"]], "IndexedDB": [[27, "indexeddb"]], "Input": [[28, "module-nodriver.cdp.input_"]], "Inspector": [[29, "inspector"]], "IO": [[30, "io"]], "LayerTree": [[31, "layertree"]], "Log": [[32, "log"]], "Media": [[33, "media"]], "Memory": [[34, "memory"]], "Network": [[35, "network"]], "Overlay": [[36, "overlay"]], "Page": [[37, "page"]], "Performance": [[38, "module-nodriver.cdp.performance"]], "PerformanceTimeline": [[39, "performancetimeline"]], "Preload": [[40, "preload"]], "Profiler": [[41, "module-nodriver.cdp.profiler"]], "PWA": [[42, "pwa"]], "Runtime": [[43, "runtime"]], "Schema": [[44, "schema"]], "Security": [[45, "security"]], "ServiceWorker": [[46, "serviceworker"]], "Storage": [[47, "storage"]], "SystemInfo": [[48, "systeminfo"]], "Target": [[49, "target"]], "Tethering": [[50, "tethering"]], "Tracing": [[51, "module-nodriver.cdp.tracing"]], "WebAudio": [[52, "webaudio"]], "WebAuthn": [[53, "webauthn"]], "Quickstart guide": [[58, "quickstart-guide"]], "Installation": [[58, "installation"], [59, "installation"]], "usage example": [[58, "usage-example"], [59, "usage-example"]], "More complete example": [[58, "more-complete-example"]], "Custom starting options": [[58, "custom-starting-options"]], "Alternative custom options": [[58, "alternative-custom-options"]], "NODRIVER": [[59, "nodriver"], [0, "nodriver"]], "Some features": [[59, "some-features"], [0, "some-features"]], "TITLE": [[60, "title"]], "SECTION": [[60, "section"]], "SUBSECTION": [[60, "subsection"]], "PARAGRAPH": [[60, "paragraph"]], "TABLES": [[60, "tables"]], "Browser class": [[54, "browser-class"], [54, "id1"]], "cookies": [[54, "cookies"]], "Other classes and Helper classes": [[56, "other-classes-and-helper-classes"]], "Config class": [[56, "config-class"]], "ContraDict class": [[56, "contradict-class"]], "Helper functions": [[56, "module-nodriver.core._contradict"]], "CLICK HERE FOR DOCS": [[0, "id1"]], "Quick start": [[0, "quick-start"]], "Main objects": [[0, "main-objects"]], "Element class": [[55, "element-class"]], "Tab class": [[57, "tab-class"]], "Custom CDP commands": [[57, "custom-cdp-commands"]], "some useful, often needed and simply required methods": [[57, "some-useful-often-needed-and-simply-required-methods"]], "find() | find(text)": [[57, "find-find-text"]], "find() | find(text, best_match=True) or find(text, True)": [[57, "find-find-text-best-match-true-or-find-text-true"]], "select() | select(selector)": [[57, "select-select-selector"]], "select_all() | select_all(selector)": [[57, "select-all-select-all-selector"]], "await Tab": [[57, "await-tab"]], "Using other and custom CDP commands": [[57, "using-other-and-custom-cdp-commands"]], "send()": [[57, "send"]]}, "indexentries": {"tab (class in nodriver)": [[57, "nodriver.Tab"]], "aclose() (tab method)": [[57, "nodriver.Tab.aclose"]], "activate() (tab method)": [[57, "nodriver.Tab.activate"]], "add_handler() (tab method)": [[57, "nodriver.Tab.add_handler"]], "aopen() (tab method)": [[57, "nodriver.Tab.aopen"]], "attached (tab attribute)": [[57, "nodriver.Tab.attached"]], "back() (tab method)": [[57, "nodriver.Tab.back"]], "bring_to_front() (tab method)": [[57, "nodriver.Tab.bring_to_front"]], "browser (tab attribute)": [[57, "nodriver.Tab.browser"]], "close() (tab method)": [[57, "nodriver.Tab.close"]], "closed (tab property)": [[57, "nodriver.Tab.closed"]], "download_file() (tab method)": [[57, "nodriver.Tab.download_file"]], "evaluate() (tab method)": [[57, "nodriver.Tab.evaluate"]], "find() (tab method)": [[57, "nodriver.Tab.find"]], "find_all() (tab method)": [[57, "nodriver.Tab.find_all"]], "find_element_by_text() (tab method)": [[57, "nodriver.Tab.find_element_by_text"]], "find_elements_by_text() (tab method)": [[57, "nodriver.Tab.find_elements_by_text"]], "forward() (tab method)": [[57, "nodriver.Tab.forward"]], "fullscreen() (tab method)": [[57, "nodriver.Tab.fullscreen"]], "get() (tab method)": [[57, "nodriver.Tab.get"]], "get_all_linked_sources() (tab method)": [[57, "nodriver.Tab.get_all_linked_sources"]], "get_all_urls() (tab method)": [[57, "nodriver.Tab.get_all_urls"]], "get_content() (tab method)": [[57, "nodriver.Tab.get_content"]], "get_local_storage() (tab method)": [[57, "nodriver.Tab.get_local_storage"]], "get_window() (tab method)": [[57, "nodriver.Tab.get_window"]], "inspector_open() (tab method)": [[57, "nodriver.Tab.inspector_open"]], "inspector_url (tab property)": [[57, "nodriver.Tab.inspector_url"]], "js_dumps() (tab method)": [[57, "nodriver.Tab.js_dumps"]], "maximize() (tab method)": [[57, "nodriver.Tab.maximize"]], "medimize() (tab method)": [[57, "nodriver.Tab.medimize"]], "minimize() (tab method)": [[57, "nodriver.Tab.minimize"]], "open_external_inspector() (tab method)": [[57, "nodriver.Tab.open_external_inspector"]], "query_selector() (tab method)": [[57, "nodriver.Tab.query_selector"]], "query_selector_all() (tab method)": [[57, "nodriver.Tab.query_selector_all"]], "reload() (tab method)": [[57, "nodriver.Tab.reload"]], "save_screenshot() (tab method)": [[57, "nodriver.Tab.save_screenshot"]], "scroll_down() (tab method)": [[57, "nodriver.Tab.scroll_down"]], "scroll_up() (tab method)": [[57, "nodriver.Tab.scroll_up"]], "select() (tab method)": [[57, "nodriver.Tab.select"]], "select_all() (tab method)": [[57, "nodriver.Tab.select_all"]], "send() (tab method)": [[57, "nodriver.Tab.send"]], "set_download_path() (tab method)": [[57, "nodriver.Tab.set_download_path"]], "set_local_storage() (tab method)": [[57, "nodriver.Tab.set_local_storage"]], "set_window_size() (tab method)": [[57, "nodriver.Tab.set_window_size"]], "set_window_state() (tab method)": [[57, "nodriver.Tab.set_window_state"]], "sleep() (tab method)": [[57, "nodriver.Tab.sleep"]], "target (tab property)": [[57, "nodriver.Tab.target"]], "update_target() (tab method)": [[57, "nodriver.Tab.update_target"]], "verify_cf() (tab method)": [[57, "nodriver.Tab.verify_cf"]], "wait() (tab method)": [[57, "nodriver.Tab.wait"]], "wait_for() (tab method)": [[57, "nodriver.Tab.wait_for"]], "websocket (tab attribute)": [[57, "nodriver.Tab.websocket"]]}}) \ No newline at end of file diff --git a/nodriver/core/tab.py b/nodriver/core/tab.py index 5d98d87..c40d9e9 100644 --- a/nodriver/core/tab.py +++ b/nodriver/core/tab.py @@ -1302,6 +1302,59 @@ async def verify_cf(self): await checkbox.mouse_move() await checkbox.mouse_click() + async def get_local_storage(self): + """ + get local storage items as dict of strings (careful!, proper deserialization needs to be done if needed) + + :return: + :rtype: + """ + if not self.target.url: + await self + + # there must be a better way... + origin = "/".join(self.url.split("/", 3)[:-1]) + + items = await self.send( + cdp.dom_storage.get_dom_storage_items( + cdp.dom_storage.StorageId(is_local_storage=True, security_origin=origin) + ) + ) + retval = {} + for item in items: + retval[item[0]] = item[1] + return retval + + async def set_local_storage(self, items: dict): + """ + set local storage. + dict items must be strings. simple types will be converted to strings automatically. + + :param items: dict containing {key:str, value:str} + :type items: dict[str,str] + :return: + :rtype: + """ + if not self.target.url: + await self + # there must be a better way... + origin = "/".join(self.url.split("/", 3)[:-1]) + + await asyncio.gather( + *[ + self.send( + cdp.dom_storage.set_dom_storage_item( + storage_id=cdp.dom_storage.StorageId( + is_local_storage=True, security_origin=origin + ), + key=str(key), + value=str(val), + ) + ) + for key, val in items.items() + ] + ) + def __call__( self, text: Optional[str] = "",