From 540e239d9559bdf1cc9f0646f9bb99ddd5cd0b62 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Adri=C3=A0=20Arrufat?=
Date: Wed, 2 Sep 2026 22:44:32 +0200
Subject: [PATCH 1/2] Publish the Python SDK API reference at /docs/python from
PyPI with pdoc
Add a workflow that regenerates public/python with pdoc from the lightpanda
package on PyPI (daily, or by hand) and opens a pull request when the output
changed. The static export copies public/ verbatim, so the website serves it
at lightpanda.io/docs/python/ after the usual submodule bump. Seed it with
the 0.4.0 package so the page exists on the next deploy, and keep Biome off
the generated search.js.
---
.github/workflows/python-reference.yml | 62 +
biome.json | 2 +-
public/python/index.html | 7 +
public/python/lightpanda.html | 2203 ++++++++++++++++++++++++
public/python/search.js | 46 +
5 files changed, 2319 insertions(+), 1 deletion(-)
create mode 100644 .github/workflows/python-reference.yml
create mode 100644 public/python/index.html
create mode 100644 public/python/lightpanda.html
create mode 100644 public/python/search.js
diff --git a/.github/workflows/python-reference.yml b/.github/workflows/python-reference.yml
new file mode 100644
index 0000000..8be1e2b
--- /dev/null
+++ b/.github/workflows/python-reference.yml
@@ -0,0 +1,62 @@
+name: python-reference
+
+# Regenerate the Python SDK API reference with pdoc from the `lightpanda`
+# package on PyPI and open a pull request when the output changed. The
+# reference lives in public/python, which the static export copies verbatim,
+# so the website serves it at lightpanda.io/docs/python/ once the submodule is
+# bumped like any other docs change. The wheel bundles the generated tool
+# methods, so no browser binary is needed here. Runs daily to pick up new
+# package releases, or by hand.
+
+on:
+ schedule:
+ - cron: "17 6 * * *"
+ workflow_dispatch:
+
+permissions:
+ contents: write
+ pull-requests: write
+
+concurrency:
+ group: python-reference
+ cancel-in-progress: true
+
+jobs:
+ update:
+ runs-on: ubuntu-latest
+ timeout-minutes: 10
+ steps:
+ - uses: actions/checkout@v4
+
+ - uses: astral-sh/setup-uv@v5
+
+ - name: Generate the reference with pdoc
+ id: generate
+ run: |
+ rm -rf public/python
+ uvx --from pdoc --with lightpanda pdoc lightpanda -o public/python --no-show-source
+ version=$(uv run --no-project --with lightpanda python -c \
+ 'from importlib.metadata import version; print(version("lightpanda"))')
+ echo "version=$version" >> "$GITHUB_OUTPUT"
+ git status --short public/python
+
+ - name: Open a pull request if the reference changed
+ env:
+ GH_TOKEN: ${{ github.token }}
+ VERSION: ${{ steps.generate.outputs.version }}
+ run: |
+ if [ -z "$(git status --porcelain public/python)" ]; then
+ echo "reference already matches lightpanda $VERSION"
+ exit 0
+ fi
+ git config user.name "github-actions[bot]"
+ git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
+ git checkout -B python-reference
+ git add public/python
+ git commit -m "Update the Python SDK reference to lightpanda $VERSION"
+ git push --force origin python-reference
+ if [ -z "$(gh pr list --head python-reference --state open --json number -q '.[].number')" ]; then
+ gh pr create --base main --head python-reference \
+ --title "Update the Python SDK reference to lightpanda $VERSION" \
+ --body "Regenerated \`public/python\` with pdoc from the \`lightpanda\` $VERSION package on PyPI. Served at https://lightpanda.io/docs/python/ after the website's submodule bump."
+ fi
diff --git a/biome.json b/biome.json
index b35094c..44ad0de 100644
--- a/biome.json
+++ b/biome.json
@@ -1,7 +1,7 @@
{
"$schema": "https://biomejs.dev/schemas/1.9.4/schema.json",
"files": {
- "ignore": ["package.json", "node_modules", ".next", ".pnp.cjs", ".pnp.loader.mjs", "out"]
+ "ignore": ["package.json", "node_modules", ".next", ".pnp.cjs", ".pnp.loader.mjs", "out", "public"]
},
"organizeImports": {
"enabled": true
diff --git a/public/python/index.html b/public/python/index.html
new file mode 100644
index 0000000..1d1ad71
--- /dev/null
+++ b/public/python/index.html
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/public/python/lightpanda.html b/public/python/lightpanda.html
new file mode 100644
index 0000000..f2695e0
--- /dev/null
+++ b/public/python/lightpanda.html
@@ -0,0 +1,2203 @@
+
+
+
+
+
+
+ lightpanda API documentation
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+lightpanda
+
+ Lightpanda for Python: a lightweight headless browser.
+
+
+
from lightpanda import Browser
+
+with Browser () as b :
+ page = b . new_session ()
+ page . goto ( url = "https://example.com" )
+ data = page . extract ( schema = { "title" : "h1" })
+
+
+
+
The same API is available for asyncio:
+
+
+
from lightpanda import AsyncBrowser
+
+async with AsyncBrowser () as b :
+ page = await b . new_session ()
+ await page . goto ( url = "https://example.com" )
+ data = await page . extract ( schema = { "title" : "h1" })
+
+
+
+
+
+
+
+
+
+
+
+ class
+ Browser :
+
+
+
+
+
+ A lightpanda browser process. Spawns the bundled binary on first use.
+
+
Not fork-inheritable: after os.fork()/multiprocessing, create a
+fresh Browser in the child.
+
+
+
+
+
+
+ Browser ( binary : str | os . PathLike | None = None , env : dict [ str , str ] | None = None , timeout : float = 300.0 , verbose : bool = False , args : tuple [ str , ... ] | list [ str ] = () )
+
+
+
+
+
+
args are extra CLI flags for the spawned browser process
+(e.g. ["--http-cache-dir", path] or cookie flags).
+
+
+
+
+
+
+
+
+
def
+
new_session (self ) -> Session :
+
+
+
+
+
+
+
+
+
+
+
+ def
+ close (self ) -> None :
+
+
+
+
+
+
+
+
+
+
+
+
+ class
+ Session (lightpanda._methods.SessionMethods ):
+
+
+
+
+
+ One isolated browsing context (own page, cookies, memory).
+
+
Do not construct directly — use Browser.new_session() .
+
+
+
+
+
+
+ Session ( client : lightpanda . client . Client , session_id : str , tools : dict [ str , dict ] )
+
+
+
+
+
+
+
+
+
+
+ id : str
+
+
+
+
+
+
+
+
+
+
+
+ def
+ call (self , tool : str , ** kwargs ):
+
+
+
+
+
+
Invoke a browser tool by name. The generated methods route here.
+
+
+
+
+
+
+
+ def
+ close (self ) -> None :
+
+
+
+
+
+
+
+
+
+
+
+ def
+ click ( self , * , selector : str | None = None , backendNodeId : int | None = None ) -> Any :
+
+
+
+
+
+
Click on an interactive element. Provide either a CSS selector (preferred for reproducibility) or a backendNodeId. Returns the current page URL and title after the click.
+
+
+
+
+
+
+
+ def
+ console_logs (self ) -> Any :
+
+
+
+
+
+
Get buffered console.log/warn/error messages from the current page. Returns all messages since last call and clears the buffer.
+
+
+
+
+
+
+
+ def
+ consoleLogs (self ) -> Any :
+
+
+
+
+
+
Get buffered console.log/warn/error messages from the current page. Returns all messages since last call and clears the buffer.
+
+
+
+
+
+
+
+
+
+ def
+ evaluate ( self , * , script : str , url : str | None = None , timeout : int | None = None , save : str | None = None ) -> Any :
+
+
+
+
+
+
Evaluate JavaScript in the current page context — an escape hatch for page-side logic the dedicated tools can't express; prefer extract for data and click/fill/etc. for actions. It runs in the page, so it cannot see the agent script's variables or builtins — interpolate any value into the script string. A bare trailing expression yields its value; top-level await and return are supported (the body then runs as an async function, so use return to produce a value). Objects and arrays return as JSON, so no JSON.stringify is needed. If a url is provided, it navigates there first. The globalThis.lp object exposes a Session-scoped bridge store: values written via lp.foo = ... auto-sync at end of evaluate, surviving navigation; values previously set via /extract save= or /evaluate save= appear as lp.<name>.
+
+
+
+
+
+
+
+
+ def
+ fill ( self , * , value : str , selector : str | None = None , backendNodeId : int | None = None ) -> Any :
+
+
+
+
+
+
Fill text into an input element. Provide either a CSS selector (preferred for reproducibility) or a backendNodeId.
+
+
+
+
+
+
+
+ def
+ find_element (self , * , role : str | None = None , name : str | None = None ) -> Any :
+
+
+
+
+
+
Find interactive elements by role and/or accessible name. Returns matching elements with their backend node IDs. Useful for locating specific elements without parsing the full semantic tree.
+
+
+
+
+
+
+
+ def
+ findElement (self , * , role : str | None = None , name : str | None = None ) -> Any :
+
+
+
+
+
+
Find interactive elements by role and/or accessible name. Returns matching elements with their backend node IDs. Useful for locating specific elements without parsing the full semantic tree.
+
+
+
+
+
+
+
+ def
+ get_cookies (self , * , url : str | None = None , all : bool | None = None ) -> Any :
+
+
+
+
+
+
Cookies stored in the browser. Defaults to cookies whose domain matches the current page's host. Pass url=<URL> to filter for another host, or all=true to dump every cookie regardless of host. Useful for debugging authentication and session state.
+
+
+
+
+
+
+
+ def
+ getCookies (self , * , url : str | None = None , all : bool | None = None ) -> Any :
+
+
+
+
+
+
Cookies stored in the browser. Defaults to cookies whose domain matches the current page's host. Pass url=<URL> to filter for another host, or all=true to dump every cookie regardless of host. Useful for debugging authentication and session state.
+
+
+
+
+
+
+
+ def
+ get_env (self , * , name : str | None = None ) -> Any :
+
+
+
+
+
+
With name: read an LP_* env var (other namespaces report as not set) — for non-secret config only (base URLs, flags). Without name: list LP_* names that are set (no values) — safe credential discovery. For secrets, pass $LP_* placeholders in tool args; never request a credential by name (the value would land in your context).
+
+
+
+
+
+
+
+ def
+ getEnv (self , * , name : str | None = None ) -> Any :
+
+
+
+
+
+
With name: read an LP_* env var (other namespaces report as not set) — for non-secret config only (base URLs, flags). Without name: list LP_* names that are set (no values) — safe credential discovery. For secrets, pass $LP_* placeholders in tool args; never request a credential by name (the value would land in your context).
+
+
+
+
+
+
+
+ def
+ get_url (self ) -> Any :
+
+
+
+
+
+
Current page URL. The browser may already have a page loaded (command, replayed script) not visible in this conversation — call this before assuming nothing is loaded when the user references the current page/site. Also useful to verify a navigation or detect a redirect.
+
+
+
+
+
+
+
+ def
+ getUrl (self ) -> Any :
+
+
+
+
+
+
Current page URL. The browser may already have a page loaded (command, replayed script) not visible in this conversation — call this before assuming nothing is loaded when the user references the current page/site. Also useful to verify a navigation or detect a redirect.
+
+
+
+
+
+
+
+ def
+ goto (self , * , url : str , timeout : int | None = None ) -> Any :
+
+
+
+
+
+
Navigate to a specified URL and load the page in memory so it can be reused later for info extraction.
+
+
+
+
+
+
+
+ def
+ hover ( self , * , selector : str | None = None , backendNodeId : int | None = None ) -> Any :
+
+
+
+
+
+
Hover over an element, triggering mouseover and mouseenter events. Provide either a CSS selector (preferred for reproducibility) or a backendNodeId. Useful for menus, tooltips, and hover states.
+
+
+
+
+
+
+
+ def
+ html ( self , * , selector : str | None = None , backendNodeId : int | None = None , url : str | None = None , timeout : int | None = None ) -> Any :
+
+
+
+
+
+
Raw HTML for the document or, with selector/backendNodeId, a single node's outerHTML. Verbose; use only when you need attributes that markdown discards.
+
+
+
+
+
+
+
+ def
+ interactive_elements (self , * , url : str | None = None , timeout : int | None = None ) -> Any :
+
+
+
+
+
+
Extract interactive elements from the opened page. If a url is provided, it navigates to that url first.
+
+
+
+
+
+
+
+ def
+ interactiveElements (self , * , url : str | None = None , timeout : int | None = None ) -> Any :
+
+
+
+
+
+
Extract interactive elements from the opened page. If a url is provided, it navigates to that url first.
+
+
+
+
+
+
+
+ def
+ links (self , * , url : str | None = None , timeout : int | None = None ) -> Any :
+
+
+
+
+
+
Extract all links in the opened page as JSON objects with text (visible anchor text), href (resolved URL), and backendNodeId (pass to click/nodeDetails). If a url is provided, it navigates to that url first.
+
+
+
+
+
+
+
+ def
+ markdown ( self , * , selector : str | None = None , backendNodeId : int | None = None , maxBytes : int | None = None , url : str | None = None , timeout : int | None = None ) -> Any :
+
+
+
+
+
+
Render the page (or a subtree) as markdown. Scope with selector or backendNodeId to read just the relevant region — full-page markdown is the last resort. Use maxBytes to cap long pages.
+
+
+
+
+
+
+
+ def
+ node_details (self , * , backendNodeId : int ) -> Any :
+
+
+
+
+
+
Details for a node by backendNodeId: a ready-to-use CSS selector that resolves to the node (the first match, as click/fill resolve it), plus tag, role, name, interactivity, disabled, value, input type, placeholder, href, id, class, checked, select options. The canonical way to turn a tree backendNodeId into a CSS selector.
+
+
+
+
+
+
+
+ def
+ nodeDetails (self , * , backendNodeId : int ) -> Any :
+
+
+
+
+
+
Details for a node by backendNodeId: a ready-to-use CSS selector that resolves to the node (the first match, as click/fill resolve it), plus tag, role, name, interactivity, disabled, value, input type, placeholder, href, id, class, checked, select options. The canonical way to turn a tree backendNodeId into a CSS selector.
+
+
+
+
+
+
+
+ def
+ press ( self , * , key : str , selector : str | None = None , backendNodeId : int | None = None ) -> Any :
+
+
+
+
+
+
Press a keyboard key, dispatching keydown and keyup events. Use key names like 'Enter', 'Tab', 'Escape', 'ArrowDown', 'Backspace', or single characters like 'a', '1'. Common shorthand is normalized: 'enter'/'return' → 'Enter', 'esc' → 'Escape', 'up'/'down'/'left'/'right' → 'Arrow*', 'space' → ' '. Pressing 'Enter' on a form input or submit button triggers implicit form submission.
+
+
+
+
+
+
+
+
+ def
+ search (self , * , query : str , timeout : int | None = None ) -> Any :
+
+
+
+
+
+
Run a web search and return results as markdown. When BRAVE_API_KEY or TAVILY_API_KEY is set, queries that search API (Brave preferred) and returns a numbered list of {title, url, snippet}. Otherwise (or on API failure) falls back to scraping the DuckDuckGo HTML endpoint — degraded results, may rate-limit on bursty traffic. Prefer this over goto-ing google.com/search directly (Google blocks the browser on User-Agent/TLS). Browser state after this call is unspecified — to interact with a result, use goto with its URL; do not assume the browser DOM matches the results page.
+
+
+
+
+
+
+
+ def
+ select_option ( self , * , value : str , selector : str | None = None , backendNodeId : int | None = None ) -> Any :
+
+
+
+
+
+
Select an option in a dropdown element by its value. Provide either a CSS selector (preferred for reproducibility) or a backendNodeId. Dispatches input and change events.
+
+
+
+
+
+
+
+ def
+ selectOption ( self , * , value : str , selector : str | None = None , backendNodeId : int | None = None ) -> Any :
+
+
+
+
+
+
Select an option in a dropdown element by its value. Provide either a CSS selector (preferred for reproducibility) or a backendNodeId. Dispatches input and change events.
+
+
+
+
+
+
+
+ def
+ set_checked ( self , * , checked : bool , selector : str | None = None , backendNodeId : int | None = None ) -> Any :
+
+
+
+
+
+
Check or uncheck a checkbox or radio button. Provide either a CSS selector (preferred for reproducibility) or a backendNodeId. Dispatches input, change, and click events.
+
+
+
+
+
+
+
+ def
+ setChecked ( self , * , checked : bool , selector : str | None = None , backendNodeId : int | None = None ) -> Any :
+
+
+
+
+
+
Check or uncheck a checkbox or radio button. Provide either a CSS selector (preferred for reproducibility) or a backendNodeId. Dispatches input, change, and click events.
+
+
+
+
+
+
+
+ def
+ structured_data (self , * , url : str | None = None , timeout : int | None = None ) -> Any :
+
+
+
+
+
+
Extract structured data (like JSON-LD, OpenGraph, etc) from the opened page. If a url is provided, it navigates to that url first.
+
+
+
+
+
+
+
+ def
+ structuredData (self , * , url : str | None = None , timeout : int | None = None ) -> Any :
+
+
+
+
+
+
Extract structured data (like JSON-LD, OpenGraph, etc) from the opened page. If a url is provided, it navigates to that url first.
+
+
+
+
+
+
+
+ def
+ tree ( self , * , url : str | None = None , timeout : int | None = None , backendNodeId : int | None = None , maxDepth : int | None = None ) -> Any :
+
+
+
+
+
+
Simplified semantic DOM tree (role, name, value, backendNodeId per node). Pass backendNodeId to scope, maxDepth to limit depth.
+
+
+
+
+
+
+
+ def
+ wait_for_script (self , * , script : str , timeout : int | None = None ) -> Any :
+
+
+
+
+
+
Wait until a JS expression returns truthy. Re-evaluates on each tick of the event loop. Use for synchronization beyond what CSS selectors can express — e.g. window.dataLoaded === true, document.readyState === 'complete', document.querySelectorAll('.row').length >= 5.
+
+
+
+
+
+
+
+ def
+ waitForScript (self , * , script : str , timeout : int | None = None ) -> Any :
+
+
+
+
+
+
Wait until a JS expression returns truthy. Re-evaluates on each tick of the event loop. Use for synchronization beyond what CSS selectors can express — e.g. window.dataLoaded === true, document.readyState === 'complete', document.querySelectorAll('.row').length >= 5.
+
+
+
+
+
+
+
+ def
+ wait_for_selector (self , * , selector : str , timeout : int | None = None ) -> Any :
+
+
+
+
+
+
Wait for an element matching a CSS selector to appear in the page. Returns the backend node ID of the matched element.
+
+
+
+
+
+
+
+ def
+ waitForSelector (self , * , selector : str , timeout : int | None = None ) -> Any :
+
+
+
+
+
+
Wait for an element matching a CSS selector to appear in the page. Returns the backend node ID of the matched element.
+
+
+
+
+
+
+
+ def
+ wait_for_state (self , * , state : str , timeout : int | None = None ) -> Any :
+
+
+
+
+
+
Wait for the CURRENT page to reach a load state (no navigation). After a goto , the page is returned at the fast load snapshot, so content rendered by post-load JS (XHR-loaded lists, feeds, search results) may still be missing. When a read looks incomplete — empty lists, spinners, skeletons — call this with 'networkidle' and re-read. Prefer 'networkidle'; 'done' can be slow on sites with constant background activity (ads, polling).
+
+
+
+
+
+
+
+ def
+ waitForState (self , * , state : str , timeout : int | None = None ) -> Any :
+
+
+
+
+
+
Wait for the CURRENT page to reach a load state (no navigation). After a goto , the page is returned at the fast load snapshot, so content rendered by post-load JS (XHR-loaded lists, feeds, search results) may still be missing. When a read looks incomplete — empty lists, spinners, skeletons — call this with 'networkidle' and re-read. Prefer 'networkidle'; 'done' can be slow on sites with constant background activity (ads, polling).
+
+
+
+
+
+
+
+
+ def
+ run_script ( script : str | os . PathLike , env : dict [ str , str ] | None = None , binary : str | os . PathLike | None = None , timeout : float | None = None ) -> str :
+
+
+
+
+
+ Replay a saved lightpanda script (no LLM) and return its stdout.
+
+
env entries (e.g. LP_* placeholder values) are added to the
+child's environment. Raises ScriptError on a non-zero exit.
+
+
+
+
+
+
+
+ class
+ AsyncBrowser :
+
+
+
+
+
+ A lightpanda browser process, driven from asyncio.
+
+
The subprocess is spawned by start() — called automatically on
+async with entry and by new_session() . Not fork-inheritable,
+same as Browser .
+
+
+
+
+
+
+ AsyncBrowser ( binary : str | os . PathLike | None = None , env : dict [ str , str ] | None = None , timeout : float = 300.0 , verbose : bool = False , args : tuple [ str , ... ] | list [ str ] = () , max_concurrency : int = 32 )
+
+
+
+
+
+
binary/env/timeout/verbose/args are forwarded
+to Browser . max_concurrency caps concurrently executing
+tool calls across this browser's sessions (worker threads are
+created lazily).
+
+
+
+
+
+
+
@classmethod
+
+
def
+
wrap ( cls , browser : Browser , max_concurrency : int = 32 ) -> AsyncBrowser :
+
+
+
+
+
+
Adopt an already-running Browser — the migration path for
+driving existing sync setup from asyncio. close() shuts down
+the facade but leaves the wrapped browser running.
+
+
+
+
+
+
+
+
+
Spawn the browser process and fetch its tool list. Idempotent.
+
+
+
+
+
+
+
+
+
@contextlib.asynccontextmanager
+
+
async def
+
session (self ):
+
+
+
+
+
+
async with browser.session() as page: — a session scoped to
+the block and closed on exit. Use new_session() for the
+unscoped form.
+
+
+
+
+
+
+
+ async def
+ close (self ) -> None :
+
+
+
+
+
+
+
+
+
+
+
+
+ class
+ AsyncSession (lightpanda._methods.AsyncSessionMethods ):
+
+
+
+
+
+ One isolated browsing context (own page, cookies, memory), async.
+
+
Do not construct directly — use AsyncBrowser.new_session() .
+
+
+
+
+
+
+
AsyncSession ( session : Session , executor : concurrent . futures . thread . ThreadPoolExecutor )
+
+
+
+
+
+
+
+
+
+
+ id : str
+
+
+
+
+
+
+
+
+
+
+
+ async def
+ call (self , tool : str , ** kwargs ):
+
+
+
+
+
+
Invoke a browser tool by name. The generated methods route here.
+
+
+
+
+
+
+
+ async def
+ close (self ) -> None :
+
+
+
+
+
+
+
+
+
+
+
+ async def
+ click ( self , * , selector : str | None = None , backendNodeId : int | None = None ) -> Any :
+
+
+
+
+
+
Click on an interactive element. Provide either a CSS selector (preferred for reproducibility) or a backendNodeId. Returns the current page URL and title after the click.
+
+
+
+
+
+
+
+ async def
+ console_logs (self ) -> Any :
+
+
+
+
+
+
Get buffered console.log/warn/error messages from the current page. Returns all messages since last call and clears the buffer.
+
+
+
+
+
+
+
+ async def
+ consoleLogs (self ) -> Any :
+
+
+
+
+
+
Get buffered console.log/warn/error messages from the current page. Returns all messages since last call and clears the buffer.
+
+
+
+
+
+
+
+
+
+ async def
+ evaluate ( self , * , script : str , url : str | None = None , timeout : int | None = None , save : str | None = None ) -> Any :
+
+
+
+
+
+
Evaluate JavaScript in the current page context — an escape hatch for page-side logic the dedicated tools can't express; prefer extract for data and click/fill/etc. for actions. It runs in the page, so it cannot see the agent script's variables or builtins — interpolate any value into the script string. A bare trailing expression yields its value; top-level await and return are supported (the body then runs as an async function, so use return to produce a value). Objects and arrays return as JSON, so no JSON.stringify is needed. If a url is provided, it navigates there first. The globalThis.lp object exposes a Session-scoped bridge store: values written via lp.foo = ... auto-sync at end of evaluate, surviving navigation; values previously set via /extract save= or /evaluate save= appear as lp.<name>.
+
+
+
+
+
+
+
+
+ async def
+ fill ( self , * , value : str , selector : str | None = None , backendNodeId : int | None = None ) -> Any :
+
+
+
+
+
+
Fill text into an input element. Provide either a CSS selector (preferred for reproducibility) or a backendNodeId.
+
+
+
+
+
+
+
+ async def
+ find_element (self , * , role : str | None = None , name : str | None = None ) -> Any :
+
+
+
+
+
+
Find interactive elements by role and/or accessible name. Returns matching elements with their backend node IDs. Useful for locating specific elements without parsing the full semantic tree.
+
+
+
+
+
+
+
+ async def
+ findElement (self , * , role : str | None = None , name : str | None = None ) -> Any :
+
+
+
+
+
+
Find interactive elements by role and/or accessible name. Returns matching elements with their backend node IDs. Useful for locating specific elements without parsing the full semantic tree.
+
+
+
+
+
+
+
+ async def
+ get_cookies (self , * , url : str | None = None , all : bool | None = None ) -> Any :
+
+
+
+
+
+
Cookies stored in the browser. Defaults to cookies whose domain matches the current page's host. Pass url=<URL> to filter for another host, or all=true to dump every cookie regardless of host. Useful for debugging authentication and session state.
+
+
+
+
+
+
+
+ async def
+ getCookies (self , * , url : str | None = None , all : bool | None = None ) -> Any :
+
+
+
+
+
+
Cookies stored in the browser. Defaults to cookies whose domain matches the current page's host. Pass url=<URL> to filter for another host, or all=true to dump every cookie regardless of host. Useful for debugging authentication and session state.
+
+
+
+
+
+
+
+ async def
+ get_env (self , * , name : str | None = None ) -> Any :
+
+
+
+
+
+
With name: read an LP_* env var (other namespaces report as not set) — for non-secret config only (base URLs, flags). Without name: list LP_* names that are set (no values) — safe credential discovery. For secrets, pass $LP_* placeholders in tool args; never request a credential by name (the value would land in your context).
+
+
+
+
+
+
+
+ async def
+ getEnv (self , * , name : str | None = None ) -> Any :
+
+
+
+
+
+
With name: read an LP_* env var (other namespaces report as not set) — for non-secret config only (base URLs, flags). Without name: list LP_* names that are set (no values) — safe credential discovery. For secrets, pass $LP_* placeholders in tool args; never request a credential by name (the value would land in your context).
+
+
+
+
+
+
+
+ async def
+ get_url (self ) -> Any :
+
+
+
+
+
+
Current page URL. The browser may already have a page loaded (command, replayed script) not visible in this conversation — call this before assuming nothing is loaded when the user references the current page/site. Also useful to verify a navigation or detect a redirect.
+
+
+
+
+
+
+
+ async def
+ getUrl (self ) -> Any :
+
+
+
+
+
+
Current page URL. The browser may already have a page loaded (command, replayed script) not visible in this conversation — call this before assuming nothing is loaded when the user references the current page/site. Also useful to verify a navigation or detect a redirect.
+
+
+
+
+
+
+
+ async def
+ goto (self , * , url : str , timeout : int | None = None ) -> Any :
+
+
+
+
+
+
Navigate to a specified URL and load the page in memory so it can be reused later for info extraction.
+
+
+
+
+
+
+
+ async def
+ hover ( self , * , selector : str | None = None , backendNodeId : int | None = None ) -> Any :
+
+
+
+
+
+
Hover over an element, triggering mouseover and mouseenter events. Provide either a CSS selector (preferred for reproducibility) or a backendNodeId. Useful for menus, tooltips, and hover states.
+
+
+
+
+
+
+
+ async def
+ html ( self , * , selector : str | None = None , backendNodeId : int | None = None , url : str | None = None , timeout : int | None = None ) -> Any :
+
+
+
+
+
+
Raw HTML for the document or, with selector/backendNodeId, a single node's outerHTML. Verbose; use only when you need attributes that markdown discards.
+
+
+
+
+
+
+
+ async def
+ interactive_elements (self , * , url : str | None = None , timeout : int | None = None ) -> Any :
+
+
+
+
+
+
Extract interactive elements from the opened page. If a url is provided, it navigates to that url first.
+
+
+
+
+
+
+
+ async def
+ interactiveElements (self , * , url : str | None = None , timeout : int | None = None ) -> Any :
+
+
+
+
+
+
Extract interactive elements from the opened page. If a url is provided, it navigates to that url first.
+
+
+
+
+
+
+
+ async def
+ links (self , * , url : str | None = None , timeout : int | None = None ) -> Any :
+
+
+
+
+
+
Extract all links in the opened page as JSON objects with text (visible anchor text), href (resolved URL), and backendNodeId (pass to click/nodeDetails). If a url is provided, it navigates to that url first.
+
+
+
+
+
+
+
+ async def
+ markdown ( self , * , selector : str | None = None , backendNodeId : int | None = None , maxBytes : int | None = None , url : str | None = None , timeout : int | None = None ) -> Any :
+
+
+
+
+
+
Render the page (or a subtree) as markdown. Scope with selector or backendNodeId to read just the relevant region — full-page markdown is the last resort. Use maxBytes to cap long pages.
+
+
+
+
+
+
+
+ async def
+ node_details (self , * , backendNodeId : int ) -> Any :
+
+
+
+
+
+
Details for a node by backendNodeId: a ready-to-use CSS selector that resolves to the node (the first match, as click/fill resolve it), plus tag, role, name, interactivity, disabled, value, input type, placeholder, href, id, class, checked, select options. The canonical way to turn a tree backendNodeId into a CSS selector.
+
+
+
+
+
+
+
+ async def
+ nodeDetails (self , * , backendNodeId : int ) -> Any :
+
+
+
+
+
+
Details for a node by backendNodeId: a ready-to-use CSS selector that resolves to the node (the first match, as click/fill resolve it), plus tag, role, name, interactivity, disabled, value, input type, placeholder, href, id, class, checked, select options. The canonical way to turn a tree backendNodeId into a CSS selector.
+
+
+
+
+
+
+
+ async def
+ press ( self , * , key : str , selector : str | None = None , backendNodeId : int | None = None ) -> Any :
+
+
+
+
+
+
Press a keyboard key, dispatching keydown and keyup events. Use key names like 'Enter', 'Tab', 'Escape', 'ArrowDown', 'Backspace', or single characters like 'a', '1'. Common shorthand is normalized: 'enter'/'return' → 'Enter', 'esc' → 'Escape', 'up'/'down'/'left'/'right' → 'Arrow*', 'space' → ' '. Pressing 'Enter' on a form input or submit button triggers implicit form submission.
+
+
+
+
+
+
+
+
+ async def
+ search (self , * , query : str , timeout : int | None = None ) -> Any :
+
+
+
+
+
+
Run a web search and return results as markdown. When BRAVE_API_KEY or TAVILY_API_KEY is set, queries that search API (Brave preferred) and returns a numbered list of {title, url, snippet}. Otherwise (or on API failure) falls back to scraping the DuckDuckGo HTML endpoint — degraded results, may rate-limit on bursty traffic. Prefer this over goto-ing google.com/search directly (Google blocks the browser on User-Agent/TLS). Browser state after this call is unspecified — to interact with a result, use goto with its URL; do not assume the browser DOM matches the results page.
+
+
+
+
+
+
+
+ async def
+ select_option ( self , * , value : str , selector : str | None = None , backendNodeId : int | None = None ) -> Any :
+
+
+
+
+
+
Select an option in a dropdown element by its value. Provide either a CSS selector (preferred for reproducibility) or a backendNodeId. Dispatches input and change events.
+
+
+
+
+
+
+
+ async def
+ selectOption ( self , * , value : str , selector : str | None = None , backendNodeId : int | None = None ) -> Any :
+
+
+
+
+
+
Select an option in a dropdown element by its value. Provide either a CSS selector (preferred for reproducibility) or a backendNodeId. Dispatches input and change events.
+
+
+
+
+
+
+
+ async def
+ set_checked ( self , * , checked : bool , selector : str | None = None , backendNodeId : int | None = None ) -> Any :
+
+
+
+
+
+
Check or uncheck a checkbox or radio button. Provide either a CSS selector (preferred for reproducibility) or a backendNodeId. Dispatches input, change, and click events.
+
+
+
+
+
+
+
+ async def
+ setChecked ( self , * , checked : bool , selector : str | None = None , backendNodeId : int | None = None ) -> Any :
+
+
+
+
+
+
Check or uncheck a checkbox or radio button. Provide either a CSS selector (preferred for reproducibility) or a backendNodeId. Dispatches input, change, and click events.
+
+
+
+
+
+
+
+ async def
+ structured_data (self , * , url : str | None = None , timeout : int | None = None ) -> Any :
+
+
+
+
+
+
Extract structured data (like JSON-LD, OpenGraph, etc) from the opened page. If a url is provided, it navigates to that url first.
+
+
+
+
+
+
+
+ async def
+ structuredData (self , * , url : str | None = None , timeout : int | None = None ) -> Any :
+
+
+
+
+
+
Extract structured data (like JSON-LD, OpenGraph, etc) from the opened page. If a url is provided, it navigates to that url first.
+
+
+
+
+
+
+
+ async def
+ tree ( self , * , url : str | None = None , timeout : int | None = None , backendNodeId : int | None = None , maxDepth : int | None = None ) -> Any :
+
+
+
+
+
+
Simplified semantic DOM tree (role, name, value, backendNodeId per node). Pass backendNodeId to scope, maxDepth to limit depth.
+
+
+
+
+
+
+
+ async def
+ wait_for_script (self , * , script : str , timeout : int | None = None ) -> Any :
+
+
+
+
+
+
Wait until a JS expression returns truthy. Re-evaluates on each tick of the event loop. Use for synchronization beyond what CSS selectors can express — e.g. window.dataLoaded === true, document.readyState === 'complete', document.querySelectorAll('.row').length >= 5.
+
+
+
+
+
+
+
+ async def
+ waitForScript (self , * , script : str , timeout : int | None = None ) -> Any :
+
+
+
+
+
+
Wait until a JS expression returns truthy. Re-evaluates on each tick of the event loop. Use for synchronization beyond what CSS selectors can express — e.g. window.dataLoaded === true, document.readyState === 'complete', document.querySelectorAll('.row').length >= 5.
+
+
+
+
+
+
+
+ async def
+ wait_for_selector (self , * , selector : str , timeout : int | None = None ) -> Any :
+
+
+
+
+
+
Wait for an element matching a CSS selector to appear in the page. Returns the backend node ID of the matched element.
+
+
+
+
+
+
+
+ async def
+ waitForSelector (self , * , selector : str , timeout : int | None = None ) -> Any :
+
+
+
+
+
+
Wait for an element matching a CSS selector to appear in the page. Returns the backend node ID of the matched element.
+
+
+
+
+
+
+
+ async def
+ wait_for_state (self , * , state : str , timeout : int | None = None ) -> Any :
+
+
+
+
+
+
Wait for the CURRENT page to reach a load state (no navigation). After a goto , the page is returned at the fast load snapshot, so content rendered by post-load JS (XHR-loaded lists, feeds, search results) may still be missing. When a read looks incomplete — empty lists, spinners, skeletons — call this with 'networkidle' and re-read. Prefer 'networkidle'; 'done' can be slow on sites with constant background activity (ads, polling).
+
+
+
+
+
+
+
+ async def
+ waitForState (self , * , state : str , timeout : int | None = None ) -> Any :
+
+
+
+
+
+
Wait for the CURRENT page to reach a load state (no navigation). After a goto , the page is returned at the fast load snapshot, so content rendered by post-load JS (XHR-loaded lists, feeds, search results) may still be missing. When a read looks incomplete — empty lists, spinners, skeletons — call this with 'networkidle' and re-read. Prefer 'networkidle'; 'done' can be slow on sites with constant background activity (ads, polling).
+
+
+
+
+
+
+
+
+ async def
+ run_script_async ( script : str | os . PathLike , env : dict [ str , str ] | None = None , binary : str | os . PathLike | None = None , timeout : float | None = None ) -> str :
+
+
+
+
+
+
+
+
+
+
+
+
+ class
+ LightpandaError (builtins.Exception ):
+
+
+
+
+
+ Base error for the lightpanda package.
+
+
+
+
+
+
+
+
+ JSON-RPC level failure (invalid request, timeout, internal error).
+
+
+
+
+
+
+ ProtocolError (message : str , code : int | None = None )
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ A script replay (run_script ) exited with a failure.
+
+
+
+
+
+
+ ScriptError (message : str , returncode : int , stdout : str = '' , stderr : str = '' )
+
+
+
+
+
+
+
+
+
+
+ returncode
+
+
+
+
+
+
+
+
+
+
+ stdout
+
+
+
+
+
+
+
+
+
+
+ stderr
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/public/python/search.js b/public/python/search.js
new file mode 100644
index 0000000..db3b189
--- /dev/null
+++ b/public/python/search.js
@@ -0,0 +1,46 @@
+window.pdocSearch = (function(){
+/** elasticlunr - http://weixsong.github.io * Copyright (C) 2017 Oliver Nightingale * Copyright (C) 2017 Wei Song * MIT Licensed */!function(){function e(e){if(null===e||"object"!=typeof e)return e;var t=e.constructor();for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n]);return t}var t=function(e){var n=new t.Index;return n.pipeline.add(t.trimmer,t.stopWordFilter,t.stemmer),e&&e.call(n,n),n};t.version="0.9.5",lunr=t,t.utils={},t.utils.warn=function(e){return function(t){e.console&&console.warn&&console.warn(t)}}(this),t.utils.toString=function(e){return void 0===e||null===e?"":e.toString()},t.EventEmitter=function(){this.events={}},t.EventEmitter.prototype.addListener=function(){var e=Array.prototype.slice.call(arguments),t=e.pop(),n=e;if("function"!=typeof t)throw new TypeError("last argument must be a function");n.forEach(function(e){this.hasHandler(e)||(this.events[e]=[]),this.events[e].push(t)},this)},t.EventEmitter.prototype.removeListener=function(e,t){if(this.hasHandler(e)){var n=this.events[e].indexOf(t);-1!==n&&(this.events[e].splice(n,1),0==this.events[e].length&&delete this.events[e])}},t.EventEmitter.prototype.emit=function(e){if(this.hasHandler(e)){var t=Array.prototype.slice.call(arguments,1);this.events[e].forEach(function(e){e.apply(void 0,t)},this)}},t.EventEmitter.prototype.hasHandler=function(e){return e in this.events},t.tokenizer=function(e){if(!arguments.length||null===e||void 0===e)return[];if(Array.isArray(e)){var n=e.filter(function(e){return null===e||void 0===e?!1:!0});n=n.map(function(e){return t.utils.toString(e).toLowerCase()});var i=[];return n.forEach(function(e){var n=e.split(t.tokenizer.seperator);i=i.concat(n)},this),i}return e.toString().trim().toLowerCase().split(t.tokenizer.seperator)},t.tokenizer.defaultSeperator=/[\s\-]+/,t.tokenizer.seperator=t.tokenizer.defaultSeperator,t.tokenizer.setSeperator=function(e){null!==e&&void 0!==e&&"object"==typeof e&&(t.tokenizer.seperator=e)},t.tokenizer.resetSeperator=function(){t.tokenizer.seperator=t.tokenizer.defaultSeperator},t.tokenizer.getSeperator=function(){return t.tokenizer.seperator},t.Pipeline=function(){this._queue=[]},t.Pipeline.registeredFunctions={},t.Pipeline.registerFunction=function(e,n){n in t.Pipeline.registeredFunctions&&t.utils.warn("Overwriting existing registered function: "+n),e.label=n,t.Pipeline.registeredFunctions[n]=e},t.Pipeline.getRegisteredFunction=function(e){return e in t.Pipeline.registeredFunctions!=!0?null:t.Pipeline.registeredFunctions[e]},t.Pipeline.warnIfFunctionNotRegistered=function(e){var n=e.label&&e.label in this.registeredFunctions;n||t.utils.warn("Function is not registered with pipeline. This may cause problems when serialising the index.\n",e)},t.Pipeline.load=function(e){var n=new t.Pipeline;return e.forEach(function(e){var i=t.Pipeline.getRegisteredFunction(e);if(!i)throw new Error("Cannot load un-registered function: "+e);n.add(i)}),n},t.Pipeline.prototype.add=function(){var e=Array.prototype.slice.call(arguments);e.forEach(function(e){t.Pipeline.warnIfFunctionNotRegistered(e),this._queue.push(e)},this)},t.Pipeline.prototype.after=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var i=this._queue.indexOf(e);if(-1===i)throw new Error("Cannot find existingFn");this._queue.splice(i+1,0,n)},t.Pipeline.prototype.before=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var i=this._queue.indexOf(e);if(-1===i)throw new Error("Cannot find existingFn");this._queue.splice(i,0,n)},t.Pipeline.prototype.remove=function(e){var t=this._queue.indexOf(e);-1!==t&&this._queue.splice(t,1)},t.Pipeline.prototype.run=function(e){for(var t=[],n=e.length,i=this._queue.length,o=0;n>o;o++){for(var r=e[o],s=0;i>s&&(r=this._queue[s](r,o,e),void 0!==r&&null!==r);s++);void 0!==r&&null!==r&&t.push(r)}return t},t.Pipeline.prototype.reset=function(){this._queue=[]},t.Pipeline.prototype.get=function(){return this._queue},t.Pipeline.prototype.toJSON=function(){return this._queue.map(function(e){return t.Pipeline.warnIfFunctionNotRegistered(e),e.label})},t.Index=function(){this._fields=[],this._ref="id",this.pipeline=new t.Pipeline,this.documentStore=new t.DocumentStore,this.index={},this.eventEmitter=new t.EventEmitter,this._idfCache={},this.on("add","remove","update",function(){this._idfCache={}}.bind(this))},t.Index.prototype.on=function(){var e=Array.prototype.slice.call(arguments);return this.eventEmitter.addListener.apply(this.eventEmitter,e)},t.Index.prototype.off=function(e,t){return this.eventEmitter.removeListener(e,t)},t.Index.load=function(e){e.version!==t.version&&t.utils.warn("version mismatch: current "+t.version+" importing "+e.version);var n=new this;n._fields=e.fields,n._ref=e.ref,n.documentStore=t.DocumentStore.load(e.documentStore),n.pipeline=t.Pipeline.load(e.pipeline),n.index={};for(var i in e.index)n.index[i]=t.InvertedIndex.load(e.index[i]);return n},t.Index.prototype.addField=function(e){return this._fields.push(e),this.index[e]=new t.InvertedIndex,this},t.Index.prototype.setRef=function(e){return this._ref=e,this},t.Index.prototype.saveDocument=function(e){return this.documentStore=new t.DocumentStore(e),this},t.Index.prototype.addDoc=function(e,n){if(e){var n=void 0===n?!0:n,i=e[this._ref];this.documentStore.addDoc(i,e),this._fields.forEach(function(n){var o=this.pipeline.run(t.tokenizer(e[n]));this.documentStore.addFieldLength(i,n,o.length);var r={};o.forEach(function(e){e in r?r[e]+=1:r[e]=1},this);for(var s in r){var u=r[s];u=Math.sqrt(u),this.index[n].addToken(s,{ref:i,tf:u})}},this),n&&this.eventEmitter.emit("add",e,this)}},t.Index.prototype.removeDocByRef=function(e){if(e&&this.documentStore.isDocStored()!==!1&&this.documentStore.hasDoc(e)){var t=this.documentStore.getDoc(e);this.removeDoc(t,!1)}},t.Index.prototype.removeDoc=function(e,n){if(e){var n=void 0===n?!0:n,i=e[this._ref];this.documentStore.hasDoc(i)&&(this.documentStore.removeDoc(i),this._fields.forEach(function(n){var o=this.pipeline.run(t.tokenizer(e[n]));o.forEach(function(e){this.index[n].removeToken(e,i)},this)},this),n&&this.eventEmitter.emit("remove",e,this))}},t.Index.prototype.updateDoc=function(e,t){var t=void 0===t?!0:t;this.removeDocByRef(e[this._ref],!1),this.addDoc(e,!1),t&&this.eventEmitter.emit("update",e,this)},t.Index.prototype.idf=function(e,t){var n="@"+t+"/"+e;if(Object.prototype.hasOwnProperty.call(this._idfCache,n))return this._idfCache[n];var i=this.index[t].getDocFreq(e),o=1+Math.log(this.documentStore.length/(i+1));return this._idfCache[n]=o,o},t.Index.prototype.getFields=function(){return this._fields.slice()},t.Index.prototype.search=function(e,n){if(!e)return[];e="string"==typeof e?{any:e}:JSON.parse(JSON.stringify(e));var i=null;null!=n&&(i=JSON.stringify(n));for(var o=new t.Configuration(i,this.getFields()).get(),r={},s=Object.keys(e),u=0;u0&&t.push(e);for(var i in n)"docs"!==i&&"df"!==i&&this.expandToken(e+i,t,n[i]);return t},t.InvertedIndex.prototype.toJSON=function(){return{root:this.root}},t.Configuration=function(e,n){var e=e||"";if(void 0==n||null==n)throw new Error("fields should not be null");this.config={};var i;try{i=JSON.parse(e),this.buildUserConfig(i,n)}catch(o){t.utils.warn("user configuration parse failed, will use default configuration"),this.buildDefaultConfig(n)}},t.Configuration.prototype.buildDefaultConfig=function(e){this.reset(),e.forEach(function(e){this.config[e]={boost:1,bool:"OR",expand:!1}},this)},t.Configuration.prototype.buildUserConfig=function(e,n){var i="OR",o=!1;if(this.reset(),"bool"in e&&(i=e.bool||i),"expand"in e&&(o=e.expand||o),"fields"in e)for(var r in e.fields)if(n.indexOf(r)>-1){var s=e.fields[r],u=o;void 0!=s.expand&&(u=s.expand),this.config[r]={boost:s.boost||0===s.boost?s.boost:1,bool:s.bool||i,expand:u}}else t.utils.warn("field name in user configuration not found in index instance fields");else this.addAllFields2UserConfig(i,o,n)},t.Configuration.prototype.addAllFields2UserConfig=function(e,t,n){n.forEach(function(n){this.config[n]={boost:1,bool:e,expand:t}},this)},t.Configuration.prototype.get=function(){return this.config},t.Configuration.prototype.reset=function(){this.config={}},lunr.SortedSet=function(){this.length=0,this.elements=[]},lunr.SortedSet.load=function(e){var t=new this;return t.elements=e,t.length=e.length,t},lunr.SortedSet.prototype.add=function(){var e,t;for(e=0;e1;){if(r===e)return o;e>r&&(t=o),r>e&&(n=o),i=n-t,o=t+Math.floor(i/2),r=this.elements[o]}return r===e?o:-1},lunr.SortedSet.prototype.locationFor=function(e){for(var t=0,n=this.elements.length,i=n-t,o=t+Math.floor(i/2),r=this.elements[o];i>1;)e>r&&(t=o),r>e&&(n=o),i=n-t,o=t+Math.floor(i/2),r=this.elements[o];return r>e?o:e>r?o+1:void 0},lunr.SortedSet.prototype.intersect=function(e){for(var t=new lunr.SortedSet,n=0,i=0,o=this.length,r=e.length,s=this.elements,u=e.elements;;){if(n>o-1||i>r-1)break;s[n]!==u[i]?s[n]u[i]&&i++:(t.add(s[n]),n++,i++)}return t},lunr.SortedSet.prototype.clone=function(){var e=new lunr.SortedSet;return e.elements=this.toArray(),e.length=e.elements.length,e},lunr.SortedSet.prototype.union=function(e){var t,n,i;this.length>=e.length?(t=this,n=e):(t=e,n=this),i=t.clone();for(var o=0,r=n.toArray();oLightpanda for Python: a lightweight headless browser.
\n\n\n
from lightpanda import Browser \n\nwith Browser () as b : \n page = b . new_session () \n page . goto ( url = \"https://example.com\" ) \n data = page . extract ( schema = { \"title\" : \"h1\" }) \n\n
\n\nThe same API is available for asyncio:
\n\n\n
from lightpanda import AsyncBrowser \n\nasync with AsyncBrowser () as b : \n page = await b . new_session () \n await page . goto ( url = \"https://example.com\" ) \n data = await page . extract ( schema = { \"title\" : \"h1\" }) \n\n
\n"}, "lightpanda.Browser": {"fullname": "lightpanda.Browser", "modulename": "lightpanda", "qualname": "Browser", "kind": "class", "doc": "A lightpanda browser process. Spawns the bundled binary on first use.
\n\nNot fork-inheritable: after os.fork()/multiprocessing, create a\nfresh Browser in the child.
\n"}, "lightpanda.Browser.__init__": {"fullname": "lightpanda.Browser.__init__", "modulename": "lightpanda", "qualname": "Browser.__init__", "kind": "function", "doc": "args are extra CLI flags for the spawned browser process\n(e.g. [\"--http-cache-dir\", path] or cookie flags).
\n", "signature": "(\tbinary : str | os . PathLike | None = None , \tenv : dict [ str , str ] | None = None , \ttimeout : float = 300.0 , \tverbose : bool = False , \targs : tuple [ str , ... ] | list [ str ] = () ) "}, "lightpanda.Browser.tools": {"fullname": "lightpanda.Browser.tools", "modulename": "lightpanda", "qualname": "Browser.tools", "kind": "variable", "doc": "Tool name \u2192 {description, schema}, as reported by the browser.
\n", "annotation": ": dict[str, dict]"}, "lightpanda.Browser.new_session": {"fullname": "lightpanda.Browser.new_session", "modulename": "lightpanda", "qualname": "Browser.new_session", "kind": "function", "doc": "
\n", "signature": "(self ) -> lightpanda . browser . Session : ", "funcdef": "def"}, "lightpanda.Browser.close": {"fullname": "lightpanda.Browser.close", "modulename": "lightpanda", "qualname": "Browser.close", "kind": "function", "doc": "
\n", "signature": "(self ) -> None : ", "funcdef": "def"}, "lightpanda.Session": {"fullname": "lightpanda.Session", "modulename": "lightpanda", "qualname": "Session", "kind": "class", "doc": "One isolated browsing context (own page, cookies, memory).
\n\nDo not construct directly \u2014 use Browser.new_session().
\n", "bases": "lightpanda._methods.SessionMethods"}, "lightpanda.Session.__init__": {"fullname": "lightpanda.Session.__init__", "modulename": "lightpanda", "qualname": "Session.__init__", "kind": "function", "doc": "
\n", "signature": "(\tclient : lightpanda . client . Client , \tsession_id : str , \ttools : dict [ str , dict ] ) "}, "lightpanda.Session.id": {"fullname": "lightpanda.Session.id", "modulename": "lightpanda", "qualname": "Session.id", "kind": "variable", "doc": "
\n", "annotation": ": str"}, "lightpanda.Session.call": {"fullname": "lightpanda.Session.call", "modulename": "lightpanda", "qualname": "Session.call", "kind": "function", "doc": "Invoke a browser tool by name. The generated methods route here.
\n", "signature": "(self , tool : str , ** kwargs ): ", "funcdef": "def"}, "lightpanda.Session.close": {"fullname": "lightpanda.Session.close", "modulename": "lightpanda", "qualname": "Session.close", "kind": "function", "doc": "
\n", "signature": "(self ) -> None : ", "funcdef": "def"}, "lightpanda.Session.click": {"fullname": "lightpanda.Session.click", "modulename": "lightpanda", "qualname": "Session.click", "kind": "function", "doc": "Click on an interactive element. Provide either a CSS selector (preferred for reproducibility) or a backendNodeId. Returns the current page URL and title after the click.
\n", "signature": "(\tself , \t* , \tselector : str | None = None , \tbackendNodeId : int | None = None ) -> Any : ", "funcdef": "def"}, "lightpanda.Session.console_logs": {"fullname": "lightpanda.Session.console_logs", "modulename": "lightpanda", "qualname": "Session.console_logs", "kind": "function", "doc": "Get buffered console.log/warn/error messages from the current page. Returns all messages since last call and clears the buffer.
\n", "signature": "(self ) -> Any : ", "funcdef": "def"}, "lightpanda.Session.consoleLogs": {"fullname": "lightpanda.Session.consoleLogs", "modulename": "lightpanda", "qualname": "Session.consoleLogs", "kind": "function", "doc": "Get buffered console.log/warn/error messages from the current page. Returns all messages since last call and clears the buffer.
\n", "signature": "(self ) -> Any : ", "funcdef": "def"}, "lightpanda.Session.detect_forms": {"fullname": "lightpanda.Session.detect_forms", "modulename": "lightpanda", "qualname": "Session.detect_forms", "kind": "function", "doc": "Detect all forms on the page and return their structure including fields, types, and required status. If a url is provided, it navigates to that url first.
\n", "signature": "(self , * , url : str | None = None , timeout : int | None = None ) -> Any : ", "funcdef": "def"}, "lightpanda.Session.detectForms": {"fullname": "lightpanda.Session.detectForms", "modulename": "lightpanda", "qualname": "Session.detectForms", "kind": "function", "doc": "Detect all forms on the page and return their structure including fields, types, and required status. If a url is provided, it navigates to that url first.
\n", "signature": "(self , * , url : str | None = None , timeout : int | None = None ) -> Any : ", "funcdef": "def"}, "lightpanda.Session.evaluate": {"fullname": "lightpanda.Session.evaluate", "modulename": "lightpanda", "qualname": "Session.evaluate", "kind": "function", "doc": "Evaluate JavaScript in the current page context \u2014 an escape hatch for page-side logic the dedicated tools can't express; prefer extract for data and click/fill/etc. for actions. It runs in the page, so it cannot see the agent script's variables or builtins \u2014 interpolate any value into the script string. A bare trailing expression yields its value; top-level await and return are supported (the body then runs as an async function, so use return to produce a value). Objects and arrays return as JSON, so no JSON.stringify is needed. If a url is provided, it navigates there first. The globalThis.lp object exposes a Session-scoped bridge store: values written via lp.foo = ... auto-sync at end of evaluate, surviving navigation; values previously set via /extract save= or /evaluate save= appear as lp.<name>.
\n", "signature": "(\tself , \t* , \tscript : str , \turl : str | None = None , \ttimeout : int | None = None , \tsave : str | None = None ) -> Any : ", "funcdef": "def"}, "lightpanda.Session.extract": {"fullname": "lightpanda.Session.extract", "modulename": "lightpanda", "qualname": "Session.extract", "kind": "function", "doc": "Extract structured data from the current page (navigate first). schema is a JSON object (passed as a string) mapping output field names to CSS-selector specs. It is NOT a JSON Schema \u2014 no \"type\"/\"properties\" wrappers; the keys ARE your output fields. Value shapes:\n \"\" \u2192 first match's text (trimmed; null if no match)\n [\"\"] \u2192 every match's text (string[])\n {\"selector\":\"\",\"attr\":\"\"} \u2192 first match's attribute value (href/src resolved to absolute URLs)\n [{\"selector\":\"\",\"attr\":\"\"}] \u2192 every match's attribute (string[])\n [{\"selector\":\"\",\"fields\":{\u2026}}] \u2192 one object per match; field selectors resolve relative to that match and accept any shape above (\"\" = the match's own text; nest arrays for per-item sub-lists)\nAdd \"limit\": N inside any array's object spec to cap matches.\nEvery extracted value is a string or null \u2014 parse numbers downstream. An empty array is a valid result, but if ALL top-level keys miss, the call errors: inspect the page (tree/markdown) and retry with corrected selectors.\nFinish data tasks with extract \u2014 it is the only read recorded as a replayable extract(...) script call; answers lifted from markdown text in chat are not.
\n\nExamples (schema \u2192 result):\n {\"karma\": \"#karma\"} \u2192 {\"karma\":\"42\"}\n {\"items\": [\".story .title\"]} \u2192 {\"items\":[\"Title 1\",\"Title 2\"]}\n {\"top3\": [{\"selector\":\".story .title\",\"limit\":3}]} \u2192 {\"top3\":[\"A\",\"B\",\"C\"]}\n {\"links\": [{\"selector\":\"a.title\",\"attr\":\"href\"}]} \u2192 {\"links\":[\"https://site/a\",\"https://site/b\"]}\n {\"stories\": [{\"selector\":\".athing\",\"fields\":{\"title\":\".titleline\",\"rank\":\".rank\"}}]} \u2192 {\"stories\":[{\"title\":\"Foo\",\"rank\":\"1\"}]}
\n", "signature": "(self , * , schema : str | dict | list , save : str | None = None ) -> Any : ", "funcdef": "def"}, "lightpanda.Session.fill": {"fullname": "lightpanda.Session.fill", "modulename": "lightpanda", "qualname": "Session.fill", "kind": "function", "doc": "Fill text into an input element. Provide either a CSS selector (preferred for reproducibility) or a backendNodeId.
\n", "signature": "(\tself , \t* , \tvalue : str , \tselector : str | None = None , \tbackendNodeId : int | None = None ) -> Any : ", "funcdef": "def"}, "lightpanda.Session.find_element": {"fullname": "lightpanda.Session.find_element", "modulename": "lightpanda", "qualname": "Session.find_element", "kind": "function", "doc": "Find interactive elements by role and/or accessible name. Returns matching elements with their backend node IDs. Useful for locating specific elements without parsing the full semantic tree.
\n", "signature": "(self , * , role : str | None = None , name : str | None = None ) -> Any : ", "funcdef": "def"}, "lightpanda.Session.findElement": {"fullname": "lightpanda.Session.findElement", "modulename": "lightpanda", "qualname": "Session.findElement", "kind": "function", "doc": "Find interactive elements by role and/or accessible name. Returns matching elements with their backend node IDs. Useful for locating specific elements without parsing the full semantic tree.
\n", "signature": "(self , * , role : str | None = None , name : str | None = None ) -> Any : ", "funcdef": "def"}, "lightpanda.Session.get_cookies": {"fullname": "lightpanda.Session.get_cookies", "modulename": "lightpanda", "qualname": "Session.get_cookies", "kind": "function", "doc": "Cookies stored in the browser. Defaults to cookies whose domain matches the current page's host. Pass url=<URL> to filter for another host, or all=true to dump every cookie regardless of host. Useful for debugging authentication and session state.
\n", "signature": "(self , * , url : str | None = None , all : bool | None = None ) -> Any : ", "funcdef": "def"}, "lightpanda.Session.getCookies": {"fullname": "lightpanda.Session.getCookies", "modulename": "lightpanda", "qualname": "Session.getCookies", "kind": "function", "doc": "Cookies stored in the browser. Defaults to cookies whose domain matches the current page's host. Pass url=<URL> to filter for another host, or all=true to dump every cookie regardless of host. Useful for debugging authentication and session state.
\n", "signature": "(self , * , url : str | None = None , all : bool | None = None ) -> Any : ", "funcdef": "def"}, "lightpanda.Session.get_env": {"fullname": "lightpanda.Session.get_env", "modulename": "lightpanda", "qualname": "Session.get_env", "kind": "function", "doc": "With name: read an LP_* env var (other namespaces report as not set) \u2014 for non-secret config only (base URLs, flags). Without name: list LP_* names that are set (no values) \u2014 safe credential discovery. For secrets, pass $LP_* placeholders in tool args; never request a credential by name (the value would land in your context).
\n", "signature": "(self , * , name : str | None = None ) -> Any : ", "funcdef": "def"}, "lightpanda.Session.getEnv": {"fullname": "lightpanda.Session.getEnv", "modulename": "lightpanda", "qualname": "Session.getEnv", "kind": "function", "doc": "With name: read an LP_* env var (other namespaces report as not set) \u2014 for non-secret config only (base URLs, flags). Without name: list LP_* names that are set (no values) \u2014 safe credential discovery. For secrets, pass $LP_* placeholders in tool args; never request a credential by name (the value would land in your context).
\n", "signature": "(self , * , name : str | None = None ) -> Any : ", "funcdef": "def"}, "lightpanda.Session.get_url": {"fullname": "lightpanda.Session.get_url", "modulename": "lightpanda", "qualname": "Session.get_url", "kind": "function", "doc": "Current page URL. The browser may already have a page loaded (command, replayed script) not visible in this conversation \u2014 call this before assuming nothing is loaded when the user references the current page/site. Also useful to verify a navigation or detect a redirect.
\n", "signature": "(self ) -> Any : ", "funcdef": "def"}, "lightpanda.Session.getUrl": {"fullname": "lightpanda.Session.getUrl", "modulename": "lightpanda", "qualname": "Session.getUrl", "kind": "function", "doc": "Current page URL. The browser may already have a page loaded (command, replayed script) not visible in this conversation \u2014 call this before assuming nothing is loaded when the user references the current page/site. Also useful to verify a navigation or detect a redirect.
\n", "signature": "(self ) -> Any : ", "funcdef": "def"}, "lightpanda.Session.goto": {"fullname": "lightpanda.Session.goto", "modulename": "lightpanda", "qualname": "Session.goto", "kind": "function", "doc": "Navigate to a specified URL and load the page in memory so it can be reused later for info extraction.
\n", "signature": "(self , * , url : str , timeout : int | None = None ) -> Any : ", "funcdef": "def"}, "lightpanda.Session.hover": {"fullname": "lightpanda.Session.hover", "modulename": "lightpanda", "qualname": "Session.hover", "kind": "function", "doc": "Hover over an element, triggering mouseover and mouseenter events. Provide either a CSS selector (preferred for reproducibility) or a backendNodeId. Useful for menus, tooltips, and hover states.
\n", "signature": "(\tself , \t* , \tselector : str | None = None , \tbackendNodeId : int | None = None ) -> Any : ", "funcdef": "def"}, "lightpanda.Session.html": {"fullname": "lightpanda.Session.html", "modulename": "lightpanda", "qualname": "Session.html", "kind": "function", "doc": "Raw HTML for the document or, with selector/backendNodeId, a single node's outerHTML. Verbose; use only when you need attributes that markdown discards.
\n", "signature": "(\tself , \t* , \tselector : str | None = None , \tbackendNodeId : int | None = None , \turl : str | None = None , \ttimeout : int | None = None ) -> Any : ", "funcdef": "def"}, "lightpanda.Session.interactive_elements": {"fullname": "lightpanda.Session.interactive_elements", "modulename": "lightpanda", "qualname": "Session.interactive_elements", "kind": "function", "doc": "Extract interactive elements from the opened page. If a url is provided, it navigates to that url first.
\n", "signature": "(self , * , url : str | None = None , timeout : int | None = None ) -> Any : ", "funcdef": "def"}, "lightpanda.Session.interactiveElements": {"fullname": "lightpanda.Session.interactiveElements", "modulename": "lightpanda", "qualname": "Session.interactiveElements", "kind": "function", "doc": "Extract interactive elements from the opened page. If a url is provided, it navigates to that url first.
\n", "signature": "(self , * , url : str | None = None , timeout : int | None = None ) -> Any : ", "funcdef": "def"}, "lightpanda.Session.links": {"fullname": "lightpanda.Session.links", "modulename": "lightpanda", "qualname": "Session.links", "kind": "function", "doc": "Extract all links in the opened page as JSON objects with text (visible anchor text), href (resolved URL), and backendNodeId (pass to click/nodeDetails). If a url is provided, it navigates to that url first.
\n", "signature": "(self , * , url : str | None = None , timeout : int | None = None ) -> Any : ", "funcdef": "def"}, "lightpanda.Session.markdown": {"fullname": "lightpanda.Session.markdown", "modulename": "lightpanda", "qualname": "Session.markdown", "kind": "function", "doc": "Render the page (or a subtree) as markdown. Scope with selector or backendNodeId to read just the relevant region \u2014 full-page markdown is the last resort. Use maxBytes to cap long pages.
\n", "signature": "(\tself , \t* , \tselector : str | None = None , \tbackendNodeId : int | None = None , \tmaxBytes : int | None = None , \turl : str | None = None , \ttimeout : int | None = None ) -> Any : ", "funcdef": "def"}, "lightpanda.Session.node_details": {"fullname": "lightpanda.Session.node_details", "modulename": "lightpanda", "qualname": "Session.node_details", "kind": "function", "doc": "Details for a node by backendNodeId: a ready-to-use CSS selector that resolves to the node (the first match, as click/fill resolve it), plus tag, role, name, interactivity, disabled, value, input type, placeholder, href, id, class, checked, select options. The canonical way to turn a tree backendNodeId into a CSS selector.
\n", "signature": "(self , * , backendNodeId : int ) -> Any : ", "funcdef": "def"}, "lightpanda.Session.nodeDetails": {"fullname": "lightpanda.Session.nodeDetails", "modulename": "lightpanda", "qualname": "Session.nodeDetails", "kind": "function", "doc": "Details for a node by backendNodeId: a ready-to-use CSS selector that resolves to the node (the first match, as click/fill resolve it), plus tag, role, name, interactivity, disabled, value, input type, placeholder, href, id, class, checked, select options. The canonical way to turn a tree backendNodeId into a CSS selector.
\n", "signature": "(self , * , backendNodeId : int ) -> Any : ", "funcdef": "def"}, "lightpanda.Session.press": {"fullname": "lightpanda.Session.press", "modulename": "lightpanda", "qualname": "Session.press", "kind": "function", "doc": "Press a keyboard key, dispatching keydown and keyup events. Use key names like 'Enter', 'Tab', 'Escape', 'ArrowDown', 'Backspace', or single characters like 'a', '1'. Common shorthand is normalized: 'enter'/'return' \u2192 'Enter', 'esc' \u2192 'Escape', 'up'/'down'/'left'/'right' \u2192 'Arrow*', 'space' \u2192 ' '. Pressing 'Enter' on a form input or submit button triggers implicit form submission.
\n", "signature": "(\tself , \t* , \tkey : str , \tselector : str | None = None , \tbackendNodeId : int | None = None ) -> Any : ", "funcdef": "def"}, "lightpanda.Session.scroll": {"fullname": "lightpanda.Session.scroll", "modulename": "lightpanda", "qualname": "Session.scroll", "kind": "function", "doc": "Scroll the page or a specific element. Returns the scroll position and current page URL and title.
\n", "signature": "(\tself , \t* , \tbackendNodeId : int | None = None , \tx : int | None = None , \ty : int | None = None ) -> Any : ", "funcdef": "def"}, "lightpanda.Session.search": {"fullname": "lightpanda.Session.search", "modulename": "lightpanda", "qualname": "Session.search", "kind": "function", "doc": "Run a web search and return results as markdown. When BRAVE_API_KEY or TAVILY_API_KEY is set, queries that search API (Brave preferred) and returns a numbered list of {title, url, snippet}. Otherwise (or on API failure) falls back to scraping the DuckDuckGo HTML endpoint \u2014 degraded results, may rate-limit on bursty traffic. Prefer this over goto-ing google.com/search directly (Google blocks the browser on User-Agent/TLS). Browser state after this call is unspecified \u2014 to interact with a result, use goto with its URL; do not assume the browser DOM matches the results page.
\n", "signature": "(self , * , query : str , timeout : int | None = None ) -> Any : ", "funcdef": "def"}, "lightpanda.Session.select_option": {"fullname": "lightpanda.Session.select_option", "modulename": "lightpanda", "qualname": "Session.select_option", "kind": "function", "doc": "Select an option in a dropdown element by its value. Provide either a CSS selector (preferred for reproducibility) or a backendNodeId. Dispatches input and change events.
\n", "signature": "(\tself , \t* , \tvalue : str , \tselector : str | None = None , \tbackendNodeId : int | None = None ) -> Any : ", "funcdef": "def"}, "lightpanda.Session.selectOption": {"fullname": "lightpanda.Session.selectOption", "modulename": "lightpanda", "qualname": "Session.selectOption", "kind": "function", "doc": "Select an option in a dropdown element by its value. Provide either a CSS selector (preferred for reproducibility) or a backendNodeId. Dispatches input and change events.
\n", "signature": "(\tself , \t* , \tvalue : str , \tselector : str | None = None , \tbackendNodeId : int | None = None ) -> Any : ", "funcdef": "def"}, "lightpanda.Session.set_checked": {"fullname": "lightpanda.Session.set_checked", "modulename": "lightpanda", "qualname": "Session.set_checked", "kind": "function", "doc": "Check or uncheck a checkbox or radio button. Provide either a CSS selector (preferred for reproducibility) or a backendNodeId. Dispatches input, change, and click events.
\n", "signature": "(\tself , \t* , \tchecked : bool , \tselector : str | None = None , \tbackendNodeId : int | None = None ) -> Any : ", "funcdef": "def"}, "lightpanda.Session.setChecked": {"fullname": "lightpanda.Session.setChecked", "modulename": "lightpanda", "qualname": "Session.setChecked", "kind": "function", "doc": "Check or uncheck a checkbox or radio button. Provide either a CSS selector (preferred for reproducibility) or a backendNodeId. Dispatches input, change, and click events.
\n", "signature": "(\tself , \t* , \tchecked : bool , \tselector : str | None = None , \tbackendNodeId : int | None = None ) -> Any : ", "funcdef": "def"}, "lightpanda.Session.structured_data": {"fullname": "lightpanda.Session.structured_data", "modulename": "lightpanda", "qualname": "Session.structured_data", "kind": "function", "doc": "Extract structured data (like JSON-LD, OpenGraph, etc) from the opened page. If a url is provided, it navigates to that url first.
\n", "signature": "(self , * , url : str | None = None , timeout : int | None = None ) -> Any : ", "funcdef": "def"}, "lightpanda.Session.structuredData": {"fullname": "lightpanda.Session.structuredData", "modulename": "lightpanda", "qualname": "Session.structuredData", "kind": "function", "doc": "Extract structured data (like JSON-LD, OpenGraph, etc) from the opened page. If a url is provided, it navigates to that url first.
\n", "signature": "(self , * , url : str | None = None , timeout : int | None = None ) -> Any : ", "funcdef": "def"}, "lightpanda.Session.tree": {"fullname": "lightpanda.Session.tree", "modulename": "lightpanda", "qualname": "Session.tree", "kind": "function", "doc": "Simplified semantic DOM tree (role, name, value, backendNodeId per node). Pass backendNodeId to scope, maxDepth to limit depth.
\n", "signature": "(\tself , \t* , \turl : str | None = None , \ttimeout : int | None = None , \tbackendNodeId : int | None = None , \tmaxDepth : int | None = None ) -> Any : ", "funcdef": "def"}, "lightpanda.Session.wait_for_script": {"fullname": "lightpanda.Session.wait_for_script", "modulename": "lightpanda", "qualname": "Session.wait_for_script", "kind": "function", "doc": "Wait until a JS expression returns truthy. Re-evaluates on each tick of the event loop. Use for synchronization beyond what CSS selectors can express \u2014 e.g. window.dataLoaded === true, document.readyState === 'complete', document.querySelectorAll('.row').length >= 5.
\n", "signature": "(self , * , script : str , timeout : int | None = None ) -> Any : ", "funcdef": "def"}, "lightpanda.Session.waitForScript": {"fullname": "lightpanda.Session.waitForScript", "modulename": "lightpanda", "qualname": "Session.waitForScript", "kind": "function", "doc": "Wait until a JS expression returns truthy. Re-evaluates on each tick of the event loop. Use for synchronization beyond what CSS selectors can express \u2014 e.g. window.dataLoaded === true, document.readyState === 'complete', document.querySelectorAll('.row').length >= 5.
\n", "signature": "(self , * , script : str , timeout : int | None = None ) -> Any : ", "funcdef": "def"}, "lightpanda.Session.wait_for_selector": {"fullname": "lightpanda.Session.wait_for_selector", "modulename": "lightpanda", "qualname": "Session.wait_for_selector", "kind": "function", "doc": "Wait for an element matching a CSS selector to appear in the page. Returns the backend node ID of the matched element.
\n", "signature": "(self , * , selector : str , timeout : int | None = None ) -> Any : ", "funcdef": "def"}, "lightpanda.Session.waitForSelector": {"fullname": "lightpanda.Session.waitForSelector", "modulename": "lightpanda", "qualname": "Session.waitForSelector", "kind": "function", "doc": "Wait for an element matching a CSS selector to appear in the page. Returns the backend node ID of the matched element.
\n", "signature": "(self , * , selector : str , timeout : int | None = None ) -> Any : ", "funcdef": "def"}, "lightpanda.Session.wait_for_state": {"fullname": "lightpanda.Session.wait_for_state", "modulename": "lightpanda", "qualname": "Session.wait_for_state", "kind": "function", "doc": "Wait for the CURRENT page to reach a load state (no navigation). After a goto, the page is returned at the fast load snapshot, so content rendered by post-load JS (XHR-loaded lists, feeds, search results) may still be missing. When a read looks incomplete \u2014 empty lists, spinners, skeletons \u2014 call this with 'networkidle' and re-read. Prefer 'networkidle'; 'done' can be slow on sites with constant background activity (ads, polling).
\n", "signature": "(self , * , state : str , timeout : int | None = None ) -> Any : ", "funcdef": "def"}, "lightpanda.Session.waitForState": {"fullname": "lightpanda.Session.waitForState", "modulename": "lightpanda", "qualname": "Session.waitForState", "kind": "function", "doc": "Wait for the CURRENT page to reach a load state (no navigation). After a goto, the page is returned at the fast load snapshot, so content rendered by post-load JS (XHR-loaded lists, feeds, search results) may still be missing. When a read looks incomplete \u2014 empty lists, spinners, skeletons \u2014 call this with 'networkidle' and re-read. Prefer 'networkidle'; 'done' can be slow on sites with constant background activity (ads, polling).
\n", "signature": "(self , * , state : str , timeout : int | None = None ) -> Any : ", "funcdef": "def"}, "lightpanda.run_script": {"fullname": "lightpanda.run_script", "modulename": "lightpanda", "qualname": "run_script", "kind": "function", "doc": "Replay a saved lightpanda script (no LLM) and return its stdout.
\n\nenv entries (e.g. LP_* placeholder values) are added to the\nchild's environment. Raises ScriptError on a non-zero exit.
\n", "signature": "(\tscript : str | os . PathLike , \tenv : dict [ str , str ] | None = None , \tbinary : str | os . PathLike | None = None , \ttimeout : float | None = None ) -> str : ", "funcdef": "def"}, "lightpanda.AsyncBrowser": {"fullname": "lightpanda.AsyncBrowser", "modulename": "lightpanda", "qualname": "AsyncBrowser", "kind": "class", "doc": "A lightpanda browser process, driven from asyncio.
\n\nThe subprocess is spawned by start() \u2014 called automatically on\nasync with entry and by new_session(). Not fork-inheritable,\nsame as Browser.
\n"}, "lightpanda.AsyncBrowser.__init__": {"fullname": "lightpanda.AsyncBrowser.__init__", "modulename": "lightpanda", "qualname": "AsyncBrowser.__init__", "kind": "function", "doc": "binary/env/timeout/verbose/args are forwarded\nto Browser. max_concurrency caps concurrently executing\ntool calls across this browser's sessions (worker threads are\ncreated lazily).
\n", "signature": "(\tbinary : str | os . PathLike | None = None , \tenv : dict [ str , str ] | None = None , \ttimeout : float = 300.0 , \tverbose : bool = False , \targs : tuple [ str , ... ] | list [ str ] = () , \tmax_concurrency : int = 32 ) "}, "lightpanda.AsyncBrowser.wrap": {"fullname": "lightpanda.AsyncBrowser.wrap", "modulename": "lightpanda", "qualname": "AsyncBrowser.wrap", "kind": "function", "doc": "Adopt an already-running Browser \u2014 the migration path for\ndriving existing sync setup from asyncio. close() shuts down\nthe facade but leaves the wrapped browser running.
\n", "signature": "(\tcls , \tbrowser : lightpanda . browser . Browser , \tmax_concurrency : int = 32 ) -> lightpanda . async_browser . AsyncBrowser : ", "funcdef": "def"}, "lightpanda.AsyncBrowser.start": {"fullname": "lightpanda.AsyncBrowser.start", "modulename": "lightpanda", "qualname": "AsyncBrowser.start", "kind": "function", "doc": "Spawn the browser process and fetch its tool list. Idempotent.
\n", "signature": "(self ) -> lightpanda . async_browser . AsyncBrowser : ", "funcdef": "async def"}, "lightpanda.AsyncBrowser.tools": {"fullname": "lightpanda.AsyncBrowser.tools", "modulename": "lightpanda", "qualname": "AsyncBrowser.tools", "kind": "variable", "doc": "Tool name \u2192 {description, schema}, as reported by the browser.
\n", "annotation": ": dict[str, dict]"}, "lightpanda.AsyncBrowser.new_session": {"fullname": "lightpanda.AsyncBrowser.new_session", "modulename": "lightpanda", "qualname": "AsyncBrowser.new_session", "kind": "function", "doc": "
\n", "signature": "(self ) -> lightpanda . async_browser . AsyncSession : ", "funcdef": "async def"}, "lightpanda.AsyncBrowser.session": {"fullname": "lightpanda.AsyncBrowser.session", "modulename": "lightpanda", "qualname": "AsyncBrowser.session", "kind": "function", "doc": "async with browser.session() as page: \u2014 a session scoped to\nthe block and closed on exit. Use new_session() for the\nunscoped form.
\n", "signature": "(self ): ", "funcdef": "async def"}, "lightpanda.AsyncBrowser.close": {"fullname": "lightpanda.AsyncBrowser.close", "modulename": "lightpanda", "qualname": "AsyncBrowser.close", "kind": "function", "doc": "
\n", "signature": "(self ) -> None : ", "funcdef": "async def"}, "lightpanda.AsyncSession": {"fullname": "lightpanda.AsyncSession", "modulename": "lightpanda", "qualname": "AsyncSession", "kind": "class", "doc": "One isolated browsing context (own page, cookies, memory), async.
\n\nDo not construct directly \u2014 use AsyncBrowser.new_session().
\n", "bases": "lightpanda._methods.AsyncSessionMethods"}, "lightpanda.AsyncSession.__init__": {"fullname": "lightpanda.AsyncSession.__init__", "modulename": "lightpanda", "qualname": "AsyncSession.__init__", "kind": "function", "doc": "
\n", "signature": "(\tsession : lightpanda . browser . Session , \texecutor : concurrent . futures . thread . ThreadPoolExecutor ) "}, "lightpanda.AsyncSession.id": {"fullname": "lightpanda.AsyncSession.id", "modulename": "lightpanda", "qualname": "AsyncSession.id", "kind": "variable", "doc": "
\n", "annotation": ": str"}, "lightpanda.AsyncSession.call": {"fullname": "lightpanda.AsyncSession.call", "modulename": "lightpanda", "qualname": "AsyncSession.call", "kind": "function", "doc": "Invoke a browser tool by name. The generated methods route here.
\n", "signature": "(self , tool : str , ** kwargs ): ", "funcdef": "async def"}, "lightpanda.AsyncSession.close": {"fullname": "lightpanda.AsyncSession.close", "modulename": "lightpanda", "qualname": "AsyncSession.close", "kind": "function", "doc": "
\n", "signature": "(self ) -> None : ", "funcdef": "async def"}, "lightpanda.AsyncSession.click": {"fullname": "lightpanda.AsyncSession.click", "modulename": "lightpanda", "qualname": "AsyncSession.click", "kind": "function", "doc": "Click on an interactive element. Provide either a CSS selector (preferred for reproducibility) or a backendNodeId. Returns the current page URL and title after the click.
\n", "signature": "(\tself , \t* , \tselector : str | None = None , \tbackendNodeId : int | None = None ) -> Any : ", "funcdef": "async def"}, "lightpanda.AsyncSession.console_logs": {"fullname": "lightpanda.AsyncSession.console_logs", "modulename": "lightpanda", "qualname": "AsyncSession.console_logs", "kind": "function", "doc": "Get buffered console.log/warn/error messages from the current page. Returns all messages since last call and clears the buffer.
\n", "signature": "(self ) -> Any : ", "funcdef": "async def"}, "lightpanda.AsyncSession.consoleLogs": {"fullname": "lightpanda.AsyncSession.consoleLogs", "modulename": "lightpanda", "qualname": "AsyncSession.consoleLogs", "kind": "function", "doc": "Get buffered console.log/warn/error messages from the current page. Returns all messages since last call and clears the buffer.
\n", "signature": "(self ) -> Any : ", "funcdef": "async def"}, "lightpanda.AsyncSession.detect_forms": {"fullname": "lightpanda.AsyncSession.detect_forms", "modulename": "lightpanda", "qualname": "AsyncSession.detect_forms", "kind": "function", "doc": "Detect all forms on the page and return their structure including fields, types, and required status. If a url is provided, it navigates to that url first.
\n", "signature": "(self , * , url : str | None = None , timeout : int | None = None ) -> Any : ", "funcdef": "async def"}, "lightpanda.AsyncSession.detectForms": {"fullname": "lightpanda.AsyncSession.detectForms", "modulename": "lightpanda", "qualname": "AsyncSession.detectForms", "kind": "function", "doc": "Detect all forms on the page and return their structure including fields, types, and required status. If a url is provided, it navigates to that url first.
\n", "signature": "(self , * , url : str | None = None , timeout : int | None = None ) -> Any : ", "funcdef": "async def"}, "lightpanda.AsyncSession.evaluate": {"fullname": "lightpanda.AsyncSession.evaluate", "modulename": "lightpanda", "qualname": "AsyncSession.evaluate", "kind": "function", "doc": "Evaluate JavaScript in the current page context \u2014 an escape hatch for page-side logic the dedicated tools can't express; prefer extract for data and click/fill/etc. for actions. It runs in the page, so it cannot see the agent script's variables or builtins \u2014 interpolate any value into the script string. A bare trailing expression yields its value; top-level await and return are supported (the body then runs as an async function, so use return to produce a value). Objects and arrays return as JSON, so no JSON.stringify is needed. If a url is provided, it navigates there first. The globalThis.lp object exposes a Session-scoped bridge store: values written via lp.foo = ... auto-sync at end of evaluate, surviving navigation; values previously set via /extract save= or /evaluate save= appear as lp.<name>.
\n", "signature": "(\tself , \t* , \tscript : str , \turl : str | None = None , \ttimeout : int | None = None , \tsave : str | None = None ) -> Any : ", "funcdef": "async def"}, "lightpanda.AsyncSession.extract": {"fullname": "lightpanda.AsyncSession.extract", "modulename": "lightpanda", "qualname": "AsyncSession.extract", "kind": "function", "doc": "Extract structured data from the current page (navigate first). schema is a JSON object (passed as a string) mapping output field names to CSS-selector specs. It is NOT a JSON Schema \u2014 no \"type\"/\"properties\" wrappers; the keys ARE your output fields. Value shapes:\n \"\" \u2192 first match's text (trimmed; null if no match)\n [\"\"] \u2192 every match's text (string[])\n {\"selector\":\"\",\"attr\":\"\"} \u2192 first match's attribute value (href/src resolved to absolute URLs)\n [{\"selector\":\"\",\"attr\":\"\"}] \u2192 every match's attribute (string[])\n [{\"selector\":\"\",\"fields\":{\u2026}}] \u2192 one object per match; field selectors resolve relative to that match and accept any shape above (\"\" = the match's own text; nest arrays for per-item sub-lists)\nAdd \"limit\": N inside any array's object spec to cap matches.\nEvery extracted value is a string or null \u2014 parse numbers downstream. An empty array is a valid result, but if ALL top-level keys miss, the call errors: inspect the page (tree/markdown) and retry with corrected selectors.\nFinish data tasks with extract \u2014 it is the only read recorded as a replayable extract(...) script call; answers lifted from markdown text in chat are not.
\n\nExamples (schema \u2192 result):\n {\"karma\": \"#karma\"} \u2192 {\"karma\":\"42\"}\n {\"items\": [\".story .title\"]} \u2192 {\"items\":[\"Title 1\",\"Title 2\"]}\n {\"top3\": [{\"selector\":\".story .title\",\"limit\":3}]} \u2192 {\"top3\":[\"A\",\"B\",\"C\"]}\n {\"links\": [{\"selector\":\"a.title\",\"attr\":\"href\"}]} \u2192 {\"links\":[\"https://site/a\",\"https://site/b\"]}\n {\"stories\": [{\"selector\":\".athing\",\"fields\":{\"title\":\".titleline\",\"rank\":\".rank\"}}]} \u2192 {\"stories\":[{\"title\":\"Foo\",\"rank\":\"1\"}]}
\n", "signature": "(self , * , schema : str | dict | list , save : str | None = None ) -> Any : ", "funcdef": "async def"}, "lightpanda.AsyncSession.fill": {"fullname": "lightpanda.AsyncSession.fill", "modulename": "lightpanda", "qualname": "AsyncSession.fill", "kind": "function", "doc": "Fill text into an input element. Provide either a CSS selector (preferred for reproducibility) or a backendNodeId.
\n", "signature": "(\tself , \t* , \tvalue : str , \tselector : str | None = None , \tbackendNodeId : int | None = None ) -> Any : ", "funcdef": "async def"}, "lightpanda.AsyncSession.find_element": {"fullname": "lightpanda.AsyncSession.find_element", "modulename": "lightpanda", "qualname": "AsyncSession.find_element", "kind": "function", "doc": "Find interactive elements by role and/or accessible name. Returns matching elements with their backend node IDs. Useful for locating specific elements without parsing the full semantic tree.
\n", "signature": "(self , * , role : str | None = None , name : str | None = None ) -> Any : ", "funcdef": "async def"}, "lightpanda.AsyncSession.findElement": {"fullname": "lightpanda.AsyncSession.findElement", "modulename": "lightpanda", "qualname": "AsyncSession.findElement", "kind": "function", "doc": "Find interactive elements by role and/or accessible name. Returns matching elements with their backend node IDs. Useful for locating specific elements without parsing the full semantic tree.
\n", "signature": "(self , * , role : str | None = None , name : str | None = None ) -> Any : ", "funcdef": "async def"}, "lightpanda.AsyncSession.get_cookies": {"fullname": "lightpanda.AsyncSession.get_cookies", "modulename": "lightpanda", "qualname": "AsyncSession.get_cookies", "kind": "function", "doc": "Cookies stored in the browser. Defaults to cookies whose domain matches the current page's host. Pass url=<URL> to filter for another host, or all=true to dump every cookie regardless of host. Useful for debugging authentication and session state.
\n", "signature": "(self , * , url : str | None = None , all : bool | None = None ) -> Any : ", "funcdef": "async def"}, "lightpanda.AsyncSession.getCookies": {"fullname": "lightpanda.AsyncSession.getCookies", "modulename": "lightpanda", "qualname": "AsyncSession.getCookies", "kind": "function", "doc": "Cookies stored in the browser. Defaults to cookies whose domain matches the current page's host. Pass url=<URL> to filter for another host, or all=true to dump every cookie regardless of host. Useful for debugging authentication and session state.
\n", "signature": "(self , * , url : str | None = None , all : bool | None = None ) -> Any : ", "funcdef": "async def"}, "lightpanda.AsyncSession.get_env": {"fullname": "lightpanda.AsyncSession.get_env", "modulename": "lightpanda", "qualname": "AsyncSession.get_env", "kind": "function", "doc": "With name: read an LP_* env var (other namespaces report as not set) \u2014 for non-secret config only (base URLs, flags). Without name: list LP_* names that are set (no values) \u2014 safe credential discovery. For secrets, pass $LP_* placeholders in tool args; never request a credential by name (the value would land in your context).
\n", "signature": "(self , * , name : str | None = None ) -> Any : ", "funcdef": "async def"}, "lightpanda.AsyncSession.getEnv": {"fullname": "lightpanda.AsyncSession.getEnv", "modulename": "lightpanda", "qualname": "AsyncSession.getEnv", "kind": "function", "doc": "With name: read an LP_* env var (other namespaces report as not set) \u2014 for non-secret config only (base URLs, flags). Without name: list LP_* names that are set (no values) \u2014 safe credential discovery. For secrets, pass $LP_* placeholders in tool args; never request a credential by name (the value would land in your context).
\n", "signature": "(self , * , name : str | None = None ) -> Any : ", "funcdef": "async def"}, "lightpanda.AsyncSession.get_url": {"fullname": "lightpanda.AsyncSession.get_url", "modulename": "lightpanda", "qualname": "AsyncSession.get_url", "kind": "function", "doc": "Current page URL. The browser may already have a page loaded (command, replayed script) not visible in this conversation \u2014 call this before assuming nothing is loaded when the user references the current page/site. Also useful to verify a navigation or detect a redirect.
\n", "signature": "(self ) -> Any : ", "funcdef": "async def"}, "lightpanda.AsyncSession.getUrl": {"fullname": "lightpanda.AsyncSession.getUrl", "modulename": "lightpanda", "qualname": "AsyncSession.getUrl", "kind": "function", "doc": "Current page URL. The browser may already have a page loaded (command, replayed script) not visible in this conversation \u2014 call this before assuming nothing is loaded when the user references the current page/site. Also useful to verify a navigation or detect a redirect.
\n", "signature": "(self ) -> Any : ", "funcdef": "async def"}, "lightpanda.AsyncSession.goto": {"fullname": "lightpanda.AsyncSession.goto", "modulename": "lightpanda", "qualname": "AsyncSession.goto", "kind": "function", "doc": "Navigate to a specified URL and load the page in memory so it can be reused later for info extraction.
\n", "signature": "(self , * , url : str , timeout : int | None = None ) -> Any : ", "funcdef": "async def"}, "lightpanda.AsyncSession.hover": {"fullname": "lightpanda.AsyncSession.hover", "modulename": "lightpanda", "qualname": "AsyncSession.hover", "kind": "function", "doc": "Hover over an element, triggering mouseover and mouseenter events. Provide either a CSS selector (preferred for reproducibility) or a backendNodeId. Useful for menus, tooltips, and hover states.
\n", "signature": "(\tself , \t* , \tselector : str | None = None , \tbackendNodeId : int | None = None ) -> Any : ", "funcdef": "async def"}, "lightpanda.AsyncSession.html": {"fullname": "lightpanda.AsyncSession.html", "modulename": "lightpanda", "qualname": "AsyncSession.html", "kind": "function", "doc": "Raw HTML for the document or, with selector/backendNodeId, a single node's outerHTML. Verbose; use only when you need attributes that markdown discards.
\n", "signature": "(\tself , \t* , \tselector : str | None = None , \tbackendNodeId : int | None = None , \turl : str | None = None , \ttimeout : int | None = None ) -> Any : ", "funcdef": "async def"}, "lightpanda.AsyncSession.interactive_elements": {"fullname": "lightpanda.AsyncSession.interactive_elements", "modulename": "lightpanda", "qualname": "AsyncSession.interactive_elements", "kind": "function", "doc": "Extract interactive elements from the opened page. If a url is provided, it navigates to that url first.
\n", "signature": "(self , * , url : str | None = None , timeout : int | None = None ) -> Any : ", "funcdef": "async def"}, "lightpanda.AsyncSession.interactiveElements": {"fullname": "lightpanda.AsyncSession.interactiveElements", "modulename": "lightpanda", "qualname": "AsyncSession.interactiveElements", "kind": "function", "doc": "Extract interactive elements from the opened page. If a url is provided, it navigates to that url first.
\n", "signature": "(self , * , url : str | None = None , timeout : int | None = None ) -> Any : ", "funcdef": "async def"}, "lightpanda.AsyncSession.links": {"fullname": "lightpanda.AsyncSession.links", "modulename": "lightpanda", "qualname": "AsyncSession.links", "kind": "function", "doc": "Extract all links in the opened page as JSON objects with text (visible anchor text), href (resolved URL), and backendNodeId (pass to click/nodeDetails). If a url is provided, it navigates to that url first.
\n", "signature": "(self , * , url : str | None = None , timeout : int | None = None ) -> Any : ", "funcdef": "async def"}, "lightpanda.AsyncSession.markdown": {"fullname": "lightpanda.AsyncSession.markdown", "modulename": "lightpanda", "qualname": "AsyncSession.markdown", "kind": "function", "doc": "Render the page (or a subtree) as markdown. Scope with selector or backendNodeId to read just the relevant region \u2014 full-page markdown is the last resort. Use maxBytes to cap long pages.
\n", "signature": "(\tself , \t* , \tselector : str | None = None , \tbackendNodeId : int | None = None , \tmaxBytes : int | None = None , \turl : str | None = None , \ttimeout : int | None = None ) -> Any : ", "funcdef": "async def"}, "lightpanda.AsyncSession.node_details": {"fullname": "lightpanda.AsyncSession.node_details", "modulename": "lightpanda", "qualname": "AsyncSession.node_details", "kind": "function", "doc": "Details for a node by backendNodeId: a ready-to-use CSS selector that resolves to the node (the first match, as click/fill resolve it), plus tag, role, name, interactivity, disabled, value, input type, placeholder, href, id, class, checked, select options. The canonical way to turn a tree backendNodeId into a CSS selector.
\n", "signature": "(self , * , backendNodeId : int ) -> Any : ", "funcdef": "async def"}, "lightpanda.AsyncSession.nodeDetails": {"fullname": "lightpanda.AsyncSession.nodeDetails", "modulename": "lightpanda", "qualname": "AsyncSession.nodeDetails", "kind": "function", "doc": "Details for a node by backendNodeId: a ready-to-use CSS selector that resolves to the node (the first match, as click/fill resolve it), plus tag, role, name, interactivity, disabled, value, input type, placeholder, href, id, class, checked, select options. The canonical way to turn a tree backendNodeId into a CSS selector.
\n", "signature": "(self , * , backendNodeId : int ) -> Any : ", "funcdef": "async def"}, "lightpanda.AsyncSession.press": {"fullname": "lightpanda.AsyncSession.press", "modulename": "lightpanda", "qualname": "AsyncSession.press", "kind": "function", "doc": "Press a keyboard key, dispatching keydown and keyup events. Use key names like 'Enter', 'Tab', 'Escape', 'ArrowDown', 'Backspace', or single characters like 'a', '1'. Common shorthand is normalized: 'enter'/'return' \u2192 'Enter', 'esc' \u2192 'Escape', 'up'/'down'/'left'/'right' \u2192 'Arrow*', 'space' \u2192 ' '. Pressing 'Enter' on a form input or submit button triggers implicit form submission.
\n", "signature": "(\tself , \t* , \tkey : str , \tselector : str | None = None , \tbackendNodeId : int | None = None ) -> Any : ", "funcdef": "async def"}, "lightpanda.AsyncSession.scroll": {"fullname": "lightpanda.AsyncSession.scroll", "modulename": "lightpanda", "qualname": "AsyncSession.scroll", "kind": "function", "doc": "Scroll the page or a specific element. Returns the scroll position and current page URL and title.
\n", "signature": "(\tself , \t* , \tbackendNodeId : int | None = None , \tx : int | None = None , \ty : int | None = None ) -> Any : ", "funcdef": "async def"}, "lightpanda.AsyncSession.search": {"fullname": "lightpanda.AsyncSession.search", "modulename": "lightpanda", "qualname": "AsyncSession.search", "kind": "function", "doc": "Run a web search and return results as markdown. When BRAVE_API_KEY or TAVILY_API_KEY is set, queries that search API (Brave preferred) and returns a numbered list of {title, url, snippet}. Otherwise (or on API failure) falls back to scraping the DuckDuckGo HTML endpoint \u2014 degraded results, may rate-limit on bursty traffic. Prefer this over goto-ing google.com/search directly (Google blocks the browser on User-Agent/TLS). Browser state after this call is unspecified \u2014 to interact with a result, use goto with its URL; do not assume the browser DOM matches the results page.
\n", "signature": "(self , * , query : str , timeout : int | None = None ) -> Any : ", "funcdef": "async def"}, "lightpanda.AsyncSession.select_option": {"fullname": "lightpanda.AsyncSession.select_option", "modulename": "lightpanda", "qualname": "AsyncSession.select_option", "kind": "function", "doc": "Select an option in a dropdown element by its value. Provide either a CSS selector (preferred for reproducibility) or a backendNodeId. Dispatches input and change events.
\n", "signature": "(\tself , \t* , \tvalue : str , \tselector : str | None = None , \tbackendNodeId : int | None = None ) -> Any : ", "funcdef": "async def"}, "lightpanda.AsyncSession.selectOption": {"fullname": "lightpanda.AsyncSession.selectOption", "modulename": "lightpanda", "qualname": "AsyncSession.selectOption", "kind": "function", "doc": "Select an option in a dropdown element by its value. Provide either a CSS selector (preferred for reproducibility) or a backendNodeId. Dispatches input and change events.
\n", "signature": "(\tself , \t* , \tvalue : str , \tselector : str | None = None , \tbackendNodeId : int | None = None ) -> Any : ", "funcdef": "async def"}, "lightpanda.AsyncSession.set_checked": {"fullname": "lightpanda.AsyncSession.set_checked", "modulename": "lightpanda", "qualname": "AsyncSession.set_checked", "kind": "function", "doc": "Check or uncheck a checkbox or radio button. Provide either a CSS selector (preferred for reproducibility) or a backendNodeId. Dispatches input, change, and click events.
\n", "signature": "(\tself , \t* , \tchecked : bool , \tselector : str | None = None , \tbackendNodeId : int | None = None ) -> Any : ", "funcdef": "async def"}, "lightpanda.AsyncSession.setChecked": {"fullname": "lightpanda.AsyncSession.setChecked", "modulename": "lightpanda", "qualname": "AsyncSession.setChecked", "kind": "function", "doc": "Check or uncheck a checkbox or radio button. Provide either a CSS selector (preferred for reproducibility) or a backendNodeId. Dispatches input, change, and click events.
\n", "signature": "(\tself , \t* , \tchecked : bool , \tselector : str | None = None , \tbackendNodeId : int | None = None ) -> Any : ", "funcdef": "async def"}, "lightpanda.AsyncSession.structured_data": {"fullname": "lightpanda.AsyncSession.structured_data", "modulename": "lightpanda", "qualname": "AsyncSession.structured_data", "kind": "function", "doc": "Extract structured data (like JSON-LD, OpenGraph, etc) from the opened page. If a url is provided, it navigates to that url first.
\n", "signature": "(self , * , url : str | None = None , timeout : int | None = None ) -> Any : ", "funcdef": "async def"}, "lightpanda.AsyncSession.structuredData": {"fullname": "lightpanda.AsyncSession.structuredData", "modulename": "lightpanda", "qualname": "AsyncSession.structuredData", "kind": "function", "doc": "Extract structured data (like JSON-LD, OpenGraph, etc) from the opened page. If a url is provided, it navigates to that url first.
\n", "signature": "(self , * , url : str | None = None , timeout : int | None = None ) -> Any : ", "funcdef": "async def"}, "lightpanda.AsyncSession.tree": {"fullname": "lightpanda.AsyncSession.tree", "modulename": "lightpanda", "qualname": "AsyncSession.tree", "kind": "function", "doc": "Simplified semantic DOM tree (role, name, value, backendNodeId per node). Pass backendNodeId to scope, maxDepth to limit depth.
\n", "signature": "(\tself , \t* , \turl : str | None = None , \ttimeout : int | None = None , \tbackendNodeId : int | None = None , \tmaxDepth : int | None = None ) -> Any : ", "funcdef": "async def"}, "lightpanda.AsyncSession.wait_for_script": {"fullname": "lightpanda.AsyncSession.wait_for_script", "modulename": "lightpanda", "qualname": "AsyncSession.wait_for_script", "kind": "function", "doc": "Wait until a JS expression returns truthy. Re-evaluates on each tick of the event loop. Use for synchronization beyond what CSS selectors can express \u2014 e.g. window.dataLoaded === true, document.readyState === 'complete', document.querySelectorAll('.row').length >= 5.
\n", "signature": "(self , * , script : str , timeout : int | None = None ) -> Any : ", "funcdef": "async def"}, "lightpanda.AsyncSession.waitForScript": {"fullname": "lightpanda.AsyncSession.waitForScript", "modulename": "lightpanda", "qualname": "AsyncSession.waitForScript", "kind": "function", "doc": "Wait until a JS expression returns truthy. Re-evaluates on each tick of the event loop. Use for synchronization beyond what CSS selectors can express \u2014 e.g. window.dataLoaded === true, document.readyState === 'complete', document.querySelectorAll('.row').length >= 5.
\n", "signature": "(self , * , script : str , timeout : int | None = None ) -> Any : ", "funcdef": "async def"}, "lightpanda.AsyncSession.wait_for_selector": {"fullname": "lightpanda.AsyncSession.wait_for_selector", "modulename": "lightpanda", "qualname": "AsyncSession.wait_for_selector", "kind": "function", "doc": "Wait for an element matching a CSS selector to appear in the page. Returns the backend node ID of the matched element.
\n", "signature": "(self , * , selector : str , timeout : int | None = None ) -> Any : ", "funcdef": "async def"}, "lightpanda.AsyncSession.waitForSelector": {"fullname": "lightpanda.AsyncSession.waitForSelector", "modulename": "lightpanda", "qualname": "AsyncSession.waitForSelector", "kind": "function", "doc": "Wait for an element matching a CSS selector to appear in the page. Returns the backend node ID of the matched element.
\n", "signature": "(self , * , selector : str , timeout : int | None = None ) -> Any : ", "funcdef": "async def"}, "lightpanda.AsyncSession.wait_for_state": {"fullname": "lightpanda.AsyncSession.wait_for_state", "modulename": "lightpanda", "qualname": "AsyncSession.wait_for_state", "kind": "function", "doc": "Wait for the CURRENT page to reach a load state (no navigation). After a goto, the page is returned at the fast load snapshot, so content rendered by post-load JS (XHR-loaded lists, feeds, search results) may still be missing. When a read looks incomplete \u2014 empty lists, spinners, skeletons \u2014 call this with 'networkidle' and re-read. Prefer 'networkidle'; 'done' can be slow on sites with constant background activity (ads, polling).
\n", "signature": "(self , * , state : str , timeout : int | None = None ) -> Any : ", "funcdef": "async def"}, "lightpanda.AsyncSession.waitForState": {"fullname": "lightpanda.AsyncSession.waitForState", "modulename": "lightpanda", "qualname": "AsyncSession.waitForState", "kind": "function", "doc": "Wait for the CURRENT page to reach a load state (no navigation). After a goto, the page is returned at the fast load snapshot, so content rendered by post-load JS (XHR-loaded lists, feeds, search results) may still be missing. When a read looks incomplete \u2014 empty lists, spinners, skeletons \u2014 call this with 'networkidle' and re-read. Prefer 'networkidle'; 'done' can be slow on sites with constant background activity (ads, polling).
\n", "signature": "(self , * , state : str , timeout : int | None = None ) -> Any : ", "funcdef": "async def"}, "lightpanda.run_script_async": {"fullname": "lightpanda.run_script_async", "modulename": "lightpanda", "qualname": "run_script_async", "kind": "function", "doc": "Async variant of lightpanda.run_script() (runs in a worker thread).
\n", "signature": "(\tscript : str | os . PathLike , \tenv : dict [ str , str ] | None = None , \tbinary : str | os . PathLike | None = None , \ttimeout : float | None = None ) -> str : ", "funcdef": "async def"}, "lightpanda.LightpandaError": {"fullname": "lightpanda.LightpandaError", "modulename": "lightpanda", "qualname": "LightpandaError", "kind": "class", "doc": "Base error for the lightpanda package.
\n", "bases": "builtins.Exception"}, "lightpanda.ProtocolError": {"fullname": "lightpanda.ProtocolError", "modulename": "lightpanda", "qualname": "ProtocolError", "kind": "class", "doc": "JSON-RPC level failure (invalid request, timeout, internal error).
\n", "bases": "lightpanda.errors.LightpandaError"}, "lightpanda.ProtocolError.__init__": {"fullname": "lightpanda.ProtocolError.__init__", "modulename": "lightpanda", "qualname": "ProtocolError.__init__", "kind": "function", "doc": "
\n", "signature": "(message : str , code : int | None = None ) "}, "lightpanda.ProtocolError.code": {"fullname": "lightpanda.ProtocolError.code", "modulename": "lightpanda", "qualname": "ProtocolError.code", "kind": "variable", "doc": "
\n"}, "lightpanda.ScriptError": {"fullname": "lightpanda.ScriptError", "modulename": "lightpanda", "qualname": "ScriptError", "kind": "class", "doc": "A script replay (run_script) exited with a failure.
\n", "bases": "lightpanda.errors.LightpandaError"}, "lightpanda.ScriptError.__init__": {"fullname": "lightpanda.ScriptError.__init__", "modulename": "lightpanda", "qualname": "ScriptError.__init__", "kind": "function", "doc": "
\n", "signature": "(message : str , returncode : int , stdout : str = '' , stderr : str = '' ) "}, "lightpanda.ScriptError.returncode": {"fullname": "lightpanda.ScriptError.returncode", "modulename": "lightpanda", "qualname": "ScriptError.returncode", "kind": "variable", "doc": "
\n"}, "lightpanda.ScriptError.stdout": {"fullname": "lightpanda.ScriptError.stdout", "modulename": "lightpanda", "qualname": "ScriptError.stdout", "kind": "variable", "doc": "
\n"}, "lightpanda.ScriptError.stderr": {"fullname": "lightpanda.ScriptError.stderr", "modulename": "lightpanda", "qualname": "ScriptError.stderr", "kind": "variable", "doc": "
\n"}, "lightpanda.ToolError": {"fullname": "lightpanda.ToolError", "modulename": "lightpanda", "qualname": "ToolError", "kind": "class", "doc": "A browser tool reported failure (bad selector, JS exception, ...).
\n", "bases": "lightpanda.errors.LightpandaError"}}, "docInfo": {"lightpanda": {"qualname": 0, "fullname": 1, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 283}, "lightpanda.Browser": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 35}, "lightpanda.Browser.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 156, "bases": 0, "doc": 27}, "lightpanda.Browser.tools": {"qualname": 2, "fullname": 3, "annotation": 3, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "lightpanda.Browser.new_session": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 24, "bases": 0, "doc": 3}, "lightpanda.Browser.close": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 14, "bases": 0, "doc": 3}, "lightpanda.Session": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 26}, "lightpanda.Session.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 60, "bases": 0, "doc": 3}, "lightpanda.Session.id": {"qualname": 2, "fullname": 3, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "lightpanda.Session.call": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 14}, "lightpanda.Session.close": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 14, "bases": 0, "doc": 3}, "lightpanda.Session.click": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 69, "bases": 0, "doc": 29}, "lightpanda.Session.console_logs": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 14, "bases": 0, "doc": 22}, "lightpanda.Session.consoleLogs": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 14, "bases": 0, "doc": 22}, "lightpanda.Session.detect_forms": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 65, "bases": 0, "doc": 30}, "lightpanda.Session.detectForms": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 65, "bases": 0, "doc": 30}, "lightpanda.Session.evaluate": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 104, "bases": 0, "doc": 170}, "lightpanda.Session.extract": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 64, "bases": 0, "doc": 327}, "lightpanda.Session.fill": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 80, "bases": 0, "doc": 20}, "lightpanda.Session.find_element": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 65, "bases": 0, "doc": 30}, "lightpanda.Session.findElement": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 65, "bases": 0, "doc": 30}, "lightpanda.Session.get_cookies": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 65, "bases": 0, "doc": 51}, "lightpanda.Session.getCookies": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 65, "bases": 0, "doc": 51}, "lightpanda.Session.get_env": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 42, "bases": 0, "doc": 69}, "lightpanda.Session.getEnv": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 42, "bases": 0, "doc": 69}, "lightpanda.Session.get_url": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 14, "bases": 0, "doc": 47}, "lightpanda.Session.getUrl": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 14, "bases": 0, "doc": 47}, "lightpanda.Session.goto": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 52, "bases": 0, "doc": 23}, "lightpanda.Session.hover": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 69, "bases": 0, "doc": 30}, "lightpanda.Session.html": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 117, "bases": 0, "doc": 30}, "lightpanda.Session.interactive_elements": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 65, "bases": 0, "doc": 21}, "lightpanda.Session.interactiveElements": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 65, "bases": 0, "doc": 21}, "lightpanda.Session.links": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 65, "bases": 0, "doc": 43}, "lightpanda.Session.markdown": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 141, "bases": 0, "doc": 42}, "lightpanda.Session.node_details": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 57}, "lightpanda.Session.nodeDetails": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 57}, "lightpanda.Session.press": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 80, "bases": 0, "doc": 63}, "lightpanda.Session.scroll": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 93, "bases": 0, "doc": 20}, "lightpanda.Session.search": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 52, "bases": 0, "doc": 104}, "lightpanda.Session.select_option": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 80, "bases": 0, "doc": 31}, "lightpanda.Session.selectOption": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 80, "bases": 0, "doc": 31}, "lightpanda.Session.set_checked": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 80, "bases": 0, "doc": 28}, "lightpanda.Session.setChecked": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 80, "bases": 0, "doc": 28}, "lightpanda.Session.structured_data": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 65, "bases": 0, "doc": 26}, "lightpanda.Session.structuredData": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 65, "bases": 0, "doc": 26}, "lightpanda.Session.tree": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 117, "bases": 0, "doc": 25}, "lightpanda.Session.wait_for_script": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 52, "bases": 0, "doc": 50}, "lightpanda.Session.waitForScript": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 52, "bases": 0, "doc": 50}, "lightpanda.Session.wait_for_selector": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 52, "bases": 0, "doc": 25}, "lightpanda.Session.waitForSelector": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 52, "bases": 0, "doc": 25}, "lightpanda.Session.wait_for_state": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 52, "bases": 0, "doc": 80}, "lightpanda.Session.waitForState": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 52, "bases": 0, "doc": 80}, "lightpanda.run_script": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 126, "bases": 0, "doc": 45}, "lightpanda.AsyncBrowser": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 46}, "lightpanda.AsyncBrowser.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 175, "bases": 0, "doc": 39}, "lightpanda.AsyncBrowser.wrap": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 66, "bases": 0, "doc": 35}, "lightpanda.AsyncBrowser.start": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 25, "bases": 0, "doc": 13}, "lightpanda.AsyncBrowser.tools": {"qualname": 2, "fullname": 3, "annotation": 3, "default_value": 0, "signature": 0, "bases": 0, "doc": 13}, "lightpanda.AsyncBrowser.new_session": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 25, "bases": 0, "doc": 3}, "lightpanda.AsyncBrowser.session": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 11, "bases": 0, "doc": 32}, "lightpanda.AsyncBrowser.close": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 14, "bases": 0, "doc": 3}, "lightpanda.AsyncSession": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 27}, "lightpanda.AsyncSession.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 51, "bases": 0, "doc": 3}, "lightpanda.AsyncSession.id": {"qualname": 2, "fullname": 3, "annotation": 2, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "lightpanda.AsyncSession.call": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 28, "bases": 0, "doc": 14}, "lightpanda.AsyncSession.close": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 14, "bases": 0, "doc": 3}, "lightpanda.AsyncSession.click": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 69, "bases": 0, "doc": 29}, "lightpanda.AsyncSession.console_logs": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 14, "bases": 0, "doc": 22}, "lightpanda.AsyncSession.consoleLogs": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 14, "bases": 0, "doc": 22}, "lightpanda.AsyncSession.detect_forms": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 65, "bases": 0, "doc": 30}, "lightpanda.AsyncSession.detectForms": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 65, "bases": 0, "doc": 30}, "lightpanda.AsyncSession.evaluate": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 104, "bases": 0, "doc": 170}, "lightpanda.AsyncSession.extract": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 64, "bases": 0, "doc": 327}, "lightpanda.AsyncSession.fill": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 80, "bases": 0, "doc": 20}, "lightpanda.AsyncSession.find_element": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 65, "bases": 0, "doc": 30}, "lightpanda.AsyncSession.findElement": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 65, "bases": 0, "doc": 30}, "lightpanda.AsyncSession.get_cookies": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 65, "bases": 0, "doc": 51}, "lightpanda.AsyncSession.getCookies": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 65, "bases": 0, "doc": 51}, "lightpanda.AsyncSession.get_env": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 42, "bases": 0, "doc": 69}, "lightpanda.AsyncSession.getEnv": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 42, "bases": 0, "doc": 69}, "lightpanda.AsyncSession.get_url": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 14, "bases": 0, "doc": 47}, "lightpanda.AsyncSession.getUrl": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 14, "bases": 0, "doc": 47}, "lightpanda.AsyncSession.goto": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 52, "bases": 0, "doc": 23}, "lightpanda.AsyncSession.hover": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 69, "bases": 0, "doc": 30}, "lightpanda.AsyncSession.html": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 117, "bases": 0, "doc": 30}, "lightpanda.AsyncSession.interactive_elements": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 65, "bases": 0, "doc": 21}, "lightpanda.AsyncSession.interactiveElements": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 65, "bases": 0, "doc": 21}, "lightpanda.AsyncSession.links": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 65, "bases": 0, "doc": 43}, "lightpanda.AsyncSession.markdown": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 141, "bases": 0, "doc": 42}, "lightpanda.AsyncSession.node_details": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 57}, "lightpanda.AsyncSession.nodeDetails": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 29, "bases": 0, "doc": 57}, "lightpanda.AsyncSession.press": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 80, "bases": 0, "doc": 63}, "lightpanda.AsyncSession.scroll": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 93, "bases": 0, "doc": 20}, "lightpanda.AsyncSession.search": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 52, "bases": 0, "doc": 104}, "lightpanda.AsyncSession.select_option": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 80, "bases": 0, "doc": 31}, "lightpanda.AsyncSession.selectOption": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 80, "bases": 0, "doc": 31}, "lightpanda.AsyncSession.set_checked": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 80, "bases": 0, "doc": 28}, "lightpanda.AsyncSession.setChecked": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 80, "bases": 0, "doc": 28}, "lightpanda.AsyncSession.structured_data": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 65, "bases": 0, "doc": 26}, "lightpanda.AsyncSession.structuredData": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 65, "bases": 0, "doc": 26}, "lightpanda.AsyncSession.tree": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 117, "bases": 0, "doc": 25}, "lightpanda.AsyncSession.wait_for_script": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 52, "bases": 0, "doc": 50}, "lightpanda.AsyncSession.waitForScript": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 52, "bases": 0, "doc": 50}, "lightpanda.AsyncSession.wait_for_selector": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 52, "bases": 0, "doc": 25}, "lightpanda.AsyncSession.waitForSelector": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 52, "bases": 0, "doc": 25}, "lightpanda.AsyncSession.wait_for_state": {"qualname": 4, "fullname": 5, "annotation": 0, "default_value": 0, "signature": 52, "bases": 0, "doc": 80}, "lightpanda.AsyncSession.waitForState": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 52, "bases": 0, "doc": 80}, "lightpanda.run_script_async": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 126, "bases": 0, "doc": 17}, "lightpanda.LightpandaError": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 2, "doc": 9}, "lightpanda.ProtocolError": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 12}, "lightpanda.ProtocolError.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 37, "bases": 0, "doc": 3}, "lightpanda.ProtocolError.code": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "lightpanda.ScriptError": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 14}, "lightpanda.ScriptError.__init__": {"qualname": 3, "fullname": 4, "annotation": 0, "default_value": 0, "signature": 60, "bases": 0, "doc": 3}, "lightpanda.ScriptError.returncode": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "lightpanda.ScriptError.stdout": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "lightpanda.ScriptError.stderr": {"qualname": 2, "fullname": 3, "annotation": 0, "default_value": 0, "signature": 0, "bases": 0, "doc": 3}, "lightpanda.ToolError": {"qualname": 1, "fullname": 2, "annotation": 0, "default_value": 0, "signature": 0, "bases": 3, "doc": 12}}, "length": 118, "save": true}, "index": {"qualname": {"root": {"docs": {"lightpanda.Browser.__init__": {"tf": 1}, "lightpanda.Session.__init__": {"tf": 1}, "lightpanda.AsyncBrowser.__init__": {"tf": 1}, "lightpanda.AsyncSession.__init__": {"tf": 1}, "lightpanda.ProtocolError.__init__": {"tf": 1}, "lightpanda.ScriptError.__init__": {"tf": 1}}, "df": 6, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"lightpanda.Browser": {"tf": 1}, "lightpanda.Browser.__init__": {"tf": 1}, "lightpanda.Browser.tools": {"tf": 1}, "lightpanda.Browser.new_session": {"tf": 1}, "lightpanda.Browser.close": {"tf": 1}}, "df": 5}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.Browser.__init__": {"tf": 1}, "lightpanda.Session.__init__": {"tf": 1}, "lightpanda.AsyncBrowser.__init__": {"tf": 1}, "lightpanda.AsyncSession.__init__": {"tf": 1}, "lightpanda.ProtocolError.__init__": {"tf": 1}, "lightpanda.ScriptError.__init__": {"tf": 1}}, "df": 6}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.interactive_elements": {"tf": 1}, "lightpanda.AsyncSession.interactive_elements": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Session.interactiveElements": {"tf": 1}, "lightpanda.AsyncSession.interactiveElements": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}, "d": {"docs": {"lightpanda.Session.id": {"tf": 1}, "lightpanda.AsyncSession.id": {"tf": 1}}, "df": 2}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Browser.tools": {"tf": 1}, "lightpanda.AsyncBrowser.tools": {"tf": 1}}, "df": 2}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"lightpanda.ToolError": {"tf": 1}}, "df": 1}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.tree": {"tf": 1}, "lightpanda.AsyncSession.tree": {"tf": 1}}, "df": 2}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {"lightpanda.Browser.new_session": {"tf": 1}, "lightpanda.AsyncBrowser.new_session": {"tf": 1}}, "df": 2}}, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.node_details": {"tf": 1}, "lightpanda.AsyncSession.node_details": {"tf": 1}}, "df": 2, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Session.nodeDetails": {"tf": 1}, "lightpanda.AsyncSession.nodeDetails": {"tf": 1}}, "df": 2}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"lightpanda.Browser.new_session": {"tf": 1}, "lightpanda.Session": {"tf": 1}, "lightpanda.Session.__init__": {"tf": 1}, "lightpanda.Session.id": {"tf": 1}, "lightpanda.Session.call": {"tf": 1}, "lightpanda.Session.close": {"tf": 1}, "lightpanda.Session.click": {"tf": 1}, "lightpanda.Session.console_logs": {"tf": 1}, "lightpanda.Session.consoleLogs": {"tf": 1}, "lightpanda.Session.detect_forms": {"tf": 1}, "lightpanda.Session.detectForms": {"tf": 1}, "lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.Session.extract": {"tf": 1}, "lightpanda.Session.fill": {"tf": 1}, "lightpanda.Session.find_element": {"tf": 1}, "lightpanda.Session.findElement": {"tf": 1}, "lightpanda.Session.get_cookies": {"tf": 1}, "lightpanda.Session.getCookies": {"tf": 1}, "lightpanda.Session.get_env": {"tf": 1}, "lightpanda.Session.getEnv": {"tf": 1}, "lightpanda.Session.get_url": {"tf": 1}, "lightpanda.Session.getUrl": {"tf": 1}, "lightpanda.Session.goto": {"tf": 1}, "lightpanda.Session.hover": {"tf": 1}, "lightpanda.Session.html": {"tf": 1}, "lightpanda.Session.interactive_elements": {"tf": 1}, "lightpanda.Session.interactiveElements": {"tf": 1}, "lightpanda.Session.links": {"tf": 1}, "lightpanda.Session.markdown": {"tf": 1}, "lightpanda.Session.node_details": {"tf": 1}, "lightpanda.Session.nodeDetails": {"tf": 1}, "lightpanda.Session.press": {"tf": 1}, "lightpanda.Session.scroll": {"tf": 1}, "lightpanda.Session.search": {"tf": 1}, "lightpanda.Session.select_option": {"tf": 1}, "lightpanda.Session.selectOption": {"tf": 1}, "lightpanda.Session.set_checked": {"tf": 1}, "lightpanda.Session.setChecked": {"tf": 1}, "lightpanda.Session.structured_data": {"tf": 1}, "lightpanda.Session.structuredData": {"tf": 1}, "lightpanda.Session.tree": {"tf": 1}, "lightpanda.Session.wait_for_script": {"tf": 1}, "lightpanda.Session.waitForScript": {"tf": 1}, "lightpanda.Session.wait_for_selector": {"tf": 1}, "lightpanda.Session.waitForSelector": {"tf": 1}, "lightpanda.Session.wait_for_state": {"tf": 1}, "lightpanda.Session.waitForState": {"tf": 1}, "lightpanda.AsyncBrowser.new_session": {"tf": 1}, "lightpanda.AsyncBrowser.session": {"tf": 1}}, "df": 49}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"lightpanda.Session.search": {"tf": 1}, "lightpanda.AsyncSession.search": {"tf": 1}}, "df": 2}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.Session.select_option": {"tf": 1}, "lightpanda.AsyncSession.select_option": {"tf": 1}}, "df": 2, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"lightpanda.Session.selectOption": {"tf": 1}, "lightpanda.AsyncSession.selectOption": {"tf": 1}}, "df": 2}}}}}, "r": {"docs": {"lightpanda.Session.wait_for_selector": {"tf": 1}, "lightpanda.AsyncSession.wait_for_selector": {"tf": 1}}, "df": 2}}}}}}, "t": {"docs": {"lightpanda.Session.set_checked": {"tf": 1}, "lightpanda.AsyncSession.set_checked": {"tf": 1}}, "df": 2, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"lightpanda.Session.setChecked": {"tf": 1}, "lightpanda.AsyncSession.setChecked": {"tf": 1}}, "df": 2}}}}}}}}}, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"lightpanda.Session.scroll": {"tf": 1}, "lightpanda.AsyncSession.scroll": {"tf": 1}}, "df": 2}}}, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.Session.wait_for_script": {"tf": 1}, "lightpanda.run_script": {"tf": 1}, "lightpanda.AsyncSession.wait_for_script": {"tf": 1}, "lightpanda.run_script_async": {"tf": 1}}, "df": 4, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"lightpanda.ScriptError": {"tf": 1}, "lightpanda.ScriptError.__init__": {"tf": 1}, "lightpanda.ScriptError.returncode": {"tf": 1}, "lightpanda.ScriptError.stdout": {"tf": 1}, "lightpanda.ScriptError.stderr": {"tf": 1}}, "df": 5}}}}}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"lightpanda.Session.structured_data": {"tf": 1}, "lightpanda.AsyncSession.structured_data": {"tf": 1}}, "df": 2, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"lightpanda.Session.structuredData": {"tf": 1}, "lightpanda.AsyncSession.structuredData": {"tf": 1}}, "df": 2}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.wait_for_state": {"tf": 1}, "lightpanda.AsyncSession.wait_for_state": {"tf": 1}}, "df": 2}}, "r": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.AsyncBrowser.start": {"tf": 1}}, "df": 1}}}, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.ScriptError.stdout": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {"lightpanda.ScriptError.stderr": {"tf": 1}}, "df": 1}}}}}}, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Browser.close": {"tf": 1}, "lightpanda.Session.close": {"tf": 1}, "lightpanda.AsyncBrowser.close": {"tf": 1}, "lightpanda.AsyncSession.close": {"tf": 1}}, "df": 4}}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"lightpanda.Session.click": {"tf": 1}, "lightpanda.AsyncSession.click": {"tf": 1}}, "df": 2}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"lightpanda.Session.call": {"tf": 1}, "lightpanda.AsyncSession.call": {"tf": 1}}, "df": 2}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.console_logs": {"tf": 1}, "lightpanda.AsyncSession.console_logs": {"tf": 1}}, "df": 2, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Session.consoleLogs": {"tf": 1}, "lightpanda.AsyncSession.consoleLogs": {"tf": 1}}, "df": 2}}}}}}}}}, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Session.get_cookies": {"tf": 1}, "lightpanda.AsyncSession.get_cookies": {"tf": 1}}, "df": 2}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.ProtocolError.code": {"tf": 1}}, "df": 1}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"lightpanda.Session.set_checked": {"tf": 1}, "lightpanda.AsyncSession.set_checked": {"tf": 1}}, "df": 2}}}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Session.console_logs": {"tf": 1}, "lightpanda.AsyncSession.console_logs": {"tf": 1}}, "df": 2}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Session.links": {"tf": 1}, "lightpanda.AsyncSession.links": {"tf": 1}}, "df": 2}}}, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"lightpanda.LightpandaError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.Session.detect_forms": {"tf": 1}, "lightpanda.AsyncSession.detect_forms": {"tf": 1}}, "df": 2, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Session.detectForms": {"tf": 1}, "lightpanda.AsyncSession.detectForms": {"tf": 1}}, "df": 2}}}}}}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Session.node_details": {"tf": 1}, "lightpanda.AsyncSession.node_details": {"tf": 1}}, "df": 2}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"lightpanda.Session.structured_data": {"tf": 1}, "lightpanda.AsyncSession.structured_data": {"tf": 1}}, "df": 2}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"lightpanda.Session.wait_for_script": {"tf": 1}, "lightpanda.Session.wait_for_selector": {"tf": 1}, "lightpanda.Session.wait_for_state": {"tf": 1}, "lightpanda.AsyncSession.wait_for_script": {"tf": 1}, "lightpanda.AsyncSession.wait_for_selector": {"tf": 1}, "lightpanda.AsyncSession.wait_for_state": {"tf": 1}}, "df": 6, "m": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Session.detect_forms": {"tf": 1}, "lightpanda.AsyncSession.detect_forms": {"tf": 1}}, "df": 2}}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"lightpanda.Session.fill": {"tf": 1}, "lightpanda.AsyncSession.fill": {"tf": 1}}, "df": 2}}, "n": {"docs": {}, "df": 0, "d": {"docs": {"lightpanda.Session.find_element": {"tf": 1}, "lightpanda.AsyncSession.find_element": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.Session.findElement": {"tf": 1}, "lightpanda.AsyncSession.findElement": {"tf": 1}}, "df": 2}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}}, "df": 2}}}}}}}, "x": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.Session.extract": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}}, "df": 2}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.Session.find_element": {"tf": 1}, "lightpanda.AsyncSession.find_element": {"tf": 1}}, "df": 2, "s": {"docs": {"lightpanda.Session.interactive_elements": {"tf": 1}, "lightpanda.AsyncSession.interactive_elements": {"tf": 1}}, "df": 2}}}}}}}, "n": {"docs": {}, "df": 0, "v": {"docs": {"lightpanda.Session.get_env": {"tf": 1}, "lightpanda.AsyncSession.get_env": {"tf": 1}}, "df": 2}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.Session.get_cookies": {"tf": 1}, "lightpanda.Session.get_env": {"tf": 1}, "lightpanda.Session.get_url": {"tf": 1}, "lightpanda.AsyncSession.get_cookies": {"tf": 1}, "lightpanda.AsyncSession.get_env": {"tf": 1}, "lightpanda.AsyncSession.get_url": {"tf": 1}}, "df": 6, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Session.getCookies": {"tf": 1}, "lightpanda.AsyncSession.getCookies": {"tf": 1}}, "df": 2}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "v": {"docs": {"lightpanda.Session.getEnv": {"tf": 1}, "lightpanda.AsyncSession.getEnv": {"tf": 1}}, "df": 2}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"lightpanda.Session.getUrl": {"tf": 1}, "lightpanda.AsyncSession.getUrl": {"tf": 1}}, "df": 2}}}}}, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {"lightpanda.Session.goto": {"tf": 1}, "lightpanda.AsyncSession.goto": {"tf": 1}}, "df": 2}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"lightpanda.Session.get_url": {"tf": 1}, "lightpanda.AsyncSession.get_url": {"tf": 1}}, "df": 2}}}, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"lightpanda.Session.hover": {"tf": 1}, "lightpanda.AsyncSession.hover": {"tf": 1}}, "df": 2}}}}, "t": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "l": {"docs": {"lightpanda.Session.html": {"tf": 1}, "lightpanda.AsyncSession.html": {"tf": 1}}, "df": 2}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "n": {"docs": {"lightpanda.Session.markdown": {"tf": 1}, "lightpanda.AsyncSession.markdown": {"tf": 1}}, "df": 2}}}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Session.press": {"tf": 1}, "lightpanda.AsyncSession.press": {"tf": 1}}, "df": 2}}}, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"lightpanda.ProtocolError": {"tf": 1}, "lightpanda.ProtocolError.__init__": {"tf": 1}, "lightpanda.ProtocolError.code": {"tf": 1}}, "df": 3}}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"lightpanda.Session.select_option": {"tf": 1}, "lightpanda.AsyncSession.select_option": {"tf": 1}}, "df": 2}}}}}}, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.Session.wait_for_script": {"tf": 1}, "lightpanda.Session.wait_for_selector": {"tf": 1}, "lightpanda.Session.wait_for_state": {"tf": 1}, "lightpanda.AsyncSession.wait_for_script": {"tf": 1}, "lightpanda.AsyncSession.wait_for_selector": {"tf": 1}, "lightpanda.AsyncSession.wait_for_state": {"tf": 1}}, "df": 6, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.Session.waitForScript": {"tf": 1}, "lightpanda.AsyncSession.waitForScript": {"tf": 1}}, "df": 2}}}}}, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"lightpanda.Session.waitForSelector": {"tf": 1}, "lightpanda.AsyncSession.waitForSelector": {"tf": 1}}, "df": 2}}}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.waitForState": {"tf": 1}, "lightpanda.AsyncSession.waitForState": {"tf": 1}}, "df": 2}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {"lightpanda.AsyncBrowser.wrap": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {"lightpanda.run_script": {"tf": 1}, "lightpanda.run_script_async": {"tf": 1}}, "df": 2}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.ScriptError.returncode": {"tf": 1}}, "df": 1}}}}}}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {"lightpanda.run_script_async": {"tf": 1}}, "df": 1, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"lightpanda.AsyncBrowser": {"tf": 1}, "lightpanda.AsyncBrowser.__init__": {"tf": 1}, "lightpanda.AsyncBrowser.wrap": {"tf": 1}, "lightpanda.AsyncBrowser.start": {"tf": 1}, "lightpanda.AsyncBrowser.tools": {"tf": 1}, "lightpanda.AsyncBrowser.new_session": {"tf": 1}, "lightpanda.AsyncBrowser.session": {"tf": 1}, "lightpanda.AsyncBrowser.close": {"tf": 1}}, "df": 8}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"lightpanda.AsyncSession": {"tf": 1}, "lightpanda.AsyncSession.__init__": {"tf": 1}, "lightpanda.AsyncSession.id": {"tf": 1}, "lightpanda.AsyncSession.call": {"tf": 1}, "lightpanda.AsyncSession.close": {"tf": 1}, "lightpanda.AsyncSession.click": {"tf": 1}, "lightpanda.AsyncSession.console_logs": {"tf": 1}, "lightpanda.AsyncSession.consoleLogs": {"tf": 1}, "lightpanda.AsyncSession.detect_forms": {"tf": 1}, "lightpanda.AsyncSession.detectForms": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}, "lightpanda.AsyncSession.fill": {"tf": 1}, "lightpanda.AsyncSession.find_element": {"tf": 1}, "lightpanda.AsyncSession.findElement": {"tf": 1}, "lightpanda.AsyncSession.get_cookies": {"tf": 1}, "lightpanda.AsyncSession.getCookies": {"tf": 1}, "lightpanda.AsyncSession.get_env": {"tf": 1}, "lightpanda.AsyncSession.getEnv": {"tf": 1}, "lightpanda.AsyncSession.get_url": {"tf": 1}, "lightpanda.AsyncSession.getUrl": {"tf": 1}, "lightpanda.AsyncSession.goto": {"tf": 1}, "lightpanda.AsyncSession.hover": {"tf": 1}, "lightpanda.AsyncSession.html": {"tf": 1}, "lightpanda.AsyncSession.interactive_elements": {"tf": 1}, "lightpanda.AsyncSession.interactiveElements": {"tf": 1}, "lightpanda.AsyncSession.links": {"tf": 1}, "lightpanda.AsyncSession.markdown": {"tf": 1}, "lightpanda.AsyncSession.node_details": {"tf": 1}, "lightpanda.AsyncSession.nodeDetails": {"tf": 1}, "lightpanda.AsyncSession.press": {"tf": 1}, "lightpanda.AsyncSession.scroll": {"tf": 1}, "lightpanda.AsyncSession.search": {"tf": 1}, "lightpanda.AsyncSession.select_option": {"tf": 1}, "lightpanda.AsyncSession.selectOption": {"tf": 1}, "lightpanda.AsyncSession.set_checked": {"tf": 1}, "lightpanda.AsyncSession.setChecked": {"tf": 1}, "lightpanda.AsyncSession.structured_data": {"tf": 1}, "lightpanda.AsyncSession.structuredData": {"tf": 1}, "lightpanda.AsyncSession.tree": {"tf": 1}, "lightpanda.AsyncSession.wait_for_script": {"tf": 1}, "lightpanda.AsyncSession.waitForScript": {"tf": 1}, "lightpanda.AsyncSession.wait_for_selector": {"tf": 1}, "lightpanda.AsyncSession.waitForSelector": {"tf": 1}, "lightpanda.AsyncSession.wait_for_state": {"tf": 1}, "lightpanda.AsyncSession.waitForState": {"tf": 1}}, "df": 46}}}}}}}}}}}}}}, "fullname": {"root": {"docs": {"lightpanda.Browser.__init__": {"tf": 1}, "lightpanda.Session.__init__": {"tf": 1}, "lightpanda.AsyncBrowser.__init__": {"tf": 1}, "lightpanda.AsyncSession.__init__": {"tf": 1}, "lightpanda.ProtocolError.__init__": {"tf": 1}, "lightpanda.ScriptError.__init__": {"tf": 1}}, "df": 6, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {"lightpanda": {"tf": 1}, "lightpanda.Browser": {"tf": 1}, "lightpanda.Browser.__init__": {"tf": 1}, "lightpanda.Browser.tools": {"tf": 1}, "lightpanda.Browser.new_session": {"tf": 1}, "lightpanda.Browser.close": {"tf": 1}, "lightpanda.Session": {"tf": 1}, "lightpanda.Session.__init__": {"tf": 1}, "lightpanda.Session.id": {"tf": 1}, "lightpanda.Session.call": {"tf": 1}, "lightpanda.Session.close": {"tf": 1}, "lightpanda.Session.click": {"tf": 1}, "lightpanda.Session.console_logs": {"tf": 1}, "lightpanda.Session.consoleLogs": {"tf": 1}, "lightpanda.Session.detect_forms": {"tf": 1}, "lightpanda.Session.detectForms": {"tf": 1}, "lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.Session.extract": {"tf": 1}, "lightpanda.Session.fill": {"tf": 1}, "lightpanda.Session.find_element": {"tf": 1}, "lightpanda.Session.findElement": {"tf": 1}, "lightpanda.Session.get_cookies": {"tf": 1}, "lightpanda.Session.getCookies": {"tf": 1}, "lightpanda.Session.get_env": {"tf": 1}, "lightpanda.Session.getEnv": {"tf": 1}, "lightpanda.Session.get_url": {"tf": 1}, "lightpanda.Session.getUrl": {"tf": 1}, "lightpanda.Session.goto": {"tf": 1}, "lightpanda.Session.hover": {"tf": 1}, "lightpanda.Session.html": {"tf": 1}, "lightpanda.Session.interactive_elements": {"tf": 1}, "lightpanda.Session.interactiveElements": {"tf": 1}, "lightpanda.Session.links": {"tf": 1}, "lightpanda.Session.markdown": {"tf": 1}, "lightpanda.Session.node_details": {"tf": 1}, "lightpanda.Session.nodeDetails": {"tf": 1}, "lightpanda.Session.press": {"tf": 1}, "lightpanda.Session.scroll": {"tf": 1}, "lightpanda.Session.search": {"tf": 1}, "lightpanda.Session.select_option": {"tf": 1}, "lightpanda.Session.selectOption": {"tf": 1}, "lightpanda.Session.set_checked": {"tf": 1}, "lightpanda.Session.setChecked": {"tf": 1}, "lightpanda.Session.structured_data": {"tf": 1}, "lightpanda.Session.structuredData": {"tf": 1}, "lightpanda.Session.tree": {"tf": 1}, "lightpanda.Session.wait_for_script": {"tf": 1}, "lightpanda.Session.waitForScript": {"tf": 1}, "lightpanda.Session.wait_for_selector": {"tf": 1}, "lightpanda.Session.waitForSelector": {"tf": 1}, "lightpanda.Session.wait_for_state": {"tf": 1}, "lightpanda.Session.waitForState": {"tf": 1}, "lightpanda.run_script": {"tf": 1}, "lightpanda.AsyncBrowser": {"tf": 1}, "lightpanda.AsyncBrowser.__init__": {"tf": 1}, "lightpanda.AsyncBrowser.wrap": {"tf": 1}, "lightpanda.AsyncBrowser.start": {"tf": 1}, "lightpanda.AsyncBrowser.tools": {"tf": 1}, "lightpanda.AsyncBrowser.new_session": {"tf": 1}, "lightpanda.AsyncBrowser.session": {"tf": 1}, "lightpanda.AsyncBrowser.close": {"tf": 1}, "lightpanda.AsyncSession": {"tf": 1}, "lightpanda.AsyncSession.__init__": {"tf": 1}, "lightpanda.AsyncSession.id": {"tf": 1}, "lightpanda.AsyncSession.call": {"tf": 1}, "lightpanda.AsyncSession.close": {"tf": 1}, "lightpanda.AsyncSession.click": {"tf": 1}, "lightpanda.AsyncSession.console_logs": {"tf": 1}, "lightpanda.AsyncSession.consoleLogs": {"tf": 1}, "lightpanda.AsyncSession.detect_forms": {"tf": 1}, "lightpanda.AsyncSession.detectForms": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}, "lightpanda.AsyncSession.fill": {"tf": 1}, "lightpanda.AsyncSession.find_element": {"tf": 1}, "lightpanda.AsyncSession.findElement": {"tf": 1}, "lightpanda.AsyncSession.get_cookies": {"tf": 1}, "lightpanda.AsyncSession.getCookies": {"tf": 1}, "lightpanda.AsyncSession.get_env": {"tf": 1}, "lightpanda.AsyncSession.getEnv": {"tf": 1}, "lightpanda.AsyncSession.get_url": {"tf": 1}, "lightpanda.AsyncSession.getUrl": {"tf": 1}, "lightpanda.AsyncSession.goto": {"tf": 1}, "lightpanda.AsyncSession.hover": {"tf": 1}, "lightpanda.AsyncSession.html": {"tf": 1}, "lightpanda.AsyncSession.interactive_elements": {"tf": 1}, "lightpanda.AsyncSession.interactiveElements": {"tf": 1}, "lightpanda.AsyncSession.links": {"tf": 1}, "lightpanda.AsyncSession.markdown": {"tf": 1}, "lightpanda.AsyncSession.node_details": {"tf": 1}, "lightpanda.AsyncSession.nodeDetails": {"tf": 1}, "lightpanda.AsyncSession.press": {"tf": 1}, "lightpanda.AsyncSession.scroll": {"tf": 1}, "lightpanda.AsyncSession.search": {"tf": 1}, "lightpanda.AsyncSession.select_option": {"tf": 1}, "lightpanda.AsyncSession.selectOption": {"tf": 1}, "lightpanda.AsyncSession.set_checked": {"tf": 1}, "lightpanda.AsyncSession.setChecked": {"tf": 1}, "lightpanda.AsyncSession.structured_data": {"tf": 1}, "lightpanda.AsyncSession.structuredData": {"tf": 1}, "lightpanda.AsyncSession.tree": {"tf": 1}, "lightpanda.AsyncSession.wait_for_script": {"tf": 1}, "lightpanda.AsyncSession.waitForScript": {"tf": 1}, "lightpanda.AsyncSession.wait_for_selector": {"tf": 1}, "lightpanda.AsyncSession.waitForSelector": {"tf": 1}, "lightpanda.AsyncSession.wait_for_state": {"tf": 1}, "lightpanda.AsyncSession.waitForState": {"tf": 1}, "lightpanda.run_script_async": {"tf": 1}, "lightpanda.LightpandaError": {"tf": 1}, "lightpanda.ProtocolError": {"tf": 1}, "lightpanda.ProtocolError.__init__": {"tf": 1}, "lightpanda.ProtocolError.code": {"tf": 1}, "lightpanda.ScriptError": {"tf": 1}, "lightpanda.ScriptError.__init__": {"tf": 1}, "lightpanda.ScriptError.returncode": {"tf": 1}, "lightpanda.ScriptError.stdout": {"tf": 1}, "lightpanda.ScriptError.stderr": {"tf": 1}, "lightpanda.ToolError": {"tf": 1}}, "df": 118, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"lightpanda.LightpandaError": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "n": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Session.links": {"tf": 1}, "lightpanda.AsyncSession.links": {"tf": 1}}, "df": 2}}}}, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Session.console_logs": {"tf": 1}, "lightpanda.AsyncSession.console_logs": {"tf": 1}}, "df": 2}}}}, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"lightpanda.Browser": {"tf": 1}, "lightpanda.Browser.__init__": {"tf": 1}, "lightpanda.Browser.tools": {"tf": 1}, "lightpanda.Browser.new_session": {"tf": 1}, "lightpanda.Browser.close": {"tf": 1}}, "df": 5}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.Browser.__init__": {"tf": 1}, "lightpanda.Session.__init__": {"tf": 1}, "lightpanda.AsyncBrowser.__init__": {"tf": 1}, "lightpanda.AsyncSession.__init__": {"tf": 1}, "lightpanda.ProtocolError.__init__": {"tf": 1}, "lightpanda.ScriptError.__init__": {"tf": 1}}, "df": 6}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.interactive_elements": {"tf": 1}, "lightpanda.AsyncSession.interactive_elements": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Session.interactiveElements": {"tf": 1}, "lightpanda.AsyncSession.interactiveElements": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}}}}, "d": {"docs": {"lightpanda.Session.id": {"tf": 1}, "lightpanda.AsyncSession.id": {"tf": 1}}, "df": 2}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Browser.tools": {"tf": 1}, "lightpanda.AsyncBrowser.tools": {"tf": 1}}, "df": 2}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"lightpanda.ToolError": {"tf": 1}}, "df": 1}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.tree": {"tf": 1}, "lightpanda.AsyncSession.tree": {"tf": 1}}, "df": 2}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {"lightpanda.Browser.new_session": {"tf": 1}, "lightpanda.AsyncBrowser.new_session": {"tf": 1}}, "df": 2}}, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.node_details": {"tf": 1}, "lightpanda.AsyncSession.node_details": {"tf": 1}}, "df": 2, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Session.nodeDetails": {"tf": 1}, "lightpanda.AsyncSession.nodeDetails": {"tf": 1}}, "df": 2}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"lightpanda.Browser.new_session": {"tf": 1}, "lightpanda.Session": {"tf": 1}, "lightpanda.Session.__init__": {"tf": 1}, "lightpanda.Session.id": {"tf": 1}, "lightpanda.Session.call": {"tf": 1}, "lightpanda.Session.close": {"tf": 1}, "lightpanda.Session.click": {"tf": 1}, "lightpanda.Session.console_logs": {"tf": 1}, "lightpanda.Session.consoleLogs": {"tf": 1}, "lightpanda.Session.detect_forms": {"tf": 1}, "lightpanda.Session.detectForms": {"tf": 1}, "lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.Session.extract": {"tf": 1}, "lightpanda.Session.fill": {"tf": 1}, "lightpanda.Session.find_element": {"tf": 1}, "lightpanda.Session.findElement": {"tf": 1}, "lightpanda.Session.get_cookies": {"tf": 1}, "lightpanda.Session.getCookies": {"tf": 1}, "lightpanda.Session.get_env": {"tf": 1}, "lightpanda.Session.getEnv": {"tf": 1}, "lightpanda.Session.get_url": {"tf": 1}, "lightpanda.Session.getUrl": {"tf": 1}, "lightpanda.Session.goto": {"tf": 1}, "lightpanda.Session.hover": {"tf": 1}, "lightpanda.Session.html": {"tf": 1}, "lightpanda.Session.interactive_elements": {"tf": 1}, "lightpanda.Session.interactiveElements": {"tf": 1}, "lightpanda.Session.links": {"tf": 1}, "lightpanda.Session.markdown": {"tf": 1}, "lightpanda.Session.node_details": {"tf": 1}, "lightpanda.Session.nodeDetails": {"tf": 1}, "lightpanda.Session.press": {"tf": 1}, "lightpanda.Session.scroll": {"tf": 1}, "lightpanda.Session.search": {"tf": 1}, "lightpanda.Session.select_option": {"tf": 1}, "lightpanda.Session.selectOption": {"tf": 1}, "lightpanda.Session.set_checked": {"tf": 1}, "lightpanda.Session.setChecked": {"tf": 1}, "lightpanda.Session.structured_data": {"tf": 1}, "lightpanda.Session.structuredData": {"tf": 1}, "lightpanda.Session.tree": {"tf": 1}, "lightpanda.Session.wait_for_script": {"tf": 1}, "lightpanda.Session.waitForScript": {"tf": 1}, "lightpanda.Session.wait_for_selector": {"tf": 1}, "lightpanda.Session.waitForSelector": {"tf": 1}, "lightpanda.Session.wait_for_state": {"tf": 1}, "lightpanda.Session.waitForState": {"tf": 1}, "lightpanda.AsyncBrowser.new_session": {"tf": 1}, "lightpanda.AsyncBrowser.session": {"tf": 1}}, "df": 49}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"lightpanda.Session.search": {"tf": 1}, "lightpanda.AsyncSession.search": {"tf": 1}}, "df": 2}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.Session.select_option": {"tf": 1}, "lightpanda.AsyncSession.select_option": {"tf": 1}}, "df": 2, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"lightpanda.Session.selectOption": {"tf": 1}, "lightpanda.AsyncSession.selectOption": {"tf": 1}}, "df": 2}}}}}, "r": {"docs": {"lightpanda.Session.wait_for_selector": {"tf": 1}, "lightpanda.AsyncSession.wait_for_selector": {"tf": 1}}, "df": 2}}}}}}, "t": {"docs": {"lightpanda.Session.set_checked": {"tf": 1}, "lightpanda.AsyncSession.set_checked": {"tf": 1}}, "df": 2, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"lightpanda.Session.setChecked": {"tf": 1}, "lightpanda.AsyncSession.setChecked": {"tf": 1}}, "df": 2}}}}}}}}}, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"lightpanda.Session.scroll": {"tf": 1}, "lightpanda.AsyncSession.scroll": {"tf": 1}}, "df": 2}}}, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.Session.wait_for_script": {"tf": 1}, "lightpanda.run_script": {"tf": 1}, "lightpanda.AsyncSession.wait_for_script": {"tf": 1}, "lightpanda.run_script_async": {"tf": 1}}, "df": 4, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"lightpanda.ScriptError": {"tf": 1}, "lightpanda.ScriptError.__init__": {"tf": 1}, "lightpanda.ScriptError.returncode": {"tf": 1}, "lightpanda.ScriptError.stdout": {"tf": 1}, "lightpanda.ScriptError.stderr": {"tf": 1}}, "df": 5}}}}}}}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"lightpanda.Session.structured_data": {"tf": 1}, "lightpanda.AsyncSession.structured_data": {"tf": 1}}, "df": 2, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"lightpanda.Session.structuredData": {"tf": 1}, "lightpanda.AsyncSession.structuredData": {"tf": 1}}, "df": 2}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.wait_for_state": {"tf": 1}, "lightpanda.AsyncSession.wait_for_state": {"tf": 1}}, "df": 2}}, "r": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.AsyncBrowser.start": {"tf": 1}}, "df": 1}}}, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.ScriptError.stdout": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {"lightpanda.ScriptError.stderr": {"tf": 1}}, "df": 1}}}}}}, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Browser.close": {"tf": 1}, "lightpanda.Session.close": {"tf": 1}, "lightpanda.AsyncBrowser.close": {"tf": 1}, "lightpanda.AsyncSession.close": {"tf": 1}}, "df": 4}}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"lightpanda.Session.click": {"tf": 1}, "lightpanda.AsyncSession.click": {"tf": 1}}, "df": 2}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"lightpanda.Session.call": {"tf": 1}, "lightpanda.AsyncSession.call": {"tf": 1}}, "df": 2}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.console_logs": {"tf": 1}, "lightpanda.AsyncSession.console_logs": {"tf": 1}}, "df": 2, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Session.consoleLogs": {"tf": 1}, "lightpanda.AsyncSession.consoleLogs": {"tf": 1}}, "df": 2}}}}}}}}}, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Session.get_cookies": {"tf": 1}, "lightpanda.AsyncSession.get_cookies": {"tf": 1}}, "df": 2}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.ProtocolError.code": {"tf": 1}}, "df": 1}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"lightpanda.Session.set_checked": {"tf": 1}, "lightpanda.AsyncSession.set_checked": {"tf": 1}}, "df": 2}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.Session.detect_forms": {"tf": 1}, "lightpanda.AsyncSession.detect_forms": {"tf": 1}}, "df": 2, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Session.detectForms": {"tf": 1}, "lightpanda.AsyncSession.detectForms": {"tf": 1}}, "df": 2}}}}}}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Session.node_details": {"tf": 1}, "lightpanda.AsyncSession.node_details": {"tf": 1}}, "df": 2}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"lightpanda.Session.structured_data": {"tf": 1}, "lightpanda.AsyncSession.structured_data": {"tf": 1}}, "df": 2}}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"lightpanda.Session.wait_for_script": {"tf": 1}, "lightpanda.Session.wait_for_selector": {"tf": 1}, "lightpanda.Session.wait_for_state": {"tf": 1}, "lightpanda.AsyncSession.wait_for_script": {"tf": 1}, "lightpanda.AsyncSession.wait_for_selector": {"tf": 1}, "lightpanda.AsyncSession.wait_for_state": {"tf": 1}}, "df": 6, "m": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Session.detect_forms": {"tf": 1}, "lightpanda.AsyncSession.detect_forms": {"tf": 1}}, "df": 2}}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"lightpanda.Session.fill": {"tf": 1}, "lightpanda.AsyncSession.fill": {"tf": 1}}, "df": 2}}, "n": {"docs": {}, "df": 0, "d": {"docs": {"lightpanda.Session.find_element": {"tf": 1}, "lightpanda.AsyncSession.find_element": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.Session.findElement": {"tf": 1}, "lightpanda.AsyncSession.findElement": {"tf": 1}}, "df": 2}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}}, "df": 2}}}}}}}, "x": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.Session.extract": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}}, "df": 2}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.Session.find_element": {"tf": 1}, "lightpanda.AsyncSession.find_element": {"tf": 1}}, "df": 2, "s": {"docs": {"lightpanda.Session.interactive_elements": {"tf": 1}, "lightpanda.AsyncSession.interactive_elements": {"tf": 1}}, "df": 2}}}}}}}, "n": {"docs": {}, "df": 0, "v": {"docs": {"lightpanda.Session.get_env": {"tf": 1}, "lightpanda.AsyncSession.get_env": {"tf": 1}}, "df": 2}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.Session.get_cookies": {"tf": 1}, "lightpanda.Session.get_env": {"tf": 1}, "lightpanda.Session.get_url": {"tf": 1}, "lightpanda.AsyncSession.get_cookies": {"tf": 1}, "lightpanda.AsyncSession.get_env": {"tf": 1}, "lightpanda.AsyncSession.get_url": {"tf": 1}}, "df": 6, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Session.getCookies": {"tf": 1}, "lightpanda.AsyncSession.getCookies": {"tf": 1}}, "df": 2}}}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "v": {"docs": {"lightpanda.Session.getEnv": {"tf": 1}, "lightpanda.AsyncSession.getEnv": {"tf": 1}}, "df": 2}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"lightpanda.Session.getUrl": {"tf": 1}, "lightpanda.AsyncSession.getUrl": {"tf": 1}}, "df": 2}}}}}, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {"lightpanda.Session.goto": {"tf": 1}, "lightpanda.AsyncSession.goto": {"tf": 1}}, "df": 2}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"lightpanda.Session.get_url": {"tf": 1}, "lightpanda.AsyncSession.get_url": {"tf": 1}}, "df": 2}}}, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"lightpanda.Session.hover": {"tf": 1}, "lightpanda.AsyncSession.hover": {"tf": 1}}, "df": 2}}}}, "t": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "l": {"docs": {"lightpanda.Session.html": {"tf": 1}, "lightpanda.AsyncSession.html": {"tf": 1}}, "df": 2}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "n": {"docs": {"lightpanda.Session.markdown": {"tf": 1}, "lightpanda.AsyncSession.markdown": {"tf": 1}}, "df": 2}}}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Session.press": {"tf": 1}, "lightpanda.AsyncSession.press": {"tf": 1}}, "df": 2}}}, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"lightpanda.ProtocolError": {"tf": 1}, "lightpanda.ProtocolError.__init__": {"tf": 1}, "lightpanda.ProtocolError.code": {"tf": 1}}, "df": 3}}}}}}}}}}}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"lightpanda.Session.select_option": {"tf": 1}, "lightpanda.AsyncSession.select_option": {"tf": 1}}, "df": 2}}}}}}, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.Session.wait_for_script": {"tf": 1}, "lightpanda.Session.wait_for_selector": {"tf": 1}, "lightpanda.Session.wait_for_state": {"tf": 1}, "lightpanda.AsyncSession.wait_for_script": {"tf": 1}, "lightpanda.AsyncSession.wait_for_selector": {"tf": 1}, "lightpanda.AsyncSession.wait_for_state": {"tf": 1}}, "df": 6, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.Session.waitForScript": {"tf": 1}, "lightpanda.AsyncSession.waitForScript": {"tf": 1}}, "df": 2}}}}}, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"lightpanda.Session.waitForSelector": {"tf": 1}, "lightpanda.AsyncSession.waitForSelector": {"tf": 1}}, "df": 2}}}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.waitForState": {"tf": 1}, "lightpanda.AsyncSession.waitForState": {"tf": 1}}, "df": 2}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {"lightpanda.AsyncBrowser.wrap": {"tf": 1}}, "df": 1}}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {"lightpanda.run_script": {"tf": 1}, "lightpanda.run_script_async": {"tf": 1}}, "df": 2}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.ScriptError.returncode": {"tf": 1}}, "df": 1}}}}}}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {"lightpanda.run_script_async": {"tf": 1}}, "df": 1, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"lightpanda.AsyncBrowser": {"tf": 1}, "lightpanda.AsyncBrowser.__init__": {"tf": 1}, "lightpanda.AsyncBrowser.wrap": {"tf": 1}, "lightpanda.AsyncBrowser.start": {"tf": 1}, "lightpanda.AsyncBrowser.tools": {"tf": 1}, "lightpanda.AsyncBrowser.new_session": {"tf": 1}, "lightpanda.AsyncBrowser.session": {"tf": 1}, "lightpanda.AsyncBrowser.close": {"tf": 1}}, "df": 8}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"lightpanda.AsyncSession": {"tf": 1}, "lightpanda.AsyncSession.__init__": {"tf": 1}, "lightpanda.AsyncSession.id": {"tf": 1}, "lightpanda.AsyncSession.call": {"tf": 1}, "lightpanda.AsyncSession.close": {"tf": 1}, "lightpanda.AsyncSession.click": {"tf": 1}, "lightpanda.AsyncSession.console_logs": {"tf": 1}, "lightpanda.AsyncSession.consoleLogs": {"tf": 1}, "lightpanda.AsyncSession.detect_forms": {"tf": 1}, "lightpanda.AsyncSession.detectForms": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}, "lightpanda.AsyncSession.fill": {"tf": 1}, "lightpanda.AsyncSession.find_element": {"tf": 1}, "lightpanda.AsyncSession.findElement": {"tf": 1}, "lightpanda.AsyncSession.get_cookies": {"tf": 1}, "lightpanda.AsyncSession.getCookies": {"tf": 1}, "lightpanda.AsyncSession.get_env": {"tf": 1}, "lightpanda.AsyncSession.getEnv": {"tf": 1}, "lightpanda.AsyncSession.get_url": {"tf": 1}, "lightpanda.AsyncSession.getUrl": {"tf": 1}, "lightpanda.AsyncSession.goto": {"tf": 1}, "lightpanda.AsyncSession.hover": {"tf": 1}, "lightpanda.AsyncSession.html": {"tf": 1}, "lightpanda.AsyncSession.interactive_elements": {"tf": 1}, "lightpanda.AsyncSession.interactiveElements": {"tf": 1}, "lightpanda.AsyncSession.links": {"tf": 1}, "lightpanda.AsyncSession.markdown": {"tf": 1}, "lightpanda.AsyncSession.node_details": {"tf": 1}, "lightpanda.AsyncSession.nodeDetails": {"tf": 1}, "lightpanda.AsyncSession.press": {"tf": 1}, "lightpanda.AsyncSession.scroll": {"tf": 1}, "lightpanda.AsyncSession.search": {"tf": 1}, "lightpanda.AsyncSession.select_option": {"tf": 1}, "lightpanda.AsyncSession.selectOption": {"tf": 1}, "lightpanda.AsyncSession.set_checked": {"tf": 1}, "lightpanda.AsyncSession.setChecked": {"tf": 1}, "lightpanda.AsyncSession.structured_data": {"tf": 1}, "lightpanda.AsyncSession.structuredData": {"tf": 1}, "lightpanda.AsyncSession.tree": {"tf": 1}, "lightpanda.AsyncSession.wait_for_script": {"tf": 1}, "lightpanda.AsyncSession.waitForScript": {"tf": 1}, "lightpanda.AsyncSession.wait_for_selector": {"tf": 1}, "lightpanda.AsyncSession.waitForSelector": {"tf": 1}, "lightpanda.AsyncSession.wait_for_state": {"tf": 1}, "lightpanda.AsyncSession.waitForState": {"tf": 1}}, "df": 46}}}}}}}}}}}}}}, "annotation": {"root": {"docs": {"lightpanda.Browser.tools": {"tf": 1}, "lightpanda.Session.id": {"tf": 1}, "lightpanda.AsyncBrowser.tools": {"tf": 1}, "lightpanda.AsyncSession.id": {"tf": 1}}, "df": 4, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.Browser.tools": {"tf": 1}, "lightpanda.AsyncBrowser.tools": {"tf": 1}}, "df": 2, "[": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {"lightpanda.Browser.tools": {"tf": 1}, "lightpanda.AsyncBrowser.tools": {"tf": 1}}, "df": 2}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {"lightpanda.Session.id": {"tf": 1}, "lightpanda.AsyncSession.id": {"tf": 1}}, "df": 2}}}}}, "default_value": {"root": {"docs": {}, "df": 0}}, "signature": {"root": {"0": {"docs": {"lightpanda.Browser.__init__": {"tf": 1}, "lightpanda.AsyncBrowser.__init__": {"tf": 1}}, "df": 2}, "3": {"0": {"0": {"docs": {"lightpanda.Browser.__init__": {"tf": 1}, "lightpanda.AsyncBrowser.__init__": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0}, "2": {"docs": {"lightpanda.AsyncBrowser.__init__": {"tf": 1}, "lightpanda.AsyncBrowser.wrap": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0}, "docs": {"lightpanda.Browser.__init__": {"tf": 11.489125293076057}, "lightpanda.Browser.new_session": {"tf": 4.47213595499958}, "lightpanda.Browser.close": {"tf": 3.4641016151377544}, "lightpanda.Session.__init__": {"tf": 7}, "lightpanda.Session.call": {"tf": 4.898979485566356}, "lightpanda.Session.close": {"tf": 3.4641016151377544}, "lightpanda.Session.click": {"tf": 7.681145747868608}, "lightpanda.Session.console_logs": {"tf": 3.4641016151377544}, "lightpanda.Session.consoleLogs": {"tf": 3.4641016151377544}, "lightpanda.Session.detect_forms": {"tf": 7.416198487095663}, "lightpanda.Session.detectForms": {"tf": 7.416198487095663}, "lightpanda.Session.evaluate": {"tf": 9.38083151964686}, "lightpanda.Session.extract": {"tf": 7.3484692283495345}, "lightpanda.Session.fill": {"tf": 8.246211251235321}, "lightpanda.Session.find_element": {"tf": 7.416198487095663}, "lightpanda.Session.findElement": {"tf": 7.416198487095663}, "lightpanda.Session.get_cookies": {"tf": 7.416198487095663}, "lightpanda.Session.getCookies": {"tf": 7.416198487095663}, "lightpanda.Session.get_env": {"tf": 6}, "lightpanda.Session.getEnv": {"tf": 6}, "lightpanda.Session.get_url": {"tf": 3.4641016151377544}, "lightpanda.Session.getUrl": {"tf": 3.4641016151377544}, "lightpanda.Session.goto": {"tf": 6.6332495807108}, "lightpanda.Session.hover": {"tf": 7.681145747868608}, "lightpanda.Session.html": {"tf": 9.9498743710662}, "lightpanda.Session.interactive_elements": {"tf": 7.416198487095663}, "lightpanda.Session.interactiveElements": {"tf": 7.416198487095663}, "lightpanda.Session.links": {"tf": 7.416198487095663}, "lightpanda.Session.markdown": {"tf": 10.908712114635714}, "lightpanda.Session.node_details": {"tf": 5}, "lightpanda.Session.nodeDetails": {"tf": 5}, "lightpanda.Session.press": {"tf": 8.246211251235321}, "lightpanda.Session.scroll": {"tf": 8.888194417315589}, "lightpanda.Session.search": {"tf": 6.6332495807108}, "lightpanda.Session.select_option": {"tf": 8.246211251235321}, "lightpanda.Session.selectOption": {"tf": 8.246211251235321}, "lightpanda.Session.set_checked": {"tf": 8.246211251235321}, "lightpanda.Session.setChecked": {"tf": 8.246211251235321}, "lightpanda.Session.structured_data": {"tf": 7.416198487095663}, "lightpanda.Session.structuredData": {"tf": 7.416198487095663}, "lightpanda.Session.tree": {"tf": 9.9498743710662}, "lightpanda.Session.wait_for_script": {"tf": 6.6332495807108}, "lightpanda.Session.waitForScript": {"tf": 6.6332495807108}, "lightpanda.Session.wait_for_selector": {"tf": 6.6332495807108}, "lightpanda.Session.waitForSelector": {"tf": 6.6332495807108}, "lightpanda.Session.wait_for_state": {"tf": 6.6332495807108}, "lightpanda.Session.waitForState": {"tf": 6.6332495807108}, "lightpanda.run_script": {"tf": 10.246950765959598}, "lightpanda.AsyncBrowser.__init__": {"tf": 12.12435565298214}, "lightpanda.AsyncBrowser.wrap": {"tf": 7.280109889280518}, "lightpanda.AsyncBrowser.start": {"tf": 4.47213595499958}, "lightpanda.AsyncBrowser.new_session": {"tf": 4.47213595499958}, "lightpanda.AsyncBrowser.session": {"tf": 3.1622776601683795}, "lightpanda.AsyncBrowser.close": {"tf": 3.4641016151377544}, "lightpanda.AsyncSession.__init__": {"tf": 6.48074069840786}, "lightpanda.AsyncSession.call": {"tf": 4.898979485566356}, "lightpanda.AsyncSession.close": {"tf": 3.4641016151377544}, "lightpanda.AsyncSession.click": {"tf": 7.681145747868608}, "lightpanda.AsyncSession.console_logs": {"tf": 3.4641016151377544}, "lightpanda.AsyncSession.consoleLogs": {"tf": 3.4641016151377544}, "lightpanda.AsyncSession.detect_forms": {"tf": 7.416198487095663}, "lightpanda.AsyncSession.detectForms": {"tf": 7.416198487095663}, "lightpanda.AsyncSession.evaluate": {"tf": 9.38083151964686}, "lightpanda.AsyncSession.extract": {"tf": 7.3484692283495345}, "lightpanda.AsyncSession.fill": {"tf": 8.246211251235321}, "lightpanda.AsyncSession.find_element": {"tf": 7.416198487095663}, "lightpanda.AsyncSession.findElement": {"tf": 7.416198487095663}, "lightpanda.AsyncSession.get_cookies": {"tf": 7.416198487095663}, "lightpanda.AsyncSession.getCookies": {"tf": 7.416198487095663}, "lightpanda.AsyncSession.get_env": {"tf": 6}, "lightpanda.AsyncSession.getEnv": {"tf": 6}, "lightpanda.AsyncSession.get_url": {"tf": 3.4641016151377544}, "lightpanda.AsyncSession.getUrl": {"tf": 3.4641016151377544}, "lightpanda.AsyncSession.goto": {"tf": 6.6332495807108}, "lightpanda.AsyncSession.hover": {"tf": 7.681145747868608}, "lightpanda.AsyncSession.html": {"tf": 9.9498743710662}, "lightpanda.AsyncSession.interactive_elements": {"tf": 7.416198487095663}, "lightpanda.AsyncSession.interactiveElements": {"tf": 7.416198487095663}, "lightpanda.AsyncSession.links": {"tf": 7.416198487095663}, "lightpanda.AsyncSession.markdown": {"tf": 10.908712114635714}, "lightpanda.AsyncSession.node_details": {"tf": 5}, "lightpanda.AsyncSession.nodeDetails": {"tf": 5}, "lightpanda.AsyncSession.press": {"tf": 8.246211251235321}, "lightpanda.AsyncSession.scroll": {"tf": 8.888194417315589}, "lightpanda.AsyncSession.search": {"tf": 6.6332495807108}, "lightpanda.AsyncSession.select_option": {"tf": 8.246211251235321}, "lightpanda.AsyncSession.selectOption": {"tf": 8.246211251235321}, "lightpanda.AsyncSession.set_checked": {"tf": 8.246211251235321}, "lightpanda.AsyncSession.setChecked": {"tf": 8.246211251235321}, "lightpanda.AsyncSession.structured_data": {"tf": 7.416198487095663}, "lightpanda.AsyncSession.structuredData": {"tf": 7.416198487095663}, "lightpanda.AsyncSession.tree": {"tf": 9.9498743710662}, "lightpanda.AsyncSession.wait_for_script": {"tf": 6.6332495807108}, "lightpanda.AsyncSession.waitForScript": {"tf": 6.6332495807108}, "lightpanda.AsyncSession.wait_for_selector": {"tf": 6.6332495807108}, "lightpanda.AsyncSession.waitForSelector": {"tf": 6.6332495807108}, "lightpanda.AsyncSession.wait_for_state": {"tf": 6.6332495807108}, "lightpanda.AsyncSession.waitForState": {"tf": 6.6332495807108}, "lightpanda.run_script_async": {"tf": 10.246950765959598}, "lightpanda.ProtocolError.__init__": {"tf": 5.5677643628300215}, "lightpanda.ScriptError.__init__": {"tf": 7.211102550927978}}, "df": 101, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"lightpanda.Browser.__init__": {"tf": 1}, "lightpanda.run_script": {"tf": 1}, "lightpanda.AsyncBrowser.__init__": {"tf": 1}, "lightpanda.run_script_async": {"tf": 1}}, "df": 4}}}}}, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {"lightpanda.Browser.__init__": {"tf": 1}, "lightpanda.Session.get_cookies": {"tf": 1}, "lightpanda.Session.getCookies": {"tf": 1}, "lightpanda.Session.set_checked": {"tf": 1}, "lightpanda.Session.setChecked": {"tf": 1}, "lightpanda.AsyncBrowser.__init__": {"tf": 1}, "lightpanda.AsyncSession.get_cookies": {"tf": 1}, "lightpanda.AsyncSession.getCookies": {"tf": 1}, "lightpanda.AsyncSession.set_checked": {"tf": 1}, "lightpanda.AsyncSession.setChecked": {"tf": 1}}, "df": 10}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"lightpanda.Browser.new_session": {"tf": 1}, "lightpanda.AsyncBrowser.wrap": {"tf": 2}, "lightpanda.AsyncBrowser.start": {"tf": 1}, "lightpanda.AsyncBrowser.new_session": {"tf": 1}, "lightpanda.AsyncSession.__init__": {"tf": 1}}, "df": 5}}}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"lightpanda.Session.click": {"tf": 1}, "lightpanda.Session.fill": {"tf": 1}, "lightpanda.Session.hover": {"tf": 1}, "lightpanda.Session.html": {"tf": 1}, "lightpanda.Session.markdown": {"tf": 1}, "lightpanda.Session.node_details": {"tf": 1}, "lightpanda.Session.nodeDetails": {"tf": 1}, "lightpanda.Session.press": {"tf": 1}, "lightpanda.Session.scroll": {"tf": 1}, "lightpanda.Session.select_option": {"tf": 1}, "lightpanda.Session.selectOption": {"tf": 1}, "lightpanda.Session.set_checked": {"tf": 1}, "lightpanda.Session.setChecked": {"tf": 1}, "lightpanda.Session.tree": {"tf": 1}, "lightpanda.AsyncSession.click": {"tf": 1}, "lightpanda.AsyncSession.fill": {"tf": 1}, "lightpanda.AsyncSession.hover": {"tf": 1}, "lightpanda.AsyncSession.html": {"tf": 1}, "lightpanda.AsyncSession.markdown": {"tf": 1}, "lightpanda.AsyncSession.node_details": {"tf": 1}, "lightpanda.AsyncSession.nodeDetails": {"tf": 1}, "lightpanda.AsyncSession.press": {"tf": 1}, "lightpanda.AsyncSession.scroll": {"tf": 1}, "lightpanda.AsyncSession.select_option": {"tf": 1}, "lightpanda.AsyncSession.selectOption": {"tf": 1}, "lightpanda.AsyncSession.set_checked": {"tf": 1}, "lightpanda.AsyncSession.setChecked": {"tf": 1}, "lightpanda.AsyncSession.tree": {"tf": 1}}, "df": 28}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {"lightpanda.Browser.__init__": {"tf": 2.23606797749979}, "lightpanda.Session.__init__": {"tf": 1.4142135623730951}, "lightpanda.Session.call": {"tf": 1}, "lightpanda.Session.click": {"tf": 1}, "lightpanda.Session.detect_forms": {"tf": 1}, "lightpanda.Session.detectForms": {"tf": 1}, "lightpanda.Session.evaluate": {"tf": 1.7320508075688772}, "lightpanda.Session.extract": {"tf": 1.4142135623730951}, "lightpanda.Session.fill": {"tf": 1.4142135623730951}, "lightpanda.Session.find_element": {"tf": 1.4142135623730951}, "lightpanda.Session.findElement": {"tf": 1.4142135623730951}, "lightpanda.Session.get_cookies": {"tf": 1}, "lightpanda.Session.getCookies": {"tf": 1}, "lightpanda.Session.get_env": {"tf": 1}, "lightpanda.Session.getEnv": {"tf": 1}, "lightpanda.Session.goto": {"tf": 1}, "lightpanda.Session.hover": {"tf": 1}, "lightpanda.Session.html": {"tf": 1.4142135623730951}, "lightpanda.Session.interactive_elements": {"tf": 1}, "lightpanda.Session.interactiveElements": {"tf": 1}, "lightpanda.Session.links": {"tf": 1}, "lightpanda.Session.markdown": {"tf": 1.4142135623730951}, "lightpanda.Session.press": {"tf": 1.4142135623730951}, "lightpanda.Session.search": {"tf": 1}, "lightpanda.Session.select_option": {"tf": 1.4142135623730951}, "lightpanda.Session.selectOption": {"tf": 1.4142135623730951}, "lightpanda.Session.set_checked": {"tf": 1}, "lightpanda.Session.setChecked": {"tf": 1}, "lightpanda.Session.structured_data": {"tf": 1}, "lightpanda.Session.structuredData": {"tf": 1}, "lightpanda.Session.tree": {"tf": 1}, "lightpanda.Session.wait_for_script": {"tf": 1}, "lightpanda.Session.waitForScript": {"tf": 1}, "lightpanda.Session.wait_for_selector": {"tf": 1}, "lightpanda.Session.waitForSelector": {"tf": 1}, "lightpanda.Session.wait_for_state": {"tf": 1}, "lightpanda.Session.waitForState": {"tf": 1}, "lightpanda.run_script": {"tf": 2.23606797749979}, "lightpanda.AsyncBrowser.__init__": {"tf": 2.23606797749979}, "lightpanda.AsyncSession.call": {"tf": 1}, "lightpanda.AsyncSession.click": {"tf": 1}, "lightpanda.AsyncSession.detect_forms": {"tf": 1}, "lightpanda.AsyncSession.detectForms": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.extract": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.fill": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.find_element": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.findElement": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.get_cookies": {"tf": 1}, "lightpanda.AsyncSession.getCookies": {"tf": 1}, "lightpanda.AsyncSession.get_env": {"tf": 1}, "lightpanda.AsyncSession.getEnv": {"tf": 1}, "lightpanda.AsyncSession.goto": {"tf": 1}, "lightpanda.AsyncSession.hover": {"tf": 1}, "lightpanda.AsyncSession.html": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.interactive_elements": {"tf": 1}, "lightpanda.AsyncSession.interactiveElements": {"tf": 1}, "lightpanda.AsyncSession.links": {"tf": 1}, "lightpanda.AsyncSession.markdown": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.press": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.search": {"tf": 1}, "lightpanda.AsyncSession.select_option": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.selectOption": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.set_checked": {"tf": 1}, "lightpanda.AsyncSession.setChecked": {"tf": 1}, "lightpanda.AsyncSession.structured_data": {"tf": 1}, "lightpanda.AsyncSession.structuredData": {"tf": 1}, "lightpanda.AsyncSession.tree": {"tf": 1}, "lightpanda.AsyncSession.wait_for_script": {"tf": 1}, "lightpanda.AsyncSession.waitForScript": {"tf": 1}, "lightpanda.AsyncSession.wait_for_selector": {"tf": 1}, "lightpanda.AsyncSession.waitForSelector": {"tf": 1}, "lightpanda.AsyncSession.wait_for_state": {"tf": 1}, "lightpanda.AsyncSession.waitForState": {"tf": 1}, "lightpanda.run_script_async": {"tf": 2.23606797749979}, "lightpanda.ProtocolError.__init__": {"tf": 1}, "lightpanda.ScriptError.__init__": {"tf": 1.7320508075688772}}, "df": 77}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.wait_for_state": {"tf": 1}, "lightpanda.Session.waitForState": {"tf": 1}, "lightpanda.AsyncSession.wait_for_state": {"tf": 1}, "lightpanda.AsyncSession.waitForState": {"tf": 1}}, "df": 4}}}, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.ScriptError.__init__": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {"lightpanda.ScriptError.__init__": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "f": {"docs": {"lightpanda.Browser.new_session": {"tf": 1}, "lightpanda.Browser.close": {"tf": 1}, "lightpanda.Session.call": {"tf": 1}, "lightpanda.Session.close": {"tf": 1}, "lightpanda.Session.click": {"tf": 1}, "lightpanda.Session.console_logs": {"tf": 1}, "lightpanda.Session.consoleLogs": {"tf": 1}, "lightpanda.Session.detect_forms": {"tf": 1}, "lightpanda.Session.detectForms": {"tf": 1}, "lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.Session.extract": {"tf": 1}, "lightpanda.Session.fill": {"tf": 1}, "lightpanda.Session.find_element": {"tf": 1}, "lightpanda.Session.findElement": {"tf": 1}, "lightpanda.Session.get_cookies": {"tf": 1}, "lightpanda.Session.getCookies": {"tf": 1}, "lightpanda.Session.get_env": {"tf": 1}, "lightpanda.Session.getEnv": {"tf": 1}, "lightpanda.Session.get_url": {"tf": 1}, "lightpanda.Session.getUrl": {"tf": 1}, "lightpanda.Session.goto": {"tf": 1}, "lightpanda.Session.hover": {"tf": 1}, "lightpanda.Session.html": {"tf": 1}, "lightpanda.Session.interactive_elements": {"tf": 1}, "lightpanda.Session.interactiveElements": {"tf": 1}, "lightpanda.Session.links": {"tf": 1}, "lightpanda.Session.markdown": {"tf": 1}, "lightpanda.Session.node_details": {"tf": 1}, "lightpanda.Session.nodeDetails": {"tf": 1}, "lightpanda.Session.press": {"tf": 1}, "lightpanda.Session.scroll": {"tf": 1}, "lightpanda.Session.search": {"tf": 1}, "lightpanda.Session.select_option": {"tf": 1}, "lightpanda.Session.selectOption": {"tf": 1}, "lightpanda.Session.set_checked": {"tf": 1}, "lightpanda.Session.setChecked": {"tf": 1}, "lightpanda.Session.structured_data": {"tf": 1}, "lightpanda.Session.structuredData": {"tf": 1}, "lightpanda.Session.tree": {"tf": 1}, "lightpanda.Session.wait_for_script": {"tf": 1}, "lightpanda.Session.waitForScript": {"tf": 1}, "lightpanda.Session.wait_for_selector": {"tf": 1}, "lightpanda.Session.waitForSelector": {"tf": 1}, "lightpanda.Session.wait_for_state": {"tf": 1}, "lightpanda.Session.waitForState": {"tf": 1}, "lightpanda.AsyncBrowser.start": {"tf": 1}, "lightpanda.AsyncBrowser.new_session": {"tf": 1}, "lightpanda.AsyncBrowser.session": {"tf": 1}, "lightpanda.AsyncBrowser.close": {"tf": 1}, "lightpanda.AsyncSession.call": {"tf": 1}, "lightpanda.AsyncSession.close": {"tf": 1}, "lightpanda.AsyncSession.click": {"tf": 1}, "lightpanda.AsyncSession.console_logs": {"tf": 1}, "lightpanda.AsyncSession.consoleLogs": {"tf": 1}, "lightpanda.AsyncSession.detect_forms": {"tf": 1}, "lightpanda.AsyncSession.detectForms": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}, "lightpanda.AsyncSession.fill": {"tf": 1}, "lightpanda.AsyncSession.find_element": {"tf": 1}, "lightpanda.AsyncSession.findElement": {"tf": 1}, "lightpanda.AsyncSession.get_cookies": {"tf": 1}, "lightpanda.AsyncSession.getCookies": {"tf": 1}, "lightpanda.AsyncSession.get_env": {"tf": 1}, "lightpanda.AsyncSession.getEnv": {"tf": 1}, "lightpanda.AsyncSession.get_url": {"tf": 1}, "lightpanda.AsyncSession.getUrl": {"tf": 1}, "lightpanda.AsyncSession.goto": {"tf": 1}, "lightpanda.AsyncSession.hover": {"tf": 1}, "lightpanda.AsyncSession.html": {"tf": 1}, "lightpanda.AsyncSession.interactive_elements": {"tf": 1}, "lightpanda.AsyncSession.interactiveElements": {"tf": 1}, "lightpanda.AsyncSession.links": {"tf": 1}, "lightpanda.AsyncSession.markdown": {"tf": 1}, "lightpanda.AsyncSession.node_details": {"tf": 1}, "lightpanda.AsyncSession.nodeDetails": {"tf": 1}, "lightpanda.AsyncSession.press": {"tf": 1}, "lightpanda.AsyncSession.scroll": {"tf": 1}, "lightpanda.AsyncSession.search": {"tf": 1}, "lightpanda.AsyncSession.select_option": {"tf": 1}, "lightpanda.AsyncSession.selectOption": {"tf": 1}, "lightpanda.AsyncSession.set_checked": {"tf": 1}, "lightpanda.AsyncSession.setChecked": {"tf": 1}, "lightpanda.AsyncSession.structured_data": {"tf": 1}, "lightpanda.AsyncSession.structuredData": {"tf": 1}, "lightpanda.AsyncSession.tree": {"tf": 1}, "lightpanda.AsyncSession.wait_for_script": {"tf": 1}, "lightpanda.AsyncSession.waitForScript": {"tf": 1}, "lightpanda.AsyncSession.wait_for_selector": {"tf": 1}, "lightpanda.AsyncSession.waitForSelector": {"tf": 1}, "lightpanda.AsyncSession.wait_for_state": {"tf": 1}, "lightpanda.AsyncSession.waitForState": {"tf": 1}}, "df": 92}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"lightpanda.Session.click": {"tf": 1}, "lightpanda.Session.fill": {"tf": 1}, "lightpanda.Session.hover": {"tf": 1}, "lightpanda.Session.html": {"tf": 1}, "lightpanda.Session.markdown": {"tf": 1}, "lightpanda.Session.press": {"tf": 1}, "lightpanda.Session.select_option": {"tf": 1}, "lightpanda.Session.selectOption": {"tf": 1}, "lightpanda.Session.set_checked": {"tf": 1}, "lightpanda.Session.setChecked": {"tf": 1}, "lightpanda.Session.wait_for_selector": {"tf": 1}, "lightpanda.Session.waitForSelector": {"tf": 1}, "lightpanda.AsyncSession.click": {"tf": 1}, "lightpanda.AsyncSession.fill": {"tf": 1}, "lightpanda.AsyncSession.hover": {"tf": 1}, "lightpanda.AsyncSession.html": {"tf": 1}, "lightpanda.AsyncSession.markdown": {"tf": 1}, "lightpanda.AsyncSession.press": {"tf": 1}, "lightpanda.AsyncSession.select_option": {"tf": 1}, "lightpanda.AsyncSession.selectOption": {"tf": 1}, "lightpanda.AsyncSession.set_checked": {"tf": 1}, "lightpanda.AsyncSession.setChecked": {"tf": 1}, "lightpanda.AsyncSession.wait_for_selector": {"tf": 1}, "lightpanda.AsyncSession.waitForSelector": {"tf": 1}}, "df": 24}}}}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"lightpanda.Browser.new_session": {"tf": 1}, "lightpanda.Session.__init__": {"tf": 1}, "lightpanda.AsyncSession.__init__": {"tf": 1.4142135623730951}}, "df": 3}}}}}}, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.Session.wait_for_script": {"tf": 1}, "lightpanda.Session.waitForScript": {"tf": 1}, "lightpanda.run_script": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}, "lightpanda.AsyncSession.wait_for_script": {"tf": 1}, "lightpanda.AsyncSession.waitForScript": {"tf": 1}, "lightpanda.run_script_async": {"tf": 1}}, "df": 8}}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {"lightpanda.Session.extract": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}}, "df": 2}}}}}, "a": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.Session.extract": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}}, "df": 4}}}}, "o": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Browser.__init__": {"tf": 1}, "lightpanda.run_script": {"tf": 1.4142135623730951}, "lightpanda.AsyncBrowser.__init__": {"tf": 1}, "lightpanda.run_script_async": {"tf": 1.4142135623730951}}, "df": 4}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Browser.__init__": {"tf": 1}, "lightpanda.run_script": {"tf": 1.4142135623730951}, "lightpanda.AsyncBrowser.__init__": {"tf": 1}, "lightpanda.run_script_async": {"tf": 1.4142135623730951}}, "df": 4}}}}}}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Browser.__init__": {"tf": 2}, "lightpanda.Browser.close": {"tf": 1}, "lightpanda.Session.close": {"tf": 1}, "lightpanda.Session.click": {"tf": 2}, "lightpanda.Session.detect_forms": {"tf": 2}, "lightpanda.Session.detectForms": {"tf": 2}, "lightpanda.Session.evaluate": {"tf": 2.449489742783178}, "lightpanda.Session.extract": {"tf": 1.4142135623730951}, "lightpanda.Session.fill": {"tf": 2}, "lightpanda.Session.find_element": {"tf": 2}, "lightpanda.Session.findElement": {"tf": 2}, "lightpanda.Session.get_cookies": {"tf": 2}, "lightpanda.Session.getCookies": {"tf": 2}, "lightpanda.Session.get_env": {"tf": 1.4142135623730951}, "lightpanda.Session.getEnv": {"tf": 1.4142135623730951}, "lightpanda.Session.goto": {"tf": 1.4142135623730951}, "lightpanda.Session.hover": {"tf": 2}, "lightpanda.Session.html": {"tf": 2.8284271247461903}, "lightpanda.Session.interactive_elements": {"tf": 2}, "lightpanda.Session.interactiveElements": {"tf": 2}, "lightpanda.Session.links": {"tf": 2}, "lightpanda.Session.markdown": {"tf": 3.1622776601683795}, "lightpanda.Session.press": {"tf": 2}, "lightpanda.Session.scroll": {"tf": 2.449489742783178}, "lightpanda.Session.search": {"tf": 1.4142135623730951}, "lightpanda.Session.select_option": {"tf": 2}, "lightpanda.Session.selectOption": {"tf": 2}, "lightpanda.Session.set_checked": {"tf": 2}, "lightpanda.Session.setChecked": {"tf": 2}, "lightpanda.Session.structured_data": {"tf": 2}, "lightpanda.Session.structuredData": {"tf": 2}, "lightpanda.Session.tree": {"tf": 2.8284271247461903}, "lightpanda.Session.wait_for_script": {"tf": 1.4142135623730951}, "lightpanda.Session.waitForScript": {"tf": 1.4142135623730951}, "lightpanda.Session.wait_for_selector": {"tf": 1.4142135623730951}, "lightpanda.Session.waitForSelector": {"tf": 1.4142135623730951}, "lightpanda.Session.wait_for_state": {"tf": 1.4142135623730951}, "lightpanda.Session.waitForState": {"tf": 1.4142135623730951}, "lightpanda.run_script": {"tf": 2.449489742783178}, "lightpanda.AsyncBrowser.__init__": {"tf": 2}, "lightpanda.AsyncBrowser.close": {"tf": 1}, "lightpanda.AsyncSession.close": {"tf": 1}, "lightpanda.AsyncSession.click": {"tf": 2}, "lightpanda.AsyncSession.detect_forms": {"tf": 2}, "lightpanda.AsyncSession.detectForms": {"tf": 2}, "lightpanda.AsyncSession.evaluate": {"tf": 2.449489742783178}, "lightpanda.AsyncSession.extract": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.fill": {"tf": 2}, "lightpanda.AsyncSession.find_element": {"tf": 2}, "lightpanda.AsyncSession.findElement": {"tf": 2}, "lightpanda.AsyncSession.get_cookies": {"tf": 2}, "lightpanda.AsyncSession.getCookies": {"tf": 2}, "lightpanda.AsyncSession.get_env": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.getEnv": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.goto": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.hover": {"tf": 2}, "lightpanda.AsyncSession.html": {"tf": 2.8284271247461903}, "lightpanda.AsyncSession.interactive_elements": {"tf": 2}, "lightpanda.AsyncSession.interactiveElements": {"tf": 2}, "lightpanda.AsyncSession.links": {"tf": 2}, "lightpanda.AsyncSession.markdown": {"tf": 3.1622776601683795}, "lightpanda.AsyncSession.press": {"tf": 2}, "lightpanda.AsyncSession.scroll": {"tf": 2.449489742783178}, "lightpanda.AsyncSession.search": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.select_option": {"tf": 2}, "lightpanda.AsyncSession.selectOption": {"tf": 2}, "lightpanda.AsyncSession.set_checked": {"tf": 2}, "lightpanda.AsyncSession.setChecked": {"tf": 2}, "lightpanda.AsyncSession.structured_data": {"tf": 2}, "lightpanda.AsyncSession.structuredData": {"tf": 2}, "lightpanda.AsyncSession.tree": {"tf": 2.8284271247461903}, "lightpanda.AsyncSession.wait_for_script": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.waitForScript": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.wait_for_selector": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.waitForSelector": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.wait_for_state": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.waitForState": {"tf": 1.4142135623730951}, "lightpanda.run_script_async": {"tf": 2.449489742783178}, "lightpanda.ProtocolError.__init__": {"tf": 1.4142135623730951}}, "df": 79}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.find_element": {"tf": 1}, "lightpanda.Session.findElement": {"tf": 1}, "lightpanda.Session.get_env": {"tf": 1}, "lightpanda.Session.getEnv": {"tf": 1}, "lightpanda.AsyncSession.find_element": {"tf": 1}, "lightpanda.AsyncSession.findElement": {"tf": 1}, "lightpanda.AsyncSession.get_env": {"tf": 1}, "lightpanda.AsyncSession.getEnv": {"tf": 1}}, "df": 8}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "v": {"docs": {"lightpanda.Browser.__init__": {"tf": 1}, "lightpanda.run_script": {"tf": 1}, "lightpanda.AsyncBrowser.__init__": {"tf": 1}, "lightpanda.run_script_async": {"tf": 1}}, "df": 4}}, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"lightpanda.AsyncSession.__init__": {"tf": 1}}, "df": 1}}}}}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.Browser.__init__": {"tf": 1}, "lightpanda.Session.__init__": {"tf": 1.4142135623730951}, "lightpanda.Session.extract": {"tf": 1}, "lightpanda.run_script": {"tf": 1}, "lightpanda.AsyncBrowser.__init__": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}, "lightpanda.run_script_async": {"tf": 1}}, "df": 7}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.Browser.__init__": {"tf": 1}, "lightpanda.Session.detect_forms": {"tf": 1}, "lightpanda.Session.detectForms": {"tf": 1}, "lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.Session.goto": {"tf": 1}, "lightpanda.Session.html": {"tf": 1}, "lightpanda.Session.interactive_elements": {"tf": 1}, "lightpanda.Session.interactiveElements": {"tf": 1}, "lightpanda.Session.links": {"tf": 1}, "lightpanda.Session.markdown": {"tf": 1}, "lightpanda.Session.search": {"tf": 1}, "lightpanda.Session.structured_data": {"tf": 1}, "lightpanda.Session.structuredData": {"tf": 1}, "lightpanda.Session.tree": {"tf": 1}, "lightpanda.Session.wait_for_script": {"tf": 1}, "lightpanda.Session.waitForScript": {"tf": 1}, "lightpanda.Session.wait_for_selector": {"tf": 1}, "lightpanda.Session.waitForSelector": {"tf": 1}, "lightpanda.Session.wait_for_state": {"tf": 1}, "lightpanda.Session.waitForState": {"tf": 1}, "lightpanda.run_script": {"tf": 1}, "lightpanda.AsyncBrowser.__init__": {"tf": 1}, "lightpanda.AsyncSession.detect_forms": {"tf": 1}, "lightpanda.AsyncSession.detectForms": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}, "lightpanda.AsyncSession.goto": {"tf": 1}, "lightpanda.AsyncSession.html": {"tf": 1}, "lightpanda.AsyncSession.interactive_elements": {"tf": 1}, "lightpanda.AsyncSession.interactiveElements": {"tf": 1}, "lightpanda.AsyncSession.links": {"tf": 1}, "lightpanda.AsyncSession.markdown": {"tf": 1}, "lightpanda.AsyncSession.search": {"tf": 1}, "lightpanda.AsyncSession.structured_data": {"tf": 1}, "lightpanda.AsyncSession.structuredData": {"tf": 1}, "lightpanda.AsyncSession.tree": {"tf": 1}, "lightpanda.AsyncSession.wait_for_script": {"tf": 1}, "lightpanda.AsyncSession.waitForScript": {"tf": 1}, "lightpanda.AsyncSession.wait_for_selector": {"tf": 1}, "lightpanda.AsyncSession.waitForSelector": {"tf": 1}, "lightpanda.AsyncSession.wait_for_state": {"tf": 1}, "lightpanda.AsyncSession.waitForState": {"tf": 1}, "lightpanda.run_script_async": {"tf": 1}}, "df": 42}}}}}}, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Browser.__init__": {"tf": 1}, "lightpanda.AsyncBrowser.__init__": {"tf": 1}}, "df": 2}}}}, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {"lightpanda.Session.call": {"tf": 1}, "lightpanda.AsyncSession.call": {"tf": 1}}, "df": 2, "s": {"docs": {"lightpanda.Session.__init__": {"tf": 1}}, "df": 1}}}}, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"lightpanda.AsyncSession.__init__": {"tf": 1}}, "df": 1, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"lightpanda.AsyncSession.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}, "f": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.Browser.__init__": {"tf": 1}, "lightpanda.run_script": {"tf": 1}, "lightpanda.AsyncBrowser.__init__": {"tf": 1}, "lightpanda.run_script_async": {"tf": 1}}, "df": 4}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Browser.__init__": {"tf": 1}, "lightpanda.AsyncBrowser.__init__": {"tf": 1}}, "df": 2}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.AsyncSession.__init__": {"tf": 1}}, "df": 1}}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Browser.__init__": {"tf": 1}, "lightpanda.AsyncBrowser.__init__": {"tf": 1}}, "df": 2}}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.fill": {"tf": 1}, "lightpanda.Session.select_option": {"tf": 1}, "lightpanda.Session.selectOption": {"tf": 1}, "lightpanda.AsyncSession.fill": {"tf": 1}, "lightpanda.AsyncSession.select_option": {"tf": 1}, "lightpanda.AsyncSession.selectOption": {"tf": 1}}, "df": 6}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Browser.__init__": {"tf": 1}, "lightpanda.AsyncBrowser.__init__": {"tf": 1}}, "df": 2}}}, "n": {"docs": {}, "df": 0, "y": {"docs": {"lightpanda.Session.click": {"tf": 1}, "lightpanda.Session.console_logs": {"tf": 1}, "lightpanda.Session.consoleLogs": {"tf": 1}, "lightpanda.Session.detect_forms": {"tf": 1}, "lightpanda.Session.detectForms": {"tf": 1}, "lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.Session.extract": {"tf": 1}, "lightpanda.Session.fill": {"tf": 1}, "lightpanda.Session.find_element": {"tf": 1}, "lightpanda.Session.findElement": {"tf": 1}, "lightpanda.Session.get_cookies": {"tf": 1}, "lightpanda.Session.getCookies": {"tf": 1}, "lightpanda.Session.get_env": {"tf": 1}, "lightpanda.Session.getEnv": {"tf": 1}, "lightpanda.Session.get_url": {"tf": 1}, "lightpanda.Session.getUrl": {"tf": 1}, "lightpanda.Session.goto": {"tf": 1}, "lightpanda.Session.hover": {"tf": 1}, "lightpanda.Session.html": {"tf": 1}, "lightpanda.Session.interactive_elements": {"tf": 1}, "lightpanda.Session.interactiveElements": {"tf": 1}, "lightpanda.Session.links": {"tf": 1}, "lightpanda.Session.markdown": {"tf": 1}, "lightpanda.Session.node_details": {"tf": 1}, "lightpanda.Session.nodeDetails": {"tf": 1}, "lightpanda.Session.press": {"tf": 1}, "lightpanda.Session.scroll": {"tf": 1}, "lightpanda.Session.search": {"tf": 1}, "lightpanda.Session.select_option": {"tf": 1}, "lightpanda.Session.selectOption": {"tf": 1}, "lightpanda.Session.set_checked": {"tf": 1}, "lightpanda.Session.setChecked": {"tf": 1}, "lightpanda.Session.structured_data": {"tf": 1}, "lightpanda.Session.structuredData": {"tf": 1}, "lightpanda.Session.tree": {"tf": 1}, "lightpanda.Session.wait_for_script": {"tf": 1}, "lightpanda.Session.waitForScript": {"tf": 1}, "lightpanda.Session.wait_for_selector": {"tf": 1}, "lightpanda.Session.waitForSelector": {"tf": 1}, "lightpanda.Session.wait_for_state": {"tf": 1}, "lightpanda.Session.waitForState": {"tf": 1}, "lightpanda.AsyncSession.click": {"tf": 1}, "lightpanda.AsyncSession.console_logs": {"tf": 1}, "lightpanda.AsyncSession.consoleLogs": {"tf": 1}, "lightpanda.AsyncSession.detect_forms": {"tf": 1}, "lightpanda.AsyncSession.detectForms": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}, "lightpanda.AsyncSession.fill": {"tf": 1}, "lightpanda.AsyncSession.find_element": {"tf": 1}, "lightpanda.AsyncSession.findElement": {"tf": 1}, "lightpanda.AsyncSession.get_cookies": {"tf": 1}, "lightpanda.AsyncSession.getCookies": {"tf": 1}, "lightpanda.AsyncSession.get_env": {"tf": 1}, "lightpanda.AsyncSession.getEnv": {"tf": 1}, "lightpanda.AsyncSession.get_url": {"tf": 1}, "lightpanda.AsyncSession.getUrl": {"tf": 1}, "lightpanda.AsyncSession.goto": {"tf": 1}, "lightpanda.AsyncSession.hover": {"tf": 1}, "lightpanda.AsyncSession.html": {"tf": 1}, "lightpanda.AsyncSession.interactive_elements": {"tf": 1}, "lightpanda.AsyncSession.interactiveElements": {"tf": 1}, "lightpanda.AsyncSession.links": {"tf": 1}, "lightpanda.AsyncSession.markdown": {"tf": 1}, "lightpanda.AsyncSession.node_details": {"tf": 1}, "lightpanda.AsyncSession.nodeDetails": {"tf": 1}, "lightpanda.AsyncSession.press": {"tf": 1}, "lightpanda.AsyncSession.scroll": {"tf": 1}, "lightpanda.AsyncSession.search": {"tf": 1}, "lightpanda.AsyncSession.select_option": {"tf": 1}, "lightpanda.AsyncSession.selectOption": {"tf": 1}, "lightpanda.AsyncSession.set_checked": {"tf": 1}, "lightpanda.AsyncSession.setChecked": {"tf": 1}, "lightpanda.AsyncSession.structured_data": {"tf": 1}, "lightpanda.AsyncSession.structuredData": {"tf": 1}, "lightpanda.AsyncSession.tree": {"tf": 1}, "lightpanda.AsyncSession.wait_for_script": {"tf": 1}, "lightpanda.AsyncSession.waitForScript": {"tf": 1}, "lightpanda.AsyncSession.wait_for_selector": {"tf": 1}, "lightpanda.AsyncSession.waitForSelector": {"tf": 1}, "lightpanda.AsyncSession.wait_for_state": {"tf": 1}, "lightpanda.AsyncSession.waitForState": {"tf": 1}}, "df": 82}}, "l": {"docs": {}, "df": 0, "l": {"docs": {"lightpanda.Session.get_cookies": {"tf": 1}, "lightpanda.Session.getCookies": {"tf": 1}, "lightpanda.AsyncSession.get_cookies": {"tf": 1}, "lightpanda.AsyncSession.getCookies": {"tf": 1}}, "df": 4}}, "s": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {"lightpanda.AsyncBrowser.wrap": {"tf": 1}, "lightpanda.AsyncBrowser.start": {"tf": 1}, "lightpanda.AsyncBrowser.new_session": {"tf": 1}}, "df": 3, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"lightpanda.AsyncBrowser.wrap": {"tf": 1}, "lightpanda.AsyncBrowser.start": {"tf": 1}}, "df": 2}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"lightpanda.AsyncBrowser.new_session": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.Browser.__init__": {"tf": 1}, "lightpanda.Session.extract": {"tf": 1}, "lightpanda.AsyncBrowser.__init__": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}}, "df": 4}}, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {"lightpanda.Browser.new_session": {"tf": 1}, "lightpanda.Session.__init__": {"tf": 1}, "lightpanda.AsyncBrowser.wrap": {"tf": 1.4142135623730951}, "lightpanda.AsyncBrowser.start": {"tf": 1}, "lightpanda.AsyncBrowser.new_session": {"tf": 1}, "lightpanda.AsyncSession.__init__": {"tf": 1}}, "df": 6}}}}}}}}}}, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.Session.__init__": {"tf": 1.7320508075688772}}, "df": 1}}}}, "s": {"docs": {"lightpanda.AsyncBrowser.wrap": {"tf": 1}}, "df": 1}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"lightpanda.Session.set_checked": {"tf": 1}, "lightpanda.Session.setChecked": {"tf": 1}, "lightpanda.AsyncSession.set_checked": {"tf": 1}, "lightpanda.AsyncSession.setChecked": {"tf": 1}}, "df": 4}}}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "y": {"docs": {"lightpanda.AsyncBrowser.__init__": {"tf": 1}, "lightpanda.AsyncBrowser.wrap": {"tf": 1}}, "df": 2}}, "t": {"docs": {"lightpanda.AsyncSession.__init__": {"tf": 1}}, "df": 1}}}}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.ProtocolError.__init__": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {"lightpanda.Session.__init__": {"tf": 1}}, "df": 1}, "n": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.Session.click": {"tf": 1}, "lightpanda.Session.detect_forms": {"tf": 1}, "lightpanda.Session.detectForms": {"tf": 1}, "lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.Session.fill": {"tf": 1}, "lightpanda.Session.goto": {"tf": 1}, "lightpanda.Session.hover": {"tf": 1}, "lightpanda.Session.html": {"tf": 1.4142135623730951}, "lightpanda.Session.interactive_elements": {"tf": 1}, "lightpanda.Session.interactiveElements": {"tf": 1}, "lightpanda.Session.links": {"tf": 1}, "lightpanda.Session.markdown": {"tf": 1.7320508075688772}, "lightpanda.Session.node_details": {"tf": 1}, "lightpanda.Session.nodeDetails": {"tf": 1}, "lightpanda.Session.press": {"tf": 1}, "lightpanda.Session.scroll": {"tf": 1.7320508075688772}, "lightpanda.Session.search": {"tf": 1}, "lightpanda.Session.select_option": {"tf": 1}, "lightpanda.Session.selectOption": {"tf": 1}, "lightpanda.Session.set_checked": {"tf": 1}, "lightpanda.Session.setChecked": {"tf": 1}, "lightpanda.Session.structured_data": {"tf": 1}, "lightpanda.Session.structuredData": {"tf": 1}, "lightpanda.Session.tree": {"tf": 1.7320508075688772}, "lightpanda.Session.wait_for_script": {"tf": 1}, "lightpanda.Session.waitForScript": {"tf": 1}, "lightpanda.Session.wait_for_selector": {"tf": 1}, "lightpanda.Session.waitForSelector": {"tf": 1}, "lightpanda.Session.wait_for_state": {"tf": 1}, "lightpanda.Session.waitForState": {"tf": 1}, "lightpanda.AsyncBrowser.__init__": {"tf": 1}, "lightpanda.AsyncBrowser.wrap": {"tf": 1}, "lightpanda.AsyncSession.click": {"tf": 1}, "lightpanda.AsyncSession.detect_forms": {"tf": 1}, "lightpanda.AsyncSession.detectForms": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}, "lightpanda.AsyncSession.fill": {"tf": 1}, "lightpanda.AsyncSession.goto": {"tf": 1}, "lightpanda.AsyncSession.hover": {"tf": 1}, "lightpanda.AsyncSession.html": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.interactive_elements": {"tf": 1}, "lightpanda.AsyncSession.interactiveElements": {"tf": 1}, "lightpanda.AsyncSession.links": {"tf": 1}, "lightpanda.AsyncSession.markdown": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.node_details": {"tf": 1}, "lightpanda.AsyncSession.nodeDetails": {"tf": 1}, "lightpanda.AsyncSession.press": {"tf": 1}, "lightpanda.AsyncSession.scroll": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.search": {"tf": 1}, "lightpanda.AsyncSession.select_option": {"tf": 1}, "lightpanda.AsyncSession.selectOption": {"tf": 1}, "lightpanda.AsyncSession.set_checked": {"tf": 1}, "lightpanda.AsyncSession.setChecked": {"tf": 1}, "lightpanda.AsyncSession.structured_data": {"tf": 1}, "lightpanda.AsyncSession.structuredData": {"tf": 1}, "lightpanda.AsyncSession.tree": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.wait_for_script": {"tf": 1}, "lightpanda.AsyncSession.waitForScript": {"tf": 1}, "lightpanda.AsyncSession.wait_for_selector": {"tf": 1}, "lightpanda.AsyncSession.waitForSelector": {"tf": 1}, "lightpanda.AsyncSession.wait_for_state": {"tf": 1}, "lightpanda.AsyncSession.waitForState": {"tf": 1}, "lightpanda.ProtocolError.__init__": {"tf": 1}, "lightpanda.ScriptError.__init__": {"tf": 1}}, "df": 64}}}, "k": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Session.call": {"tf": 1}, "lightpanda.AsyncSession.call": {"tf": 1}}, "df": 2}}}}}, "e": {"docs": {}, "df": 0, "y": {"docs": {"lightpanda.Session.press": {"tf": 1}, "lightpanda.AsyncSession.press": {"tf": 1}}, "df": 2}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"lightpanda.Session.detect_forms": {"tf": 1}, "lightpanda.Session.detectForms": {"tf": 1}, "lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.Session.get_cookies": {"tf": 1}, "lightpanda.Session.getCookies": {"tf": 1}, "lightpanda.Session.goto": {"tf": 1}, "lightpanda.Session.html": {"tf": 1}, "lightpanda.Session.interactive_elements": {"tf": 1}, "lightpanda.Session.interactiveElements": {"tf": 1}, "lightpanda.Session.links": {"tf": 1}, "lightpanda.Session.markdown": {"tf": 1}, "lightpanda.Session.structured_data": {"tf": 1}, "lightpanda.Session.structuredData": {"tf": 1}, "lightpanda.Session.tree": {"tf": 1}, "lightpanda.AsyncSession.detect_forms": {"tf": 1}, "lightpanda.AsyncSession.detectForms": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}, "lightpanda.AsyncSession.get_cookies": {"tf": 1}, "lightpanda.AsyncSession.getCookies": {"tf": 1}, "lightpanda.AsyncSession.goto": {"tf": 1}, "lightpanda.AsyncSession.html": {"tf": 1}, "lightpanda.AsyncSession.interactive_elements": {"tf": 1}, "lightpanda.AsyncSession.interactiveElements": {"tf": 1}, "lightpanda.AsyncSession.links": {"tf": 1}, "lightpanda.AsyncSession.markdown": {"tf": 1}, "lightpanda.AsyncSession.structured_data": {"tf": 1}, "lightpanda.AsyncSession.structuredData": {"tf": 1}, "lightpanda.AsyncSession.tree": {"tf": 1}}, "df": 28}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.find_element": {"tf": 1}, "lightpanda.Session.findElement": {"tf": 1}, "lightpanda.AsyncSession.find_element": {"tf": 1}, "lightpanda.AsyncSession.findElement": {"tf": 1}}, "df": 4}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.ScriptError.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "x": {"docs": {"lightpanda.AsyncBrowser.__init__": {"tf": 1}, "lightpanda.AsyncBrowser.wrap": {"tf": 1}}, "df": 2, "b": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Session.markdown": {"tf": 1}, "lightpanda.AsyncSession.markdown": {"tf": 1}}, "df": 2}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"lightpanda.Session.tree": {"tf": 1}, "lightpanda.AsyncSession.tree": {"tf": 1}}, "df": 2}}}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.ProtocolError.__init__": {"tf": 1}, "lightpanda.ScriptError.__init__": {"tf": 1}}, "df": 2}}}}}}}, "x": {"docs": {"lightpanda.Session.scroll": {"tf": 1}, "lightpanda.AsyncSession.scroll": {"tf": 1}}, "df": 2}, "y": {"docs": {"lightpanda.Session.scroll": {"tf": 1}, "lightpanda.AsyncSession.scroll": {"tf": 1}}, "df": 2}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"lightpanda.Session.search": {"tf": 1}, "lightpanda.AsyncSession.search": {"tf": 1}}, "df": 2}}}}}}}, "bases": {"root": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {"lightpanda.Session": {"tf": 1}, "lightpanda.AsyncSession": {"tf": 1}, "lightpanda.ProtocolError": {"tf": 1}, "lightpanda.ScriptError": {"tf": 1}, "lightpanda.ToolError": {"tf": 1}}, "df": 5, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"lightpanda.ProtocolError": {"tf": 1}, "lightpanda.ScriptError": {"tf": 1}, "lightpanda.ToolError": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Session": {"tf": 1}, "lightpanda.AsyncSession": {"tf": 1}}, "df": 2}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Session": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.AsyncSession": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.LightpandaError": {"tf": 1}}, "df": 1}}}}}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"lightpanda.LightpandaError": {"tf": 1}}, "df": 1}}}}}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.ProtocolError": {"tf": 1}, "lightpanda.ScriptError": {"tf": 1}, "lightpanda.ToolError": {"tf": 1}}, "df": 3}}}}}}}}, "doc": {"root": {"1": {"docs": {"lightpanda.Session.extract": {"tf": 1.4142135623730951}, "lightpanda.Session.press": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.press": {"tf": 1}}, "df": 4}, "2": {"docs": {"lightpanda.Session.extract": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}}, "df": 2}, "3": {"docs": {"lightpanda.Session.extract": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}}, "df": 2}, "4": {"2": {"docs": {"lightpanda.Session.extract": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0}, "5": {"docs": {"lightpanda.Session.wait_for_script": {"tf": 1}, "lightpanda.Session.waitForScript": {"tf": 1}, "lightpanda.AsyncSession.wait_for_script": {"tf": 1}, "lightpanda.AsyncSession.waitForScript": {"tf": 1}}, "df": 4}, "docs": {"lightpanda": {"tf": 14.798648586948742}, "lightpanda.Browser": {"tf": 3.1622776601683795}, "lightpanda.Browser.__init__": {"tf": 2.8284271247461903}, "lightpanda.Browser.tools": {"tf": 2}, "lightpanda.Browser.new_session": {"tf": 1.7320508075688772}, "lightpanda.Browser.close": {"tf": 1.7320508075688772}, "lightpanda.Session": {"tf": 3.1622776601683795}, "lightpanda.Session.__init__": {"tf": 1.7320508075688772}, "lightpanda.Session.id": {"tf": 1.7320508075688772}, "lightpanda.Session.call": {"tf": 1.7320508075688772}, "lightpanda.Session.close": {"tf": 1.7320508075688772}, "lightpanda.Session.click": {"tf": 1.7320508075688772}, "lightpanda.Session.console_logs": {"tf": 1.7320508075688772}, "lightpanda.Session.consoleLogs": {"tf": 1.7320508075688772}, "lightpanda.Session.detect_forms": {"tf": 1.7320508075688772}, "lightpanda.Session.detectForms": {"tf": 1.7320508075688772}, "lightpanda.Session.evaluate": {"tf": 5.5677643628300215}, "lightpanda.Session.extract": {"tf": 9.899494936611665}, "lightpanda.Session.fill": {"tf": 1.7320508075688772}, "lightpanda.Session.find_element": {"tf": 1.7320508075688772}, "lightpanda.Session.findElement": {"tf": 1.7320508075688772}, "lightpanda.Session.get_cookies": {"tf": 2.8284271247461903}, "lightpanda.Session.getCookies": {"tf": 2.8284271247461903}, "lightpanda.Session.get_env": {"tf": 3.7416573867739413}, "lightpanda.Session.getEnv": {"tf": 3.7416573867739413}, "lightpanda.Session.get_url": {"tf": 2}, "lightpanda.Session.getUrl": {"tf": 2}, "lightpanda.Session.goto": {"tf": 1.7320508075688772}, "lightpanda.Session.hover": {"tf": 1.7320508075688772}, "lightpanda.Session.html": {"tf": 2.449489742783178}, "lightpanda.Session.interactive_elements": {"tf": 1.7320508075688772}, "lightpanda.Session.interactiveElements": {"tf": 1.7320508075688772}, "lightpanda.Session.links": {"tf": 3}, "lightpanda.Session.markdown": {"tf": 3.1622776601683795}, "lightpanda.Session.node_details": {"tf": 2.23606797749979}, "lightpanda.Session.nodeDetails": {"tf": 2.23606797749979}, "lightpanda.Session.press": {"tf": 3.3166247903554}, "lightpanda.Session.scroll": {"tf": 1.7320508075688772}, "lightpanda.Session.search": {"tf": 2.6457513110645907}, "lightpanda.Session.select_option": {"tf": 2.23606797749979}, "lightpanda.Session.selectOption": {"tf": 2.23606797749979}, "lightpanda.Session.set_checked": {"tf": 1.7320508075688772}, "lightpanda.Session.setChecked": {"tf": 1.7320508075688772}, "lightpanda.Session.structured_data": {"tf": 1.7320508075688772}, "lightpanda.Session.structuredData": {"tf": 1.7320508075688772}, "lightpanda.Session.tree": {"tf": 2.6457513110645907}, "lightpanda.Session.wait_for_script": {"tf": 3.3166247903554}, "lightpanda.Session.waitForScript": {"tf": 3.3166247903554}, "lightpanda.Session.wait_for_selector": {"tf": 1.7320508075688772}, "lightpanda.Session.waitForSelector": {"tf": 1.7320508075688772}, "lightpanda.Session.wait_for_state": {"tf": 3}, "lightpanda.Session.waitForState": {"tf": 3}, "lightpanda.run_script": {"tf": 3.605551275463989}, "lightpanda.AsyncBrowser": {"tf": 4.123105625617661}, "lightpanda.AsyncBrowser.__init__": {"tf": 3.605551275463989}, "lightpanda.AsyncBrowser.wrap": {"tf": 3}, "lightpanda.AsyncBrowser.start": {"tf": 1.7320508075688772}, "lightpanda.AsyncBrowser.tools": {"tf": 2}, "lightpanda.AsyncBrowser.new_session": {"tf": 1.7320508075688772}, "lightpanda.AsyncBrowser.session": {"tf": 3}, "lightpanda.AsyncBrowser.close": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession": {"tf": 3.1622776601683795}, "lightpanda.AsyncSession.__init__": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.id": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.call": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.close": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.click": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.console_logs": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.consoleLogs": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.detect_forms": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.detectForms": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.evaluate": {"tf": 5.5677643628300215}, "lightpanda.AsyncSession.extract": {"tf": 9.899494936611665}, "lightpanda.AsyncSession.fill": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.find_element": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.findElement": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.get_cookies": {"tf": 2.8284271247461903}, "lightpanda.AsyncSession.getCookies": {"tf": 2.8284271247461903}, "lightpanda.AsyncSession.get_env": {"tf": 3.7416573867739413}, "lightpanda.AsyncSession.getEnv": {"tf": 3.7416573867739413}, "lightpanda.AsyncSession.get_url": {"tf": 2}, "lightpanda.AsyncSession.getUrl": {"tf": 2}, "lightpanda.AsyncSession.goto": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.hover": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.html": {"tf": 2.449489742783178}, "lightpanda.AsyncSession.interactive_elements": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.interactiveElements": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.links": {"tf": 3}, "lightpanda.AsyncSession.markdown": {"tf": 3.1622776601683795}, "lightpanda.AsyncSession.node_details": {"tf": 2.23606797749979}, "lightpanda.AsyncSession.nodeDetails": {"tf": 2.23606797749979}, "lightpanda.AsyncSession.press": {"tf": 3.3166247903554}, "lightpanda.AsyncSession.scroll": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.search": {"tf": 2.6457513110645907}, "lightpanda.AsyncSession.select_option": {"tf": 2.23606797749979}, "lightpanda.AsyncSession.selectOption": {"tf": 2.23606797749979}, "lightpanda.AsyncSession.set_checked": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.setChecked": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.structured_data": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.structuredData": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.tree": {"tf": 2.6457513110645907}, "lightpanda.AsyncSession.wait_for_script": {"tf": 3.3166247903554}, "lightpanda.AsyncSession.waitForScript": {"tf": 3.3166247903554}, "lightpanda.AsyncSession.wait_for_selector": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.waitForSelector": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.wait_for_state": {"tf": 3}, "lightpanda.AsyncSession.waitForState": {"tf": 3}, "lightpanda.run_script_async": {"tf": 2.449489742783178}, "lightpanda.LightpandaError": {"tf": 1.7320508075688772}, "lightpanda.ProtocolError": {"tf": 1.7320508075688772}, "lightpanda.ProtocolError.__init__": {"tf": 1.7320508075688772}, "lightpanda.ProtocolError.code": {"tf": 1.7320508075688772}, "lightpanda.ScriptError": {"tf": 2.23606797749979}, "lightpanda.ScriptError.__init__": {"tf": 1.7320508075688772}, "lightpanda.ScriptError.returncode": {"tf": 1.7320508075688772}, "lightpanda.ScriptError.stdout": {"tf": 1.7320508075688772}, "lightpanda.ScriptError.stderr": {"tf": 1.7320508075688772}, "lightpanda.ToolError": {"tf": 1.7320508075688772}}, "df": 118, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {"lightpanda": {"tf": 1.7320508075688772}, "lightpanda.Browser": {"tf": 1}, "lightpanda.run_script": {"tf": 1}, "lightpanda.AsyncBrowser": {"tf": 1}, "lightpanda.run_script_async": {"tf": 1}, "lightpanda.LightpandaError": {"tf": 1}}, "df": 6}}}}}, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda": {"tf": 1}}, "df": 1}}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.Session.get_env": {"tf": 1}, "lightpanda.Session.getEnv": {"tf": 1}, "lightpanda.Session.search": {"tf": 1}, "lightpanda.AsyncBrowser.start": {"tf": 1}, "lightpanda.AsyncSession.get_env": {"tf": 1}, "lightpanda.AsyncSession.getEnv": {"tf": 1}, "lightpanda.AsyncSession.search": {"tf": 1}}, "df": 7, "s": {"docs": {"lightpanda.Session.extract": {"tf": 1}, "lightpanda.Session.wait_for_state": {"tf": 1.4142135623730951}, "lightpanda.Session.waitForState": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.extract": {"tf": 1}, "lightpanda.AsyncSession.wait_for_state": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.waitForState": {"tf": 1.4142135623730951}}, "df": 6}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.Session.extract": {"tf": 1.4142135623730951}, "lightpanda.Session.search": {"tf": 1}, "lightpanda.Session.tree": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.search": {"tf": 1}, "lightpanda.AsyncSession.tree": {"tf": 1}}, "df": 6}}}, "f": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"lightpanda.Session.extract": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}}, "df": 2}}}}, "n": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Session.extract": {"tf": 1.4142135623730951}, "lightpanda.Session.links": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.links": {"tf": 1}}, "df": 4}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.press": {"tf": 1.4142135623730951}, "lightpanda.Session.structured_data": {"tf": 1}, "lightpanda.Session.structuredData": {"tf": 1}, "lightpanda.AsyncSession.press": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.structured_data": {"tf": 1}, "lightpanda.AsyncSession.structuredData": {"tf": 1}}, "df": 6}}}, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"lightpanda.Session.console_logs": {"tf": 1}, "lightpanda.Session.consoleLogs": {"tf": 1}, "lightpanda.AsyncSession.console_logs": {"tf": 1}, "lightpanda.AsyncSession.consoleLogs": {"tf": 1}}, "df": 4}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "c": {"docs": {"lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}}, "df": 2}}}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"lightpanda.Session.find_element": {"tf": 1}, "lightpanda.Session.findElement": {"tf": 1}, "lightpanda.AsyncSession.find_element": {"tf": 1}, "lightpanda.AsyncSession.findElement": {"tf": 1}}, "df": 4}}}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {"lightpanda.Session.goto": {"tf": 1}, "lightpanda.Session.wait_for_state": {"tf": 1.7320508075688772}, "lightpanda.Session.waitForState": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.goto": {"tf": 1}, "lightpanda.AsyncSession.wait_for_state": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.waitForState": {"tf": 1.7320508075688772}}, "df": 6, "e": {"docs": {}, "df": 0, "d": {"docs": {"lightpanda.Session.get_url": {"tf": 1.4142135623730951}, "lightpanda.Session.getUrl": {"tf": 1.4142135623730951}, "lightpanda.Session.wait_for_state": {"tf": 1}, "lightpanda.Session.waitForState": {"tf": 1}, "lightpanda.AsyncSession.get_url": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.getUrl": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.wait_for_state": {"tf": 1}, "lightpanda.AsyncSession.waitForState": {"tf": 1}}, "df": 8}}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {"lightpanda.Session.markdown": {"tf": 1}, "lightpanda.AsyncSession.markdown": {"tf": 1}}, "df": 2}}, "o": {"docs": {}, "df": 0, "p": {"docs": {"lightpanda.Session.wait_for_script": {"tf": 1}, "lightpanda.Session.waitForScript": {"tf": 1}, "lightpanda.AsyncSession.wait_for_script": {"tf": 1}, "lightpanda.AsyncSession.waitForScript": {"tf": 1}}, "df": 4}, "k": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Session.wait_for_state": {"tf": 1}, "lightpanda.Session.waitForState": {"tf": 1}, "lightpanda.AsyncSession.wait_for_state": {"tf": 1}, "lightpanda.AsyncSession.waitForState": {"tf": 1}}, "df": 4}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.Session.console_logs": {"tf": 1}, "lightpanda.Session.consoleLogs": {"tf": 1}, "lightpanda.Session.markdown": {"tf": 1}, "lightpanda.AsyncSession.console_logs": {"tf": 1}, "lightpanda.AsyncSession.consoleLogs": {"tf": 1}, "lightpanda.AsyncSession.markdown": {"tf": 1}}, "df": 6}}, "n": {"docs": {}, "df": 0, "d": {"docs": {"lightpanda.Session.get_env": {"tf": 1}, "lightpanda.Session.getEnv": {"tf": 1}, "lightpanda.AsyncSession.get_env": {"tf": 1}, "lightpanda.AsyncSession.getEnv": {"tf": 1}}, "df": 4}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"lightpanda.Session.goto": {"tf": 1}, "lightpanda.AsyncSession.goto": {"tf": 1}}, "df": 2}}}, "z": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"lightpanda.AsyncBrowser.__init__": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.Session.extract": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}, "lightpanda.ProtocolError": {"tf": 1}}, "df": 5}}}, "f": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.Session.press": {"tf": 1}, "lightpanda.AsyncSession.press": {"tf": 1}}, "df": 2}}, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"lightpanda.Session.wait_for_script": {"tf": 1}, "lightpanda.Session.waitForScript": {"tf": 1}, "lightpanda.AsyncSession.wait_for_script": {"tf": 1}, "lightpanda.AsyncSession.waitForScript": {"tf": 1}}, "df": 4}}}}, "a": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.AsyncBrowser.wrap": {"tf": 1}}, "df": 1}}}}}, "p": {"docs": {"lightpanda.Session.evaluate": {"tf": 1.7320508075688772}, "lightpanda.Session.get_env": {"tf": 1.7320508075688772}, "lightpanda.Session.getEnv": {"tf": 1.7320508075688772}, "lightpanda.run_script": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.get_env": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.getEnv": {"tf": 1.7320508075688772}}, "df": 7}, "t": {"docs": {"lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.Session.get_cookies": {"tf": 1}, "lightpanda.Session.getCookies": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}, "lightpanda.AsyncSession.get_cookies": {"tf": 1}, "lightpanda.AsyncSession.getCookies": {"tf": 1}}, "df": 6}, "d": {"docs": {"lightpanda.Session.structured_data": {"tf": 1}, "lightpanda.Session.structuredData": {"tf": 1}, "lightpanda.AsyncSession.structured_data": {"tf": 1}, "lightpanda.AsyncSession.structuredData": {"tf": 1}}, "df": 4}, "l": {"docs": {}, "df": 0, "m": {"docs": {"lightpanda.run_script": {"tf": 1}}, "df": 1}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"lightpanda": {"tf": 1.4142135623730951}, "lightpanda.Browser.__init__": {"tf": 1}, "lightpanda.Session.click": {"tf": 1}, "lightpanda.Session.evaluate": {"tf": 1.7320508075688772}, "lightpanda.Session.extract": {"tf": 1}, "lightpanda.Session.fill": {"tf": 1}, "lightpanda.Session.find_element": {"tf": 1}, "lightpanda.Session.findElement": {"tf": 1}, "lightpanda.Session.get_cookies": {"tf": 1.4142135623730951}, "lightpanda.Session.getCookies": {"tf": 1.4142135623730951}, "lightpanda.Session.get_env": {"tf": 1.4142135623730951}, "lightpanda.Session.getEnv": {"tf": 1.4142135623730951}, "lightpanda.Session.goto": {"tf": 1}, "lightpanda.Session.hover": {"tf": 1.4142135623730951}, "lightpanda.Session.html": {"tf": 1}, "lightpanda.Session.node_details": {"tf": 1}, "lightpanda.Session.nodeDetails": {"tf": 1}, "lightpanda.Session.select_option": {"tf": 1}, "lightpanda.Session.selectOption": {"tf": 1}, "lightpanda.Session.set_checked": {"tf": 1}, "lightpanda.Session.setChecked": {"tf": 1}, "lightpanda.Session.wait_for_script": {"tf": 1}, "lightpanda.Session.waitForScript": {"tf": 1}, "lightpanda.Session.wait_for_selector": {"tf": 1}, "lightpanda.Session.waitForSelector": {"tf": 1}, "lightpanda.Session.wait_for_state": {"tf": 1}, "lightpanda.Session.waitForState": {"tf": 1}, "lightpanda.AsyncBrowser.wrap": {"tf": 1}, "lightpanda.AsyncBrowser.session": {"tf": 1}, "lightpanda.AsyncSession.click": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.extract": {"tf": 1}, "lightpanda.AsyncSession.fill": {"tf": 1}, "lightpanda.AsyncSession.find_element": {"tf": 1}, "lightpanda.AsyncSession.findElement": {"tf": 1}, "lightpanda.AsyncSession.get_cookies": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.getCookies": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.get_env": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.getEnv": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.goto": {"tf": 1}, "lightpanda.AsyncSession.hover": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.html": {"tf": 1}, "lightpanda.AsyncSession.node_details": {"tf": 1}, "lightpanda.AsyncSession.nodeDetails": {"tf": 1}, "lightpanda.AsyncSession.select_option": {"tf": 1}, "lightpanda.AsyncSession.selectOption": {"tf": 1}, "lightpanda.AsyncSession.set_checked": {"tf": 1}, "lightpanda.AsyncSession.setChecked": {"tf": 1}, "lightpanda.AsyncSession.wait_for_script": {"tf": 1}, "lightpanda.AsyncSession.waitForScript": {"tf": 1}, "lightpanda.AsyncSession.wait_for_selector": {"tf": 1}, "lightpanda.AsyncSession.waitForSelector": {"tf": 1}, "lightpanda.AsyncSession.wait_for_state": {"tf": 1}, "lightpanda.AsyncSession.waitForState": {"tf": 1}, "lightpanda.LightpandaError": {"tf": 1}}, "df": 55, "k": {"docs": {"lightpanda.Browser": {"tf": 1.4142135623730951}, "lightpanda.AsyncBrowser": {"tf": 1}}, "df": 2}, "m": {"docs": {"lightpanda.Session.press": {"tf": 1.4142135623730951}, "lightpanda.AsyncBrowser.session": {"tf": 1}, "lightpanda.AsyncSession.press": {"tf": 1.4142135623730951}}, "df": 3, "s": {"docs": {"lightpanda.Session.detect_forms": {"tf": 1}, "lightpanda.Session.detectForms": {"tf": 1}, "lightpanda.AsyncSession.detect_forms": {"tf": 1}, "lightpanda.AsyncSession.detectForms": {"tf": 1}}, "df": 4}}, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"lightpanda.AsyncBrowser.__init__": {"tf": 1}}, "df": 1}}}}}}}, "o": {"docs": {"lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.Session.extract": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}}, "df": 4}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"lightpanda": {"tf": 1.4142135623730951}, "lightpanda.Session.console_logs": {"tf": 1}, "lightpanda.Session.consoleLogs": {"tf": 1}, "lightpanda.Session.extract": {"tf": 1.4142135623730951}, "lightpanda.Session.interactive_elements": {"tf": 1}, "lightpanda.Session.interactiveElements": {"tf": 1}, "lightpanda.Session.structured_data": {"tf": 1}, "lightpanda.Session.structuredData": {"tf": 1}, "lightpanda.AsyncBrowser": {"tf": 1}, "lightpanda.AsyncBrowser.wrap": {"tf": 1}, "lightpanda.AsyncSession.console_logs": {"tf": 1}, "lightpanda.AsyncSession.consoleLogs": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.interactive_elements": {"tf": 1}, "lightpanda.AsyncSession.interactiveElements": {"tf": 1}, "lightpanda.AsyncSession.structured_data": {"tf": 1}, "lightpanda.AsyncSession.structuredData": {"tf": 1}}, "df": 17}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {"lightpanda.Browser": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.Browser": {"tf": 1}, "lightpanda.Session.detect_forms": {"tf": 1}, "lightpanda.Session.detectForms": {"tf": 1}, "lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.Session.extract": {"tf": 1.7320508075688772}, "lightpanda.Session.interactive_elements": {"tf": 1}, "lightpanda.Session.interactiveElements": {"tf": 1}, "lightpanda.Session.links": {"tf": 1}, "lightpanda.Session.node_details": {"tf": 1}, "lightpanda.Session.nodeDetails": {"tf": 1}, "lightpanda.Session.structured_data": {"tf": 1}, "lightpanda.Session.structuredData": {"tf": 1}, "lightpanda.AsyncSession.detect_forms": {"tf": 1}, "lightpanda.AsyncSession.detectForms": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.interactive_elements": {"tf": 1}, "lightpanda.AsyncSession.interactiveElements": {"tf": 1}, "lightpanda.AsyncSession.links": {"tf": 1}, "lightpanda.AsyncSession.node_details": {"tf": 1}, "lightpanda.AsyncSession.nodeDetails": {"tf": 1}, "lightpanda.AsyncSession.structured_data": {"tf": 1}, "lightpanda.AsyncSession.structuredData": {"tf": 1}}, "df": 23}}}, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"lightpanda.Session.extract": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.extract": {"tf": 1.4142135623730951}}, "df": 2, "s": {"docs": {"lightpanda.Session.detect_forms": {"tf": 1}, "lightpanda.Session.detectForms": {"tf": 1}, "lightpanda.Session.extract": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.detect_forms": {"tf": 1}, "lightpanda.AsyncSession.detectForms": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1.7320508075688772}}, "df": 6}}}}, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {"lightpanda.Session.extract": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}}, "df": 2}}}, "d": {"docs": {"lightpanda.Session.find_element": {"tf": 1}, "lightpanda.Session.findElement": {"tf": 1}, "lightpanda.AsyncSession.find_element": {"tf": 1}, "lightpanda.AsyncSession.findElement": {"tf": 1}}, "df": 4}}, "l": {"docs": {}, "df": 0, "l": {"docs": {"lightpanda.Session.fill": {"tf": 1}, "lightpanda.AsyncSession.fill": {"tf": 1}}, "df": 2}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"lightpanda.Session.get_cookies": {"tf": 1}, "lightpanda.Session.getCookies": {"tf": 1}, "lightpanda.AsyncSession.get_cookies": {"tf": 1}, "lightpanda.AsyncSession.getCookies": {"tf": 1}}, "df": 4}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Browser.__init__": {"tf": 1.4142135623730951}, "lightpanda.Session.get_env": {"tf": 1}, "lightpanda.Session.getEnv": {"tf": 1}, "lightpanda.AsyncSession.get_env": {"tf": 1}, "lightpanda.AsyncSession.getEnv": {"tf": 1}}, "df": 5}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}}, "df": 2}}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {"lightpanda.Session.find_element": {"tf": 1}, "lightpanda.Session.findElement": {"tf": 1}, "lightpanda.Session.markdown": {"tf": 1}, "lightpanda.AsyncSession.find_element": {"tf": 1}, "lightpanda.AsyncSession.findElement": {"tf": 1}, "lightpanda.AsyncSession.markdown": {"tf": 1}}, "df": 6}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.search": {"tf": 1}, "lightpanda.AsyncSession.search": {"tf": 1}, "lightpanda.ProtocolError": {"tf": 1}, "lightpanda.ScriptError": {"tf": 1}, "lightpanda.ToolError": {"tf": 1}}, "df": 5}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Session.search": {"tf": 1}, "lightpanda.AsyncSession.search": {"tf": 1}}, "df": 2}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.Session.wait_for_state": {"tf": 1}, "lightpanda.Session.waitForState": {"tf": 1}, "lightpanda.AsyncSession.wait_for_state": {"tf": 1}, "lightpanda.AsyncSession.waitForState": {"tf": 1}}, "df": 4}}, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.AsyncBrowser.wrap": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Session.wait_for_state": {"tf": 1}, "lightpanda.Session.waitForState": {"tf": 1}, "lightpanda.AsyncSession.wait_for_state": {"tf": 1}, "lightpanda.AsyncSession.waitForState": {"tf": 1}}, "df": 4}}}, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"lightpanda.AsyncBrowser.start": {"tf": 1}}, "df": 1}}}}}, "p": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"lightpanda": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda": {"tf": 2.449489742783178}, "lightpanda.Session": {"tf": 1}, "lightpanda.Session.click": {"tf": 1}, "lightpanda.Session.console_logs": {"tf": 1}, "lightpanda.Session.consoleLogs": {"tf": 1}, "lightpanda.Session.detect_forms": {"tf": 1}, "lightpanda.Session.detectForms": {"tf": 1}, "lightpanda.Session.evaluate": {"tf": 1.7320508075688772}, "lightpanda.Session.extract": {"tf": 1.4142135623730951}, "lightpanda.Session.get_cookies": {"tf": 1}, "lightpanda.Session.getCookies": {"tf": 1}, "lightpanda.Session.get_url": {"tf": 1.4142135623730951}, "lightpanda.Session.getUrl": {"tf": 1.4142135623730951}, "lightpanda.Session.goto": {"tf": 1}, "lightpanda.Session.interactive_elements": {"tf": 1}, "lightpanda.Session.interactiveElements": {"tf": 1}, "lightpanda.Session.links": {"tf": 1}, "lightpanda.Session.markdown": {"tf": 1.4142135623730951}, "lightpanda.Session.scroll": {"tf": 1.4142135623730951}, "lightpanda.Session.search": {"tf": 1}, "lightpanda.Session.structured_data": {"tf": 1}, "lightpanda.Session.structuredData": {"tf": 1}, "lightpanda.Session.wait_for_selector": {"tf": 1}, "lightpanda.Session.waitForSelector": {"tf": 1}, "lightpanda.Session.wait_for_state": {"tf": 1.4142135623730951}, "lightpanda.Session.waitForState": {"tf": 1.4142135623730951}, "lightpanda.AsyncBrowser.session": {"tf": 1}, "lightpanda.AsyncSession": {"tf": 1}, "lightpanda.AsyncSession.click": {"tf": 1}, "lightpanda.AsyncSession.console_logs": {"tf": 1}, "lightpanda.AsyncSession.consoleLogs": {"tf": 1}, "lightpanda.AsyncSession.detect_forms": {"tf": 1}, "lightpanda.AsyncSession.detectForms": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.extract": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.get_cookies": {"tf": 1}, "lightpanda.AsyncSession.getCookies": {"tf": 1}, "lightpanda.AsyncSession.get_url": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.getUrl": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.goto": {"tf": 1}, "lightpanda.AsyncSession.interactive_elements": {"tf": 1}, "lightpanda.AsyncSession.interactiveElements": {"tf": 1}, "lightpanda.AsyncSession.links": {"tf": 1}, "lightpanda.AsyncSession.markdown": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.scroll": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.search": {"tf": 1}, "lightpanda.AsyncSession.structured_data": {"tf": 1}, "lightpanda.AsyncSession.structuredData": {"tf": 1}, "lightpanda.AsyncSession.wait_for_selector": {"tf": 1}, "lightpanda.AsyncSession.waitForSelector": {"tf": 1}, "lightpanda.AsyncSession.wait_for_state": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.waitForState": {"tf": 1.4142135623730951}}, "df": 52, "/": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.get_url": {"tf": 1}, "lightpanda.Session.getUrl": {"tf": 1}, "lightpanda.AsyncSession.get_url": {"tf": 1}, "lightpanda.AsyncSession.getUrl": {"tf": 1}}, "df": 4}}}}}, "s": {"docs": {"lightpanda.Session.markdown": {"tf": 1}, "lightpanda.AsyncSession.markdown": {"tf": 1}}, "df": 2}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {"lightpanda.Browser.__init__": {"tf": 1}, "lightpanda.AsyncBrowser.wrap": {"tf": 1}}, "df": 2}}, "s": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Session.get_cookies": {"tf": 1}, "lightpanda.Session.getCookies": {"tf": 1}, "lightpanda.Session.get_env": {"tf": 1}, "lightpanda.Session.getEnv": {"tf": 1}, "lightpanda.Session.links": {"tf": 1}, "lightpanda.Session.tree": {"tf": 1}, "lightpanda.AsyncSession.get_cookies": {"tf": 1}, "lightpanda.AsyncSession.getCookies": {"tf": 1}, "lightpanda.AsyncSession.get_env": {"tf": 1}, "lightpanda.AsyncSession.getEnv": {"tf": 1}, "lightpanda.AsyncSession.links": {"tf": 1}, "lightpanda.AsyncSession.tree": {"tf": 1}}, "df": 12, "e": {"docs": {}, "df": 0, "d": {"docs": {"lightpanda.Session.extract": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}}, "df": 2}}}}, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.extract": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}}, "df": 2}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"lightpanda.Session.find_element": {"tf": 1}, "lightpanda.Session.findElement": {"tf": 1}, "lightpanda.AsyncSession.find_element": {"tf": 1}, "lightpanda.AsyncSession.findElement": {"tf": 1}}, "df": 4}}}}}, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.LightpandaError": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Browser": {"tf": 1}, "lightpanda.Browser.__init__": {"tf": 1}, "lightpanda.AsyncBrowser": {"tf": 1}, "lightpanda.AsyncBrowser.start": {"tf": 1}}, "df": 4}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.click": {"tf": 1}, "lightpanda.Session.fill": {"tf": 1}, "lightpanda.Session.hover": {"tf": 1}, "lightpanda.Session.select_option": {"tf": 1}, "lightpanda.Session.selectOption": {"tf": 1}, "lightpanda.Session.set_checked": {"tf": 1}, "lightpanda.Session.setChecked": {"tf": 1}, "lightpanda.AsyncSession.click": {"tf": 1}, "lightpanda.AsyncSession.fill": {"tf": 1}, "lightpanda.AsyncSession.hover": {"tf": 1}, "lightpanda.AsyncSession.select_option": {"tf": 1}, "lightpanda.AsyncSession.selectOption": {"tf": 1}, "lightpanda.AsyncSession.set_checked": {"tf": 1}, "lightpanda.AsyncSession.setChecked": {"tf": 1}}, "df": 14, "d": {"docs": {"lightpanda.Session.detect_forms": {"tf": 1}, "lightpanda.Session.detectForms": {"tf": 1}, "lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.Session.interactive_elements": {"tf": 1}, "lightpanda.Session.interactiveElements": {"tf": 1}, "lightpanda.Session.links": {"tf": 1}, "lightpanda.Session.structured_data": {"tf": 1}, "lightpanda.Session.structuredData": {"tf": 1}, "lightpanda.AsyncSession.detect_forms": {"tf": 1}, "lightpanda.AsyncSession.detectForms": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}, "lightpanda.AsyncSession.interactive_elements": {"tf": 1}, "lightpanda.AsyncSession.interactiveElements": {"tf": 1}, "lightpanda.AsyncSession.links": {"tf": 1}, "lightpanda.AsyncSession.structured_data": {"tf": 1}, "lightpanda.AsyncSession.structuredData": {"tf": 1}}, "df": 16}}}}}, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}}, "df": 2}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Session.extract": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}}, "df": 2}}}}}}}}, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.Session.search": {"tf": 1}, "lightpanda.Session.wait_for_state": {"tf": 1}, "lightpanda.Session.waitForState": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}, "lightpanda.AsyncSession.search": {"tf": 1}, "lightpanda.AsyncSession.wait_for_state": {"tf": 1}, "lightpanda.AsyncSession.waitForState": {"tf": 1}}, "df": 8, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"lightpanda.Session.click": {"tf": 1}, "lightpanda.Session.fill": {"tf": 1}, "lightpanda.Session.hover": {"tf": 1}, "lightpanda.Session.search": {"tf": 1}, "lightpanda.Session.select_option": {"tf": 1}, "lightpanda.Session.selectOption": {"tf": 1}, "lightpanda.Session.set_checked": {"tf": 1}, "lightpanda.Session.setChecked": {"tf": 1}, "lightpanda.AsyncSession.click": {"tf": 1}, "lightpanda.AsyncSession.fill": {"tf": 1}, "lightpanda.AsyncSession.hover": {"tf": 1}, "lightpanda.AsyncSession.search": {"tf": 1}, "lightpanda.AsyncSession.select_option": {"tf": 1}, "lightpanda.AsyncSession.selectOption": {"tf": 1}, "lightpanda.AsyncSession.set_checked": {"tf": 1}, "lightpanda.AsyncSession.setChecked": {"tf": 1}}, "df": 16}}}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}}, "df": 2}}}}}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Session.press": {"tf": 1}, "lightpanda.AsyncSession.press": {"tf": 1}}, "df": 2, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"lightpanda.Session.press": {"tf": 1}, "lightpanda.AsyncSession.press": {"tf": 1}}, "df": 2}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"lightpanda.Session.extract": {"tf": 1.4142135623730951}, "lightpanda.Session.tree": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.tree": {"tf": 1}}, "df": 4}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"lightpanda.Session.node_details": {"tf": 1}, "lightpanda.Session.nodeDetails": {"tf": 1}, "lightpanda.run_script": {"tf": 1}, "lightpanda.AsyncSession.node_details": {"tf": 1}, "lightpanda.AsyncSession.nodeDetails": {"tf": 1}}, "df": 5, "s": {"docs": {"lightpanda.Session.get_env": {"tf": 1}, "lightpanda.Session.getEnv": {"tf": 1}, "lightpanda.AsyncSession.get_env": {"tf": 1}, "lightpanda.AsyncSession.getEnv": {"tf": 1}}, "df": 4}}}}}}}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Session.node_details": {"tf": 1}, "lightpanda.Session.nodeDetails": {"tf": 1}, "lightpanda.AsyncSession.node_details": {"tf": 1}, "lightpanda.AsyncSession.nodeDetails": {"tf": 1}}, "df": 4}}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"lightpanda.Session.scroll": {"tf": 1}, "lightpanda.AsyncSession.scroll": {"tf": 1}}, "df": 2}}}}}, "t": {"docs": {"lightpanda.Session.wait_for_state": {"tf": 1}, "lightpanda.Session.waitForState": {"tf": 1}, "lightpanda.AsyncSession.wait_for_state": {"tf": 1}, "lightpanda.AsyncSession.waitForState": {"tf": 1}}, "df": 4}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"lightpanda.Session.wait_for_state": {"tf": 1}, "lightpanda.Session.waitForState": {"tf": 1}, "lightpanda.AsyncSession.wait_for_state": {"tf": 1}, "lightpanda.AsyncSession.waitForState": {"tf": 1}}, "df": 4}}}}}}}, "a": {"docs": {"lightpanda": {"tf": 1}, "lightpanda.Browser": {"tf": 1.4142135623730951}, "lightpanda.Session.call": {"tf": 1}, "lightpanda.Session.click": {"tf": 1.4142135623730951}, "lightpanda.Session.detect_forms": {"tf": 1}, "lightpanda.Session.detectForms": {"tf": 1}, "lightpanda.Session.evaluate": {"tf": 2}, "lightpanda.Session.extract": {"tf": 2.8284271247461903}, "lightpanda.Session.fill": {"tf": 1.4142135623730951}, "lightpanda.Session.get_env": {"tf": 1}, "lightpanda.Session.getEnv": {"tf": 1}, "lightpanda.Session.get_url": {"tf": 1.7320508075688772}, "lightpanda.Session.getUrl": {"tf": 1.7320508075688772}, "lightpanda.Session.goto": {"tf": 1}, "lightpanda.Session.hover": {"tf": 1.4142135623730951}, "lightpanda.Session.html": {"tf": 1}, "lightpanda.Session.interactive_elements": {"tf": 1}, "lightpanda.Session.interactiveElements": {"tf": 1}, "lightpanda.Session.links": {"tf": 1}, "lightpanda.Session.markdown": {"tf": 1}, "lightpanda.Session.node_details": {"tf": 2}, "lightpanda.Session.nodeDetails": {"tf": 2}, "lightpanda.Session.press": {"tf": 1.7320508075688772}, "lightpanda.Session.scroll": {"tf": 1}, "lightpanda.Session.search": {"tf": 1.7320508075688772}, "lightpanda.Session.select_option": {"tf": 1.7320508075688772}, "lightpanda.Session.selectOption": {"tf": 1.7320508075688772}, "lightpanda.Session.set_checked": {"tf": 1.7320508075688772}, "lightpanda.Session.setChecked": {"tf": 1.7320508075688772}, "lightpanda.Session.structured_data": {"tf": 1}, "lightpanda.Session.structuredData": {"tf": 1}, "lightpanda.Session.wait_for_script": {"tf": 1}, "lightpanda.Session.waitForScript": {"tf": 1}, "lightpanda.Session.wait_for_selector": {"tf": 1}, "lightpanda.Session.waitForSelector": {"tf": 1}, "lightpanda.Session.wait_for_state": {"tf": 1.7320508075688772}, "lightpanda.Session.waitForState": {"tf": 1.7320508075688772}, "lightpanda.run_script": {"tf": 1.4142135623730951}, "lightpanda.AsyncBrowser": {"tf": 1}, "lightpanda.AsyncBrowser.session": {"tf": 1}, "lightpanda.AsyncSession.call": {"tf": 1}, "lightpanda.AsyncSession.click": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.detect_forms": {"tf": 1}, "lightpanda.AsyncSession.detectForms": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 2}, "lightpanda.AsyncSession.extract": {"tf": 2.8284271247461903}, "lightpanda.AsyncSession.fill": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.get_env": {"tf": 1}, "lightpanda.AsyncSession.getEnv": {"tf": 1}, "lightpanda.AsyncSession.get_url": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.getUrl": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.goto": {"tf": 1}, "lightpanda.AsyncSession.hover": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.html": {"tf": 1}, "lightpanda.AsyncSession.interactive_elements": {"tf": 1}, "lightpanda.AsyncSession.interactiveElements": {"tf": 1}, "lightpanda.AsyncSession.links": {"tf": 1}, "lightpanda.AsyncSession.markdown": {"tf": 1}, "lightpanda.AsyncSession.node_details": {"tf": 2}, "lightpanda.AsyncSession.nodeDetails": {"tf": 2}, "lightpanda.AsyncSession.press": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.scroll": {"tf": 1}, "lightpanda.AsyncSession.search": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.select_option": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.selectOption": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.set_checked": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.setChecked": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.structured_data": {"tf": 1}, "lightpanda.AsyncSession.structuredData": {"tf": 1}, "lightpanda.AsyncSession.wait_for_script": {"tf": 1}, "lightpanda.AsyncSession.waitForScript": {"tf": 1}, "lightpanda.AsyncSession.wait_for_selector": {"tf": 1}, "lightpanda.AsyncSession.waitForSelector": {"tf": 1}, "lightpanda.AsyncSession.wait_for_state": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.waitForState": {"tf": 1.7320508075688772}, "lightpanda.run_script_async": {"tf": 1}, "lightpanda.ScriptError": {"tf": 1.4142135623730951}, "lightpanda.ToolError": {"tf": 1}}, "df": 78, "s": {"docs": {"lightpanda": {"tf": 1.4142135623730951}, "lightpanda.Browser.tools": {"tf": 1}, "lightpanda.Session.evaluate": {"tf": 1.7320508075688772}, "lightpanda.Session.extract": {"tf": 1.4142135623730951}, "lightpanda.Session.get_env": {"tf": 1}, "lightpanda.Session.getEnv": {"tf": 1}, "lightpanda.Session.links": {"tf": 1}, "lightpanda.Session.markdown": {"tf": 1}, "lightpanda.Session.node_details": {"tf": 1}, "lightpanda.Session.nodeDetails": {"tf": 1}, "lightpanda.Session.search": {"tf": 1}, "lightpanda.AsyncBrowser": {"tf": 1}, "lightpanda.AsyncBrowser.tools": {"tf": 1}, "lightpanda.AsyncBrowser.session": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.extract": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.get_env": {"tf": 1}, "lightpanda.AsyncSession.getEnv": {"tf": 1}, "lightpanda.AsyncSession.links": {"tf": 1}, "lightpanda.AsyncSession.markdown": {"tf": 1}, "lightpanda.AsyncSession.node_details": {"tf": 1}, "lightpanda.AsyncSession.nodeDetails": {"tf": 1}, "lightpanda.AsyncSession.search": {"tf": 1}}, "df": 23, "y": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {"lightpanda": {"tf": 1}, "lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.AsyncBrowser": {"tf": 1}, "lightpanda.AsyncBrowser.session": {"tf": 1}, "lightpanda.AsyncSession": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}, "lightpanda.run_script_async": {"tf": 1}}, "df": 7, "i": {"docs": {}, "df": 0, "o": {"docs": {"lightpanda": {"tf": 1}, "lightpanda.AsyncBrowser": {"tf": 1}, "lightpanda.AsyncBrowser.wrap": {"tf": 1}}, "df": 3}}, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"lightpanda": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession": {"tf": 1}}, "df": 2}}}}}}}}}}, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"lightpanda.Session.get_url": {"tf": 1}, "lightpanda.Session.getUrl": {"tf": 1}, "lightpanda.AsyncSession.get_url": {"tf": 1}, "lightpanda.AsyncSession.getUrl": {"tf": 1}}, "df": 4}}}, "e": {"docs": {"lightpanda.Session.search": {"tf": 1}, "lightpanda.AsyncSession.search": {"tf": 1}}, "df": 2}}}}}, "p": {"docs": {}, "df": 0, "i": {"docs": {"lightpanda": {"tf": 1}, "lightpanda.Session.search": {"tf": 2}, "lightpanda.AsyncSession.search": {"tf": 2}}, "df": 3}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.Session.wait_for_selector": {"tf": 1}, "lightpanda.Session.waitForSelector": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}, "lightpanda.AsyncSession.wait_for_selector": {"tf": 1}, "lightpanda.AsyncSession.waitForSelector": {"tf": 1}}, "df": 6}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda": {"tf": 1}}, "df": 1}}}}}}}}, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda": {"tf": 1.7320508075688772}, "lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}}, "df": 3}}}}, "f": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"lightpanda.Browser": {"tf": 1}, "lightpanda.Session.click": {"tf": 1}, "lightpanda.Session.search": {"tf": 1}, "lightpanda.Session.wait_for_state": {"tf": 1}, "lightpanda.Session.waitForState": {"tf": 1}, "lightpanda.AsyncSession.click": {"tf": 1}, "lightpanda.AsyncSession.search": {"tf": 1}, "lightpanda.AsyncSession.wait_for_state": {"tf": 1}, "lightpanda.AsyncSession.waitForState": {"tf": 1}}, "df": 9}}}}, "r": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Browser.__init__": {"tf": 1}, "lightpanda.Session.get_env": {"tf": 1}, "lightpanda.Session.getEnv": {"tf": 1}, "lightpanda.AsyncBrowser.__init__": {"tf": 1}, "lightpanda.AsyncSession.get_env": {"tf": 1}, "lightpanda.AsyncSession.getEnv": {"tf": 1}}, "df": 6}}, "e": {"docs": {"lightpanda.Browser.__init__": {"tf": 1}, "lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.Session.extract": {"tf": 1.4142135623730951}, "lightpanda.Session.get_env": {"tf": 1}, "lightpanda.Session.getEnv": {"tf": 1}, "lightpanda.run_script": {"tf": 1}, "lightpanda.AsyncBrowser.__init__": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.evaluate": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.get_env": {"tf": 1}, "lightpanda.AsyncSession.getEnv": {"tf": 1}}, "df": 11}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"lightpanda.Session.extract": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.extract": {"tf": 1.4142135623730951}}, "df": 2, "s": {"docs": {"lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.Session.extract": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}}, "df": 4}}}, "o": {"docs": {}, "df": 0, "w": {"docs": {"lightpanda.Session.press": {"tf": 1}, "lightpanda.AsyncSession.press": {"tf": 1}}, "df": 2, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "n": {"docs": {"lightpanda.Session.press": {"tf": 1}, "lightpanda.AsyncSession.press": {"tf": 1}}, "df": 2}}}}}}}}, "n": {"docs": {"lightpanda.Session.click": {"tf": 1}, "lightpanda.Session.evaluate": {"tf": 1.4142135623730951}, "lightpanda.Session.extract": {"tf": 1}, "lightpanda.Session.fill": {"tf": 1}, "lightpanda.Session.get_env": {"tf": 1}, "lightpanda.Session.getEnv": {"tf": 1}, "lightpanda.Session.hover": {"tf": 1}, "lightpanda.Session.select_option": {"tf": 1}, "lightpanda.Session.selectOption": {"tf": 1}, "lightpanda.Session.wait_for_selector": {"tf": 1}, "lightpanda.Session.waitForSelector": {"tf": 1}, "lightpanda.AsyncBrowser.wrap": {"tf": 1}, "lightpanda.AsyncSession.click": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.extract": {"tf": 1}, "lightpanda.AsyncSession.fill": {"tf": 1}, "lightpanda.AsyncSession.get_env": {"tf": 1}, "lightpanda.AsyncSession.getEnv": {"tf": 1}, "lightpanda.AsyncSession.hover": {"tf": 1}, "lightpanda.AsyncSession.select_option": {"tf": 1}, "lightpanda.AsyncSession.selectOption": {"tf": 1}, "lightpanda.AsyncSession.wait_for_selector": {"tf": 1}, "lightpanda.AsyncSession.waitForSelector": {"tf": 1}}, "df": 23, "d": {"docs": {"lightpanda.Session.click": {"tf": 1}, "lightpanda.Session.console_logs": {"tf": 1}, "lightpanda.Session.consoleLogs": {"tf": 1}, "lightpanda.Session.detect_forms": {"tf": 1.4142135623730951}, "lightpanda.Session.detectForms": {"tf": 1.4142135623730951}, "lightpanda.Session.evaluate": {"tf": 1.7320508075688772}, "lightpanda.Session.extract": {"tf": 1.4142135623730951}, "lightpanda.Session.get_cookies": {"tf": 1}, "lightpanda.Session.getCookies": {"tf": 1}, "lightpanda.Session.goto": {"tf": 1}, "lightpanda.Session.hover": {"tf": 1.4142135623730951}, "lightpanda.Session.links": {"tf": 1}, "lightpanda.Session.press": {"tf": 1}, "lightpanda.Session.scroll": {"tf": 1.4142135623730951}, "lightpanda.Session.search": {"tf": 1.4142135623730951}, "lightpanda.Session.select_option": {"tf": 1}, "lightpanda.Session.selectOption": {"tf": 1}, "lightpanda.Session.set_checked": {"tf": 1}, "lightpanda.Session.setChecked": {"tf": 1}, "lightpanda.Session.wait_for_state": {"tf": 1}, "lightpanda.Session.waitForState": {"tf": 1}, "lightpanda.run_script": {"tf": 1}, "lightpanda.AsyncBrowser": {"tf": 1}, "lightpanda.AsyncBrowser.start": {"tf": 1}, "lightpanda.AsyncBrowser.session": {"tf": 1}, "lightpanda.AsyncSession.click": {"tf": 1}, "lightpanda.AsyncSession.console_logs": {"tf": 1}, "lightpanda.AsyncSession.consoleLogs": {"tf": 1}, "lightpanda.AsyncSession.detect_forms": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.detectForms": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.evaluate": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.extract": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.get_cookies": {"tf": 1}, "lightpanda.AsyncSession.getCookies": {"tf": 1}, "lightpanda.AsyncSession.goto": {"tf": 1}, "lightpanda.AsyncSession.hover": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.links": {"tf": 1}, "lightpanda.AsyncSession.press": {"tf": 1}, "lightpanda.AsyncSession.scroll": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.search": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.select_option": {"tf": 1}, "lightpanda.AsyncSession.selectOption": {"tf": 1}, "lightpanda.AsyncSession.set_checked": {"tf": 1}, "lightpanda.AsyncSession.setChecked": {"tf": 1}, "lightpanda.AsyncSession.wait_for_state": {"tf": 1}, "lightpanda.AsyncSession.waitForState": {"tf": 1}}, "df": 46, "/": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"lightpanda.Session.find_element": {"tf": 1}, "lightpanda.Session.findElement": {"tf": 1}, "lightpanda.AsyncSession.find_element": {"tf": 1}, "lightpanda.AsyncSession.findElement": {"tf": 1}}, "df": 4}}}}, "y": {"docs": {"lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.Session.extract": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.evaluate": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1.4142135623730951}}, "df": 4}, "s": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Session.extract": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}}, "df": 2}}}}}, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"lightpanda.Session.get_cookies": {"tf": 1}, "lightpanda.Session.getCookies": {"tf": 1}, "lightpanda.AsyncSession.get_cookies": {"tf": 1}, "lightpanda.AsyncSession.getCookies": {"tf": 1}}, "df": 4}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"lightpanda.Session.links": {"tf": 1}, "lightpanda.AsyncSession.links": {"tf": 1}}, "df": 2}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {"lightpanda.Session.console_logs": {"tf": 1}, "lightpanda.Session.consoleLogs": {"tf": 1}, "lightpanda.Session.detect_forms": {"tf": 1}, "lightpanda.Session.detectForms": {"tf": 1}, "lightpanda.Session.extract": {"tf": 1}, "lightpanda.Session.get_cookies": {"tf": 1}, "lightpanda.Session.getCookies": {"tf": 1}, "lightpanda.Session.links": {"tf": 1}, "lightpanda.AsyncSession.console_logs": {"tf": 1}, "lightpanda.AsyncSession.consoleLogs": {"tf": 1}, "lightpanda.AsyncSession.detect_forms": {"tf": 1}, "lightpanda.AsyncSession.detectForms": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}, "lightpanda.AsyncSession.get_cookies": {"tf": 1}, "lightpanda.AsyncSession.getCookies": {"tf": 1}, "lightpanda.AsyncSession.links": {"tf": 1}}, "df": 16}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "y": {"docs": {"lightpanda.Session.get_url": {"tf": 1}, "lightpanda.Session.getUrl": {"tf": 1}, "lightpanda.AsyncBrowser.wrap": {"tf": 1}, "lightpanda.AsyncSession.get_url": {"tf": 1}, "lightpanda.AsyncSession.getUrl": {"tf": 1}}, "df": 5}}}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {"lightpanda.Session.get_url": {"tf": 1}, "lightpanda.Session.getUrl": {"tf": 1}, "lightpanda.AsyncSession.get_url": {"tf": 1}, "lightpanda.AsyncSession.getUrl": {"tf": 1}}, "df": 4}}}, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}}, "df": 2}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"lightpanda.Session.wait_for_state": {"tf": 1}, "lightpanda.Session.waitForState": {"tf": 1}, "lightpanda.AsyncSession.wait_for_state": {"tf": 1}, "lightpanda.AsyncSession.waitForState": {"tf": 1}}, "df": 4}}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.Session.extract": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}}, "df": 2}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.find_element": {"tf": 1}, "lightpanda.Session.findElement": {"tf": 1}, "lightpanda.AsyncSession.find_element": {"tf": 1}, "lightpanda.AsyncSession.findElement": {"tf": 1}}, "df": 4}}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.AsyncBrowser.__init__": {"tf": 1}}, "df": 1}}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}}, "df": 2, "/": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Session.search": {"tf": 1}, "lightpanda.AsyncSession.search": {"tf": 1}}, "df": 2}}}}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {"lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}}, "df": 2, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"lightpanda.AsyncBrowser": {"tf": 1}}, "df": 1}}}}}}}}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"lightpanda.Session.get_cookies": {"tf": 1}, "lightpanda.Session.getCookies": {"tf": 1}, "lightpanda.AsyncSession.get_cookies": {"tf": 1}, "lightpanda.AsyncSession.getCookies": {"tf": 1}}, "df": 4}}}}}}}}}}}}}, "t": {"docs": {"lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.Session.wait_for_state": {"tf": 1}, "lightpanda.Session.waitForState": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}, "lightpanda.AsyncSession.wait_for_state": {"tf": 1}, "lightpanda.AsyncSession.waitForState": {"tf": 1}}, "df": 6, "t": {"docs": {}, "df": 0, "r": {"docs": {"lightpanda.Session.extract": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.extract": {"tf": 1.7320508075688772}}, "df": 2, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.extract": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.extract": {"tf": 1.4142135623730951}}, "df": 2, "s": {"docs": {"lightpanda.Session.html": {"tf": 1}, "lightpanda.AsyncSession.html": {"tf": 1}}, "df": 2}}}}}}}}, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"lightpanda.Session.extract": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}}, "df": 2}}}}}, "b": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.extract": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}}, "df": 2}}}}}}, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.extract": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}}, "df": 2}}}}, "d": {"docs": {}, "df": 0, "d": {"docs": {"lightpanda.Session.extract": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "d": {"docs": {"lightpanda.run_script": {"tf": 1}}, "df": 1}}}, "s": {"docs": {"lightpanda.Session.wait_for_state": {"tf": 1}, "lightpanda.Session.waitForState": {"tf": 1}, "lightpanda.AsyncSession.wait_for_state": {"tf": 1}, "lightpanda.AsyncSession.waitForState": {"tf": 1}}, "df": 4}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.AsyncBrowser.wrap": {"tf": 1}}, "df": 1}}}}}, "h": {"1": {"docs": {"lightpanda": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.call": {"tf": 1}, "lightpanda.AsyncSession.call": {"tf": 1}}, "df": 2}}}, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {"lightpanda.Browser.__init__": {"tf": 1}}, "df": 1, "s": {"docs": {}, "df": 0, ":": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "a": {"docs": {"lightpanda.Session.extract": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}}, "df": 2}, "b": {"docs": {"lightpanda.Session.extract": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}}, "df": 2}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "l": {"docs": {"lightpanda.Session.html": {"tf": 1}, "lightpanda.Session.search": {"tf": 1}, "lightpanda.AsyncSession.html": {"tf": 1}, "lightpanda.AsyncSession.search": {"tf": 1}}, "df": 4}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}}, "df": 2}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.get_url": {"tf": 1}, "lightpanda.Session.getUrl": {"tf": 1}, "lightpanda.AsyncSession.get_url": {"tf": 1}, "lightpanda.AsyncSession.getUrl": {"tf": 1}}, "df": 4}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {"lightpanda.Session.extract": {"tf": 1}, "lightpanda.Session.links": {"tf": 1}, "lightpanda.Session.node_details": {"tf": 1}, "lightpanda.Session.nodeDetails": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}, "lightpanda.AsyncSession.links": {"tf": 1}, "lightpanda.AsyncSession.node_details": {"tf": 1}, "lightpanda.AsyncSession.nodeDetails": {"tf": 1}}, "df": 8, "/": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {"lightpanda.Session.extract": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}}, "df": 2}}}}}}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.Session.get_cookies": {"tf": 1.7320508075688772}, "lightpanda.Session.getCookies": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.get_cookies": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.getCookies": {"tf": 1.7320508075688772}}, "df": 4}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"lightpanda.Session.hover": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.hover": {"tf": 1.4142135623730951}}, "df": 2}}}}}, "b": {"docs": {"lightpanda": {"tf": 2}, "lightpanda.Session.extract": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}}, "df": 3, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"lightpanda": {"tf": 1.7320508075688772}, "lightpanda.Browser": {"tf": 1.4142135623730951}, "lightpanda.Browser.__init__": {"tf": 1}, "lightpanda.Browser.tools": {"tf": 1}, "lightpanda.Session": {"tf": 1}, "lightpanda.Session.call": {"tf": 1}, "lightpanda.Session.get_cookies": {"tf": 1}, "lightpanda.Session.getCookies": {"tf": 1}, "lightpanda.Session.get_url": {"tf": 1}, "lightpanda.Session.getUrl": {"tf": 1}, "lightpanda.Session.search": {"tf": 1.7320508075688772}, "lightpanda.AsyncBrowser": {"tf": 1.4142135623730951}, "lightpanda.AsyncBrowser.__init__": {"tf": 1.4142135623730951}, "lightpanda.AsyncBrowser.wrap": {"tf": 1.4142135623730951}, "lightpanda.AsyncBrowser.start": {"tf": 1}, "lightpanda.AsyncBrowser.tools": {"tf": 1}, "lightpanda.AsyncBrowser.session": {"tf": 1}, "lightpanda.AsyncSession.call": {"tf": 1}, "lightpanda.AsyncSession.get_cookies": {"tf": 1}, "lightpanda.AsyncSession.getCookies": {"tf": 1}, "lightpanda.AsyncSession.get_url": {"tf": 1}, "lightpanda.AsyncSession.getUrl": {"tf": 1}, "lightpanda.AsyncSession.search": {"tf": 1.7320508075688772}, "lightpanda.ToolError": {"tf": 1}}, "df": 24}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"lightpanda.Session": {"tf": 1}, "lightpanda.AsyncSession": {"tf": 1}}, "df": 2}}}}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}}, "df": 2}}}}, "a": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.search": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.search": {"tf": 1.4142135623730951}}, "df": 2}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"lightpanda.Browser": {"tf": 1}}, "df": 1}}}}}, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"lightpanda.Session.console_logs": {"tf": 1}, "lightpanda.Session.consoleLogs": {"tf": 1}, "lightpanda.AsyncSession.console_logs": {"tf": 1}, "lightpanda.AsyncSession.consoleLogs": {"tf": 1}}, "df": 4, "e": {"docs": {}, "df": 0, "d": {"docs": {"lightpanda.Session.console_logs": {"tf": 1}, "lightpanda.Session.consoleLogs": {"tf": 1}, "lightpanda.AsyncSession.console_logs": {"tf": 1}, "lightpanda.AsyncSession.consoleLogs": {"tf": 1}}, "df": 4}}}}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}}, "df": 2}}}}}}, "t": {"docs": {"lightpanda.Session.extract": {"tf": 1}, "lightpanda.AsyncBrowser.wrap": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}}, "df": 3, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"lightpanda.Session.press": {"tf": 1}, "lightpanda.Session.set_checked": {"tf": 1}, "lightpanda.Session.setChecked": {"tf": 1}, "lightpanda.AsyncSession.press": {"tf": 1}, "lightpanda.AsyncSession.set_checked": {"tf": 1}, "lightpanda.AsyncSession.setChecked": {"tf": 1}}, "df": 6}}}}, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"lightpanda.Session.search": {"tf": 1}, "lightpanda.AsyncSession.search": {"tf": 1}}, "df": 2}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"lightpanda.Browser": {"tf": 1}, "lightpanda.AsyncBrowser.__init__": {"tf": 1}}, "df": 2}}}}}, "y": {"docs": {"lightpanda.Browser.tools": {"tf": 1}, "lightpanda.Session.call": {"tf": 1}, "lightpanda.Session.find_element": {"tf": 1}, "lightpanda.Session.findElement": {"tf": 1}, "lightpanda.Session.get_env": {"tf": 1}, "lightpanda.Session.getEnv": {"tf": 1}, "lightpanda.Session.node_details": {"tf": 1}, "lightpanda.Session.nodeDetails": {"tf": 1}, "lightpanda.Session.select_option": {"tf": 1}, "lightpanda.Session.selectOption": {"tf": 1}, "lightpanda.Session.wait_for_state": {"tf": 1}, "lightpanda.Session.waitForState": {"tf": 1}, "lightpanda.AsyncBrowser": {"tf": 1.4142135623730951}, "lightpanda.AsyncBrowser.tools": {"tf": 1}, "lightpanda.AsyncSession.call": {"tf": 1}, "lightpanda.AsyncSession.find_element": {"tf": 1}, "lightpanda.AsyncSession.findElement": {"tf": 1}, "lightpanda.AsyncSession.get_env": {"tf": 1}, "lightpanda.AsyncSession.getEnv": {"tf": 1}, "lightpanda.AsyncSession.node_details": {"tf": 1}, "lightpanda.AsyncSession.nodeDetails": {"tf": 1}, "lightpanda.AsyncSession.select_option": {"tf": 1}, "lightpanda.AsyncSession.selectOption": {"tf": 1}, "lightpanda.AsyncSession.wait_for_state": {"tf": 1}, "lightpanda.AsyncSession.waitForState": {"tf": 1}}, "df": 25}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"lightpanda.Session.search": {"tf": 1}, "lightpanda.AsyncSession.search": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"lightpanda.Session.find_element": {"tf": 1}, "lightpanda.Session.findElement": {"tf": 1}, "lightpanda.Session.wait_for_selector": {"tf": 1}, "lightpanda.Session.waitForSelector": {"tf": 1}, "lightpanda.AsyncSession.find_element": {"tf": 1}, "lightpanda.AsyncSession.findElement": {"tf": 1}, "lightpanda.AsyncSession.wait_for_selector": {"tf": 1}, "lightpanda.AsyncSession.waitForSelector": {"tf": 1}}, "df": 8, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"lightpanda.Session.click": {"tf": 1}, "lightpanda.Session.fill": {"tf": 1}, "lightpanda.Session.hover": {"tf": 1}, "lightpanda.Session.html": {"tf": 1}, "lightpanda.Session.links": {"tf": 1}, "lightpanda.Session.markdown": {"tf": 1}, "lightpanda.Session.node_details": {"tf": 1.4142135623730951}, "lightpanda.Session.nodeDetails": {"tf": 1.4142135623730951}, "lightpanda.Session.select_option": {"tf": 1}, "lightpanda.Session.selectOption": {"tf": 1}, "lightpanda.Session.set_checked": {"tf": 1}, "lightpanda.Session.setChecked": {"tf": 1}, "lightpanda.Session.tree": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.click": {"tf": 1}, "lightpanda.AsyncSession.fill": {"tf": 1}, "lightpanda.AsyncSession.hover": {"tf": 1}, "lightpanda.AsyncSession.html": {"tf": 1}, "lightpanda.AsyncSession.links": {"tf": 1}, "lightpanda.AsyncSession.markdown": {"tf": 1}, "lightpanda.AsyncSession.node_details": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.nodeDetails": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.select_option": {"tf": 1}, "lightpanda.AsyncSession.selectOption": {"tf": 1}, "lightpanda.AsyncSession.set_checked": {"tf": 1}, "lightpanda.AsyncSession.setChecked": {"tf": 1}, "lightpanda.AsyncSession.tree": {"tf": 1.4142135623730951}}, "df": 26}}}}}}}}}, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.press": {"tf": 1}, "lightpanda.AsyncSession.press": {"tf": 1}}, "df": 2}}}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"lightpanda.Session.wait_for_state": {"tf": 1}, "lightpanda.Session.waitForState": {"tf": 1}, "lightpanda.AsyncSession.wait_for_state": {"tf": 1}, "lightpanda.AsyncSession.waitForState": {"tf": 1}}, "df": 4}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}}, "df": 2}}, "s": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.get_env": {"tf": 1}, "lightpanda.Session.getEnv": {"tf": 1}, "lightpanda.AsyncSession.get_env": {"tf": 1}, "lightpanda.AsyncSession.getEnv": {"tf": 1}, "lightpanda.LightpandaError": {"tf": 1}}, "df": 5}}, "d": {"docs": {"lightpanda.ToolError": {"tf": 1}}, "df": 1}}, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "y": {"docs": {"lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}}, "df": 2}}}, "e": {"docs": {"lightpanda.Session.goto": {"tf": 1}, "lightpanda.Session.wait_for_state": {"tf": 1.4142135623730951}, "lightpanda.Session.waitForState": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.goto": {"tf": 1}, "lightpanda.AsyncSession.wait_for_state": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.waitForState": {"tf": 1.4142135623730951}}, "df": 6, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.get_url": {"tf": 1}, "lightpanda.Session.getUrl": {"tf": 1}, "lightpanda.AsyncSession.get_url": {"tf": 1}, "lightpanda.AsyncSession.getUrl": {"tf": 1}}, "df": 4}}}}, "y": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"lightpanda.Session.wait_for_script": {"tf": 1}, "lightpanda.Session.waitForScript": {"tf": 1}, "lightpanda.AsyncSession.wait_for_script": {"tf": 1}, "lightpanda.AsyncSession.waitForScript": {"tf": 1}}, "df": 4}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"lightpanda.AsyncBrowser.session": {"tf": 1}}, "df": 1, "s": {"docs": {"lightpanda.Session.search": {"tf": 1}, "lightpanda.AsyncSession.search": {"tf": 1}}, "df": 2}}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda": {"tf": 1.4142135623730951}}, "df": 1}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.Session.press": {"tf": 1}, "lightpanda.AsyncSession.press": {"tf": 1}}, "df": 2}}}}}}}, "s": {"docs": {"lightpanda": {"tf": 1}, "lightpanda.Session.detect_forms": {"tf": 1}, "lightpanda.Session.detectForms": {"tf": 1}, "lightpanda.Session.evaluate": {"tf": 1.4142135623730951}, "lightpanda.Session.extract": {"tf": 2.23606797749979}, "lightpanda.Session.get_url": {"tf": 1}, "lightpanda.Session.getUrl": {"tf": 1}, "lightpanda.Session.interactive_elements": {"tf": 1}, "lightpanda.Session.interactiveElements": {"tf": 1}, "lightpanda.Session.links": {"tf": 1}, "lightpanda.Session.markdown": {"tf": 1}, "lightpanda.Session.press": {"tf": 1}, "lightpanda.Session.search": {"tf": 1.4142135623730951}, "lightpanda.Session.structured_data": {"tf": 1}, "lightpanda.Session.structuredData": {"tf": 1}, "lightpanda.Session.wait_for_state": {"tf": 1}, "lightpanda.Session.waitForState": {"tf": 1}, "lightpanda.AsyncBrowser": {"tf": 1}, "lightpanda.AsyncSession.detect_forms": {"tf": 1}, "lightpanda.AsyncSession.detectForms": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.extract": {"tf": 2.23606797749979}, "lightpanda.AsyncSession.get_url": {"tf": 1}, "lightpanda.AsyncSession.getUrl": {"tf": 1}, "lightpanda.AsyncSession.interactive_elements": {"tf": 1}, "lightpanda.AsyncSession.interactiveElements": {"tf": 1}, "lightpanda.AsyncSession.links": {"tf": 1}, "lightpanda.AsyncSession.markdown": {"tf": 1}, "lightpanda.AsyncSession.press": {"tf": 1}, "lightpanda.AsyncSession.search": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.structured_data": {"tf": 1}, "lightpanda.AsyncSession.structuredData": {"tf": 1}, "lightpanda.AsyncSession.wait_for_state": {"tf": 1}, "lightpanda.AsyncSession.waitForState": {"tf": 1}}, "df": 34, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"lightpanda.Session": {"tf": 1}, "lightpanda.AsyncSession": {"tf": 1}}, "df": 2}}}}}}}, "n": {"docs": {"lightpanda.Browser": {"tf": 1}, "lightpanda.Session.evaluate": {"tf": 1.4142135623730951}, "lightpanda.Session.extract": {"tf": 1}, "lightpanda.Session.get_cookies": {"tf": 1}, "lightpanda.Session.getCookies": {"tf": 1}, "lightpanda.Session.get_env": {"tf": 1.4142135623730951}, "lightpanda.Session.getEnv": {"tf": 1.4142135623730951}, "lightpanda.Session.get_url": {"tf": 1}, "lightpanda.Session.getUrl": {"tf": 1}, "lightpanda.Session.goto": {"tf": 1}, "lightpanda.Session.links": {"tf": 1}, "lightpanda.Session.select_option": {"tf": 1}, "lightpanda.Session.selectOption": {"tf": 1}, "lightpanda.Session.wait_for_selector": {"tf": 1}, "lightpanda.Session.waitForSelector": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.extract": {"tf": 1}, "lightpanda.AsyncSession.get_cookies": {"tf": 1}, "lightpanda.AsyncSession.getCookies": {"tf": 1}, "lightpanda.AsyncSession.get_env": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.getEnv": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.get_url": {"tf": 1}, "lightpanda.AsyncSession.getUrl": {"tf": 1}, "lightpanda.AsyncSession.goto": {"tf": 1}, "lightpanda.AsyncSession.links": {"tf": 1}, "lightpanda.AsyncSession.select_option": {"tf": 1}, "lightpanda.AsyncSession.selectOption": {"tf": 1}, "lightpanda.AsyncSession.wait_for_selector": {"tf": 1}, "lightpanda.AsyncSession.waitForSelector": {"tf": 1}, "lightpanda.run_script_async": {"tf": 1}}, "df": 30, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Browser": {"tf": 1}, "lightpanda.AsyncBrowser": {"tf": 1}}, "df": 2}}}}}}}}}, "v": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.call": {"tf": 1}, "lightpanda.AsyncSession.call": {"tf": 1}}, "df": 2}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"lightpanda.ProtocolError": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.Session.search": {"tf": 1}, "lightpanda.AsyncSession.search": {"tf": 1}}, "df": 2, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.click": {"tf": 1}, "lightpanda.Session.find_element": {"tf": 1}, "lightpanda.Session.findElement": {"tf": 1}, "lightpanda.Session.interactive_elements": {"tf": 1}, "lightpanda.Session.interactiveElements": {"tf": 1}, "lightpanda.AsyncSession.click": {"tf": 1}, "lightpanda.AsyncSession.find_element": {"tf": 1}, "lightpanda.AsyncSession.findElement": {"tf": 1}, "lightpanda.AsyncSession.interactive_elements": {"tf": 1}, "lightpanda.AsyncSession.interactiveElements": {"tf": 1}}, "df": 10}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"lightpanda.Session.node_details": {"tf": 1}, "lightpanda.Session.nodeDetails": {"tf": 1}, "lightpanda.AsyncSession.node_details": {"tf": 1}, "lightpanda.AsyncSession.nodeDetails": {"tf": 1}}, "df": 4}}}}}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}}, "df": 2}}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"lightpanda.ProtocolError": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {"lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.Session.fill": {"tf": 1}, "lightpanda.Session.node_details": {"tf": 1}, "lightpanda.Session.nodeDetails": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}, "lightpanda.AsyncSession.fill": {"tf": 1}, "lightpanda.AsyncSession.node_details": {"tf": 1}, "lightpanda.AsyncSession.nodeDetails": {"tf": 1}}, "df": 8}}, "c": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"lightpanda.Session.detect_forms": {"tf": 1}, "lightpanda.Session.detectForms": {"tf": 1}, "lightpanda.AsyncSession.detect_forms": {"tf": 1}, "lightpanda.AsyncSession.detectForms": {"tf": 1}}, "df": 4}}}}}}, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.wait_for_state": {"tf": 1}, "lightpanda.Session.waitForState": {"tf": 1}, "lightpanda.AsyncSession.wait_for_state": {"tf": 1}, "lightpanda.AsyncSession.waitForState": {"tf": 1}}, "df": 4}}}}}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.extract": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}}, "df": 2}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.Session.extract": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}}, "df": 2}}}}}, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.Session.fill": {"tf": 1}, "lightpanda.Session.node_details": {"tf": 1}, "lightpanda.Session.nodeDetails": {"tf": 1}, "lightpanda.Session.press": {"tf": 1}, "lightpanda.Session.select_option": {"tf": 1}, "lightpanda.Session.selectOption": {"tf": 1}, "lightpanda.Session.set_checked": {"tf": 1}, "lightpanda.Session.setChecked": {"tf": 1}, "lightpanda.AsyncSession.fill": {"tf": 1}, "lightpanda.AsyncSession.node_details": {"tf": 1}, "lightpanda.AsyncSession.nodeDetails": {"tf": 1}, "lightpanda.AsyncSession.press": {"tf": 1}, "lightpanda.AsyncSession.select_option": {"tf": 1}, "lightpanda.AsyncSession.selectOption": {"tf": 1}, "lightpanda.AsyncSession.set_checked": {"tf": 1}, "lightpanda.AsyncSession.setChecked": {"tf": 1}}, "df": 16}}}, "f": {"docs": {}, "df": 0, "o": {"docs": {"lightpanda.Session.goto": {"tf": 1}, "lightpanda.AsyncSession.goto": {"tf": 1}}, "df": 2}}, "g": {"docs": {"lightpanda.Session.search": {"tf": 1}, "lightpanda.AsyncSession.search": {"tf": 1}}, "df": 2}}, "f": {"docs": {"lightpanda.Session.detect_forms": {"tf": 1}, "lightpanda.Session.detectForms": {"tf": 1}, "lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.Session.extract": {"tf": 1.4142135623730951}, "lightpanda.Session.interactive_elements": {"tf": 1}, "lightpanda.Session.interactiveElements": {"tf": 1}, "lightpanda.Session.links": {"tf": 1}, "lightpanda.Session.structured_data": {"tf": 1}, "lightpanda.Session.structuredData": {"tf": 1}, "lightpanda.AsyncSession.detect_forms": {"tf": 1}, "lightpanda.AsyncSession.detectForms": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.interactive_elements": {"tf": 1}, "lightpanda.AsyncSession.interactiveElements": {"tf": 1}, "lightpanda.AsyncSession.links": {"tf": 1}, "lightpanda.AsyncSession.structured_data": {"tf": 1}, "lightpanda.AsyncSession.structuredData": {"tf": 1}}, "df": 18}, "t": {"docs": {"lightpanda.Session.detect_forms": {"tf": 1}, "lightpanda.Session.detectForms": {"tf": 1}, "lightpanda.Session.evaluate": {"tf": 1.7320508075688772}, "lightpanda.Session.extract": {"tf": 1.4142135623730951}, "lightpanda.Session.goto": {"tf": 1}, "lightpanda.Session.interactive_elements": {"tf": 1}, "lightpanda.Session.interactiveElements": {"tf": 1}, "lightpanda.Session.links": {"tf": 1}, "lightpanda.Session.node_details": {"tf": 1}, "lightpanda.Session.nodeDetails": {"tf": 1}, "lightpanda.Session.structured_data": {"tf": 1}, "lightpanda.Session.structuredData": {"tf": 1}, "lightpanda.AsyncSession.detect_forms": {"tf": 1}, "lightpanda.AsyncSession.detectForms": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.extract": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.goto": {"tf": 1}, "lightpanda.AsyncSession.interactive_elements": {"tf": 1}, "lightpanda.AsyncSession.interactiveElements": {"tf": 1}, "lightpanda.AsyncSession.links": {"tf": 1}, "lightpanda.AsyncSession.node_details": {"tf": 1}, "lightpanda.AsyncSession.nodeDetails": {"tf": 1}, "lightpanda.AsyncSession.structured_data": {"tf": 1}, "lightpanda.AsyncSession.structuredData": {"tf": 1}}, "df": 24, "s": {"docs": {"lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.Session.search": {"tf": 1}, "lightpanda.Session.select_option": {"tf": 1}, "lightpanda.Session.selectOption": {"tf": 1}, "lightpanda.run_script": {"tf": 1}, "lightpanda.AsyncBrowser.start": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}, "lightpanda.AsyncSession.search": {"tf": 1}, "lightpanda.AsyncSession.select_option": {"tf": 1}, "lightpanda.AsyncSession.selectOption": {"tf": 1}}, "df": 10}, "e": {"docs": {}, "df": 0, "m": {"docs": {"lightpanda.Session.extract": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}}, "df": 2, "s": {"docs": {"lightpanda.Session.extract": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.extract": {"tf": 1.4142135623730951}}, "df": 2}}}}, "d": {"docs": {"lightpanda.Session.node_details": {"tf": 1}, "lightpanda.Session.nodeDetails": {"tf": 1}, "lightpanda.Session.wait_for_selector": {"tf": 1}, "lightpanda.Session.waitForSelector": {"tf": 1}, "lightpanda.AsyncSession.node_details": {"tf": 1}, "lightpanda.AsyncSession.nodeDetails": {"tf": 1}, "lightpanda.AsyncSession.wait_for_selector": {"tf": 1}, "lightpanda.AsyncSession.waitForSelector": {"tf": 1}}, "df": 8, "s": {"docs": {"lightpanda.Session.find_element": {"tf": 1}, "lightpanda.Session.findElement": {"tf": 1}, "lightpanda.AsyncSession.find_element": {"tf": 1}, "lightpanda.AsyncSession.findElement": {"tf": 1}}, "df": 4}, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.AsyncBrowser.start": {"tf": 1}}, "df": 1}}}}}}}}}}, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"lightpanda": {"tf": 1.4142135623730951}, "lightpanda.Session.extract": {"tf": 1.4142135623730951}, "lightpanda.Session.find_element": {"tf": 1}, "lightpanda.Session.findElement": {"tf": 1}, "lightpanda.Session.get_env": {"tf": 1}, "lightpanda.Session.getEnv": {"tf": 1}, "lightpanda.Session.html": {"tf": 1}, "lightpanda.Session.links": {"tf": 1}, "lightpanda.Session.markdown": {"tf": 1}, "lightpanda.Session.search": {"tf": 1.4142135623730951}, "lightpanda.Session.wait_for_state": {"tf": 1.4142135623730951}, "lightpanda.Session.waitForState": {"tf": 1.4142135623730951}, "lightpanda.AsyncBrowser": {"tf": 1}, "lightpanda.AsyncBrowser.session": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.find_element": {"tf": 1}, "lightpanda.AsyncSession.findElement": {"tf": 1}, "lightpanda.AsyncSession.get_env": {"tf": 1}, "lightpanda.AsyncSession.getEnv": {"tf": 1}, "lightpanda.AsyncSession.html": {"tf": 1}, "lightpanda.AsyncSession.links": {"tf": 1}, "lightpanda.AsyncSession.markdown": {"tf": 1}, "lightpanda.AsyncSession.search": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.wait_for_state": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.waitForState": {"tf": 1.4142135623730951}, "lightpanda.ScriptError": {"tf": 1}}, "df": 26, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.Session.find_element": {"tf": 1}, "lightpanda.Session.findElement": {"tf": 1}, "lightpanda.Session.get_env": {"tf": 1}, "lightpanda.Session.getEnv": {"tf": 1}, "lightpanda.AsyncSession.find_element": {"tf": 1}, "lightpanda.AsyncSession.findElement": {"tf": 1}, "lightpanda.AsyncSession.get_env": {"tf": 1}, "lightpanda.AsyncSession.getEnv": {"tf": 1}}, "df": 8}}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"lightpanda.Session.wait_for_script": {"tf": 1}, "lightpanda.Session.waitForScript": {"tf": 1}, "lightpanda.AsyncSession.wait_for_script": {"tf": 1}, "lightpanda.AsyncSession.waitForScript": {"tf": 1}}, "df": 4}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}}, "df": 2}}}}}, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Session.extract": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}}, "df": 2}}, "d": {"docs": {"lightpanda.AsyncBrowser.wrap": {"tf": 1}}, "df": 1}}}}}}, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.get_cookies": {"tf": 1}, "lightpanda.Session.getCookies": {"tf": 1}, "lightpanda.AsyncSession.get_cookies": {"tf": 1}, "lightpanda.AsyncSession.getCookies": {"tf": 1}}, "df": 4}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {"lightpanda.Session.get_url": {"tf": 1}, "lightpanda.Session.getUrl": {"tf": 1}, "lightpanda.Session.html": {"tf": 1}, "lightpanda.Session.search": {"tf": 1}, "lightpanda.Session.wait_for_state": {"tf": 1}, "lightpanda.Session.waitForState": {"tf": 1}, "lightpanda.AsyncSession.get_url": {"tf": 1}, "lightpanda.AsyncSession.getUrl": {"tf": 1}, "lightpanda.AsyncSession.html": {"tf": 1}, "lightpanda.AsyncSession.search": {"tf": 1}, "lightpanda.AsyncSession.wait_for_state": {"tf": 1}, "lightpanda.AsyncSession.waitForState": {"tf": 1}}, "df": 12}}, "a": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.Session.wait_for_script": {"tf": 1}, "lightpanda.Session.waitForScript": {"tf": 1}, "lightpanda.AsyncSession.wait_for_script": {"tf": 1}, "lightpanda.AsyncSession.waitForScript": {"tf": 1}}, "df": 4}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"lightpanda.Session.get_env": {"tf": 1}, "lightpanda.Session.getEnv": {"tf": 1}, "lightpanda.AsyncSession.get_env": {"tf": 1}, "lightpanda.AsyncSession.getEnv": {"tf": 1}}, "df": 4}}}, "r": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"lightpanda.AsyncBrowser.__init__": {"tf": 1}, "lightpanda.run_script_async": {"tf": 1}}, "df": 2}}}}}, "a": {"docs": {}, "df": 0, "y": {"docs": {"lightpanda.Session.node_details": {"tf": 1}, "lightpanda.Session.nodeDetails": {"tf": 1}, "lightpanda.AsyncSession.node_details": {"tf": 1}, "lightpanda.AsyncSession.nodeDetails": {"tf": 1}}, "df": 4}, "i": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.Session.wait_for_script": {"tf": 1}, "lightpanda.Session.waitForScript": {"tf": 1}, "lightpanda.Session.wait_for_selector": {"tf": 1}, "lightpanda.Session.waitForSelector": {"tf": 1}, "lightpanda.Session.wait_for_state": {"tf": 1}, "lightpanda.Session.waitForState": {"tf": 1}, "lightpanda.AsyncSession.wait_for_script": {"tf": 1}, "lightpanda.AsyncSession.waitForScript": {"tf": 1}, "lightpanda.AsyncSession.wait_for_selector": {"tf": 1}, "lightpanda.AsyncSession.waitForSelector": {"tf": 1}, "lightpanda.AsyncSession.wait_for_state": {"tf": 1}, "lightpanda.AsyncSession.waitForState": {"tf": 1}}, "df": 12}}}, "e": {"docs": {}, "df": 0, "b": {"docs": {"lightpanda.Session.search": {"tf": 1}, "lightpanda.AsyncSession.search": {"tf": 1}}, "df": 2}}}, "n": {"docs": {"lightpanda.Session.extract": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "w": {"docs": {"lightpanda": {"tf": 1.4142135623730951}, "lightpanda.Session": {"tf": 1}, "lightpanda.AsyncBrowser": {"tf": 1}, "lightpanda.AsyncBrowser.session": {"tf": 1}, "lightpanda.AsyncSession": {"tf": 1}}, "df": 5}, "e": {"docs": {}, "df": 0, "d": {"docs": {"lightpanda.Session.html": {"tf": 1}, "lightpanda.AsyncSession.html": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "d": {"docs": {"lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}}, "df": 2}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.Session.extract": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}}, "df": 2}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"lightpanda.Session.get_env": {"tf": 1}, "lightpanda.Session.getEnv": {"tf": 1}, "lightpanda.AsyncSession.get_env": {"tf": 1}, "lightpanda.AsyncSession.getEnv": {"tf": 1}}, "df": 4}}}, "t": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.wait_for_state": {"tf": 1.4142135623730951}, "lightpanda.Session.waitForState": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.wait_for_state": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.waitForState": {"tf": 1.4142135623730951}}, "df": 4}}}}}}}}}}, "o": {"docs": {"lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.Session.extract": {"tf": 1.4142135623730951}, "lightpanda.Session.get_env": {"tf": 1}, "lightpanda.Session.getEnv": {"tf": 1}, "lightpanda.Session.wait_for_state": {"tf": 1}, "lightpanda.Session.waitForState": {"tf": 1}, "lightpanda.run_script": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.get_env": {"tf": 1}, "lightpanda.AsyncSession.getEnv": {"tf": 1}, "lightpanda.AsyncSession.wait_for_state": {"tf": 1}, "lightpanda.AsyncSession.waitForState": {"tf": 1}}, "df": 13, "t": {"docs": {"lightpanda.Browser": {"tf": 1}, "lightpanda.Session": {"tf": 1}, "lightpanda.Session.extract": {"tf": 1.4142135623730951}, "lightpanda.Session.get_env": {"tf": 1}, "lightpanda.Session.getEnv": {"tf": 1}, "lightpanda.Session.get_url": {"tf": 1}, "lightpanda.Session.getUrl": {"tf": 1}, "lightpanda.Session.search": {"tf": 1}, "lightpanda.AsyncBrowser": {"tf": 1}, "lightpanda.AsyncSession": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.get_env": {"tf": 1}, "lightpanda.AsyncSession.getEnv": {"tf": 1}, "lightpanda.AsyncSession.get_url": {"tf": 1}, "lightpanda.AsyncSession.getUrl": {"tf": 1}, "lightpanda.AsyncSession.search": {"tf": 1}}, "df": 16, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"lightpanda.Session.get_url": {"tf": 1}, "lightpanda.Session.getUrl": {"tf": 1}, "lightpanda.AsyncSession.get_url": {"tf": 1}, "lightpanda.AsyncSession.getUrl": {"tf": 1}}, "df": 4}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.find_element": {"tf": 1}, "lightpanda.Session.findElement": {"tf": 1}, "lightpanda.Session.html": {"tf": 1}, "lightpanda.Session.node_details": {"tf": 1.4142135623730951}, "lightpanda.Session.nodeDetails": {"tf": 1.4142135623730951}, "lightpanda.Session.tree": {"tf": 1}, "lightpanda.Session.wait_for_selector": {"tf": 1}, "lightpanda.Session.waitForSelector": {"tf": 1}, "lightpanda.AsyncSession.find_element": {"tf": 1}, "lightpanda.AsyncSession.findElement": {"tf": 1}, "lightpanda.AsyncSession.html": {"tf": 1}, "lightpanda.AsyncSession.node_details": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.nodeDetails": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.tree": {"tf": 1}, "lightpanda.AsyncSession.wait_for_selector": {"tf": 1}, "lightpanda.AsyncSession.waitForSelector": {"tf": 1}}, "df": 16}}, "n": {"docs": {"lightpanda.Session.get_env": {"tf": 1}, "lightpanda.Session.getEnv": {"tf": 1}, "lightpanda.run_script": {"tf": 1}, "lightpanda.AsyncSession.get_env": {"tf": 1}, "lightpanda.AsyncSession.getEnv": {"tf": 1}}, "df": 5}, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"lightpanda.Session.press": {"tf": 1}, "lightpanda.AsyncSession.press": {"tf": 1}}, "df": 2}}}}}}}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Browser.tools": {"tf": 1}, "lightpanda.Session.call": {"tf": 1}, "lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.Session.find_element": {"tf": 1}, "lightpanda.Session.findElement": {"tf": 1}, "lightpanda.Session.get_env": {"tf": 1.7320508075688772}, "lightpanda.Session.getEnv": {"tf": 1.7320508075688772}, "lightpanda.Session.node_details": {"tf": 1}, "lightpanda.Session.nodeDetails": {"tf": 1}, "lightpanda.Session.tree": {"tf": 1}, "lightpanda.AsyncBrowser.tools": {"tf": 1}, "lightpanda.AsyncSession.call": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}, "lightpanda.AsyncSession.find_element": {"tf": 1}, "lightpanda.AsyncSession.findElement": {"tf": 1}, "lightpanda.AsyncSession.get_env": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.getEnv": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.node_details": {"tf": 1}, "lightpanda.AsyncSession.nodeDetails": {"tf": 1}, "lightpanda.AsyncSession.tree": {"tf": 1}}, "df": 20, "s": {"docs": {"lightpanda.Session.extract": {"tf": 1}, "lightpanda.Session.get_env": {"tf": 1}, "lightpanda.Session.getEnv": {"tf": 1}, "lightpanda.Session.press": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}, "lightpanda.AsyncSession.get_env": {"tf": 1}, "lightpanda.AsyncSession.getEnv": {"tf": 1}, "lightpanda.AsyncSession.press": {"tf": 1}}, "df": 8, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Session.get_env": {"tf": 1}, "lightpanda.Session.getEnv": {"tf": 1}, "lightpanda.AsyncSession.get_env": {"tf": 1}, "lightpanda.AsyncSession.getEnv": {"tf": 1}}, "df": 4}}}}}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.extract": {"tf": 1}, "lightpanda.Session.goto": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}, "lightpanda.AsyncSession.goto": {"tf": 1}}, "df": 4, "s": {"docs": {"lightpanda.Session.detect_forms": {"tf": 1}, "lightpanda.Session.detectForms": {"tf": 1}, "lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.Session.interactive_elements": {"tf": 1}, "lightpanda.Session.interactiveElements": {"tf": 1}, "lightpanda.Session.links": {"tf": 1}, "lightpanda.Session.structured_data": {"tf": 1}, "lightpanda.Session.structuredData": {"tf": 1}, "lightpanda.AsyncSession.detect_forms": {"tf": 1}, "lightpanda.AsyncSession.detectForms": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}, "lightpanda.AsyncSession.interactive_elements": {"tf": 1}, "lightpanda.AsyncSession.interactiveElements": {"tf": 1}, "lightpanda.AsyncSession.links": {"tf": 1}, "lightpanda.AsyncSession.structured_data": {"tf": 1}, "lightpanda.AsyncSession.structuredData": {"tf": 1}}, "df": 16}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.Session.get_url": {"tf": 1}, "lightpanda.Session.getUrl": {"tf": 1}, "lightpanda.Session.wait_for_state": {"tf": 1}, "lightpanda.Session.waitForState": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}, "lightpanda.AsyncSession.get_url": {"tf": 1}, "lightpanda.AsyncSession.getUrl": {"tf": 1}, "lightpanda.AsyncSession.wait_for_state": {"tf": 1}, "lightpanda.AsyncSession.waitForState": {"tf": 1}}, "df": 10}}}}}}}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"lightpanda.Session.extract": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.extract": {"tf": 1.4142135623730951}}, "df": 2}}, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Session.extract": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}}, "df": 2}, "e": {"docs": {}, "df": 0, "d": {"docs": {"lightpanda.Session.search": {"tf": 1}, "lightpanda.AsyncSession.search": {"tf": 1}}, "df": 2}}}}}}}}, "s": {"docs": {"lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.Session.extract": {"tf": 2.449489742783178}, "lightpanda.Session.get_cookies": {"tf": 1}, "lightpanda.Session.getCookies": {"tf": 1}, "lightpanda.Session.html": {"tf": 1}, "lightpanda.run_script": {"tf": 1}, "lightpanda.AsyncBrowser.__init__": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 2.449489742783178}, "lightpanda.AsyncSession.get_cookies": {"tf": 1}, "lightpanda.AsyncSession.getCookies": {"tf": 1}, "lightpanda.AsyncSession.html": {"tf": 1}}, "df": 12, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"lightpanda": {"tf": 1.4142135623730951}, "lightpanda.Session": {"tf": 1}, "lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.Session.get_cookies": {"tf": 1}, "lightpanda.Session.getCookies": {"tf": 1}, "lightpanda.AsyncBrowser": {"tf": 1}, "lightpanda.AsyncBrowser.session": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}, "lightpanda.AsyncSession.get_cookies": {"tf": 1}, "lightpanda.AsyncSession.getCookies": {"tf": 1}}, "df": 11, "s": {"docs": {"lightpanda.AsyncBrowser.__init__": {"tf": 1}}, "df": 1}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.Session.node_details": {"tf": 1}, "lightpanda.Session.nodeDetails": {"tf": 1}, "lightpanda.Session.select_option": {"tf": 1}, "lightpanda.Session.selectOption": {"tf": 1}, "lightpanda.AsyncSession.node_details": {"tf": 1}, "lightpanda.AsyncSession.nodeDetails": {"tf": 1}, "lightpanda.AsyncSession.select_option": {"tf": 1}, "lightpanda.AsyncSession.selectOption": {"tf": 1}}, "df": 8, "o": {"docs": {}, "df": 0, "r": {"docs": {"lightpanda.Session.click": {"tf": 1}, "lightpanda.Session.extract": {"tf": 2.6457513110645907}, "lightpanda.Session.fill": {"tf": 1}, "lightpanda.Session.hover": {"tf": 1}, "lightpanda.Session.html": {"tf": 1}, "lightpanda.Session.markdown": {"tf": 1}, "lightpanda.Session.node_details": {"tf": 1.4142135623730951}, "lightpanda.Session.nodeDetails": {"tf": 1.4142135623730951}, "lightpanda.Session.select_option": {"tf": 1}, "lightpanda.Session.selectOption": {"tf": 1}, "lightpanda.Session.set_checked": {"tf": 1}, "lightpanda.Session.setChecked": {"tf": 1}, "lightpanda.Session.wait_for_selector": {"tf": 1}, "lightpanda.Session.waitForSelector": {"tf": 1}, "lightpanda.AsyncSession.click": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 2.6457513110645907}, "lightpanda.AsyncSession.fill": {"tf": 1}, "lightpanda.AsyncSession.hover": {"tf": 1}, "lightpanda.AsyncSession.html": {"tf": 1}, "lightpanda.AsyncSession.markdown": {"tf": 1}, "lightpanda.AsyncSession.node_details": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.nodeDetails": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.select_option": {"tf": 1}, "lightpanda.AsyncSession.selectOption": {"tf": 1}, "lightpanda.AsyncSession.set_checked": {"tf": 1}, "lightpanda.AsyncSession.setChecked": {"tf": 1}, "lightpanda.AsyncSession.wait_for_selector": {"tf": 1}, "lightpanda.AsyncSession.waitForSelector": {"tf": 1}, "lightpanda.ToolError": {"tf": 1}}, "df": 29, "s": {"docs": {"lightpanda.Session.extract": {"tf": 1.4142135623730951}, "lightpanda.Session.wait_for_script": {"tf": 1}, "lightpanda.Session.waitForScript": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.wait_for_script": {"tf": 1}, "lightpanda.AsyncSession.waitForScript": {"tf": 1}}, "df": 6}}}}}}}, "e": {"docs": {"lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}}, "df": 2}, "t": {"docs": {"lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.Session.get_env": {"tf": 1.4142135623730951}, "lightpanda.Session.getEnv": {"tf": 1.4142135623730951}, "lightpanda.Session.search": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}, "lightpanda.AsyncSession.get_env": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.getEnv": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.search": {"tf": 1}}, "df": 8, "u": {"docs": {}, "df": 0, "p": {"docs": {"lightpanda.AsyncBrowser.wrap": {"tf": 1}}, "df": 1}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"lightpanda.Session.find_element": {"tf": 1}, "lightpanda.Session.findElement": {"tf": 1}, "lightpanda.Session.tree": {"tf": 1}, "lightpanda.AsyncSession.find_element": {"tf": 1}, "lightpanda.AsyncSession.findElement": {"tf": 1}, "lightpanda.AsyncSession.tree": {"tf": 1}}, "df": 6}}}}}}, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.Session.get_env": {"tf": 1}, "lightpanda.Session.getEnv": {"tf": 1}, "lightpanda.AsyncSession.get_env": {"tf": 1}, "lightpanda.AsyncSession.getEnv": {"tf": 1}}, "df": 4, "s": {"docs": {"lightpanda.Session.get_env": {"tf": 1}, "lightpanda.Session.getEnv": {"tf": 1}, "lightpanda.AsyncSession.get_env": {"tf": 1}, "lightpanda.AsyncSession.getEnv": {"tf": 1}}, "df": 4}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"lightpanda.Session.search": {"tf": 1.4142135623730951}, "lightpanda.Session.wait_for_state": {"tf": 1}, "lightpanda.Session.waitForState": {"tf": 1}, "lightpanda.AsyncSession.search": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.wait_for_state": {"tf": 1}, "lightpanda.AsyncSession.waitForState": {"tf": 1}}, "df": 6}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {"lightpanda": {"tf": 1.4142135623730951}, "lightpanda.Browser.tools": {"tf": 1}, "lightpanda.Session.extract": {"tf": 1.7320508075688772}, "lightpanda.AsyncBrowser.tools": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1.7320508075688772}}, "df": 5}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.Session.evaluate": {"tf": 1.4142135623730951}, "lightpanda.Session.extract": {"tf": 1}, "lightpanda.Session.get_url": {"tf": 1}, "lightpanda.Session.getUrl": {"tf": 1}, "lightpanda.run_script": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.extract": {"tf": 1}, "lightpanda.AsyncSession.get_url": {"tf": 1}, "lightpanda.AsyncSession.getUrl": {"tf": 1}, "lightpanda.run_script_async": {"tf": 1}, "lightpanda.ScriptError": {"tf": 1.4142135623730951}}, "df": 11, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"lightpanda.run_script": {"tf": 1}}, "df": 1}}}}}}}}, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"lightpanda.Session.scroll": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.scroll": {"tf": 1.4142135623730951}}, "df": 2}}}, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"lightpanda.Session.search": {"tf": 1}, "lightpanda.AsyncSession.search": {"tf": 1}}, "df": 2}}}}}}, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.markdown": {"tf": 1}, "lightpanda.Session.tree": {"tf": 1}, "lightpanda.AsyncSession.markdown": {"tf": 1}, "lightpanda.AsyncSession.tree": {"tf": 1}}, "df": 4, "d": {"docs": {"lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.AsyncBrowser.session": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}}, "df": 3}}}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda": {"tf": 1}, "lightpanda.AsyncBrowser": {"tf": 1}}, "df": 2}}, "v": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.evaluate": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.evaluate": {"tf": 1.4142135623730951}}, "df": 2, "d": {"docs": {"lightpanda.run_script": {"tf": 1}}, "df": 1}}}, "f": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.get_env": {"tf": 1}, "lightpanda.Session.getEnv": {"tf": 1}, "lightpanda.AsyncSession.get_env": {"tf": 1}, "lightpanda.AsyncSession.getEnv": {"tf": 1}}, "df": 4}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "n": {"docs": {"lightpanda.AsyncBrowser.start": {"tf": 1}}, "df": 1, "s": {"docs": {"lightpanda.Browser": {"tf": 1}}, "df": 1}, "e": {"docs": {}, "df": 0, "d": {"docs": {"lightpanda.Browser.__init__": {"tf": 1}, "lightpanda.AsyncBrowser": {"tf": 1}}, "df": 2}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.press": {"tf": 1}, "lightpanda.AsyncSession.press": {"tf": 1}}, "df": 2}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {"lightpanda.Session.extract": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}}, "df": 2, "s": {"docs": {"lightpanda.Session.extract": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}}, "df": 2}, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"lightpanda.Session.find_element": {"tf": 1}, "lightpanda.Session.findElement": {"tf": 1}, "lightpanda.Session.scroll": {"tf": 1}, "lightpanda.AsyncSession.find_element": {"tf": 1}, "lightpanda.AsyncSession.findElement": {"tf": 1}, "lightpanda.AsyncSession.scroll": {"tf": 1}}, "df": 6}, "e": {"docs": {}, "df": 0, "d": {"docs": {"lightpanda.Session.goto": {"tf": 1}, "lightpanda.AsyncSession.goto": {"tf": 1}}, "df": 2}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Session.wait_for_state": {"tf": 1}, "lightpanda.Session.waitForState": {"tf": 1}, "lightpanda.AsyncSession.wait_for_state": {"tf": 1}, "lightpanda.AsyncSession.waitForState": {"tf": 1}}, "df": 4}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.console_logs": {"tf": 1}, "lightpanda.Session.consoleLogs": {"tf": 1}, "lightpanda.AsyncSession.console_logs": {"tf": 1}, "lightpanda.AsyncSession.consoleLogs": {"tf": 1}}, "df": 4}}, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.html": {"tf": 1}, "lightpanda.Session.press": {"tf": 1}, "lightpanda.AsyncSession.html": {"tf": 1}, "lightpanda.AsyncSession.press": {"tf": 1}}, "df": 4}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}}, "df": 2}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"lightpanda.Session.tree": {"tf": 1}, "lightpanda.AsyncSession.tree": {"tf": 1}}, "df": 2}}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Session.wait_for_state": {"tf": 1}, "lightpanda.Session.waitForState": {"tf": 1}, "lightpanda.AsyncSession.wait_for_state": {"tf": 1}, "lightpanda.AsyncSession.waitForState": {"tf": 1}}, "df": 4}}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.detect_forms": {"tf": 1}, "lightpanda.Session.detectForms": {"tf": 1}, "lightpanda.AsyncSession.detect_forms": {"tf": 1}, "lightpanda.AsyncSession.detectForms": {"tf": 1}}, "df": 4, "d": {"docs": {"lightpanda.Session.extract": {"tf": 1}, "lightpanda.Session.structured_data": {"tf": 1}, "lightpanda.Session.structuredData": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}, "lightpanda.AsyncSession.structured_data": {"tf": 1}, "lightpanda.AsyncSession.structuredData": {"tf": 1}}, "df": 6}}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.Session.extract": {"tf": 2}, "lightpanda.AsyncSession.evaluate": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 2}}, "df": 4, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "y": {"docs": {"lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}}, "df": 2}}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Session.detect_forms": {"tf": 1}, "lightpanda.Session.detectForms": {"tf": 1}, "lightpanda.AsyncSession.detect_forms": {"tf": 1}, "lightpanda.AsyncSession.detectForms": {"tf": 1}}, "df": 4}}, "e": {"docs": {"lightpanda.Session.get_cookies": {"tf": 1}, "lightpanda.Session.getCookies": {"tf": 1}, "lightpanda.Session.search": {"tf": 1}, "lightpanda.Session.wait_for_state": {"tf": 1}, "lightpanda.Session.waitForState": {"tf": 1}, "lightpanda.AsyncSession.get_cookies": {"tf": 1}, "lightpanda.AsyncSession.getCookies": {"tf": 1}, "lightpanda.AsyncSession.search": {"tf": 1}, "lightpanda.AsyncSession.wait_for_state": {"tf": 1}, "lightpanda.AsyncSession.waitForState": {"tf": 1}}, "df": 10, "s": {"docs": {"lightpanda.Session.hover": {"tf": 1}, "lightpanda.AsyncSession.hover": {"tf": 1}}, "df": 2}}}, "r": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.AsyncBrowser": {"tf": 1}}, "df": 1}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}}, "df": 2, "d": {"docs": {"lightpanda.Session.get_cookies": {"tf": 1}, "lightpanda.Session.getCookies": {"tf": 1}, "lightpanda.AsyncSession.get_cookies": {"tf": 1}, "lightpanda.AsyncSession.getCookies": {"tf": 1}}, "df": 4}}, "y": {"docs": {"lightpanda.Session.extract": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.extract": {"tf": 1.4142135623730951}}, "df": 2}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Session.extract": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.extract": {"tf": 1.4142135623730951}}, "df": 2}}}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"lightpanda.Session.wait_for_state": {"tf": 1}, "lightpanda.Session.waitForState": {"tf": 1}, "lightpanda.AsyncSession.wait_for_state": {"tf": 1}, "lightpanda.AsyncSession.waitForState": {"tf": 1}}, "df": 4}}}, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.run_script": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {"lightpanda.Session.evaluate": {"tf": 1.7320508075688772}, "lightpanda.Session.goto": {"tf": 1}, "lightpanda.Session.wait_for_state": {"tf": 1}, "lightpanda.Session.waitForState": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.goto": {"tf": 1}, "lightpanda.AsyncSession.wait_for_state": {"tf": 1}, "lightpanda.AsyncSession.waitForState": {"tf": 1}}, "df": 8}, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}}, "df": 2}}}}}}}, "r": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}}, "df": 2}}}}}}}, "b": {"docs": {"lightpanda.Session.extract": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}}, "df": 2, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.markdown": {"tf": 1}, "lightpanda.AsyncSession.markdown": {"tf": 1}}, "df": 2}}}}, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.Session.press": {"tf": 1}, "lightpanda.AsyncSession.press": {"tf": 1}}, "df": 2}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"lightpanda.Session.press": {"tf": 1}, "lightpanda.AsyncSession.press": {"tf": 1}}, "df": 2}}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.AsyncBrowser": {"tf": 1}}, "df": 1}}}}}}}}}, "y": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {"lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.AsyncBrowser.wrap": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}}, "df": 3, "h": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"lightpanda.Session.wait_for_script": {"tf": 1}, "lightpanda.Session.waitForScript": {"tf": 1}, "lightpanda.AsyncSession.wait_for_script": {"tf": 1}, "lightpanda.AsyncSession.waitForScript": {"tf": 1}}, "df": 4}}}}}}}}}}}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.extract": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}}, "df": 2, "s": {"docs": {"lightpanda.Session.extract": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}}, "df": 2}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"lightpanda.Session.press": {"tf": 1}, "lightpanda.AsyncSession.press": {"tf": 1}}, "df": 2}}}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.AsyncBrowser.wrap": {"tf": 1}}, "df": 1}}}}, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.Session.search": {"tf": 1}, "lightpanda.AsyncSession.search": {"tf": 1}}, "df": 2}}}}}, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.Session.wait_for_state": {"tf": 1}, "lightpanda.Session.waitForState": {"tf": 1}, "lightpanda.AsyncSession.wait_for_state": {"tf": 1}, "lightpanda.AsyncSession.waitForState": {"tf": 1}}, "df": 4}}}}}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Session.wait_for_state": {"tf": 1}, "lightpanda.Session.waitForState": {"tf": 1}, "lightpanda.AsyncSession.wait_for_state": {"tf": 1}, "lightpanda.AsyncSession.waitForState": {"tf": 1}}, "df": 4}}}}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"lightpanda.Session.wait_for_state": {"tf": 1}, "lightpanda.Session.waitForState": {"tf": 1}, "lightpanda.AsyncSession.wait_for_state": {"tf": 1}, "lightpanda.AsyncSession.waitForState": {"tf": 1}}, "df": 4}}}}, "g": {"docs": {"lightpanda.Browser.__init__": {"tf": 1}, "lightpanda.Session.wait_for_script": {"tf": 1}, "lightpanda.Session.waitForScript": {"tf": 1}, "lightpanda.run_script": {"tf": 1}, "lightpanda.AsyncSession.wait_for_script": {"tf": 1}, "lightpanda.AsyncSession.waitForScript": {"tf": 1}}, "df": 6, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {"lightpanda": {"tf": 1.4142135623730951}, "lightpanda.Session.search": {"tf": 1.4142135623730951}, "lightpanda.Session.wait_for_state": {"tf": 1}, "lightpanda.Session.waitForState": {"tf": 1}, "lightpanda.AsyncSession.search": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.wait_for_state": {"tf": 1}, "lightpanda.AsyncSession.waitForState": {"tf": 1}}, "df": 7}}, "o": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.search": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.search": {"tf": 1.4142135623730951}}, "df": 2}}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"lightpanda.Session.call": {"tf": 1}, "lightpanda.AsyncSession.call": {"tf": 1}}, "df": 2}}}}}}}, "t": {"docs": {"lightpanda.Session.console_logs": {"tf": 1}, "lightpanda.Session.consoleLogs": {"tf": 1}, "lightpanda.AsyncSession.console_logs": {"tf": 1}, "lightpanda.AsyncSession.consoleLogs": {"tf": 1}}, "df": 4}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}}, "df": 2}}}}}}}}}, "t": {"docs": {"lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.Session.get_cookies": {"tf": 1}, "lightpanda.Session.getCookies": {"tf": 1}, "lightpanda.Session.wait_for_script": {"tf": 1}, "lightpanda.Session.waitForScript": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}, "lightpanda.AsyncSession.get_cookies": {"tf": 1}, "lightpanda.AsyncSession.getCookies": {"tf": 1}, "lightpanda.AsyncSession.wait_for_script": {"tf": 1}, "lightpanda.AsyncSession.waitForScript": {"tf": 1}}, "df": 10}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {"lightpanda": {"tf": 1.4142135623730951}, "lightpanda.Session.click": {"tf": 1}, "lightpanda.Session.detect_forms": {"tf": 1.4142135623730951}, "lightpanda.Session.detectForms": {"tf": 1.4142135623730951}, "lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.Session.get_cookies": {"tf": 1.4142135623730951}, "lightpanda.Session.getCookies": {"tf": 1.4142135623730951}, "lightpanda.Session.get_url": {"tf": 1}, "lightpanda.Session.getUrl": {"tf": 1}, "lightpanda.Session.goto": {"tf": 1}, "lightpanda.Session.interactive_elements": {"tf": 1.4142135623730951}, "lightpanda.Session.interactiveElements": {"tf": 1.4142135623730951}, "lightpanda.Session.links": {"tf": 1.7320508075688772}, "lightpanda.Session.scroll": {"tf": 1}, "lightpanda.Session.search": {"tf": 1.4142135623730951}, "lightpanda.Session.structured_data": {"tf": 1.4142135623730951}, "lightpanda.Session.structuredData": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.click": {"tf": 1}, "lightpanda.AsyncSession.detect_forms": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.detectForms": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.evaluate": {"tf": 1}, "lightpanda.AsyncSession.get_cookies": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.getCookies": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.get_url": {"tf": 1}, "lightpanda.AsyncSession.getUrl": {"tf": 1}, "lightpanda.AsyncSession.goto": {"tf": 1}, "lightpanda.AsyncSession.interactive_elements": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.interactiveElements": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.links": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.scroll": {"tf": 1}, "lightpanda.AsyncSession.search": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.structured_data": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.structuredData": {"tf": 1.4142135623730951}}, "df": 33, "s": {"docs": {"lightpanda.Session.extract": {"tf": 1}, "lightpanda.Session.get_env": {"tf": 1}, "lightpanda.Session.getEnv": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}, "lightpanda.AsyncSession.get_env": {"tf": 1}, "lightpanda.AsyncSession.getEnv": {"tf": 1}}, "df": 6}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Browser": {"tf": 1}, "lightpanda.Session": {"tf": 1}, "lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.Session.html": {"tf": 1}, "lightpanda.Session.markdown": {"tf": 1}, "lightpanda.Session.node_details": {"tf": 1}, "lightpanda.Session.nodeDetails": {"tf": 1}, "lightpanda.Session.press": {"tf": 1}, "lightpanda.Session.search": {"tf": 1}, "lightpanda.Session.wait_for_script": {"tf": 1}, "lightpanda.Session.waitForScript": {"tf": 1}, "lightpanda.AsyncBrowser.session": {"tf": 1}, "lightpanda.AsyncSession": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}, "lightpanda.AsyncSession.html": {"tf": 1}, "lightpanda.AsyncSession.markdown": {"tf": 1}, "lightpanda.AsyncSession.node_details": {"tf": 1}, "lightpanda.AsyncSession.nodeDetails": {"tf": 1}, "lightpanda.AsyncSession.press": {"tf": 1}, "lightpanda.AsyncSession.search": {"tf": 1}, "lightpanda.AsyncSession.wait_for_script": {"tf": 1}, "lightpanda.AsyncSession.waitForScript": {"tf": 1}}, "df": 22, "f": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {"lightpanda.Session.find_element": {"tf": 1}, "lightpanda.Session.findElement": {"tf": 1}, "lightpanda.Session.get_cookies": {"tf": 1}, "lightpanda.Session.getCookies": {"tf": 1}, "lightpanda.Session.get_url": {"tf": 1}, "lightpanda.Session.getUrl": {"tf": 1}, "lightpanda.Session.hover": {"tf": 1}, "lightpanda.AsyncSession.find_element": {"tf": 1}, "lightpanda.AsyncSession.findElement": {"tf": 1}, "lightpanda.AsyncSession.get_cookies": {"tf": 1}, "lightpanda.AsyncSession.getCookies": {"tf": 1}, "lightpanda.AsyncSession.get_url": {"tf": 1}, "lightpanda.AsyncSession.getUrl": {"tf": 1}, "lightpanda.AsyncSession.hover": {"tf": 1}}, "df": 14}}}, "r": {"docs": {"lightpanda.Session.get_url": {"tf": 1}, "lightpanda.Session.getUrl": {"tf": 1}, "lightpanda.Session.search": {"tf": 1}, "lightpanda.AsyncSession.get_url": {"tf": 1}, "lightpanda.AsyncSession.getUrl": {"tf": 1}, "lightpanda.AsyncSession.search": {"tf": 1}}, "df": 6}}}, "p": {"docs": {"lightpanda.Session.press": {"tf": 1}, "lightpanda.AsyncSession.press": {"tf": 1}}, "df": 2}, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"lightpanda.Session.search": {"tf": 1}, "lightpanda.AsyncSession.search": {"tf": 1}}, "df": 2}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"lightpanda.AsyncBrowser.session": {"tf": 1}}, "df": 1}}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"lightpanda.Session.set_checked": {"tf": 1}, "lightpanda.Session.setChecked": {"tf": 1}, "lightpanda.AsyncSession.set_checked": {"tf": 1}, "lightpanda.AsyncSession.setChecked": {"tf": 1}}, "df": 4}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {"lightpanda.Session.wait_for_script": {"tf": 1}, "lightpanda.Session.waitForScript": {"tf": 1}, "lightpanda.AsyncSession.wait_for_script": {"tf": 1}, "lightpanda.AsyncSession.waitForScript": {"tf": 1}}, "df": 4}}}}}, "c": {"docs": {"lightpanda.Session.extract": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}}, "df": 2, "o": {"docs": {}, "df": 0, "m": {"docs": {"lightpanda": {"tf": 1.4142135623730951}}, "df": 1, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"lightpanda.Session.get_url": {"tf": 1}, "lightpanda.Session.getUrl": {"tf": 1}, "lightpanda.AsyncSession.get_url": {"tf": 1}, "lightpanda.AsyncSession.getUrl": {"tf": 1}}, "df": 4}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {"lightpanda.Session.press": {"tf": 1}, "lightpanda.AsyncSession.press": {"tf": 1}}, "df": 2}}}, "/": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"lightpanda.Session.search": {"tf": 1}, "lightpanda.AsyncSession.search": {"tf": 1}}, "df": 2}}}}}}}, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.wait_for_script": {"tf": 1}, "lightpanda.Session.waitForScript": {"tf": 1}, "lightpanda.AsyncSession.wait_for_script": {"tf": 1}, "lightpanda.AsyncSession.waitForScript": {"tf": 1}}, "df": 4}}}}}}, "o": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Browser.__init__": {"tf": 1}, "lightpanda.Session.get_cookies": {"tf": 1}, "lightpanda.Session.getCookies": {"tf": 1}, "lightpanda.AsyncSession.get_cookies": {"tf": 1}, "lightpanda.AsyncSession.getCookies": {"tf": 1}}, "df": 5, "s": {"docs": {"lightpanda.Session": {"tf": 1}, "lightpanda.Session.get_cookies": {"tf": 1.4142135623730951}, "lightpanda.Session.getCookies": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession": {"tf": 1}, "lightpanda.AsyncSession.get_cookies": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.getCookies": {"tf": 1.4142135623730951}}, "df": 6}}}}}, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.Session": {"tf": 1}, "lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.Session.get_env": {"tf": 1}, "lightpanda.Session.getEnv": {"tf": 1}, "lightpanda.AsyncSession": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}, "lightpanda.AsyncSession.get_env": {"tf": 1}, "lightpanda.AsyncSession.getEnv": {"tf": 1}}, "df": 8}}, "n": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.Session.wait_for_state": {"tf": 1}, "lightpanda.Session.waitForState": {"tf": 1}, "lightpanda.AsyncSession.wait_for_state": {"tf": 1}, "lightpanda.AsyncSession.waitForState": {"tf": 1}}, "df": 4}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.Session": {"tf": 1}, "lightpanda.AsyncSession": {"tf": 1}}, "df": 2}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.Session.wait_for_state": {"tf": 1}, "lightpanda.Session.waitForState": {"tf": 1}, "lightpanda.AsyncSession.wait_for_state": {"tf": 1}, "lightpanda.AsyncSession.waitForState": {"tf": 1}}, "df": 4}}}}, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.console_logs": {"tf": 1}, "lightpanda.Session.consoleLogs": {"tf": 1}, "lightpanda.AsyncSession.console_logs": {"tf": 1}, "lightpanda.AsyncSession.consoleLogs": {"tf": 1}}, "df": 4}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {"lightpanda.Session.get_env": {"tf": 1}, "lightpanda.Session.getEnv": {"tf": 1}, "lightpanda.AsyncSession.get_env": {"tf": 1}, "lightpanda.AsyncSession.getEnv": {"tf": 1}}, "df": 4}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"lightpanda.Session.get_url": {"tf": 1}, "lightpanda.Session.getUrl": {"tf": 1}, "lightpanda.AsyncSession.get_url": {"tf": 1}, "lightpanda.AsyncSession.getUrl": {"tf": 1}}, "df": 4}}}}}}}}}, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "y": {"docs": {"lightpanda.AsyncBrowser.__init__": {"tf": 1}}, "df": 1}}, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"lightpanda.AsyncBrowser.__init__": {"tf": 1}}, "df": 1}}}}}}}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"lightpanda.Session.extract": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}}, "df": 2}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Browser": {"tf": 1}}, "df": 1, "d": {"docs": {"lightpanda.AsyncBrowser.__init__": {"tf": 1}}, "df": 1}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"lightpanda.Session.get_env": {"tf": 1.4142135623730951}, "lightpanda.Session.getEnv": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.get_env": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.getEnv": {"tf": 1.4142135623730951}}, "df": 4}}}}}}}}}, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"lightpanda.Browser": {"tf": 1}, "lightpanda.run_script": {"tf": 1}}, "df": 2}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.Session.extract": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}}, "df": 2}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Session.press": {"tf": 1}, "lightpanda.AsyncSession.press": {"tf": 1}}, "df": 2}}}}}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.select_option": {"tf": 1}, "lightpanda.Session.selectOption": {"tf": 1}, "lightpanda.Session.set_checked": {"tf": 1}, "lightpanda.Session.setChecked": {"tf": 1}, "lightpanda.AsyncSession.select_option": {"tf": 1}, "lightpanda.AsyncSession.selectOption": {"tf": 1}, "lightpanda.AsyncSession.set_checked": {"tf": 1}, "lightpanda.AsyncSession.setChecked": {"tf": 1}}, "df": 8}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"lightpanda.Session.set_checked": {"tf": 1}, "lightpanda.Session.setChecked": {"tf": 1}, "lightpanda.AsyncSession.set_checked": {"tf": 1}, "lightpanda.AsyncSession.setChecked": {"tf": 1}}, "df": 4, "e": {"docs": {}, "df": 0, "d": {"docs": {"lightpanda.Session.node_details": {"tf": 1}, "lightpanda.Session.nodeDetails": {"tf": 1}, "lightpanda.AsyncSession.node_details": {"tf": 1}, "lightpanda.AsyncSession.nodeDetails": {"tf": 1}}, "df": 4}}, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "x": {"docs": {"lightpanda.Session.set_checked": {"tf": 1}, "lightpanda.Session.setChecked": {"tf": 1}, "lightpanda.AsyncSession.set_checked": {"tf": 1}, "lightpanda.AsyncSession.setChecked": {"tf": 1}}, "df": 4}}}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {"lightpanda.Browser.__init__": {"tf": 1}}, "df": 1, "c": {"docs": {}, "df": 0, "k": {"docs": {"lightpanda.Session.click": {"tf": 1.4142135623730951}, "lightpanda.Session.set_checked": {"tf": 1}, "lightpanda.Session.setChecked": {"tf": 1}, "lightpanda.AsyncSession.click": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.set_checked": {"tf": 1}, "lightpanda.AsyncSession.setChecked": {"tf": 1}}, "df": 6, "/": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"lightpanda.Session.node_details": {"tf": 1}, "lightpanda.Session.nodeDetails": {"tf": 1}, "lightpanda.AsyncSession.node_details": {"tf": 1}, "lightpanda.AsyncSession.nodeDetails": {"tf": 1}}, "df": 4, "/": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {"lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}}, "df": 2}}}}}}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Session.links": {"tf": 1}, "lightpanda.AsyncSession.links": {"tf": 1}}, "df": 2}}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Session.console_logs": {"tf": 1}, "lightpanda.Session.consoleLogs": {"tf": 1}, "lightpanda.AsyncSession.console_logs": {"tf": 1}, "lightpanda.AsyncSession.consoleLogs": {"tf": 1}}, "df": 4}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Session.node_details": {"tf": 1}, "lightpanda.Session.nodeDetails": {"tf": 1}, "lightpanda.AsyncSession.node_details": {"tf": 1}, "lightpanda.AsyncSession.nodeDetails": {"tf": 1}}, "df": 4}}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.AsyncBrowser.wrap": {"tf": 1}}, "df": 1, "d": {"docs": {"lightpanda.AsyncBrowser.session": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Browser.__init__": {"tf": 1}}, "df": 1}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {"lightpanda.Session.console_logs": {"tf": 1}, "lightpanda.Session.consoleLogs": {"tf": 1}, "lightpanda.Session.extract": {"tf": 1.4142135623730951}, "lightpanda.Session.get_url": {"tf": 1}, "lightpanda.Session.getUrl": {"tf": 1}, "lightpanda.Session.search": {"tf": 1}, "lightpanda.Session.wait_for_state": {"tf": 1}, "lightpanda.Session.waitForState": {"tf": 1}, "lightpanda.AsyncSession.console_logs": {"tf": 1}, "lightpanda.AsyncSession.consoleLogs": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.get_url": {"tf": 1}, "lightpanda.AsyncSession.getUrl": {"tf": 1}, "lightpanda.AsyncSession.search": {"tf": 1}, "lightpanda.AsyncSession.wait_for_state": {"tf": 1}, "lightpanda.AsyncSession.waitForState": {"tf": 1}}, "df": 16, "e": {"docs": {}, "df": 0, "d": {"docs": {"lightpanda.AsyncBrowser": {"tf": 1}}, "df": 1}}, "s": {"docs": {"lightpanda.AsyncBrowser.__init__": {"tf": 1}}, "df": 1}}}, "n": {"docs": {"lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.Session.goto": {"tf": 1}, "lightpanda.Session.wait_for_script": {"tf": 1}, "lightpanda.Session.waitForScript": {"tf": 1}, "lightpanda.Session.wait_for_state": {"tf": 1}, "lightpanda.Session.waitForState": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}, "lightpanda.AsyncSession.goto": {"tf": 1}, "lightpanda.AsyncSession.wait_for_script": {"tf": 1}, "lightpanda.AsyncSession.waitForScript": {"tf": 1}, "lightpanda.AsyncSession.wait_for_state": {"tf": 1}, "lightpanda.AsyncSession.waitForState": {"tf": 1}}, "df": 12, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}}, "df": 2}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"lightpanda.Session.node_details": {"tf": 1}, "lightpanda.Session.nodeDetails": {"tf": 1}, "lightpanda.AsyncSession.node_details": {"tf": 1}, "lightpanda.AsyncSession.nodeDetails": {"tf": 1}}, "df": 4}}}}}}}, "p": {"docs": {"lightpanda.Session.extract": {"tf": 1}, "lightpanda.Session.markdown": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}, "lightpanda.AsyncSession.markdown": {"tf": 1}}, "df": 4, "s": {"docs": {"lightpanda.AsyncBrowser.__init__": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Session.click": {"tf": 1}, "lightpanda.Session.extract": {"tf": 1}, "lightpanda.Session.fill": {"tf": 1}, "lightpanda.Session.hover": {"tf": 1}, "lightpanda.Session.node_details": {"tf": 1.4142135623730951}, "lightpanda.Session.nodeDetails": {"tf": 1.4142135623730951}, "lightpanda.Session.select_option": {"tf": 1}, "lightpanda.Session.selectOption": {"tf": 1}, "lightpanda.Session.set_checked": {"tf": 1}, "lightpanda.Session.setChecked": {"tf": 1}, "lightpanda.Session.wait_for_script": {"tf": 1}, "lightpanda.Session.waitForScript": {"tf": 1}, "lightpanda.Session.wait_for_selector": {"tf": 1}, "lightpanda.Session.waitForSelector": {"tf": 1}, "lightpanda.AsyncSession.click": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}, "lightpanda.AsyncSession.fill": {"tf": 1}, "lightpanda.AsyncSession.hover": {"tf": 1}, "lightpanda.AsyncSession.node_details": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.nodeDetails": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.select_option": {"tf": 1}, "lightpanda.AsyncSession.selectOption": {"tf": 1}, "lightpanda.AsyncSession.set_checked": {"tf": 1}, "lightpanda.AsyncSession.setChecked": {"tf": 1}, "lightpanda.AsyncSession.wait_for_script": {"tf": 1}, "lightpanda.AsyncSession.waitForScript": {"tf": 1}, "lightpanda.AsyncSession.wait_for_selector": {"tf": 1}, "lightpanda.AsyncSession.waitForSelector": {"tf": 1}}, "df": 28}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.Session.click": {"tf": 1}, "lightpanda.Session.console_logs": {"tf": 1}, "lightpanda.Session.consoleLogs": {"tf": 1}, "lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.Session.extract": {"tf": 1}, "lightpanda.Session.get_cookies": {"tf": 1}, "lightpanda.Session.getCookies": {"tf": 1}, "lightpanda.Session.get_url": {"tf": 1.4142135623730951}, "lightpanda.Session.getUrl": {"tf": 1.4142135623730951}, "lightpanda.Session.scroll": {"tf": 1}, "lightpanda.Session.wait_for_state": {"tf": 1}, "lightpanda.Session.waitForState": {"tf": 1}, "lightpanda.AsyncSession.click": {"tf": 1}, "lightpanda.AsyncSession.console_logs": {"tf": 1}, "lightpanda.AsyncSession.consoleLogs": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}, "lightpanda.AsyncSession.get_cookies": {"tf": 1}, "lightpanda.AsyncSession.getCookies": {"tf": 1}, "lightpanda.AsyncSession.get_url": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.getUrl": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.scroll": {"tf": 1}, "lightpanda.AsyncSession.wait_for_state": {"tf": 1}, "lightpanda.AsyncSession.waitForState": {"tf": 1}}, "df": 24}}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"lightpanda": {"tf": 1.4142135623730951}, "lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.Session.extract": {"tf": 1.4142135623730951}, "lightpanda.Session.structured_data": {"tf": 1}, "lightpanda.Session.structuredData": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.structured_data": {"tf": 1}, "lightpanda.AsyncSession.structuredData": {"tf": 1}}, "df": 9, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"lightpanda.Session.wait_for_script": {"tf": 1}, "lightpanda.Session.waitForScript": {"tf": 1}, "lightpanda.AsyncSession.wait_for_script": {"tf": 1}, "lightpanda.AsyncSession.waitForScript": {"tf": 1}}, "df": 4}}}}}}}}}, "i": {"docs": {}, "df": 0, "r": {"docs": {"lightpanda.Browser.__init__": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"lightpanda.Session": {"tf": 1}, "lightpanda.Session.search": {"tf": 1}, "lightpanda.AsyncSession": {"tf": 1}, "lightpanda.AsyncSession.search": {"tf": 1}}, "df": 4}}}}}}, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"lightpanda.Session.get_env": {"tf": 1}, "lightpanda.Session.getEnv": {"tf": 1}, "lightpanda.AsyncSession.get_env": {"tf": 1}, "lightpanda.AsyncSession.getEnv": {"tf": 1}}, "df": 4}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Session.html": {"tf": 1}, "lightpanda.AsyncSession.html": {"tf": 1}}, "df": 2}}}}}, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"lightpanda.Session.node_details": {"tf": 1}, "lightpanda.Session.nodeDetails": {"tf": 1}, "lightpanda.AsyncSession.node_details": {"tf": 1}, "lightpanda.AsyncSession.nodeDetails": {"tf": 1}}, "df": 4}}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"lightpanda.Session.press": {"tf": 1}, "lightpanda.AsyncSession.press": {"tf": 1}}, "df": 2}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Session.select_option": {"tf": 1}, "lightpanda.Session.selectOption": {"tf": 1}, "lightpanda.Session.set_checked": {"tf": 1}, "lightpanda.Session.setChecked": {"tf": 1}, "lightpanda.AsyncSession.select_option": {"tf": 1}, "lightpanda.AsyncSession.selectOption": {"tf": 1}, "lightpanda.AsyncSession.set_checked": {"tf": 1}, "lightpanda.AsyncSession.setChecked": {"tf": 1}}, "df": 8}}}}}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"lightpanda.Browser.tools": {"tf": 1}, "lightpanda.AsyncBrowser.tools": {"tf": 1}}, "df": 2}}}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.Session.detect_forms": {"tf": 1}, "lightpanda.Session.detectForms": {"tf": 1}, "lightpanda.Session.get_url": {"tf": 1}, "lightpanda.Session.getUrl": {"tf": 1}, "lightpanda.AsyncSession.detect_forms": {"tf": 1}, "lightpanda.AsyncSession.detectForms": {"tf": 1}, "lightpanda.AsyncSession.get_url": {"tf": 1}, "lightpanda.AsyncSession.getUrl": {"tf": 1}}, "df": 8}}}, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Session.node_details": {"tf": 1}, "lightpanda.Session.nodeDetails": {"tf": 1}, "lightpanda.AsyncSession.node_details": {"tf": 1}, "lightpanda.AsyncSession.nodeDetails": {"tf": 1}}, "df": 4}}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}}, "df": 2}}}}}}}, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Session.get_cookies": {"tf": 1}, "lightpanda.Session.getCookies": {"tf": 1}, "lightpanda.AsyncSession.get_cookies": {"tf": 1}, "lightpanda.AsyncSession.getCookies": {"tf": 1}}, "df": 4}}}}}}, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"lightpanda.Session.get_cookies": {"tf": 1}, "lightpanda.Session.getCookies": {"tf": 1}, "lightpanda.AsyncSession.get_cookies": {"tf": 1}, "lightpanda.AsyncSession.getCookies": {"tf": 1}}, "df": 4}}}}}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"lightpanda.Session.search": {"tf": 1}, "lightpanda.AsyncSession.search": {"tf": 1}}, "df": 2}}}}}}, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"lightpanda.Session.tree": {"tf": 1}, "lightpanda.AsyncSession.tree": {"tf": 1}}, "df": 2}}}}, "o": {"docs": {"lightpanda.Session": {"tf": 1}, "lightpanda.Session.search": {"tf": 1}, "lightpanda.AsyncSession": {"tf": 1}, "lightpanda.AsyncSession.search": {"tf": 1}}, "df": 4, "w": {"docs": {}, "df": 0, "n": {"docs": {"lightpanda.Session.press": {"tf": 1}, "lightpanda.AsyncBrowser.wrap": {"tf": 1}, "lightpanda.AsyncSession.press": {"tf": 1}}, "df": 3, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"lightpanda.Session.extract": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}}, "df": 2}}}}}}}}, "m": {"docs": {"lightpanda.Session.search": {"tf": 1}, "lightpanda.Session.tree": {"tf": 1}, "lightpanda.AsyncSession.search": {"tf": 1}, "lightpanda.AsyncSession.tree": {"tf": 1}}, "df": 4, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"lightpanda.Session.get_cookies": {"tf": 1}, "lightpanda.Session.getCookies": {"tf": 1}, "lightpanda.AsyncSession.get_cookies": {"tf": 1}, "lightpanda.AsyncSession.getCookies": {"tf": 1}}, "df": 4}}}}, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.Session.html": {"tf": 1}, "lightpanda.Session.wait_for_script": {"tf": 1.4142135623730951}, "lightpanda.Session.waitForScript": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.html": {"tf": 1}, "lightpanda.AsyncSession.wait_for_script": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.waitForScript": {"tf": 1.4142135623730951}}, "df": 6}}}}}}, "n": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.wait_for_state": {"tf": 1}, "lightpanda.Session.waitForState": {"tf": 1}, "lightpanda.AsyncSession.wait_for_state": {"tf": 1}, "lightpanda.AsyncSession.waitForState": {"tf": 1}}, "df": 4}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {"lightpanda.Session.get_cookies": {"tf": 1}, "lightpanda.Session.getCookies": {"tf": 1}, "lightpanda.AsyncSession.get_cookies": {"tf": 1}, "lightpanda.AsyncSession.getCookies": {"tf": 1}}, "df": 4}}, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "o": {"docs": {"lightpanda.Session.search": {"tf": 1}, "lightpanda.AsyncSession.search": {"tf": 1}}, "df": 2}}}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "n": {"docs": {"lightpanda.Session.select_option": {"tf": 1}, "lightpanda.Session.selectOption": {"tf": 1}, "lightpanda.AsyncSession.select_option": {"tf": 1}, "lightpanda.AsyncSession.selectOption": {"tf": 1}}, "df": 4}}}}}}, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"lightpanda.AsyncBrowser": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"lightpanda.AsyncBrowser.wrap": {"tf": 1}}, "df": 1}}}}}}}, "e": {"docs": {"lightpanda.Browser.__init__": {"tf": 1}, "lightpanda.Session.wait_for_script": {"tf": 1}, "lightpanda.Session.waitForScript": {"tf": 1}, "lightpanda.run_script": {"tf": 1}, "lightpanda.AsyncSession.wait_for_script": {"tf": 1}, "lightpanda.AsyncSession.waitForScript": {"tf": 1}}, "df": 6, "x": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {"lightpanda.Browser.__init__": {"tf": 1}}, "df": 1, "c": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda": {"tf": 1.4142135623730951}, "lightpanda.Session.evaluate": {"tf": 1.4142135623730951}, "lightpanda.Session.extract": {"tf": 1.7320508075688772}, "lightpanda.Session.interactive_elements": {"tf": 1}, "lightpanda.Session.interactiveElements": {"tf": 1}, "lightpanda.Session.links": {"tf": 1}, "lightpanda.Session.structured_data": {"tf": 1}, "lightpanda.Session.structuredData": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.extract": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.interactive_elements": {"tf": 1}, "lightpanda.AsyncSession.interactiveElements": {"tf": 1}, "lightpanda.AsyncSession.links": {"tf": 1}, "lightpanda.AsyncSession.structured_data": {"tf": 1}, "lightpanda.AsyncSession.structuredData": {"tf": 1}}, "df": 15, "e": {"docs": {}, "df": 0, "d": {"docs": {"lightpanda.Session.extract": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}}, "df": 2}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"lightpanda.Session.goto": {"tf": 1}, "lightpanda.AsyncSession.goto": {"tf": 1}}, "df": 2}}}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.Session.wait_for_script": {"tf": 1}, "lightpanda.Session.waitForScript": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}, "lightpanda.AsyncSession.wait_for_script": {"tf": 1}, "lightpanda.AsyncSession.waitForScript": {"tf": 1}}, "df": 6, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.Session.wait_for_script": {"tf": 1}, "lightpanda.Session.waitForScript": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}, "lightpanda.AsyncSession.wait_for_script": {"tf": 1}, "lightpanda.AsyncSession.waitForScript": {"tf": 1}}, "df": 6}}}}}}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}}, "df": 2}}}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Session.extract": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}}, "df": 2}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.run_script": {"tf": 1}, "lightpanda.AsyncBrowser.session": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "d": {"docs": {"lightpanda.ScriptError": {"tf": 1}}, "df": 1}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"lightpanda.AsyncBrowser.wrap": {"tf": 1}}, "df": 1}}}}}}, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"lightpanda.AsyncBrowser.__init__": {"tf": 1}}, "df": 1}}}}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"lightpanda.ToolError": {"tf": 1}}, "df": 1}}}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.Session.click": {"tf": 1}, "lightpanda.Session.fill": {"tf": 1}, "lightpanda.Session.hover": {"tf": 1}, "lightpanda.Session.scroll": {"tf": 1}, "lightpanda.Session.select_option": {"tf": 1}, "lightpanda.Session.selectOption": {"tf": 1}, "lightpanda.Session.wait_for_selector": {"tf": 1.4142135623730951}, "lightpanda.Session.waitForSelector": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.click": {"tf": 1}, "lightpanda.AsyncSession.fill": {"tf": 1}, "lightpanda.AsyncSession.hover": {"tf": 1}, "lightpanda.AsyncSession.scroll": {"tf": 1}, "lightpanda.AsyncSession.select_option": {"tf": 1}, "lightpanda.AsyncSession.selectOption": {"tf": 1}, "lightpanda.AsyncSession.wait_for_selector": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.waitForSelector": {"tf": 1.4142135623730951}}, "df": 16, "s": {"docs": {"lightpanda.Session.find_element": {"tf": 1.7320508075688772}, "lightpanda.Session.findElement": {"tf": 1.7320508075688772}, "lightpanda.Session.interactive_elements": {"tf": 1}, "lightpanda.Session.interactiveElements": {"tf": 1}, "lightpanda.AsyncSession.find_element": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.findElement": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.interactive_elements": {"tf": 1}, "lightpanda.AsyncSession.interactiveElements": {"tf": 1}}, "df": 8}}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"lightpanda.Session.click": {"tf": 1}, "lightpanda.Session.fill": {"tf": 1}, "lightpanda.Session.hover": {"tf": 1}, "lightpanda.Session.select_option": {"tf": 1}, "lightpanda.Session.selectOption": {"tf": 1}, "lightpanda.Session.set_checked": {"tf": 1}, "lightpanda.Session.setChecked": {"tf": 1}, "lightpanda.AsyncSession.click": {"tf": 1}, "lightpanda.AsyncSession.fill": {"tf": 1}, "lightpanda.AsyncSession.hover": {"tf": 1}, "lightpanda.AsyncSession.select_option": {"tf": 1}, "lightpanda.AsyncSession.selectOption": {"tf": 1}, "lightpanda.AsyncSession.set_checked": {"tf": 1}, "lightpanda.AsyncSession.setChecked": {"tf": 1}}, "df": 14}}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.evaluate": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.evaluate": {"tf": 1.7320508075688772}}, "df": 2, "s": {"docs": {"lightpanda.Session.wait_for_script": {"tf": 1}, "lightpanda.Session.waitForScript": {"tf": 1}, "lightpanda.AsyncSession.wait_for_script": {"tf": 1}, "lightpanda.AsyncSession.waitForScript": {"tf": 1}}, "df": 4}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"lightpanda.Session.extract": {"tf": 1.7320508075688772}, "lightpanda.Session.get_cookies": {"tf": 1}, "lightpanda.Session.getCookies": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.get_cookies": {"tf": 1}, "lightpanda.AsyncSession.getCookies": {"tf": 1}}, "df": 6}}, "n": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.Session.wait_for_script": {"tf": 1}, "lightpanda.Session.waitForScript": {"tf": 1}, "lightpanda.AsyncSession.wait_for_script": {"tf": 1}, "lightpanda.AsyncSession.waitForScript": {"tf": 1}}, "df": 4, "s": {"docs": {"lightpanda.Session.hover": {"tf": 1}, "lightpanda.Session.press": {"tf": 1}, "lightpanda.Session.select_option": {"tf": 1}, "lightpanda.Session.selectOption": {"tf": 1}, "lightpanda.Session.set_checked": {"tf": 1}, "lightpanda.Session.setChecked": {"tf": 1}, "lightpanda.AsyncSession.hover": {"tf": 1}, "lightpanda.AsyncSession.press": {"tf": 1}, "lightpanda.AsyncSession.select_option": {"tf": 1}, "lightpanda.AsyncSession.selectOption": {"tf": 1}, "lightpanda.AsyncSession.set_checked": {"tf": 1}, "lightpanda.AsyncSession.setChecked": {"tf": 1}}, "df": 12}}}}}, "s": {"docs": {}, "df": 0, "c": {"docs": {"lightpanda.Session.press": {"tf": 1}, "lightpanda.AsyncSession.press": {"tf": 1}}, "df": 2, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.Session.press": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.evaluate": {"tf": 1}, "lightpanda.AsyncSession.press": {"tf": 1.4142135623730951}}, "df": 4}}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {"lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}}, "df": 2, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.Session.search": {"tf": 1}, "lightpanda.AsyncSession.search": {"tf": 1}}, "df": 2}}}}}}, "v": {"docs": {"lightpanda.Session.get_env": {"tf": 1}, "lightpanda.Session.getEnv": {"tf": 1}, "lightpanda.run_script": {"tf": 1}, "lightpanda.AsyncBrowser.__init__": {"tf": 1}, "lightpanda.AsyncSession.get_env": {"tf": 1}, "lightpanda.AsyncSession.getEnv": {"tf": 1}}, "df": 6, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.run_script": {"tf": 1}}, "df": 1}}}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"lightpanda.Session.press": {"tf": 2}, "lightpanda.AsyncSession.press": {"tf": 2}}, "df": 2}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.run_script": {"tf": 1}}, "df": 1}}}, "y": {"docs": {"lightpanda.AsyncBrowser": {"tf": 1}}, "df": 1}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"lightpanda.Session.extract": {"tf": 1}, "lightpanda.Session.wait_for_state": {"tf": 1}, "lightpanda.Session.waitForState": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}, "lightpanda.AsyncSession.wait_for_state": {"tf": 1}, "lightpanda.AsyncSession.waitForState": {"tf": 1}}, "df": 6}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"lightpanda.LightpandaError": {"tf": 1}, "lightpanda.ProtocolError": {"tf": 1}}, "df": 2, "s": {"docs": {"lightpanda.Session.extract": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}}, "df": 2}}}}}, "t": {"docs": {}, "df": 0, "c": {"docs": {"lightpanda.Session.structured_data": {"tf": 1}, "lightpanda.Session.structuredData": {"tf": 1}, "lightpanda.AsyncSession.structured_data": {"tf": 1}, "lightpanda.AsyncSession.structuredData": {"tf": 1}}, "df": 4}}, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"lightpanda.Session.wait_for_script": {"tf": 1}, "lightpanda.Session.waitForScript": {"tf": 1}, "lightpanda.AsyncSession.wait_for_script": {"tf": 1}, "lightpanda.AsyncSession.waitForScript": {"tf": 1}}, "df": 4}}}}, "t": {"docs": {"lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}}, "df": 2, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda": {"tf": 1.4142135623730951}, "lightpanda.Session.click": {"tf": 1}, "lightpanda.Session.extract": {"tf": 2.6457513110645907}, "lightpanda.Session.scroll": {"tf": 1}, "lightpanda.Session.search": {"tf": 1}, "lightpanda.AsyncSession.click": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 2.6457513110645907}, "lightpanda.AsyncSession.scroll": {"tf": 1}, "lightpanda.AsyncSession.search": {"tf": 1}}, "df": 9, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.extract": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}}, "df": 2}}}}}}}, "c": {"docs": {}, "df": 0, "k": {"docs": {"lightpanda.Session.wait_for_script": {"tf": 1}, "lightpanda.Session.waitForScript": {"tf": 1}, "lightpanda.AsyncSession.wait_for_script": {"tf": 1}, "lightpanda.AsyncSession.waitForScript": {"tf": 1}}, "df": 4}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.AsyncBrowser.__init__": {"tf": 1}, "lightpanda.ProtocolError": {"tf": 1}}, "df": 2}}}}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda": {"tf": 1}, "lightpanda.Browser": {"tf": 1.4142135623730951}, "lightpanda.Browser.__init__": {"tf": 1}, "lightpanda.Browser.tools": {"tf": 1}, "lightpanda.Session.call": {"tf": 1}, "lightpanda.Session.click": {"tf": 1.4142135623730951}, "lightpanda.Session.console_logs": {"tf": 1.4142135623730951}, "lightpanda.Session.consoleLogs": {"tf": 1.4142135623730951}, "lightpanda.Session.detect_forms": {"tf": 1}, "lightpanda.Session.detectForms": {"tf": 1}, "lightpanda.Session.evaluate": {"tf": 2.6457513110645907}, "lightpanda.Session.extract": {"tf": 2.449489742783178}, "lightpanda.Session.find_element": {"tf": 1}, "lightpanda.Session.findElement": {"tf": 1}, "lightpanda.Session.get_cookies": {"tf": 1.4142135623730951}, "lightpanda.Session.getCookies": {"tf": 1.4142135623730951}, "lightpanda.Session.get_env": {"tf": 1}, "lightpanda.Session.getEnv": {"tf": 1}, "lightpanda.Session.get_url": {"tf": 1.7320508075688772}, "lightpanda.Session.getUrl": {"tf": 1.7320508075688772}, "lightpanda.Session.goto": {"tf": 1}, "lightpanda.Session.html": {"tf": 1}, "lightpanda.Session.interactive_elements": {"tf": 1}, "lightpanda.Session.interactiveElements": {"tf": 1}, "lightpanda.Session.links": {"tf": 1}, "lightpanda.Session.markdown": {"tf": 1.7320508075688772}, "lightpanda.Session.node_details": {"tf": 1.7320508075688772}, "lightpanda.Session.nodeDetails": {"tf": 1.7320508075688772}, "lightpanda.Session.scroll": {"tf": 1.4142135623730951}, "lightpanda.Session.search": {"tf": 2}, "lightpanda.Session.structured_data": {"tf": 1}, "lightpanda.Session.structuredData": {"tf": 1}, "lightpanda.Session.wait_for_script": {"tf": 1}, "lightpanda.Session.waitForScript": {"tf": 1}, "lightpanda.Session.wait_for_selector": {"tf": 1.7320508075688772}, "lightpanda.Session.waitForSelector": {"tf": 1.7320508075688772}, "lightpanda.Session.wait_for_state": {"tf": 1.7320508075688772}, "lightpanda.Session.waitForState": {"tf": 1.7320508075688772}, "lightpanda.run_script": {"tf": 1}, "lightpanda.AsyncBrowser": {"tf": 1}, "lightpanda.AsyncBrowser.wrap": {"tf": 1.7320508075688772}, "lightpanda.AsyncBrowser.start": {"tf": 1}, "lightpanda.AsyncBrowser.tools": {"tf": 1}, "lightpanda.AsyncBrowser.session": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.call": {"tf": 1}, "lightpanda.AsyncSession.click": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.console_logs": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.consoleLogs": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.detect_forms": {"tf": 1}, "lightpanda.AsyncSession.detectForms": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 2.6457513110645907}, "lightpanda.AsyncSession.extract": {"tf": 2.449489742783178}, "lightpanda.AsyncSession.find_element": {"tf": 1}, "lightpanda.AsyncSession.findElement": {"tf": 1}, "lightpanda.AsyncSession.get_cookies": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.getCookies": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.get_env": {"tf": 1}, "lightpanda.AsyncSession.getEnv": {"tf": 1}, "lightpanda.AsyncSession.get_url": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.getUrl": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.goto": {"tf": 1}, "lightpanda.AsyncSession.html": {"tf": 1}, "lightpanda.AsyncSession.interactive_elements": {"tf": 1}, "lightpanda.AsyncSession.interactiveElements": {"tf": 1}, "lightpanda.AsyncSession.links": {"tf": 1}, "lightpanda.AsyncSession.markdown": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.node_details": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.nodeDetails": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.scroll": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.search": {"tf": 2}, "lightpanda.AsyncSession.structured_data": {"tf": 1}, "lightpanda.AsyncSession.structuredData": {"tf": 1}, "lightpanda.AsyncSession.wait_for_script": {"tf": 1}, "lightpanda.AsyncSession.waitForScript": {"tf": 1}, "lightpanda.AsyncSession.wait_for_selector": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.waitForSelector": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.wait_for_state": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.waitForState": {"tf": 1.7320508075688772}, "lightpanda.LightpandaError": {"tf": 1}}, "df": 79, "i": {"docs": {}, "df": 0, "r": {"docs": {"lightpanda.Session.detect_forms": {"tf": 1}, "lightpanda.Session.detectForms": {"tf": 1}, "lightpanda.Session.find_element": {"tf": 1}, "lightpanda.Session.findElement": {"tf": 1}, "lightpanda.AsyncSession.detect_forms": {"tf": 1}, "lightpanda.AsyncSession.detectForms": {"tf": 1}, "lightpanda.AsyncSession.find_element": {"tf": 1}, "lightpanda.AsyncSession.findElement": {"tf": 1}}, "df": 8}}, "n": {"docs": {"lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}}, "df": 2}, "r": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}}, "df": 2}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.Session.detect_forms": {"tf": 1}, "lightpanda.Session.detectForms": {"tf": 1}, "lightpanda.Session.extract": {"tf": 1}, "lightpanda.Session.get_env": {"tf": 1}, "lightpanda.Session.getEnv": {"tf": 1}, "lightpanda.Session.html": {"tf": 1}, "lightpanda.Session.interactive_elements": {"tf": 1}, "lightpanda.Session.interactiveElements": {"tf": 1}, "lightpanda.Session.links": {"tf": 1}, "lightpanda.Session.node_details": {"tf": 1}, "lightpanda.Session.nodeDetails": {"tf": 1}, "lightpanda.Session.search": {"tf": 1}, "lightpanda.Session.structured_data": {"tf": 1}, "lightpanda.Session.structuredData": {"tf": 1}, "lightpanda.AsyncSession.detect_forms": {"tf": 1}, "lightpanda.AsyncSession.detectForms": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}, "lightpanda.AsyncSession.get_env": {"tf": 1}, "lightpanda.AsyncSession.getEnv": {"tf": 1}, "lightpanda.AsyncSession.html": {"tf": 1}, "lightpanda.AsyncSession.interactive_elements": {"tf": 1}, "lightpanda.AsyncSession.interactiveElements": {"tf": 1}, "lightpanda.AsyncSession.links": {"tf": 1}, "lightpanda.AsyncSession.node_details": {"tf": 1}, "lightpanda.AsyncSession.nodeDetails": {"tf": 1}, "lightpanda.AsyncSession.search": {"tf": 1}, "lightpanda.AsyncSession.structured_data": {"tf": 1}, "lightpanda.AsyncSession.structuredData": {"tf": 1}}, "df": 28}}, "i": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Session.get_url": {"tf": 1.4142135623730951}, "lightpanda.Session.getUrl": {"tf": 1.4142135623730951}, "lightpanda.Session.search": {"tf": 1.4142135623730951}, "lightpanda.Session.wait_for_state": {"tf": 1}, "lightpanda.Session.waitForState": {"tf": 1}, "lightpanda.AsyncBrowser.__init__": {"tf": 1}, "lightpanda.AsyncSession.get_url": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.getUrl": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.search": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.wait_for_state": {"tf": 1}, "lightpanda.AsyncSession.waitForState": {"tf": 1}}, "df": 11}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"lightpanda.run_script_async": {"tf": 1}}, "df": 1, "s": {"docs": {"lightpanda.AsyncBrowser.__init__": {"tf": 1}}, "df": 1}}}}}}, "o": {"docs": {"lightpanda.Session.detect_forms": {"tf": 1}, "lightpanda.Session.detectForms": {"tf": 1}, "lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.Session.extract": {"tf": 2}, "lightpanda.Session.get_cookies": {"tf": 1.7320508075688772}, "lightpanda.Session.getCookies": {"tf": 1.7320508075688772}, "lightpanda.Session.get_url": {"tf": 1}, "lightpanda.Session.getUrl": {"tf": 1}, "lightpanda.Session.goto": {"tf": 1}, "lightpanda.Session.interactive_elements": {"tf": 1}, "lightpanda.Session.interactiveElements": {"tf": 1}, "lightpanda.Session.links": {"tf": 1.4142135623730951}, "lightpanda.Session.markdown": {"tf": 1.4142135623730951}, "lightpanda.Session.node_details": {"tf": 1.7320508075688772}, "lightpanda.Session.nodeDetails": {"tf": 1.7320508075688772}, "lightpanda.Session.search": {"tf": 1.4142135623730951}, "lightpanda.Session.structured_data": {"tf": 1}, "lightpanda.Session.structuredData": {"tf": 1}, "lightpanda.Session.tree": {"tf": 1.4142135623730951}, "lightpanda.Session.wait_for_selector": {"tf": 1}, "lightpanda.Session.waitForSelector": {"tf": 1}, "lightpanda.Session.wait_for_state": {"tf": 1}, "lightpanda.Session.waitForState": {"tf": 1}, "lightpanda.run_script": {"tf": 1}, "lightpanda.AsyncBrowser.__init__": {"tf": 1}, "lightpanda.AsyncBrowser.session": {"tf": 1}, "lightpanda.AsyncSession.detect_forms": {"tf": 1}, "lightpanda.AsyncSession.detectForms": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 2}, "lightpanda.AsyncSession.get_cookies": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.getCookies": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.get_url": {"tf": 1}, "lightpanda.AsyncSession.getUrl": {"tf": 1}, "lightpanda.AsyncSession.goto": {"tf": 1}, "lightpanda.AsyncSession.interactive_elements": {"tf": 1}, "lightpanda.AsyncSession.interactiveElements": {"tf": 1}, "lightpanda.AsyncSession.links": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.markdown": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.node_details": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.nodeDetails": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.search": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.structured_data": {"tf": 1}, "lightpanda.AsyncSession.structuredData": {"tf": 1}, "lightpanda.AsyncSession.tree": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.wait_for_selector": {"tf": 1}, "lightpanda.AsyncSession.waitForSelector": {"tf": 1}, "lightpanda.AsyncSession.wait_for_state": {"tf": 1}, "lightpanda.AsyncSession.waitForState": {"tf": 1}}, "df": 49, "o": {"docs": {}, "df": 0, "l": {"docs": {"lightpanda.Browser.tools": {"tf": 1}, "lightpanda.Session.call": {"tf": 1}, "lightpanda.Session.get_env": {"tf": 1}, "lightpanda.Session.getEnv": {"tf": 1}, "lightpanda.AsyncBrowser.__init__": {"tf": 1}, "lightpanda.AsyncBrowser.start": {"tf": 1}, "lightpanda.AsyncBrowser.tools": {"tf": 1}, "lightpanda.AsyncSession.call": {"tf": 1}, "lightpanda.AsyncSession.get_env": {"tf": 1}, "lightpanda.AsyncSession.getEnv": {"tf": 1}, "lightpanda.ToolError": {"tf": 1}}, "df": 11, "s": {"docs": {"lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}}, "df": 2}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Session.hover": {"tf": 1}, "lightpanda.AsyncSession.hover": {"tf": 1}}, "df": 2}}}}}}, "p": {"3": {"docs": {"lightpanda.Session.extract": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.extract": {"tf": 1.4142135623730951}}, "df": 2}, "docs": {"lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.Session.extract": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}}, "df": 4}}, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.extract": {"tf": 1}, "lightpanda.Session.node_details": {"tf": 1}, "lightpanda.Session.nodeDetails": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}, "lightpanda.AsyncSession.node_details": {"tf": 1}, "lightpanda.AsyncSession.nodeDetails": {"tf": 1}}, "df": 6, "s": {"docs": {"lightpanda.Session.detect_forms": {"tf": 1}, "lightpanda.Session.detectForms": {"tf": 1}, "lightpanda.AsyncSession.detect_forms": {"tf": 1}, "lightpanda.AsyncSession.detectForms": {"tf": 1}}, "df": 4}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}}, "df": 2}}}}}, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"lightpanda.Session.search": {"tf": 1}, "lightpanda.AsyncSession.search": {"tf": 1}}, "df": 2}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"lightpanda.Session.extract": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}}, "df": 2}}}}, "g": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"lightpanda.Session.hover": {"tf": 1}, "lightpanda.AsyncSession.hover": {"tf": 1}}, "df": 2}}}, "s": {"docs": {"lightpanda.Session.press": {"tf": 1}, "lightpanda.AsyncSession.press": {"tf": 1}}, "df": 2}}}}}}, "e": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.find_element": {"tf": 1}, "lightpanda.Session.findElement": {"tf": 1}, "lightpanda.Session.node_details": {"tf": 1}, "lightpanda.Session.nodeDetails": {"tf": 1}, "lightpanda.Session.tree": {"tf": 1}, "lightpanda.AsyncSession.find_element": {"tf": 1}, "lightpanda.AsyncSession.findElement": {"tf": 1}, "lightpanda.AsyncSession.node_details": {"tf": 1}, "lightpanda.AsyncSession.nodeDetails": {"tf": 1}, "lightpanda.AsyncSession.tree": {"tf": 1}}, "df": 10, "/": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "n": {"docs": {"lightpanda.Session.extract": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}}, "df": 2}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.get_cookies": {"tf": 1}, "lightpanda.Session.getCookies": {"tf": 1}, "lightpanda.Session.wait_for_script": {"tf": 1}, "lightpanda.Session.waitForScript": {"tf": 1}, "lightpanda.AsyncSession.get_cookies": {"tf": 1}, "lightpanda.AsyncSession.getCookies": {"tf": 1}, "lightpanda.AsyncSession.wait_for_script": {"tf": 1}, "lightpanda.AsyncSession.waitForScript": {"tf": 1}}, "df": 8}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "y": {"docs": {"lightpanda.Session.wait_for_script": {"tf": 1}, "lightpanda.Session.waitForScript": {"tf": 1}, "lightpanda.AsyncSession.wait_for_script": {"tf": 1}, "lightpanda.AsyncSession.waitForScript": {"tf": 1}}, "df": 4}}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.Session.extract": {"tf": 2}, "lightpanda.Session.fill": {"tf": 1}, "lightpanda.Session.links": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.extract": {"tf": 2}, "lightpanda.AsyncSession.fill": {"tf": 1}, "lightpanda.AsyncSession.links": {"tf": 1.4142135623730951}}, "df": 6}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Session.extract": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}}, "df": 2}}}, "g": {"docs": {"lightpanda.Session.node_details": {"tf": 1}, "lightpanda.Session.nodeDetails": {"tf": 1}, "lightpanda.AsyncSession.node_details": {"tf": 1}, "lightpanda.AsyncSession.nodeDetails": {"tf": 1}}, "df": 4}, "b": {"docs": {"lightpanda.Session.press": {"tf": 1}, "lightpanda.AsyncSession.press": {"tf": 1}}, "df": 2}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "y": {"docs": {"lightpanda.Session.search": {"tf": 1}, "lightpanda.AsyncSession.search": {"tf": 1}}, "df": 2}}}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {"lightpanda.Session.node_details": {"tf": 1}, "lightpanda.Session.nodeDetails": {"tf": 1}, "lightpanda.AsyncSession.node_details": {"tf": 1}, "lightpanda.AsyncSession.nodeDetails": {"tf": 1}}, "df": 4}}}}, "o": {"docs": {}, "df": 0, "n": {"docs": {"lightpanda.Browser": {"tf": 1}, "lightpanda.Session.click": {"tf": 1}, "lightpanda.Session.detect_forms": {"tf": 1}, "lightpanda.Session.detectForms": {"tf": 1}, "lightpanda.Session.press": {"tf": 1}, "lightpanda.Session.search": {"tf": 1.7320508075688772}, "lightpanda.Session.wait_for_script": {"tf": 1}, "lightpanda.Session.waitForScript": {"tf": 1}, "lightpanda.Session.wait_for_state": {"tf": 1}, "lightpanda.Session.waitForState": {"tf": 1}, "lightpanda.run_script": {"tf": 1}, "lightpanda.AsyncBrowser": {"tf": 1}, "lightpanda.AsyncBrowser.session": {"tf": 1}, "lightpanda.AsyncSession.click": {"tf": 1}, "lightpanda.AsyncSession.detect_forms": {"tf": 1}, "lightpanda.AsyncSession.detectForms": {"tf": 1}, "lightpanda.AsyncSession.press": {"tf": 1}, "lightpanda.AsyncSession.search": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.wait_for_script": {"tf": 1}, "lightpanda.AsyncSession.waitForScript": {"tf": 1}, "lightpanda.AsyncSession.wait_for_state": {"tf": 1}, "lightpanda.AsyncSession.waitForState": {"tf": 1}}, "df": 22, "e": {"docs": {"lightpanda.Session": {"tf": 1}, "lightpanda.Session.extract": {"tf": 1}, "lightpanda.AsyncSession": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}}, "df": 4}, "l": {"docs": {}, "df": 0, "y": {"docs": {"lightpanda.Session.extract": {"tf": 1}, "lightpanda.Session.get_env": {"tf": 1}, "lightpanda.Session.getEnv": {"tf": 1}, "lightpanda.Session.html": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}, "lightpanda.AsyncSession.get_env": {"tf": 1}, "lightpanda.AsyncSession.getEnv": {"tf": 1}, "lightpanda.AsyncSession.html": {"tf": 1}}, "df": 8}}}, "s": {"docs": {"lightpanda.Browser": {"tf": 1}}, "df": 1}, "r": {"docs": {"lightpanda.Browser.__init__": {"tf": 1}, "lightpanda.Session.click": {"tf": 1}, "lightpanda.Session.evaluate": {"tf": 1.4142135623730951}, "lightpanda.Session.extract": {"tf": 1}, "lightpanda.Session.fill": {"tf": 1}, "lightpanda.Session.get_cookies": {"tf": 1}, "lightpanda.Session.getCookies": {"tf": 1}, "lightpanda.Session.get_url": {"tf": 1}, "lightpanda.Session.getUrl": {"tf": 1}, "lightpanda.Session.hover": {"tf": 1}, "lightpanda.Session.html": {"tf": 1}, "lightpanda.Session.markdown": {"tf": 1.4142135623730951}, "lightpanda.Session.press": {"tf": 1.4142135623730951}, "lightpanda.Session.scroll": {"tf": 1}, "lightpanda.Session.search": {"tf": 1.4142135623730951}, "lightpanda.Session.select_option": {"tf": 1}, "lightpanda.Session.selectOption": {"tf": 1}, "lightpanda.Session.set_checked": {"tf": 1.7320508075688772}, "lightpanda.Session.setChecked": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.click": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.extract": {"tf": 1}, "lightpanda.AsyncSession.fill": {"tf": 1}, "lightpanda.AsyncSession.get_cookies": {"tf": 1}, "lightpanda.AsyncSession.getCookies": {"tf": 1}, "lightpanda.AsyncSession.get_url": {"tf": 1}, "lightpanda.AsyncSession.getUrl": {"tf": 1}, "lightpanda.AsyncSession.hover": {"tf": 1}, "lightpanda.AsyncSession.html": {"tf": 1}, "lightpanda.AsyncSession.markdown": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.press": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.scroll": {"tf": 1}, "lightpanda.AsyncSession.search": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.select_option": {"tf": 1}, "lightpanda.AsyncSession.selectOption": {"tf": 1}, "lightpanda.AsyncSession.set_checked": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.setChecked": {"tf": 1.7320508075688772}}, "df": 37}, "w": {"docs": {}, "df": 0, "n": {"docs": {"lightpanda.Session": {"tf": 1}, "lightpanda.Session.extract": {"tf": 1}, "lightpanda.AsyncSession": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}}, "df": 4}}, "b": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.Session.extract": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.evaluate": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1.7320508075688772}}, "df": 4, "s": {"docs": {"lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.Session.links": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}, "lightpanda.AsyncSession.links": {"tf": 1}}, "df": 4}}}}}}, "f": {"docs": {"lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.Session.get_cookies": {"tf": 1}, "lightpanda.Session.getCookies": {"tf": 1}, "lightpanda.Session.search": {"tf": 1}, "lightpanda.Session.wait_for_script": {"tf": 1}, "lightpanda.Session.waitForScript": {"tf": 1}, "lightpanda.Session.wait_for_selector": {"tf": 1}, "lightpanda.Session.waitForSelector": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}, "lightpanda.AsyncSession.get_cookies": {"tf": 1}, "lightpanda.AsyncSession.getCookies": {"tf": 1}, "lightpanda.AsyncSession.search": {"tf": 1}, "lightpanda.AsyncSession.wait_for_script": {"tf": 1}, "lightpanda.AsyncSession.waitForScript": {"tf": 1}, "lightpanda.AsyncSession.wait_for_selector": {"tf": 1}, "lightpanda.AsyncSession.waitForSelector": {"tf": 1}, "lightpanda.run_script_async": {"tf": 1}}, "df": 17}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.Session.extract": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.extract": {"tf": 1.4142135623730951}}, "df": 2}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "l": {"docs": {"lightpanda.Session.html": {"tf": 1}, "lightpanda.AsyncSession.html": {"tf": 1}}, "df": 2}}}}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"lightpanda.Session.get_env": {"tf": 1}, "lightpanda.Session.getEnv": {"tf": 1}, "lightpanda.AsyncSession.get_env": {"tf": 1}, "lightpanda.AsyncSession.getEnv": {"tf": 1}}, "df": 4, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.search": {"tf": 1}, "lightpanda.AsyncSession.search": {"tf": 1}}, "df": 2}}}}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"lightpanda.Session.hover": {"tf": 1}, "lightpanda.Session.search": {"tf": 1}, "lightpanda.AsyncSession.hover": {"tf": 1}, "lightpanda.AsyncSession.search": {"tf": 1}}, "df": 4}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"lightpanda.Session.interactive_elements": {"tf": 1}, "lightpanda.Session.interactiveElements": {"tf": 1}, "lightpanda.Session.links": {"tf": 1}, "lightpanda.Session.structured_data": {"tf": 1}, "lightpanda.Session.structuredData": {"tf": 1}, "lightpanda.AsyncSession.interactive_elements": {"tf": 1}, "lightpanda.AsyncSession.interactiveElements": {"tf": 1}, "lightpanda.AsyncSession.links": {"tf": 1}, "lightpanda.AsyncSession.structured_data": {"tf": 1}, "lightpanda.AsyncSession.structuredData": {"tf": 1}}, "df": 10}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "h": {"docs": {"lightpanda.Session.structured_data": {"tf": 1}, "lightpanda.Session.structuredData": {"tf": 1}, "lightpanda.AsyncSession.structured_data": {"tf": 1}, "lightpanda.AsyncSession.structuredData": {"tf": 1}}, "df": 4}}}}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"lightpanda.Session.select_option": {"tf": 1}, "lightpanda.Session.selectOption": {"tf": 1}, "lightpanda.AsyncSession.select_option": {"tf": 1}, "lightpanda.AsyncSession.selectOption": {"tf": 1}}, "df": 4, "s": {"docs": {"lightpanda.Session.node_details": {"tf": 1}, "lightpanda.Session.nodeDetails": {"tf": 1}, "lightpanda.AsyncSession.node_details": {"tf": 1}, "lightpanda.AsyncSession.nodeDetails": {"tf": 1}}, "df": 4}}}}}}}, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"lightpanda.Browser": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "y": {"docs": {"lightpanda.Session": {"tf": 1}, "lightpanda.Session.goto": {"tf": 1}, "lightpanda.AsyncSession": {"tf": 1}, "lightpanda.AsyncSession.goto": {"tf": 1}}, "df": 4}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Session.call": {"tf": 1}, "lightpanda.AsyncSession.call": {"tf": 1}}, "df": 2}}}}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Session.console_logs": {"tf": 1.4142135623730951}, "lightpanda.Session.consoleLogs": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.console_logs": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.consoleLogs": {"tf": 1.4142135623730951}}, "df": 4}}}}}}, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Session.hover": {"tf": 1}, "lightpanda.AsyncSession.hover": {"tf": 1}}, "df": 2}}}}, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"lightpanda.Session.extract": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}}, "df": 2}}}}}, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"lightpanda.Session.extract": {"tf": 2.8284271247461903}, "lightpanda.Session.node_details": {"tf": 1}, "lightpanda.Session.nodeDetails": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 2.8284271247461903}, "lightpanda.AsyncSession.node_details": {"tf": 1}, "lightpanda.AsyncSession.nodeDetails": {"tf": 1}}, "df": 6, "e": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Session.extract": {"tf": 1}, "lightpanda.Session.get_cookies": {"tf": 1}, "lightpanda.Session.getCookies": {"tf": 1}, "lightpanda.Session.search": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}, "lightpanda.AsyncSession.get_cookies": {"tf": 1}, "lightpanda.AsyncSession.getCookies": {"tf": 1}, "lightpanda.AsyncSession.search": {"tf": 1}}, "df": 8}, "d": {"docs": {"lightpanda.Session.wait_for_selector": {"tf": 1}, "lightpanda.Session.waitForSelector": {"tf": 1}, "lightpanda.AsyncSession.wait_for_selector": {"tf": 1}, "lightpanda.AsyncSession.waitForSelector": {"tf": 1}}, "df": 4}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"lightpanda.Session.find_element": {"tf": 1}, "lightpanda.Session.findElement": {"tf": 1}, "lightpanda.Session.wait_for_selector": {"tf": 1}, "lightpanda.Session.waitForSelector": {"tf": 1}, "lightpanda.AsyncSession.find_element": {"tf": 1}, "lightpanda.AsyncSession.findElement": {"tf": 1}, "lightpanda.AsyncSession.wait_for_selector": {"tf": 1}, "lightpanda.AsyncSession.waitForSelector": {"tf": 1}}, "df": 8}}}}}}, "r": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "n": {"docs": {"lightpanda.Session.extract": {"tf": 1}, "lightpanda.Session.html": {"tf": 1}, "lightpanda.Session.markdown": {"tf": 1.4142135623730951}, "lightpanda.Session.search": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}, "lightpanda.AsyncSession.html": {"tf": 1}, "lightpanda.AsyncSession.markdown": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.search": {"tf": 1}}, "df": 8}}}}}}, "y": {"docs": {"lightpanda.Session.get_url": {"tf": 1}, "lightpanda.Session.getUrl": {"tf": 1}, "lightpanda.Session.search": {"tf": 1}, "lightpanda.Session.wait_for_state": {"tf": 1}, "lightpanda.Session.waitForState": {"tf": 1}, "lightpanda.AsyncSession.get_url": {"tf": 1}, "lightpanda.AsyncSession.getUrl": {"tf": 1}, "lightpanda.AsyncSession.search": {"tf": 1}, "lightpanda.AsyncSession.wait_for_state": {"tf": 1}, "lightpanda.AsyncSession.waitForState": {"tf": 1}}, "df": 10}, "x": {"docs": {"lightpanda.AsyncBrowser.__init__": {"tf": 1}}, "df": 1, "b": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Session.markdown": {"tf": 1}, "lightpanda.AsyncSession.markdown": {"tf": 1}}, "df": 2}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"lightpanda.Session.tree": {"tf": 1}, "lightpanda.AsyncSession.tree": {"tf": 1}}, "df": 2}}}}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Session.extract": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}}, "df": 2, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"lightpanda.Session.wait_for_state": {"tf": 1}, "lightpanda.Session.waitForState": {"tf": 1}, "lightpanda.AsyncSession.wait_for_state": {"tf": 1}, "lightpanda.AsyncSession.waitForState": {"tf": 1}}, "df": 4}}}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"lightpanda.AsyncBrowser.wrap": {"tf": 1}}, "df": 1}}}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"lightpanda.Session.hover": {"tf": 1}, "lightpanda.AsyncSession.hover": {"tf": 1}}, "df": 2}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"lightpanda.Session.hover": {"tf": 1}, "lightpanda.AsyncSession.hover": {"tf": 1}}, "df": 2}}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.wait_for_script": {"tf": 1}, "lightpanda.Session.waitForScript": {"tf": 1}, "lightpanda.Session.wait_for_state": {"tf": 1}, "lightpanda.Session.waitForState": {"tf": 1}, "lightpanda.AsyncSession.wait_for_script": {"tf": 1}, "lightpanda.AsyncSession.waitForScript": {"tf": 1}, "lightpanda.AsyncSession.wait_for_state": {"tf": 1}, "lightpanda.AsyncSession.waitForState": {"tf": 1}}, "df": 8, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.Session.get_env": {"tf": 1}, "lightpanda.Session.getEnv": {"tf": 1}, "lightpanda.AsyncSession.get_env": {"tf": 1}, "lightpanda.AsyncSession.getEnv": {"tf": 1}}, "df": 4, "e": {"docs": {}, "df": 0, "d": {"docs": {"lightpanda.Browser.tools": {"tf": 1}, "lightpanda.AsyncBrowser.tools": {"tf": 1}, "lightpanda.ToolError": {"tf": 1}}, "df": 3}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {"lightpanda.Session.click": {"tf": 1}, "lightpanda.Session.fill": {"tf": 1}, "lightpanda.Session.hover": {"tf": 1}, "lightpanda.Session.select_option": {"tf": 1}, "lightpanda.Session.selectOption": {"tf": 1}, "lightpanda.Session.set_checked": {"tf": 1}, "lightpanda.Session.setChecked": {"tf": 1}, "lightpanda.AsyncSession.click": {"tf": 1}, "lightpanda.AsyncSession.fill": {"tf": 1}, "lightpanda.AsyncSession.hover": {"tf": 1}, "lightpanda.AsyncSession.select_option": {"tf": 1}, "lightpanda.AsyncSession.selectOption": {"tf": 1}, "lightpanda.AsyncSession.set_checked": {"tf": 1}, "lightpanda.AsyncSession.setChecked": {"tf": 1}}, "df": 14}}}}}}}}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"lightpanda.run_script": {"tf": 1}, "lightpanda.ScriptError": {"tf": 1}}, "df": 2, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.extract": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}}, "df": 2}}}}, "e": {"docs": {}, "df": 0, "d": {"docs": {"lightpanda.Session.get_url": {"tf": 1}, "lightpanda.Session.getUrl": {"tf": 1}, "lightpanda.AsyncSession.get_url": {"tf": 1}, "lightpanda.AsyncSession.getUrl": {"tf": 1}}, "df": 4}}}}}}, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {"lightpanda.Session.detect_forms": {"tf": 1}, "lightpanda.Session.detectForms": {"tf": 1}, "lightpanda.Session.evaluate": {"tf": 1.7320508075688772}, "lightpanda.Session.press": {"tf": 1}, "lightpanda.Session.search": {"tf": 1}, "lightpanda.run_script": {"tf": 1}, "lightpanda.AsyncSession.detect_forms": {"tf": 1}, "lightpanda.AsyncSession.detectForms": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.press": {"tf": 1}, "lightpanda.AsyncSession.search": {"tf": 1}}, "df": 11, "s": {"docs": {"lightpanda.Session.click": {"tf": 1}, "lightpanda.Session.console_logs": {"tf": 1}, "lightpanda.Session.consoleLogs": {"tf": 1}, "lightpanda.Session.find_element": {"tf": 1}, "lightpanda.Session.findElement": {"tf": 1}, "lightpanda.Session.scroll": {"tf": 1}, "lightpanda.Session.search": {"tf": 1}, "lightpanda.Session.wait_for_script": {"tf": 1}, "lightpanda.Session.waitForScript": {"tf": 1}, "lightpanda.Session.wait_for_selector": {"tf": 1}, "lightpanda.Session.waitForSelector": {"tf": 1}, "lightpanda.AsyncSession.click": {"tf": 1}, "lightpanda.AsyncSession.console_logs": {"tf": 1}, "lightpanda.AsyncSession.consoleLogs": {"tf": 1}, "lightpanda.AsyncSession.find_element": {"tf": 1}, "lightpanda.AsyncSession.findElement": {"tf": 1}, "lightpanda.AsyncSession.scroll": {"tf": 1}, "lightpanda.AsyncSession.search": {"tf": 1}, "lightpanda.AsyncSession.wait_for_script": {"tf": 1}, "lightpanda.AsyncSession.waitForScript": {"tf": 1}, "lightpanda.AsyncSession.wait_for_selector": {"tf": 1}, "lightpanda.AsyncSession.waitForSelector": {"tf": 1}}, "df": 22}, "e": {"docs": {}, "df": 0, "d": {"docs": {"lightpanda.Session.wait_for_state": {"tf": 1}, "lightpanda.Session.waitForState": {"tf": 1}, "lightpanda.AsyncSession.wait_for_state": {"tf": 1}, "lightpanda.AsyncSession.waitForState": {"tf": 1}}, "df": 4}}}}}, "r": {"docs": {}, "df": 0, "y": {"docs": {"lightpanda.Session.extract": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}}, "df": 2}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"lightpanda.Session.detect_forms": {"tf": 1}, "lightpanda.Session.detectForms": {"tf": 1}, "lightpanda.AsyncSession.detect_forms": {"tf": 1}, "lightpanda.AsyncSession.detectForms": {"tf": 1}}, "df": 4}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.Session.get_env": {"tf": 1}, "lightpanda.Session.getEnv": {"tf": 1}, "lightpanda.AsyncSession.get_env": {"tf": 1}, "lightpanda.AsyncSession.getEnv": {"tf": 1}, "lightpanda.ProtocolError": {"tf": 1}}, "df": 5}}}}}, "s": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.extract": {"tf": 1}, "lightpanda.Session.node_details": {"tf": 1}, "lightpanda.Session.nodeDetails": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}, "lightpanda.AsyncSession.node_details": {"tf": 1}, "lightpanda.AsyncSession.nodeDetails": {"tf": 1}}, "df": 6, "d": {"docs": {"lightpanda.Session.extract": {"tf": 1}, "lightpanda.Session.links": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}, "lightpanda.AsyncSession.links": {"tf": 1}}, "df": 4}, "s": {"docs": {"lightpanda.Session.node_details": {"tf": 1}, "lightpanda.Session.nodeDetails": {"tf": 1}, "lightpanda.AsyncSession.node_details": {"tf": 1}, "lightpanda.AsyncSession.nodeDetails": {"tf": 1}}, "df": 4}}}}, "r": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.Session.markdown": {"tf": 1}, "lightpanda.AsyncSession.markdown": {"tf": 1}}, "df": 2}}}, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.Session.extract": {"tf": 1.4142135623730951}, "lightpanda.Session.search": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.search": {"tf": 1}}, "df": 4, "s": {"docs": {"lightpanda.Session.search": {"tf": 1.7320508075688772}, "lightpanda.Session.wait_for_state": {"tf": 1}, "lightpanda.Session.waitForState": {"tf": 1}, "lightpanda.AsyncSession.search": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.wait_for_state": {"tf": 1}, "lightpanda.AsyncSession.waitForState": {"tf": 1}}, "df": 6}}}}}, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.extract": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}}, "df": 2}}}}}, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.Session.markdown": {"tf": 1}, "lightpanda.AsyncSession.markdown": {"tf": 1}}, "df": 2}}}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {"lightpanda.Session.extract": {"tf": 1}, "lightpanda.Session.get_env": {"tf": 1}, "lightpanda.Session.getEnv": {"tf": 1}, "lightpanda.Session.markdown": {"tf": 1}, "lightpanda.Session.wait_for_state": {"tf": 1.4142135623730951}, "lightpanda.Session.waitForState": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.extract": {"tf": 1}, "lightpanda.AsyncSession.get_env": {"tf": 1}, "lightpanda.AsyncSession.getEnv": {"tf": 1}, "lightpanda.AsyncSession.markdown": {"tf": 1}, "lightpanda.AsyncSession.wait_for_state": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.waitForState": {"tf": 1.4142135623730951}}, "df": 12, "y": {"docs": {"lightpanda.Session.node_details": {"tf": 1}, "lightpanda.Session.nodeDetails": {"tf": 1}, "lightpanda.AsyncSession.node_details": {"tf": 1}, "lightpanda.AsyncSession.nodeDetails": {"tf": 1}}, "df": 4, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.wait_for_script": {"tf": 1}, "lightpanda.Session.waitForScript": {"tf": 1}, "lightpanda.AsyncSession.wait_for_script": {"tf": 1}, "lightpanda.AsyncSession.waitForScript": {"tf": 1}}, "df": 4}}}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {"lightpanda.Session.wait_for_state": {"tf": 1}, "lightpanda.Session.waitForState": {"tf": 1}, "lightpanda.AsyncSession.wait_for_state": {"tf": 1}, "lightpanda.AsyncSession.waitForState": {"tf": 1}}, "df": 4}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"lightpanda.Session.extract": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}}, "df": 2}}}}}}, "g": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Session.get_cookies": {"tf": 1}, "lightpanda.Session.getCookies": {"tf": 1}, "lightpanda.AsyncSession.get_cookies": {"tf": 1}, "lightpanda.AsyncSession.getCookies": {"tf": 1}}, "df": 4}}}}}}}, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"lightpanda.Session.markdown": {"tf": 1}, "lightpanda.AsyncSession.markdown": {"tf": 1}}, "df": 2}}}}, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Session.get_url": {"tf": 1}, "lightpanda.Session.getUrl": {"tf": 1}, "lightpanda.AsyncSession.get_url": {"tf": 1}, "lightpanda.AsyncSession.getUrl": {"tf": 1}}, "df": 4}}}}}}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.Session.get_url": {"tf": 1}, "lightpanda.Session.getUrl": {"tf": 1}, "lightpanda.AsyncSession.get_url": {"tf": 1}, "lightpanda.AsyncSession.getUrl": {"tf": 1}}, "df": 4}}}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"lightpanda.Session.goto": {"tf": 1}, "lightpanda.AsyncSession.goto": {"tf": 1}}, "df": 2}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"lightpanda.Session.markdown": {"tf": 1}, "lightpanda.AsyncSession.markdown": {"tf": 1}}, "df": 2, "e": {"docs": {}, "df": 0, "d": {"docs": {"lightpanda.Session.wait_for_state": {"tf": 1}, "lightpanda.Session.waitForState": {"tf": 1}, "lightpanda.AsyncSession.wait_for_state": {"tf": 1}, "lightpanda.AsyncSession.waitForState": {"tf": 1}}, "df": 4}}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.call": {"tf": 1}, "lightpanda.AsyncSession.call": {"tf": 1}}, "df": 2}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.find_element": {"tf": 1}, "lightpanda.Session.findElement": {"tf": 1}, "lightpanda.Session.node_details": {"tf": 1}, "lightpanda.Session.nodeDetails": {"tf": 1}, "lightpanda.Session.tree": {"tf": 1}, "lightpanda.AsyncSession.find_element": {"tf": 1}, "lightpanda.AsyncSession.findElement": {"tf": 1}, "lightpanda.AsyncSession.node_details": {"tf": 1}, "lightpanda.AsyncSession.nodeDetails": {"tf": 1}, "lightpanda.AsyncSession.tree": {"tf": 1}}, "df": 10}}, "w": {"docs": {"lightpanda.Session.wait_for_script": {"tf": 1}, "lightpanda.Session.waitForScript": {"tf": 1}, "lightpanda.AsyncSession.wait_for_script": {"tf": 1}, "lightpanda.AsyncSession.waitForScript": {"tf": 1}}, "df": 4}}, "u": {"docs": {}, "df": 0, "n": {"docs": {"lightpanda.Session.search": {"tf": 1}, "lightpanda.AsyncSession.search": {"tf": 1}, "lightpanda.run_script_async": {"tf": 1}, "lightpanda.ScriptError": {"tf": 1}}, "df": 4, "s": {"docs": {"lightpanda.Session.evaluate": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.evaluate": {"tf": 1.4142135623730951}, "lightpanda.run_script_async": {"tf": 1}}, "df": 3}, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"lightpanda.AsyncBrowser.wrap": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "k": {"docs": {"lightpanda.Session.extract": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.extract": {"tf": 1.7320508075688772}}, "df": 2}}, "w": {"docs": {"lightpanda.Session.html": {"tf": 1}, "lightpanda.AsyncSession.html": {"tf": 1}}, "df": 2}, "t": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.search": {"tf": 1}, "lightpanda.AsyncSession.search": {"tf": 1}}, "df": 2}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {"lightpanda.Session.set_checked": {"tf": 1}, "lightpanda.Session.setChecked": {"tf": 1}, "lightpanda.AsyncSession.set_checked": {"tf": 1}, "lightpanda.AsyncSession.setChecked": {"tf": 1}}, "df": 4}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.run_script": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.Session.press": {"tf": 1}, "lightpanda.AsyncSession.press": {"tf": 1}}, "df": 2}}}}, "p": {"docs": {}, "df": 0, "c": {"docs": {"lightpanda.ProtocolError": {"tf": 1}}, "df": 1}}}, "j": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}}, "df": 2}}}}}}}}}, "s": {"docs": {"lightpanda.Session.wait_for_script": {"tf": 1}, "lightpanda.Session.waitForScript": {"tf": 1}, "lightpanda.Session.wait_for_state": {"tf": 1}, "lightpanda.Session.waitForState": {"tf": 1}, "lightpanda.AsyncSession.wait_for_script": {"tf": 1}, "lightpanda.AsyncSession.waitForScript": {"tf": 1}, "lightpanda.AsyncSession.wait_for_state": {"tf": 1}, "lightpanda.AsyncSession.waitForState": {"tf": 1}, "lightpanda.ToolError": {"tf": 1}}, "df": 9, "o": {"docs": {}, "df": 0, "n": {"docs": {"lightpanda.Session.evaluate": {"tf": 1.4142135623730951}, "lightpanda.Session.extract": {"tf": 1.4142135623730951}, "lightpanda.Session.links": {"tf": 1}, "lightpanda.Session.structured_data": {"tf": 1}, "lightpanda.Session.structuredData": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.extract": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.links": {"tf": 1}, "lightpanda.AsyncSession.structured_data": {"tf": 1}, "lightpanda.AsyncSession.structuredData": {"tf": 1}, "lightpanda.ProtocolError": {"tf": 1}}, "df": 11}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.Session.markdown": {"tf": 1}, "lightpanda.AsyncSession.markdown": {"tf": 1}}, "df": 2}}}}, "v": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"lightpanda.Session.get_env": {"tf": 1}, "lightpanda.Session.getEnv": {"tf": 1}, "lightpanda.AsyncSession.get_env": {"tf": 1}, "lightpanda.AsyncSession.getEnv": {"tf": 1}}, "df": 4, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}}, "df": 2}}}}, "n": {"docs": {}, "df": 0, "t": {"docs": {"lightpanda.run_script_async": {"tf": 1}}, "df": 1}}}}}, "l": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.evaluate": {"tf": 1.7320508075688772}, "lightpanda.Session.extract": {"tf": 1.7320508075688772}, "lightpanda.Session.get_env": {"tf": 1}, "lightpanda.Session.getEnv": {"tf": 1}, "lightpanda.Session.node_details": {"tf": 1}, "lightpanda.Session.nodeDetails": {"tf": 1}, "lightpanda.Session.select_option": {"tf": 1}, "lightpanda.Session.selectOption": {"tf": 1}, "lightpanda.Session.tree": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.extract": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.get_env": {"tf": 1}, "lightpanda.AsyncSession.getEnv": {"tf": 1}, "lightpanda.AsyncSession.node_details": {"tf": 1}, "lightpanda.AsyncSession.nodeDetails": {"tf": 1}, "lightpanda.AsyncSession.select_option": {"tf": 1}, "lightpanda.AsyncSession.selectOption": {"tf": 1}, "lightpanda.AsyncSession.tree": {"tf": 1}}, "df": 18, "s": {"docs": {"lightpanda.Session.evaluate": {"tf": 1.4142135623730951}, "lightpanda.Session.get_env": {"tf": 1}, "lightpanda.Session.getEnv": {"tf": 1}, "lightpanda.run_script": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.get_env": {"tf": 1}, "lightpanda.AsyncSession.getEnv": {"tf": 1}}, "df": 7}}}, "i": {"docs": {}, "df": 0, "d": {"docs": {"lightpanda.Session.extract": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}}, "df": 2}}}}, "i": {"docs": {}, "df": 0, "a": {"docs": {"lightpanda.Session.evaluate": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.evaluate": {"tf": 1.4142135623730951}}, "df": 2}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.get_url": {"tf": 1}, "lightpanda.Session.getUrl": {"tf": 1}, "lightpanda.Session.links": {"tf": 1}, "lightpanda.AsyncSession.get_url": {"tf": 1}, "lightpanda.AsyncSession.getUrl": {"tf": 1}, "lightpanda.AsyncSession.links": {"tf": 1}}, "df": 6}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "y": {"docs": {"lightpanda.Session.get_url": {"tf": 1}, "lightpanda.Session.getUrl": {"tf": 1}, "lightpanda.AsyncSession.get_url": {"tf": 1}, "lightpanda.AsyncSession.getUrl": {"tf": 1}}, "df": 4}}}, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"lightpanda.Session.html": {"tf": 1}, "lightpanda.AsyncBrowser.__init__": {"tf": 1}, "lightpanda.AsyncSession.html": {"tf": 1}}, "df": 3}}}}}}}, "y": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Session.evaluate": {"tf": 1}, "lightpanda.AsyncSession.evaluate": {"tf": 1}}, "df": 2}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {"lightpanda.Session.html": {"tf": 1}, "lightpanda.AsyncSession.html": {"tf": 1}}, "df": 2, "r": {"docs": {"lightpanda.Session.extract": {"tf": 1}, "lightpanda.Session.get_env": {"tf": 1}, "lightpanda.Session.getEnv": {"tf": 1}, "lightpanda.AsyncSession.extract": {"tf": 1}, "lightpanda.AsyncSession.get_env": {"tf": 1}, "lightpanda.AsyncSession.getEnv": {"tf": 1}}, "df": 6}}}}, "k": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "y": {"docs": {"lightpanda.Session.press": {"tf": 1.4142135623730951}, "lightpanda.Session.search": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.press": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.search": {"tf": 1.4142135623730951}}, "df": 4, "s": {"docs": {"lightpanda.Session.extract": {"tf": 1.4142135623730951}, "lightpanda.AsyncSession.extract": {"tf": 1.4142135623730951}}, "df": 2}, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"lightpanda.Session.press": {"tf": 1}, "lightpanda.AsyncSession.press": {"tf": 1}}, "df": 2}}}}}, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "n": {"docs": {"lightpanda.Session.press": {"tf": 1}, "lightpanda.AsyncSession.press": {"tf": 1}}, "df": 2}}}}, "u": {"docs": {}, "df": 0, "p": {"docs": {"lightpanda.Session.press": {"tf": 1}, "lightpanda.AsyncSession.press": {"tf": 1}}, "df": 2}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {"lightpanda.Session.extract": {"tf": 1.7320508075688772}, "lightpanda.AsyncSession.extract": {"tf": 1.7320508075688772}}, "df": 2}}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"lightpanda.Session.search": {"tf": 1}, "lightpanda.AsyncSession.search": {"tf": 1}}, "df": 2}}}, "y": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"lightpanda.Session.wait_for_script": {"tf": 1}, "lightpanda.Session.waitForScript": {"tf": 1}, "lightpanda.AsyncSession.wait_for_script": {"tf": 1}, "lightpanda.AsyncSession.waitForScript": {"tf": 1}}, "df": 4}}}}}}}}}}}}}}}}, "x": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "r": {"docs": {"lightpanda.Session.wait_for_state": {"tf": 1}, "lightpanda.Session.waitForState": {"tf": 1}, "lightpanda.AsyncSession.wait_for_state": {"tf": 1}, "lightpanda.AsyncSession.waitForState": {"tf": 1}}, "df": 4}}}, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "o": {"docs": {"lightpanda.run_script": {"tf": 1}}, "df": 1}}}}}}}, "pipeline": ["trimmer"], "_isPrebuiltIndex": true};
+
+ // mirrored in build-search-index.js (part 1)
+ // Also split on html tags. this is a cheap heuristic, but good enough.
+ elasticlunr.tokenizer.setSeperator(/[\s\-.;&_'"=,()]+|<[^>]*>/);
+
+ let searchIndex;
+ if (docs._isPrebuiltIndex) {
+ console.info("using precompiled search index");
+ searchIndex = elasticlunr.Index.load(docs);
+ } else {
+ console.time("building search index");
+ // mirrored in build-search-index.js (part 2)
+ searchIndex = elasticlunr(function () {
+ this.pipeline.remove(elasticlunr.stemmer);
+ this.pipeline.remove(elasticlunr.stopWordFilter);
+ this.addField("qualname");
+ this.addField("fullname");
+ this.addField("annotation");
+ this.addField("default_value");
+ this.addField("signature");
+ this.addField("bases");
+ this.addField("doc");
+ this.setRef("fullname");
+ });
+ for (let doc of docs) {
+ searchIndex.addDoc(doc);
+ }
+ console.timeEnd("building search index");
+ }
+
+ return (term) => searchIndex.search(term, {
+ fields: {
+ qualname: {boost: 4},
+ fullname: {boost: 2},
+ annotation: {boost: 2},
+ default_value: {boost: 2},
+ signature: {boost: 2},
+ bases: {boost: 2},
+ doc: {boost: 1},
+ },
+ expand: true
+ });
+})();
\ No newline at end of file
From 755b3e57209dd5903d524337e8db6698d27179f0 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Adri=C3=A0=20Arrufat?=
Date: Thu, 3 Sep 2026 09:30:37 +0200
Subject: [PATCH 2/2] Link the Python SDK docs to the generated API reference
at /docs/python
Point the hand-written Python SDK reference and the Python guide at the
pdoc output published at lightpanda.io/docs/python/, with per-anchor links
for Browser, AsyncBrowser, Session, AsyncSession, run_script and the error
classes, and a pointer from the Calling an action section to the full
method signatures.
---
src/content/guides/use-python.mdx | 2 +-
src/content/reference/python.mdx | 20 +++++++++++---------
2 files changed, 12 insertions(+), 10 deletions(-)
diff --git a/src/content/guides/use-python.mdx b/src/content/guides/use-python.mdx
index 1d12f02..f5799f3 100644
--- a/src/content/guides/use-python.mdx
+++ b/src/content/guides/use-python.mdx
@@ -164,7 +164,7 @@ asyncio.run(main())
Every browser method is available as a `Session` method, in both camelCase and snake_case (`waitForSelector` and `wait_for_selector` both work), typed and documented in your IDE.
-Find every method's arguments in the [Python SDK reference](/reference/python).
+Find every method's arguments in the [Python SDK reference](/reference/python), and the full signatures and docstrings in the [generated API reference](https://lightpanda.io/docs/python/).
## Replay a saved script
diff --git a/src/content/reference/python.mdx b/src/content/reference/python.mdx
index 6f415c6..ddfc1ee 100644
--- a/src/content/reference/python.mdx
+++ b/src/content/reference/python.mdx
@@ -6,11 +6,11 @@ import { Callout } from 'nextra/components'
# Python SDK
-The [`lightpanda` package](https://pypi.org/project/lightpanda/) exposes `Browser`/`AsyncBrowser`, which spawn and manage the bundled binary, and `Session`/`AsyncSession`, with one method per browser action. See [Use the Python SDK](/guides/use-python) for practical documentation.
+The [`lightpanda` package](https://pypi.org/project/lightpanda/) exposes `Browser`/`AsyncBrowser`, which spawn and manage the bundled binary, and `Session`/`AsyncSession`, with one method per browser action. See [Use the Python SDK](/guides/use-python) for practical documentation, and the [generated API reference](https://lightpanda.io/docs/python/) for every signature and docstring as shipped in the package.
## Browser
-`Browser()` spawns the bundled binary when constructed. It is not fork-inheritable: create a fresh instance in a forked child.
+[`Browser()`](https://lightpanda.io/docs/python/lightpanda.html#Browser) spawns the bundled binary when constructed. It is not fork-inheritable: create a fresh instance in a forked child.
| Argument | Default | Description |
|---|---|---|
@@ -30,7 +30,7 @@ The [`lightpanda` package](https://pypi.org/project/lightpanda/) exposes `Browse
## AsyncBrowser
-`AsyncBrowser` mirrors `Browser` for asyncio: every call runs on a browser-owned thread pool, so the event loop is never blocked.
+[`AsyncBrowser`](https://lightpanda.io/docs/python/lightpanda.html#AsyncBrowser) mirrors `Browser` for asyncio: every call runs on a browser-owned thread pool, so the event loop is never blocked.
| Argument | Default | Description |
|---|---|---|
@@ -50,7 +50,7 @@ The [`lightpanda` package](https://pypi.org/project/lightpanda/) exposes `Browse
## Session and AsyncSession
-`Browser.new_session()` and `AsyncBrowser.new_session()` are the only way to obtain a `Session` or `AsyncSession`; do not construct one directly.
+`Browser.new_session()` and `AsyncBrowser.new_session()` are the only way to obtain a [`Session`](https://lightpanda.io/docs/python/lightpanda.html#Session) or [`AsyncSession`](https://lightpanda.io/docs/python/lightpanda.html#AsyncSession); do not construct one directly.
| Member | Description |
|---|---|
@@ -70,6 +70,8 @@ Every browser action is a method on `Session`/`AsyncSession`, keyword-only. The
A failed action raises `ToolError`.
+The tables below summarize each action. For the exact Python signatures, type hints, and docstrings of every method, see [`Session`](https://lightpanda.io/docs/python/lightpanda.html#Session) and [`AsyncSession`](https://lightpanda.io/docs/python/lightpanda.html#AsyncSession) in the [generated API reference](https://lightpanda.io/docs/python/).
+
In the Arguments column below, `?` marks an optional keyword argument, and `selector` / `backendNodeId` marks a pair where one of the two is required. Prefer `selector` for reproducibility; it also wins when you pass both. `backendNodeId` values come from a prior `tree`, `links`, or `find_element` call. In the Returns column, `JSON` is a parsed Python `dict` or `list`, `text` is a plain string.
### Navigation and search
@@ -154,7 +156,7 @@ These methods block until the page reaches a condition:
## Script replay
-`run_script` and `run_script_async` (its awaitable variant, run in a worker thread) replay a saved [PandaScript](/reference/pandascript) with no LLM call, by running `lightpanda run