├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ ├── documentation.yml │ ├── feature_request.yml │ └── refactoring.yml ├── PULL_REQUEST_TEMPLATE │ ├── bug_fix.md │ ├── refactoring.md │ └── release.md ├── pull_request_template.md └── workflows │ ├── deploy-docs.yml │ ├── mypy.yml │ ├── publish.yml │ ├── release.yml │ ├── ruff-ci.yml │ └── tests.yml ├── .gitignore ├── .python-version ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── README_zh.md ├── codecov.yml ├── cz.yaml ├── docs ├── en │ ├── api │ │ ├── browser │ │ │ ├── chrome.md │ │ │ ├── edge.md │ │ │ ├── managers.md │ │ │ ├── options.md │ │ │ ├── requests.md │ │ │ └── tab.md │ │ ├── commands │ │ │ ├── browser.md │ │ │ ├── dom.md │ │ │ ├── fetch.md │ │ │ ├── index.md │ │ │ ├── input.md │ │ │ ├── network.md │ │ │ ├── page.md │ │ │ ├── runtime.md │ │ │ ├── storage.md │ │ │ └── target.md │ │ ├── connection │ │ │ ├── connection.md │ │ │ └── managers.md │ │ ├── core │ │ │ ├── constants.md │ │ │ ├── exceptions.md │ │ │ └── utils.md │ │ ├── elements │ │ │ ├── mixins.md │ │ │ └── web_element.md │ │ ├── index.md │ │ └── protocol │ │ │ ├── base.md │ │ │ ├── browser.md │ │ │ ├── dom.md │ │ │ ├── fetch.md │ │ │ ├── input.md │ │ │ ├── network.md │ │ │ ├── page.md │ │ │ ├── runtime.md │ │ │ ├── storage.md │ │ │ └── target.md │ ├── deep-dive │ │ ├── architecture │ │ │ ├── browser-domain.md │ │ │ ├── browser-requests-architecture.md │ │ │ ├── event-architecture.md │ │ │ ├── find-elements-mixin.md │ │ │ ├── index.md │ │ │ ├── tab-domain.md │ │ │ └── webelement-domain.md │ │ ├── fingerprinting │ │ │ ├── behavioral-fingerprinting.md │ │ │ ├── browser-fingerprinting.md │ │ │ ├── evasion-techniques.md │ │ │ ├── index.md │ │ │ └── network-fingerprinting.md │ │ ├── fundamentals │ │ │ ├── cdp.md │ │ │ ├── connection-layer.md │ │ │ ├── iframes-and-contexts.md │ │ │ ├── index.md │ │ │ └── typing-system.md │ │ ├── guides │ │ │ ├── index.md │ │ │ └── selectors-guide.md │ │ ├── index.md │ │ └── network │ │ │ ├── build-proxy.md │ │ │ ├── http-proxies.md │ │ │ ├── index.md │ │ │ ├── network-fundamentals.md │ │ │ ├── proxy-detection.md │ │ │ ├── proxy-legal.md │ │ │ └── socks-proxies.md │ ├── features │ │ ├── advanced │ │ │ ├── behavioral-captcha-bypass.md │ │ │ ├── decorators.md │ │ │ ├── event-system.md │ │ │ └── remote-connections.md │ │ ├── automation │ │ │ ├── file-operations.md │ │ │ ├── human-interactions.md │ │ │ ├── iframes.md │ │ │ ├── keyboard-control.md │ │ │ └── screenshots-and-pdfs.md │ │ ├── browser-management │ │ │ ├── contexts.md │ │ │ ├── cookies-sessions.md │ │ │ └── tabs.md │ │ ├── configuration │ │ │ ├── browser-options.md │ │ │ ├── browser-preferences.md │ │ │ └── proxy.md │ │ ├── core-concepts.md │ │ ├── element-finding.md │ │ ├── index.md │ │ └── network │ │ │ ├── http-requests.md │ │ │ ├── interception.md │ │ │ └── monitoring.md │ └── index.md ├── pt │ ├── api │ │ ├── browser │ │ │ ├── chrome.md │ │ │ ├── edge.md │ │ │ ├── managers.md │ │ │ ├── options.md │ │ │ ├── requests.md │ │ │ └── tab.md │ │ ├── commands │ │ │ ├── browser.md │ │ │ ├── dom.md │ │ │ ├── fetch.md │ │ │ ├── index.md │ │ │ ├── input.md │ │ │ ├── network.md │ │ │ ├── page.md │ │ │ ├── runtime.md │ │ │ ├── storage.md │ │ │ └── target.md │ │ ├── connection │ │ │ ├── connection.md │ │ │ └── managers.md │ │ ├── core │ │ │ ├── constants.md │ │ │ ├── exceptions.md │ │ │ └── utils.md │ │ ├── elements │ │ │ ├── mixins.md │ │ │ └── web_element.md │ │ ├── index.md │ │ └── protocol │ │ │ ├── base.md │ │ │ ├── browser.md │ │ │ ├── dom.md │ │ │ ├── fetch.md │ │ │ ├── input.md │ │ │ ├── network.md │ │ │ ├── page.md │ │ │ ├── runtime.md │ │ │ ├── storage.md │ │ │ └── target.md │ ├── deep-dive │ │ ├── architecture │ │ │ ├── browser-domain.md │ │ │ ├── browser-requests-architecture.md │ │ │ ├── event-architecture.md │ │ │ ├── find-elements-mixin.md │ │ │ ├── index.md │ │ │ ├── tab-domain.md │ │ │ └── webelement-domain.md │ │ ├── fingerprinting │ │ │ ├── behavioral-fingerprinting.md │ │ │ ├── browser-fingerprinting.md │ │ │ ├── evasion-techniques.md │ │ │ ├── index.md │ │ │ └── network-fingerprinting.md │ │ ├── fundamentals │ │ │ ├── cdp.md │ │ │ ├── connection-layer.md │ │ │ ├── iframes-and-contexts.md │ │ │ ├── index.md │ │ │ └── typing-system.md │ │ ├── guides │ │ │ ├── index.md │ │ │ └── selectors-guide.md │ │ ├── index.md │ │ └── network │ │ │ ├── build-proxy.md │ │ │ ├── http-proxies.md │ │ │ ├── index.md │ │ │ ├── network-fundamentals.md │ │ │ ├── proxy-detection.md │ │ │ ├── proxy-legal.md │ │ │ └── socks-proxies.md │ ├── features │ │ ├── advanced │ │ │ ├── behavioral-captcha-bypass.md │ │ │ ├── decorators.md │ │ │ ├── event-system.md │ │ │ └── remote-connections.md │ │ ├── automation │ │ │ ├── file-operations.md │ │ │ ├── human-interactions.md │ │ │ ├── iframes.md │ │ │ ├── keyboard-control.md │ │ │ └── screenshots-and-pdfs.md │ │ ├── browser-management │ │ │ ├── contexts.md │ │ │ ├── cookies-sessions.md │ │ │ └── tabs.md │ │ ├── configuration │ │ │ ├── browser-options.md │ │ │ ├── browser-preferences.md │ │ │ └── proxy.md │ │ ├── core-concepts.md │ │ ├── element-finding.md │ │ ├── index.md │ │ └── network │ │ │ ├── http-requests.md │ │ │ ├── interception.md │ │ │ └── monitoring.md │ └── index.md ├── resources │ ├── images │ │ ├── cloudflare-example.gif │ │ ├── concurrent-example.gif │ │ ├── favicon.png │ │ ├── google-search-example.gif │ │ ├── logo-black.png │ │ ├── logo-purple.png │ │ ├── logo-yellow.png │ │ └── logo.png │ ├── scripts │ │ ├── extra.js │ │ └── termynal.js │ └── stylesheets │ │ ├── extra.css │ │ └── termynal.css └── zh │ ├── api │ ├── browser │ │ ├── chrome.md │ │ ├── edge.md │ │ ├── managers.md │ │ ├── options.md │ │ ├── requests.md │ │ └── tab.md │ ├── commands │ │ ├── browser.md │ │ ├── dom.md │ │ ├── fetch.md │ │ ├── index.md │ │ ├── input.md │ │ ├── network.md │ │ ├── page.md │ │ ├── runtime.md │ │ ├── storage.md │ │ └── target.md │ ├── connection │ │ ├── connection.md │ │ └── managers.md │ ├── core │ │ ├── constants.md │ │ ├── exceptions.md │ │ └── utils.md │ ├── elements │ │ ├── mixins.md │ │ └── web_element.md │ ├── index.md │ └── protocol │ │ ├── base.md │ │ ├── browser.md │ │ ├── dom.md │ │ ├── fetch.md │ │ ├── input.md │ │ ├── network.md │ │ ├── page.md │ │ ├── runtime.md │ │ ├── storage.md │ │ └── target.md │ ├── deep-dive │ ├── architecture │ │ ├── browser-domain.md │ │ ├── browser-requests-architecture.md │ │ ├── event-architecture.md │ │ ├── find-elements-mixin.md │ │ ├── index.md │ │ ├── tab-domain.md │ │ └── webelement-domain.md │ ├── fingerprinting │ │ ├── behavioral-fingerprinting.md │ │ ├── browser-fingerprinting.md │ │ ├── evasion-techniques.md │ │ ├── index.md │ │ └── network-fingerprinting.md │ ├── fundamentals │ │ ├── cdp.md │ │ ├── connection-layer.md │ │ ├── iframes-and-contexts.md │ │ ├── index.md │ │ └── typing-system.md │ ├── guides │ │ ├── index.md │ │ └── selectors-guide.md │ ├── index.md │ └── network │ │ ├── build-proxy.md │ │ ├── http-proxies.md │ │ ├── index.md │ │ ├── network-fundamentals.md │ │ ├── proxy-detection.md │ │ ├── proxy-legal.md │ │ └── socks-proxies.md │ ├── features │ ├── advanced │ │ ├── behavioral-captcha-bypass.md │ │ ├── decorators.md │ │ ├── event-system.md │ │ └── remote-connections.md │ ├── automation │ │ ├── file-operations.md │ │ ├── human-interactions.md │ │ ├── iframes.md │ │ ├── keyboard-control.md │ │ └── screenshots-and-pdfs.md │ ├── browser-management │ │ ├── contexts.md │ │ ├── cookies-sessions.md │ │ └── tabs.md │ ├── configuration │ │ ├── browser-options.md │ │ ├── browser-preferences.md │ │ └── proxy.md │ ├── core-concepts.md │ ├── element-finding.md │ ├── index.md │ └── network │ │ ├── http-requests.md │ │ ├── interception.md │ │ └── monitoring.md │ └── index.md ├── examples └── cloudflare_bypass.py ├── mkdocs.yml ├── poetry.lock ├── public ├── images │ ├── cloudflare-example.gif │ ├── concurrent-example.gif │ ├── favicon.png │ ├── google-search-example.gif │ ├── logo-black.png │ ├── logo-purple.png │ ├── logo-yellow.png │ └── logo.png ├── index.html ├── robots.txt ├── script.js ├── scripts │ ├── extra.js │ └── termynal.js ├── sitemap.xml └── stylesheets │ ├── extra.css │ └── termynal.css ├── pydoll ├── __init__.py ├── browser │ ├── __init__.py │ ├── chromium │ │ ├── __init__.py │ │ ├── base.py │ │ ├── chrome.py │ │ └── edge.py │ ├── interfaces.py │ ├── managers │ │ ├── __init__.py │ │ ├── browser_options_manager.py │ │ ├── browser_process_manager.py │ │ ├── proxy_manager.py │ │ └── temp_dir_manager.py │ ├── options.py │ ├── requests │ │ ├── __init__.py │ │ ├── request.py │ │ └── response.py │ └── tab.py ├── commands │ ├── __init__.py │ ├── browser_commands.py │ ├── dom_commands.py │ ├── fetch_commands.py │ ├── input_commands.py │ ├── network_commands.py │ ├── page_commands.py │ ├── runtime_commands.py │ ├── storage_commands.py │ └── target_commands.py ├── connection │ ├── __init__.py │ ├── connection_handler.py │ └── managers │ │ ├── __init__.py │ │ ├── commands_manager.py │ │ └── events_manager.py ├── constants.py ├── decorators.py ├── elements │ ├── __init__.py │ ├── mixins │ │ ├── __init__.py │ │ └── find_elements_mixin.py │ └── web_element.py ├── exceptions.py ├── interactions │ ├── __init__.py │ ├── iframe.py │ ├── keyboard.py │ └── scroll.py ├── protocol │ ├── __init__.py │ ├── base.py │ ├── browser │ │ ├── __init__.py │ │ ├── events.py │ │ ├── methods.py │ │ └── types.py │ ├── debugger │ │ └── types.py │ ├── dom │ │ ├── __init__.py │ │ ├── events.py │ │ ├── methods.py │ │ └── types.py │ ├── emulation │ │ └── types.py │ ├── fetch │ │ ├── __init__.py │ │ ├── events.py │ │ ├── methods.py │ │ └── types.py │ ├── input │ │ ├── __init__.py │ │ ├── events.py │ │ ├── methods.py │ │ └── types.py │ ├── io │ │ └── types.py │ ├── network │ │ ├── __init__.py │ │ ├── events.py │ │ ├── methods.py │ │ └── types.py │ ├── page │ │ ├── __init__.py │ │ ├── events.py │ │ ├── methods.py │ │ └── types.py │ ├── runtime │ │ ├── __init__.py │ │ ├── events.py │ │ ├── methods.py │ │ └── types.py │ ├── security │ │ └── types.py │ ├── storage │ │ ├── __init__.py │ │ ├── events.py │ │ ├── methods.py │ │ └── types.py │ └── target │ │ ├── __init__.py │ │ ├── events.py │ │ ├── methods.py │ │ └── types.py ├── py.typed └── utils.py ├── pyproject.toml └── tests ├── conftest.py ├── pages ├── test_children.html ├── test_core_simple.html ├── test_iframe_content.html ├── test_iframe_nested.html ├── test_iframe_nested_level.html ├── test_iframe_parent_level.html ├── test_iframe_simple.html └── test_multiple_iframes.html ├── test_browser ├── test_browser_base.py ├── test_browser_chrome.py ├── test_browser_edge.py ├── test_browser_options.py ├── test_browser_tab.py ├── test_requests_request.py ├── test_requests_response.py └── test_tab_request_integration.py ├── test_commands ├── test_browser_commands.py ├── test_dom_commands.py ├── test_fetch_commands.py ├── test_input_commands.py ├── test_network_commands.py ├── test_page_commands.py ├── test_runtime_commands.py ├── test_storage_commands.py └── test_target_commands.py ├── test_connection_handler.py ├── test_core_integration.py ├── test_decorators.py ├── test_events.py ├── test_exceptions.py ├── test_find_elements_mixin.py ├── test_iframe_integration.py ├── test_interactions ├── __init__.py ├── test_iframe.py ├── test_keyboard.py └── test_scroll.py ├── test_managers ├── test_browser_managers.py └── test_connection_managers.py ├── test_utils.py └── test_web_element.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/.github/ISSUE_TEMPLATE/documentation.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/refactoring.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/.github/ISSUE_TEMPLATE/refactoring.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/bug_fix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/.github/PULL_REQUEST_TEMPLATE/bug_fix.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/refactoring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/.github/PULL_REQUEST_TEMPLATE/refactoring.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE/release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/.github/PULL_REQUEST_TEMPLATE/release.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/deploy-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/.github/workflows/deploy-docs.yml -------------------------------------------------------------------------------- /.github/workflows/mypy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/.github/workflows/mypy.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/ruff-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/.github/workflows/ruff-ci.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.12.5 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/README.md -------------------------------------------------------------------------------- /README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/README_zh.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/codecov.yml -------------------------------------------------------------------------------- /cz.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/cz.yaml -------------------------------------------------------------------------------- /docs/en/api/browser/chrome.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/api/browser/chrome.md -------------------------------------------------------------------------------- /docs/en/api/browser/edge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/api/browser/edge.md -------------------------------------------------------------------------------- /docs/en/api/browser/managers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/api/browser/managers.md -------------------------------------------------------------------------------- /docs/en/api/browser/options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/api/browser/options.md -------------------------------------------------------------------------------- /docs/en/api/browser/requests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/api/browser/requests.md -------------------------------------------------------------------------------- /docs/en/api/browser/tab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/api/browser/tab.md -------------------------------------------------------------------------------- /docs/en/api/commands/browser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/api/commands/browser.md -------------------------------------------------------------------------------- /docs/en/api/commands/dom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/api/commands/dom.md -------------------------------------------------------------------------------- /docs/en/api/commands/fetch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/api/commands/fetch.md -------------------------------------------------------------------------------- /docs/en/api/commands/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/api/commands/index.md -------------------------------------------------------------------------------- /docs/en/api/commands/input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/api/commands/input.md -------------------------------------------------------------------------------- /docs/en/api/commands/network.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/api/commands/network.md -------------------------------------------------------------------------------- /docs/en/api/commands/page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/api/commands/page.md -------------------------------------------------------------------------------- /docs/en/api/commands/runtime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/api/commands/runtime.md -------------------------------------------------------------------------------- /docs/en/api/commands/storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/api/commands/storage.md -------------------------------------------------------------------------------- /docs/en/api/commands/target.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/api/commands/target.md -------------------------------------------------------------------------------- /docs/en/api/connection/connection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/api/connection/connection.md -------------------------------------------------------------------------------- /docs/en/api/connection/managers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/api/connection/managers.md -------------------------------------------------------------------------------- /docs/en/api/core/constants.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/api/core/constants.md -------------------------------------------------------------------------------- /docs/en/api/core/exceptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/api/core/exceptions.md -------------------------------------------------------------------------------- /docs/en/api/core/utils.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/api/core/utils.md -------------------------------------------------------------------------------- /docs/en/api/elements/mixins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/api/elements/mixins.md -------------------------------------------------------------------------------- /docs/en/api/elements/web_element.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/api/elements/web_element.md -------------------------------------------------------------------------------- /docs/en/api/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/api/index.md -------------------------------------------------------------------------------- /docs/en/api/protocol/base.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/api/protocol/base.md -------------------------------------------------------------------------------- /docs/en/api/protocol/browser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/api/protocol/browser.md -------------------------------------------------------------------------------- /docs/en/api/protocol/dom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/api/protocol/dom.md -------------------------------------------------------------------------------- /docs/en/api/protocol/fetch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/api/protocol/fetch.md -------------------------------------------------------------------------------- /docs/en/api/protocol/input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/api/protocol/input.md -------------------------------------------------------------------------------- /docs/en/api/protocol/network.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/api/protocol/network.md -------------------------------------------------------------------------------- /docs/en/api/protocol/page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/api/protocol/page.md -------------------------------------------------------------------------------- /docs/en/api/protocol/runtime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/api/protocol/runtime.md -------------------------------------------------------------------------------- /docs/en/api/protocol/storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/api/protocol/storage.md -------------------------------------------------------------------------------- /docs/en/api/protocol/target.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/api/protocol/target.md -------------------------------------------------------------------------------- /docs/en/deep-dive/architecture/browser-domain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/deep-dive/architecture/browser-domain.md -------------------------------------------------------------------------------- /docs/en/deep-dive/architecture/browser-requests-architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/deep-dive/architecture/browser-requests-architecture.md -------------------------------------------------------------------------------- /docs/en/deep-dive/architecture/event-architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/deep-dive/architecture/event-architecture.md -------------------------------------------------------------------------------- /docs/en/deep-dive/architecture/find-elements-mixin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/deep-dive/architecture/find-elements-mixin.md -------------------------------------------------------------------------------- /docs/en/deep-dive/architecture/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/deep-dive/architecture/index.md -------------------------------------------------------------------------------- /docs/en/deep-dive/architecture/tab-domain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/deep-dive/architecture/tab-domain.md -------------------------------------------------------------------------------- /docs/en/deep-dive/architecture/webelement-domain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/deep-dive/architecture/webelement-domain.md -------------------------------------------------------------------------------- /docs/en/deep-dive/fingerprinting/behavioral-fingerprinting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/deep-dive/fingerprinting/behavioral-fingerprinting.md -------------------------------------------------------------------------------- /docs/en/deep-dive/fingerprinting/browser-fingerprinting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/deep-dive/fingerprinting/browser-fingerprinting.md -------------------------------------------------------------------------------- /docs/en/deep-dive/fingerprinting/evasion-techniques.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/deep-dive/fingerprinting/evasion-techniques.md -------------------------------------------------------------------------------- /docs/en/deep-dive/fingerprinting/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/deep-dive/fingerprinting/index.md -------------------------------------------------------------------------------- /docs/en/deep-dive/fingerprinting/network-fingerprinting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/deep-dive/fingerprinting/network-fingerprinting.md -------------------------------------------------------------------------------- /docs/en/deep-dive/fundamentals/cdp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/deep-dive/fundamentals/cdp.md -------------------------------------------------------------------------------- /docs/en/deep-dive/fundamentals/connection-layer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/deep-dive/fundamentals/connection-layer.md -------------------------------------------------------------------------------- /docs/en/deep-dive/fundamentals/iframes-and-contexts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/deep-dive/fundamentals/iframes-and-contexts.md -------------------------------------------------------------------------------- /docs/en/deep-dive/fundamentals/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/deep-dive/fundamentals/index.md -------------------------------------------------------------------------------- /docs/en/deep-dive/fundamentals/typing-system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/deep-dive/fundamentals/typing-system.md -------------------------------------------------------------------------------- /docs/en/deep-dive/guides/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/deep-dive/guides/index.md -------------------------------------------------------------------------------- /docs/en/deep-dive/guides/selectors-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/deep-dive/guides/selectors-guide.md -------------------------------------------------------------------------------- /docs/en/deep-dive/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/deep-dive/index.md -------------------------------------------------------------------------------- /docs/en/deep-dive/network/build-proxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/deep-dive/network/build-proxy.md -------------------------------------------------------------------------------- /docs/en/deep-dive/network/http-proxies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/deep-dive/network/http-proxies.md -------------------------------------------------------------------------------- /docs/en/deep-dive/network/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/deep-dive/network/index.md -------------------------------------------------------------------------------- /docs/en/deep-dive/network/network-fundamentals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/deep-dive/network/network-fundamentals.md -------------------------------------------------------------------------------- /docs/en/deep-dive/network/proxy-detection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/deep-dive/network/proxy-detection.md -------------------------------------------------------------------------------- /docs/en/deep-dive/network/proxy-legal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/deep-dive/network/proxy-legal.md -------------------------------------------------------------------------------- /docs/en/deep-dive/network/socks-proxies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/deep-dive/network/socks-proxies.md -------------------------------------------------------------------------------- /docs/en/features/advanced/behavioral-captcha-bypass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/features/advanced/behavioral-captcha-bypass.md -------------------------------------------------------------------------------- /docs/en/features/advanced/decorators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/features/advanced/decorators.md -------------------------------------------------------------------------------- /docs/en/features/advanced/event-system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/features/advanced/event-system.md -------------------------------------------------------------------------------- /docs/en/features/advanced/remote-connections.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/features/advanced/remote-connections.md -------------------------------------------------------------------------------- /docs/en/features/automation/file-operations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/features/automation/file-operations.md -------------------------------------------------------------------------------- /docs/en/features/automation/human-interactions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/features/automation/human-interactions.md -------------------------------------------------------------------------------- /docs/en/features/automation/iframes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/features/automation/iframes.md -------------------------------------------------------------------------------- /docs/en/features/automation/keyboard-control.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/features/automation/keyboard-control.md -------------------------------------------------------------------------------- /docs/en/features/automation/screenshots-and-pdfs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/features/automation/screenshots-and-pdfs.md -------------------------------------------------------------------------------- /docs/en/features/browser-management/contexts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/features/browser-management/contexts.md -------------------------------------------------------------------------------- /docs/en/features/browser-management/cookies-sessions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/features/browser-management/cookies-sessions.md -------------------------------------------------------------------------------- /docs/en/features/browser-management/tabs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/features/browser-management/tabs.md -------------------------------------------------------------------------------- /docs/en/features/configuration/browser-options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/features/configuration/browser-options.md -------------------------------------------------------------------------------- /docs/en/features/configuration/browser-preferences.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/features/configuration/browser-preferences.md -------------------------------------------------------------------------------- /docs/en/features/configuration/proxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/features/configuration/proxy.md -------------------------------------------------------------------------------- /docs/en/features/core-concepts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/features/core-concepts.md -------------------------------------------------------------------------------- /docs/en/features/element-finding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/features/element-finding.md -------------------------------------------------------------------------------- /docs/en/features/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/features/index.md -------------------------------------------------------------------------------- /docs/en/features/network/http-requests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/features/network/http-requests.md -------------------------------------------------------------------------------- /docs/en/features/network/interception.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/features/network/interception.md -------------------------------------------------------------------------------- /docs/en/features/network/monitoring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/features/network/monitoring.md -------------------------------------------------------------------------------- /docs/en/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/en/index.md -------------------------------------------------------------------------------- /docs/pt/api/browser/chrome.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/api/browser/chrome.md -------------------------------------------------------------------------------- /docs/pt/api/browser/edge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/api/browser/edge.md -------------------------------------------------------------------------------- /docs/pt/api/browser/managers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/api/browser/managers.md -------------------------------------------------------------------------------- /docs/pt/api/browser/options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/api/browser/options.md -------------------------------------------------------------------------------- /docs/pt/api/browser/requests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/api/browser/requests.md -------------------------------------------------------------------------------- /docs/pt/api/browser/tab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/api/browser/tab.md -------------------------------------------------------------------------------- /docs/pt/api/commands/browser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/api/commands/browser.md -------------------------------------------------------------------------------- /docs/pt/api/commands/dom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/api/commands/dom.md -------------------------------------------------------------------------------- /docs/pt/api/commands/fetch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/api/commands/fetch.md -------------------------------------------------------------------------------- /docs/pt/api/commands/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/api/commands/index.md -------------------------------------------------------------------------------- /docs/pt/api/commands/input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/api/commands/input.md -------------------------------------------------------------------------------- /docs/pt/api/commands/network.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/api/commands/network.md -------------------------------------------------------------------------------- /docs/pt/api/commands/page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/api/commands/page.md -------------------------------------------------------------------------------- /docs/pt/api/commands/runtime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/api/commands/runtime.md -------------------------------------------------------------------------------- /docs/pt/api/commands/storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/api/commands/storage.md -------------------------------------------------------------------------------- /docs/pt/api/commands/target.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/api/commands/target.md -------------------------------------------------------------------------------- /docs/pt/api/connection/connection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/api/connection/connection.md -------------------------------------------------------------------------------- /docs/pt/api/connection/managers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/api/connection/managers.md -------------------------------------------------------------------------------- /docs/pt/api/core/constants.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/api/core/constants.md -------------------------------------------------------------------------------- /docs/pt/api/core/exceptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/api/core/exceptions.md -------------------------------------------------------------------------------- /docs/pt/api/core/utils.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/api/core/utils.md -------------------------------------------------------------------------------- /docs/pt/api/elements/mixins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/api/elements/mixins.md -------------------------------------------------------------------------------- /docs/pt/api/elements/web_element.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/api/elements/web_element.md -------------------------------------------------------------------------------- /docs/pt/api/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/api/index.md -------------------------------------------------------------------------------- /docs/pt/api/protocol/base.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/api/protocol/base.md -------------------------------------------------------------------------------- /docs/pt/api/protocol/browser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/api/protocol/browser.md -------------------------------------------------------------------------------- /docs/pt/api/protocol/dom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/api/protocol/dom.md -------------------------------------------------------------------------------- /docs/pt/api/protocol/fetch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/api/protocol/fetch.md -------------------------------------------------------------------------------- /docs/pt/api/protocol/input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/api/protocol/input.md -------------------------------------------------------------------------------- /docs/pt/api/protocol/network.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/api/protocol/network.md -------------------------------------------------------------------------------- /docs/pt/api/protocol/page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/api/protocol/page.md -------------------------------------------------------------------------------- /docs/pt/api/protocol/runtime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/api/protocol/runtime.md -------------------------------------------------------------------------------- /docs/pt/api/protocol/storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/api/protocol/storage.md -------------------------------------------------------------------------------- /docs/pt/api/protocol/target.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/api/protocol/target.md -------------------------------------------------------------------------------- /docs/pt/deep-dive/architecture/browser-domain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/deep-dive/architecture/browser-domain.md -------------------------------------------------------------------------------- /docs/pt/deep-dive/architecture/browser-requests-architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/deep-dive/architecture/browser-requests-architecture.md -------------------------------------------------------------------------------- /docs/pt/deep-dive/architecture/event-architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/deep-dive/architecture/event-architecture.md -------------------------------------------------------------------------------- /docs/pt/deep-dive/architecture/find-elements-mixin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/deep-dive/architecture/find-elements-mixin.md -------------------------------------------------------------------------------- /docs/pt/deep-dive/architecture/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/deep-dive/architecture/index.md -------------------------------------------------------------------------------- /docs/pt/deep-dive/architecture/tab-domain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/deep-dive/architecture/tab-domain.md -------------------------------------------------------------------------------- /docs/pt/deep-dive/architecture/webelement-domain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/deep-dive/architecture/webelement-domain.md -------------------------------------------------------------------------------- /docs/pt/deep-dive/fingerprinting/behavioral-fingerprinting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/deep-dive/fingerprinting/behavioral-fingerprinting.md -------------------------------------------------------------------------------- /docs/pt/deep-dive/fingerprinting/browser-fingerprinting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/deep-dive/fingerprinting/browser-fingerprinting.md -------------------------------------------------------------------------------- /docs/pt/deep-dive/fingerprinting/evasion-techniques.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/deep-dive/fingerprinting/evasion-techniques.md -------------------------------------------------------------------------------- /docs/pt/deep-dive/fingerprinting/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/deep-dive/fingerprinting/index.md -------------------------------------------------------------------------------- /docs/pt/deep-dive/fingerprinting/network-fingerprinting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/deep-dive/fingerprinting/network-fingerprinting.md -------------------------------------------------------------------------------- /docs/pt/deep-dive/fundamentals/cdp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/deep-dive/fundamentals/cdp.md -------------------------------------------------------------------------------- /docs/pt/deep-dive/fundamentals/connection-layer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/deep-dive/fundamentals/connection-layer.md -------------------------------------------------------------------------------- /docs/pt/deep-dive/fundamentals/iframes-and-contexts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/deep-dive/fundamentals/iframes-and-contexts.md -------------------------------------------------------------------------------- /docs/pt/deep-dive/fundamentals/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/deep-dive/fundamentals/index.md -------------------------------------------------------------------------------- /docs/pt/deep-dive/fundamentals/typing-system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/deep-dive/fundamentals/typing-system.md -------------------------------------------------------------------------------- /docs/pt/deep-dive/guides/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/deep-dive/guides/index.md -------------------------------------------------------------------------------- /docs/pt/deep-dive/guides/selectors-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/deep-dive/guides/selectors-guide.md -------------------------------------------------------------------------------- /docs/pt/deep-dive/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/deep-dive/index.md -------------------------------------------------------------------------------- /docs/pt/deep-dive/network/build-proxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/deep-dive/network/build-proxy.md -------------------------------------------------------------------------------- /docs/pt/deep-dive/network/http-proxies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/deep-dive/network/http-proxies.md -------------------------------------------------------------------------------- /docs/pt/deep-dive/network/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/deep-dive/network/index.md -------------------------------------------------------------------------------- /docs/pt/deep-dive/network/network-fundamentals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/deep-dive/network/network-fundamentals.md -------------------------------------------------------------------------------- /docs/pt/deep-dive/network/proxy-detection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/deep-dive/network/proxy-detection.md -------------------------------------------------------------------------------- /docs/pt/deep-dive/network/proxy-legal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/deep-dive/network/proxy-legal.md -------------------------------------------------------------------------------- /docs/pt/deep-dive/network/socks-proxies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/deep-dive/network/socks-proxies.md -------------------------------------------------------------------------------- /docs/pt/features/advanced/behavioral-captcha-bypass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/features/advanced/behavioral-captcha-bypass.md -------------------------------------------------------------------------------- /docs/pt/features/advanced/decorators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/features/advanced/decorators.md -------------------------------------------------------------------------------- /docs/pt/features/advanced/event-system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/features/advanced/event-system.md -------------------------------------------------------------------------------- /docs/pt/features/advanced/remote-connections.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/features/advanced/remote-connections.md -------------------------------------------------------------------------------- /docs/pt/features/automation/file-operations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/features/automation/file-operations.md -------------------------------------------------------------------------------- /docs/pt/features/automation/human-interactions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/features/automation/human-interactions.md -------------------------------------------------------------------------------- /docs/pt/features/automation/iframes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/features/automation/iframes.md -------------------------------------------------------------------------------- /docs/pt/features/automation/keyboard-control.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/features/automation/keyboard-control.md -------------------------------------------------------------------------------- /docs/pt/features/automation/screenshots-and-pdfs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/features/automation/screenshots-and-pdfs.md -------------------------------------------------------------------------------- /docs/pt/features/browser-management/contexts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/features/browser-management/contexts.md -------------------------------------------------------------------------------- /docs/pt/features/browser-management/cookies-sessions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/features/browser-management/cookies-sessions.md -------------------------------------------------------------------------------- /docs/pt/features/browser-management/tabs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/features/browser-management/tabs.md -------------------------------------------------------------------------------- /docs/pt/features/configuration/browser-options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/features/configuration/browser-options.md -------------------------------------------------------------------------------- /docs/pt/features/configuration/browser-preferences.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/features/configuration/browser-preferences.md -------------------------------------------------------------------------------- /docs/pt/features/configuration/proxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/features/configuration/proxy.md -------------------------------------------------------------------------------- /docs/pt/features/core-concepts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/features/core-concepts.md -------------------------------------------------------------------------------- /docs/pt/features/element-finding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/features/element-finding.md -------------------------------------------------------------------------------- /docs/pt/features/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/features/index.md -------------------------------------------------------------------------------- /docs/pt/features/network/http-requests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/features/network/http-requests.md -------------------------------------------------------------------------------- /docs/pt/features/network/interception.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/features/network/interception.md -------------------------------------------------------------------------------- /docs/pt/features/network/monitoring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/features/network/monitoring.md -------------------------------------------------------------------------------- /docs/pt/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/pt/index.md -------------------------------------------------------------------------------- /docs/resources/images/cloudflare-example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/resources/images/cloudflare-example.gif -------------------------------------------------------------------------------- /docs/resources/images/concurrent-example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/resources/images/concurrent-example.gif -------------------------------------------------------------------------------- /docs/resources/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/resources/images/favicon.png -------------------------------------------------------------------------------- /docs/resources/images/google-search-example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/resources/images/google-search-example.gif -------------------------------------------------------------------------------- /docs/resources/images/logo-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/resources/images/logo-black.png -------------------------------------------------------------------------------- /docs/resources/images/logo-purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/resources/images/logo-purple.png -------------------------------------------------------------------------------- /docs/resources/images/logo-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/resources/images/logo-yellow.png -------------------------------------------------------------------------------- /docs/resources/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/resources/images/logo.png -------------------------------------------------------------------------------- /docs/resources/scripts/extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/resources/scripts/extra.js -------------------------------------------------------------------------------- /docs/resources/scripts/termynal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/resources/scripts/termynal.js -------------------------------------------------------------------------------- /docs/resources/stylesheets/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/resources/stylesheets/extra.css -------------------------------------------------------------------------------- /docs/resources/stylesheets/termynal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/resources/stylesheets/termynal.css -------------------------------------------------------------------------------- /docs/zh/api/browser/chrome.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/api/browser/chrome.md -------------------------------------------------------------------------------- /docs/zh/api/browser/edge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/api/browser/edge.md -------------------------------------------------------------------------------- /docs/zh/api/browser/managers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/api/browser/managers.md -------------------------------------------------------------------------------- /docs/zh/api/browser/options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/api/browser/options.md -------------------------------------------------------------------------------- /docs/zh/api/browser/requests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/api/browser/requests.md -------------------------------------------------------------------------------- /docs/zh/api/browser/tab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/api/browser/tab.md -------------------------------------------------------------------------------- /docs/zh/api/commands/browser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/api/commands/browser.md -------------------------------------------------------------------------------- /docs/zh/api/commands/dom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/api/commands/dom.md -------------------------------------------------------------------------------- /docs/zh/api/commands/fetch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/api/commands/fetch.md -------------------------------------------------------------------------------- /docs/zh/api/commands/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/api/commands/index.md -------------------------------------------------------------------------------- /docs/zh/api/commands/input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/api/commands/input.md -------------------------------------------------------------------------------- /docs/zh/api/commands/network.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/api/commands/network.md -------------------------------------------------------------------------------- /docs/zh/api/commands/page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/api/commands/page.md -------------------------------------------------------------------------------- /docs/zh/api/commands/runtime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/api/commands/runtime.md -------------------------------------------------------------------------------- /docs/zh/api/commands/storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/api/commands/storage.md -------------------------------------------------------------------------------- /docs/zh/api/commands/target.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/api/commands/target.md -------------------------------------------------------------------------------- /docs/zh/api/connection/connection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/api/connection/connection.md -------------------------------------------------------------------------------- /docs/zh/api/connection/managers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/api/connection/managers.md -------------------------------------------------------------------------------- /docs/zh/api/core/constants.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/api/core/constants.md -------------------------------------------------------------------------------- /docs/zh/api/core/exceptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/api/core/exceptions.md -------------------------------------------------------------------------------- /docs/zh/api/core/utils.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/api/core/utils.md -------------------------------------------------------------------------------- /docs/zh/api/elements/mixins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/api/elements/mixins.md -------------------------------------------------------------------------------- /docs/zh/api/elements/web_element.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/api/elements/web_element.md -------------------------------------------------------------------------------- /docs/zh/api/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/api/index.md -------------------------------------------------------------------------------- /docs/zh/api/protocol/base.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/api/protocol/base.md -------------------------------------------------------------------------------- /docs/zh/api/protocol/browser.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/api/protocol/browser.md -------------------------------------------------------------------------------- /docs/zh/api/protocol/dom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/api/protocol/dom.md -------------------------------------------------------------------------------- /docs/zh/api/protocol/fetch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/api/protocol/fetch.md -------------------------------------------------------------------------------- /docs/zh/api/protocol/input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/api/protocol/input.md -------------------------------------------------------------------------------- /docs/zh/api/protocol/network.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/api/protocol/network.md -------------------------------------------------------------------------------- /docs/zh/api/protocol/page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/api/protocol/page.md -------------------------------------------------------------------------------- /docs/zh/api/protocol/runtime.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/api/protocol/runtime.md -------------------------------------------------------------------------------- /docs/zh/api/protocol/storage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/api/protocol/storage.md -------------------------------------------------------------------------------- /docs/zh/api/protocol/target.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/api/protocol/target.md -------------------------------------------------------------------------------- /docs/zh/deep-dive/architecture/browser-domain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/deep-dive/architecture/browser-domain.md -------------------------------------------------------------------------------- /docs/zh/deep-dive/architecture/browser-requests-architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/deep-dive/architecture/browser-requests-architecture.md -------------------------------------------------------------------------------- /docs/zh/deep-dive/architecture/event-architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/deep-dive/architecture/event-architecture.md -------------------------------------------------------------------------------- /docs/zh/deep-dive/architecture/find-elements-mixin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/deep-dive/architecture/find-elements-mixin.md -------------------------------------------------------------------------------- /docs/zh/deep-dive/architecture/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/deep-dive/architecture/index.md -------------------------------------------------------------------------------- /docs/zh/deep-dive/architecture/tab-domain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/deep-dive/architecture/tab-domain.md -------------------------------------------------------------------------------- /docs/zh/deep-dive/architecture/webelement-domain.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/deep-dive/architecture/webelement-domain.md -------------------------------------------------------------------------------- /docs/zh/deep-dive/fingerprinting/behavioral-fingerprinting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/deep-dive/fingerprinting/behavioral-fingerprinting.md -------------------------------------------------------------------------------- /docs/zh/deep-dive/fingerprinting/browser-fingerprinting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/deep-dive/fingerprinting/browser-fingerprinting.md -------------------------------------------------------------------------------- /docs/zh/deep-dive/fingerprinting/evasion-techniques.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/deep-dive/fingerprinting/evasion-techniques.md -------------------------------------------------------------------------------- /docs/zh/deep-dive/fingerprinting/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/deep-dive/fingerprinting/index.md -------------------------------------------------------------------------------- /docs/zh/deep-dive/fingerprinting/network-fingerprinting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/deep-dive/fingerprinting/network-fingerprinting.md -------------------------------------------------------------------------------- /docs/zh/deep-dive/fundamentals/cdp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/deep-dive/fundamentals/cdp.md -------------------------------------------------------------------------------- /docs/zh/deep-dive/fundamentals/connection-layer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/deep-dive/fundamentals/connection-layer.md -------------------------------------------------------------------------------- /docs/zh/deep-dive/fundamentals/iframes-and-contexts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/deep-dive/fundamentals/iframes-and-contexts.md -------------------------------------------------------------------------------- /docs/zh/deep-dive/fundamentals/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/deep-dive/fundamentals/index.md -------------------------------------------------------------------------------- /docs/zh/deep-dive/fundamentals/typing-system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/deep-dive/fundamentals/typing-system.md -------------------------------------------------------------------------------- /docs/zh/deep-dive/guides/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/deep-dive/guides/index.md -------------------------------------------------------------------------------- /docs/zh/deep-dive/guides/selectors-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/deep-dive/guides/selectors-guide.md -------------------------------------------------------------------------------- /docs/zh/deep-dive/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/deep-dive/index.md -------------------------------------------------------------------------------- /docs/zh/deep-dive/network/build-proxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/deep-dive/network/build-proxy.md -------------------------------------------------------------------------------- /docs/zh/deep-dive/network/http-proxies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/deep-dive/network/http-proxies.md -------------------------------------------------------------------------------- /docs/zh/deep-dive/network/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/deep-dive/network/index.md -------------------------------------------------------------------------------- /docs/zh/deep-dive/network/network-fundamentals.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/deep-dive/network/network-fundamentals.md -------------------------------------------------------------------------------- /docs/zh/deep-dive/network/proxy-detection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/deep-dive/network/proxy-detection.md -------------------------------------------------------------------------------- /docs/zh/deep-dive/network/proxy-legal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/deep-dive/network/proxy-legal.md -------------------------------------------------------------------------------- /docs/zh/deep-dive/network/socks-proxies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/deep-dive/network/socks-proxies.md -------------------------------------------------------------------------------- /docs/zh/features/advanced/behavioral-captcha-bypass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/features/advanced/behavioral-captcha-bypass.md -------------------------------------------------------------------------------- /docs/zh/features/advanced/decorators.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/features/advanced/decorators.md -------------------------------------------------------------------------------- /docs/zh/features/advanced/event-system.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/features/advanced/event-system.md -------------------------------------------------------------------------------- /docs/zh/features/advanced/remote-connections.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/features/advanced/remote-connections.md -------------------------------------------------------------------------------- /docs/zh/features/automation/file-operations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/features/automation/file-operations.md -------------------------------------------------------------------------------- /docs/zh/features/automation/human-interactions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/features/automation/human-interactions.md -------------------------------------------------------------------------------- /docs/zh/features/automation/iframes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/features/automation/iframes.md -------------------------------------------------------------------------------- /docs/zh/features/automation/keyboard-control.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/features/automation/keyboard-control.md -------------------------------------------------------------------------------- /docs/zh/features/automation/screenshots-and-pdfs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/features/automation/screenshots-and-pdfs.md -------------------------------------------------------------------------------- /docs/zh/features/browser-management/contexts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/features/browser-management/contexts.md -------------------------------------------------------------------------------- /docs/zh/features/browser-management/cookies-sessions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/features/browser-management/cookies-sessions.md -------------------------------------------------------------------------------- /docs/zh/features/browser-management/tabs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/features/browser-management/tabs.md -------------------------------------------------------------------------------- /docs/zh/features/configuration/browser-options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/features/configuration/browser-options.md -------------------------------------------------------------------------------- /docs/zh/features/configuration/browser-preferences.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/features/configuration/browser-preferences.md -------------------------------------------------------------------------------- /docs/zh/features/configuration/proxy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/features/configuration/proxy.md -------------------------------------------------------------------------------- /docs/zh/features/core-concepts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/features/core-concepts.md -------------------------------------------------------------------------------- /docs/zh/features/element-finding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/features/element-finding.md -------------------------------------------------------------------------------- /docs/zh/features/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/features/index.md -------------------------------------------------------------------------------- /docs/zh/features/network/http-requests.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/features/network/http-requests.md -------------------------------------------------------------------------------- /docs/zh/features/network/interception.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/features/network/interception.md -------------------------------------------------------------------------------- /docs/zh/features/network/monitoring.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/features/network/monitoring.md -------------------------------------------------------------------------------- /docs/zh/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/docs/zh/index.md -------------------------------------------------------------------------------- /examples/cloudflare_bypass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/examples/cloudflare_bypass.py -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/poetry.lock -------------------------------------------------------------------------------- /public/images/cloudflare-example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/public/images/cloudflare-example.gif -------------------------------------------------------------------------------- /public/images/concurrent-example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/public/images/concurrent-example.gif -------------------------------------------------------------------------------- /public/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/public/images/favicon.png -------------------------------------------------------------------------------- /public/images/google-search-example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/public/images/google-search-example.gif -------------------------------------------------------------------------------- /public/images/logo-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/public/images/logo-black.png -------------------------------------------------------------------------------- /public/images/logo-purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/public/images/logo-purple.png -------------------------------------------------------------------------------- /public/images/logo-yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/public/images/logo-yellow.png -------------------------------------------------------------------------------- /public/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/public/images/logo.png -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/public/index.html -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/public/robots.txt -------------------------------------------------------------------------------- /public/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/public/script.js -------------------------------------------------------------------------------- /public/scripts/extra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/public/scripts/extra.js -------------------------------------------------------------------------------- /public/scripts/termynal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/public/scripts/termynal.js -------------------------------------------------------------------------------- /public/sitemap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/public/sitemap.xml -------------------------------------------------------------------------------- /public/stylesheets/extra.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/public/stylesheets/extra.css -------------------------------------------------------------------------------- /public/stylesheets/termynal.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/public/stylesheets/termynal.css -------------------------------------------------------------------------------- /pydoll/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pydoll/browser/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/pydoll/browser/__init__.py -------------------------------------------------------------------------------- /pydoll/browser/chromium/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/pydoll/browser/chromium/__init__.py -------------------------------------------------------------------------------- /pydoll/browser/chromium/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/pydoll/browser/chromium/base.py -------------------------------------------------------------------------------- /pydoll/browser/chromium/chrome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/pydoll/browser/chromium/chrome.py -------------------------------------------------------------------------------- /pydoll/browser/chromium/edge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/pydoll/browser/chromium/edge.py -------------------------------------------------------------------------------- /pydoll/browser/interfaces.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/pydoll/browser/interfaces.py -------------------------------------------------------------------------------- /pydoll/browser/managers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/pydoll/browser/managers/__init__.py -------------------------------------------------------------------------------- /pydoll/browser/managers/browser_options_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/pydoll/browser/managers/browser_options_manager.py -------------------------------------------------------------------------------- /pydoll/browser/managers/browser_process_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/pydoll/browser/managers/browser_process_manager.py -------------------------------------------------------------------------------- /pydoll/browser/managers/proxy_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/pydoll/browser/managers/proxy_manager.py -------------------------------------------------------------------------------- /pydoll/browser/managers/temp_dir_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/pydoll/browser/managers/temp_dir_manager.py -------------------------------------------------------------------------------- /pydoll/browser/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/pydoll/browser/options.py -------------------------------------------------------------------------------- /pydoll/browser/requests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/pydoll/browser/requests/__init__.py -------------------------------------------------------------------------------- /pydoll/browser/requests/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/pydoll/browser/requests/request.py -------------------------------------------------------------------------------- /pydoll/browser/requests/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/pydoll/browser/requests/response.py -------------------------------------------------------------------------------- /pydoll/browser/tab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/pydoll/browser/tab.py -------------------------------------------------------------------------------- /pydoll/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/pydoll/commands/__init__.py -------------------------------------------------------------------------------- /pydoll/commands/browser_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/pydoll/commands/browser_commands.py -------------------------------------------------------------------------------- /pydoll/commands/dom_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/pydoll/commands/dom_commands.py -------------------------------------------------------------------------------- /pydoll/commands/fetch_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/pydoll/commands/fetch_commands.py -------------------------------------------------------------------------------- /pydoll/commands/input_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/pydoll/commands/input_commands.py -------------------------------------------------------------------------------- /pydoll/commands/network_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/pydoll/commands/network_commands.py -------------------------------------------------------------------------------- /pydoll/commands/page_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/pydoll/commands/page_commands.py -------------------------------------------------------------------------------- /pydoll/commands/runtime_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/pydoll/commands/runtime_commands.py -------------------------------------------------------------------------------- /pydoll/commands/storage_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/pydoll/commands/storage_commands.py -------------------------------------------------------------------------------- /pydoll/commands/target_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/pydoll/commands/target_commands.py -------------------------------------------------------------------------------- /pydoll/connection/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/pydoll/connection/__init__.py -------------------------------------------------------------------------------- /pydoll/connection/connection_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/pydoll/connection/connection_handler.py -------------------------------------------------------------------------------- /pydoll/connection/managers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/pydoll/connection/managers/__init__.py -------------------------------------------------------------------------------- /pydoll/connection/managers/commands_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/pydoll/connection/managers/commands_manager.py -------------------------------------------------------------------------------- /pydoll/connection/managers/events_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/pydoll/connection/managers/events_manager.py -------------------------------------------------------------------------------- /pydoll/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/pydoll/constants.py -------------------------------------------------------------------------------- /pydoll/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/pydoll/decorators.py -------------------------------------------------------------------------------- /pydoll/elements/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pydoll/elements/mixins/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/pydoll/elements/mixins/__init__.py -------------------------------------------------------------------------------- /pydoll/elements/mixins/find_elements_mixin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/pydoll/elements/mixins/find_elements_mixin.py -------------------------------------------------------------------------------- /pydoll/elements/web_element.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/pydoll/elements/web_element.py -------------------------------------------------------------------------------- /pydoll/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/pydoll/exceptions.py -------------------------------------------------------------------------------- /pydoll/interactions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/pydoll/interactions/__init__.py -------------------------------------------------------------------------------- /pydoll/interactions/iframe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/pydoll/interactions/iframe.py -------------------------------------------------------------------------------- /pydoll/interactions/keyboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/pydoll/interactions/keyboard.py -------------------------------------------------------------------------------- /pydoll/interactions/scroll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/pydoll/interactions/scroll.py -------------------------------------------------------------------------------- /pydoll/protocol/__init__.py: -------------------------------------------------------------------------------- 1 | """Chrome DevTools Protocol implementation.""" 2 | -------------------------------------------------------------------------------- /pydoll/protocol/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/pydoll/protocol/base.py -------------------------------------------------------------------------------- /pydoll/protocol/browser/__init__.py: -------------------------------------------------------------------------------- 1 | """Browser domain implementation.""" 2 | -------------------------------------------------------------------------------- /pydoll/protocol/browser/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/pydoll/protocol/browser/events.py -------------------------------------------------------------------------------- /pydoll/protocol/browser/methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/pydoll/protocol/browser/methods.py -------------------------------------------------------------------------------- /pydoll/protocol/browser/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/pydoll/protocol/browser/types.py -------------------------------------------------------------------------------- /pydoll/protocol/debugger/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/pydoll/protocol/debugger/types.py -------------------------------------------------------------------------------- /pydoll/protocol/dom/__init__.py: -------------------------------------------------------------------------------- 1 | """DOM domain implementation.""" 2 | -------------------------------------------------------------------------------- /pydoll/protocol/dom/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/pydoll/protocol/dom/events.py -------------------------------------------------------------------------------- /pydoll/protocol/dom/methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/pydoll/protocol/dom/methods.py -------------------------------------------------------------------------------- /pydoll/protocol/dom/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/pydoll/protocol/dom/types.py -------------------------------------------------------------------------------- /pydoll/protocol/emulation/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/pydoll/protocol/emulation/types.py -------------------------------------------------------------------------------- /pydoll/protocol/fetch/__init__.py: -------------------------------------------------------------------------------- 1 | """Fetch domain implementation.""" 2 | -------------------------------------------------------------------------------- /pydoll/protocol/fetch/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/pydoll/protocol/fetch/events.py -------------------------------------------------------------------------------- /pydoll/protocol/fetch/methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/pydoll/protocol/fetch/methods.py -------------------------------------------------------------------------------- /pydoll/protocol/fetch/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/pydoll/protocol/fetch/types.py -------------------------------------------------------------------------------- /pydoll/protocol/input/__init__.py: -------------------------------------------------------------------------------- 1 | """Input domain implementation.""" 2 | -------------------------------------------------------------------------------- /pydoll/protocol/input/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/pydoll/protocol/input/events.py -------------------------------------------------------------------------------- /pydoll/protocol/input/methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/pydoll/protocol/input/methods.py -------------------------------------------------------------------------------- /pydoll/protocol/input/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/pydoll/protocol/input/types.py -------------------------------------------------------------------------------- /pydoll/protocol/io/types.py: -------------------------------------------------------------------------------- 1 | StreamHandle = str 2 | -------------------------------------------------------------------------------- /pydoll/protocol/network/__init__.py: -------------------------------------------------------------------------------- 1 | """Network domain implementation.""" 2 | -------------------------------------------------------------------------------- /pydoll/protocol/network/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/pydoll/protocol/network/events.py -------------------------------------------------------------------------------- /pydoll/protocol/network/methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/pydoll/protocol/network/methods.py -------------------------------------------------------------------------------- /pydoll/protocol/network/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/pydoll/protocol/network/types.py -------------------------------------------------------------------------------- /pydoll/protocol/page/__init__.py: -------------------------------------------------------------------------------- 1 | """Page domain implementation.""" 2 | -------------------------------------------------------------------------------- /pydoll/protocol/page/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/pydoll/protocol/page/events.py -------------------------------------------------------------------------------- /pydoll/protocol/page/methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/pydoll/protocol/page/methods.py -------------------------------------------------------------------------------- /pydoll/protocol/page/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/pydoll/protocol/page/types.py -------------------------------------------------------------------------------- /pydoll/protocol/runtime/__init__.py: -------------------------------------------------------------------------------- 1 | """Runtime domain implementation.""" 2 | -------------------------------------------------------------------------------- /pydoll/protocol/runtime/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/pydoll/protocol/runtime/events.py -------------------------------------------------------------------------------- /pydoll/protocol/runtime/methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/pydoll/protocol/runtime/methods.py -------------------------------------------------------------------------------- /pydoll/protocol/runtime/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/pydoll/protocol/runtime/types.py -------------------------------------------------------------------------------- /pydoll/protocol/security/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/pydoll/protocol/security/types.py -------------------------------------------------------------------------------- /pydoll/protocol/storage/__init__.py: -------------------------------------------------------------------------------- 1 | """Storage domain implementation.""" 2 | -------------------------------------------------------------------------------- /pydoll/protocol/storage/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/pydoll/protocol/storage/events.py -------------------------------------------------------------------------------- /pydoll/protocol/storage/methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/pydoll/protocol/storage/methods.py -------------------------------------------------------------------------------- /pydoll/protocol/storage/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/pydoll/protocol/storage/types.py -------------------------------------------------------------------------------- /pydoll/protocol/target/__init__.py: -------------------------------------------------------------------------------- 1 | """Target domain implementation.""" 2 | -------------------------------------------------------------------------------- /pydoll/protocol/target/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/pydoll/protocol/target/events.py -------------------------------------------------------------------------------- /pydoll/protocol/target/methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/pydoll/protocol/target/methods.py -------------------------------------------------------------------------------- /pydoll/protocol/target/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/pydoll/protocol/target/types.py -------------------------------------------------------------------------------- /pydoll/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pydoll/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/pydoll/utils.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/pages/test_children.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/tests/pages/test_children.html -------------------------------------------------------------------------------- /tests/pages/test_core_simple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/tests/pages/test_core_simple.html -------------------------------------------------------------------------------- /tests/pages/test_iframe_content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/tests/pages/test_iframe_content.html -------------------------------------------------------------------------------- /tests/pages/test_iframe_nested.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/tests/pages/test_iframe_nested.html -------------------------------------------------------------------------------- /tests/pages/test_iframe_nested_level.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/tests/pages/test_iframe_nested_level.html -------------------------------------------------------------------------------- /tests/pages/test_iframe_parent_level.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/tests/pages/test_iframe_parent_level.html -------------------------------------------------------------------------------- /tests/pages/test_iframe_simple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/tests/pages/test_iframe_simple.html -------------------------------------------------------------------------------- /tests/pages/test_multiple_iframes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/tests/pages/test_multiple_iframes.html -------------------------------------------------------------------------------- /tests/test_browser/test_browser_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/tests/test_browser/test_browser_base.py -------------------------------------------------------------------------------- /tests/test_browser/test_browser_chrome.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/tests/test_browser/test_browser_chrome.py -------------------------------------------------------------------------------- /tests/test_browser/test_browser_edge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/tests/test_browser/test_browser_edge.py -------------------------------------------------------------------------------- /tests/test_browser/test_browser_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/tests/test_browser/test_browser_options.py -------------------------------------------------------------------------------- /tests/test_browser/test_browser_tab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/tests/test_browser/test_browser_tab.py -------------------------------------------------------------------------------- /tests/test_browser/test_requests_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/tests/test_browser/test_requests_request.py -------------------------------------------------------------------------------- /tests/test_browser/test_requests_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/tests/test_browser/test_requests_response.py -------------------------------------------------------------------------------- /tests/test_browser/test_tab_request_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/tests/test_browser/test_tab_request_integration.py -------------------------------------------------------------------------------- /tests/test_commands/test_browser_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/tests/test_commands/test_browser_commands.py -------------------------------------------------------------------------------- /tests/test_commands/test_dom_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/tests/test_commands/test_dom_commands.py -------------------------------------------------------------------------------- /tests/test_commands/test_fetch_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/tests/test_commands/test_fetch_commands.py -------------------------------------------------------------------------------- /tests/test_commands/test_input_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/tests/test_commands/test_input_commands.py -------------------------------------------------------------------------------- /tests/test_commands/test_network_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/tests/test_commands/test_network_commands.py -------------------------------------------------------------------------------- /tests/test_commands/test_page_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/tests/test_commands/test_page_commands.py -------------------------------------------------------------------------------- /tests/test_commands/test_runtime_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/tests/test_commands/test_runtime_commands.py -------------------------------------------------------------------------------- /tests/test_commands/test_storage_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/tests/test_commands/test_storage_commands.py -------------------------------------------------------------------------------- /tests/test_commands/test_target_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/tests/test_commands/test_target_commands.py -------------------------------------------------------------------------------- /tests/test_connection_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/tests/test_connection_handler.py -------------------------------------------------------------------------------- /tests/test_core_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/tests/test_core_integration.py -------------------------------------------------------------------------------- /tests/test_decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/tests/test_decorators.py -------------------------------------------------------------------------------- /tests/test_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/tests/test_events.py -------------------------------------------------------------------------------- /tests/test_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/tests/test_exceptions.py -------------------------------------------------------------------------------- /tests/test_find_elements_mixin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/tests/test_find_elements_mixin.py -------------------------------------------------------------------------------- /tests/test_iframe_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/tests/test_iframe_integration.py -------------------------------------------------------------------------------- /tests/test_interactions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_interactions/test_iframe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/tests/test_interactions/test_iframe.py -------------------------------------------------------------------------------- /tests/test_interactions/test_keyboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/tests/test_interactions/test_keyboard.py -------------------------------------------------------------------------------- /tests/test_interactions/test_scroll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/tests/test_interactions/test_scroll.py -------------------------------------------------------------------------------- /tests/test_managers/test_browser_managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/tests/test_managers/test_browser_managers.py -------------------------------------------------------------------------------- /tests/test_managers/test_connection_managers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/tests/test_managers/test_connection_managers.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tests/test_web_element.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/autoscrape-labs/pydoll/HEAD/tests/test_web_element.py --------------------------------------------------------------------------------