Lightpanda 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
diff --git a/src/content/guides/use-python.mdx b/src/content/guides/use-python.mdx
index 3c15014..adf6b4f 100644
--- a/src/content/guides/use-python.mdx
+++ b/src/content/guides/use-python.mdx
@@ -164,7 +164,7 @@ asyncio.run(main())
Every browser action is a `Session` method, typed and documented in your IDE, with the action and its arguments in snake_case (`wait_for_selector`, `backend_node_id`).
-Find every method's arguments in the [Python SDK reference](/reference/python), or browse the generated API reference at [lightpanda.io/lightpanda-python](https://lightpanda.io/lightpanda-python/).
+Find every method's arguments in the [Python SDK reference](/reference/python), or browse the generated API reference at [lightpanda.io/docs/python](https://lightpanda.io/docs/python/).
## Replay a saved script
diff --git a/src/content/reference/python.mdx b/src/content/reference/python.mdx
index e0db810..4072604 100644
--- a/src/content/reference/python.mdx
+++ b/src/content/reference/python.mdx
@@ -5,11 +5,11 @@ description: Reference of the classes and methods in the Lightpanda Python packa
# 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 |
|---|---|---|
@@ -29,7 +29,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 |
|---|---|---|
@@ -49,7 +49,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 |
|---|---|
@@ -61,7 +61,7 @@ Sessions are context managers too: `with browser.new_session() as page:` closes
## Calling an action
-Every browser action is a method on `Session`/`AsyncSession`, keyword-only, with the action and its arguments in snake_case: the `waitForSelector` action is `wait_for_selector`, and its `backendNodeId` argument is `backend_node_id`. The methods are generated from the bundled browser's action schemas, so the signatures and docstrings your IDE shows come straight from the binary. The generated reference for the latest release is published at [lightpanda.io/lightpanda-python](https://lightpanda.io/lightpanda-python/).
+Every browser action is a method on `Session`/`AsyncSession`, keyword-only, with the action and its arguments in snake_case: the `waitForSelector` action is `wait_for_selector`, and its `backendNodeId` argument is `backend_node_id`. The methods are generated from the bundled browser's action schemas, so the signatures and docstrings your IDE shows come straight from the binary. The generated reference for the latest release is published at [lightpanda.io/docs/python](https://lightpanda.io/docs/python/); see [`Session`](https://lightpanda.io/docs/python/lightpanda.html#Session) and [`AsyncSession`](https://lightpanda.io/docs/python/lightpanda.html#AsyncSession) there for every method's exact signature and docstring.
A failed action raises `ToolError`.
@@ -149,7 +149,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