├── .azure-pipelines ├── guardian │ └── SDL │ │ └── .gdnsuppress └── publish.yml ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE │ ├── bug.yml │ ├── config.yml │ ├── documentation.yml │ ├── feature.yml │ ├── question.yml │ └── regression.yml ├── dependabot.yml └── workflows │ ├── ci.yml │ ├── publish.yml │ ├── publish_docker.yml │ └── test_docker.yml ├── .gitignore ├── .pre-commit-config.yaml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── ROLLING.md ├── SECURITY.md ├── SUPPORT.md ├── conda_build_config_linux_aarch64.yaml ├── conda_build_config_osx_arm64.yaml ├── examples └── todomvc │ ├── mvctests │ ├── __init__.py │ ├── test_clear_completed_button.py │ ├── test_counter.py │ ├── test_editing.py │ ├── test_item.py │ ├── test_mark_all_as_completed.py │ ├── test_new_todo.py │ ├── test_persistence.py │ ├── test_routing.py │ └── utils.py │ └── requirements.txt ├── local-requirements.txt ├── meta.yaml ├── playwright ├── __init__.py ├── __main__.py ├── _impl │ ├── __init__.py │ ├── __pyinstaller │ │ ├── __init__.py │ │ ├── hook-playwright.async_api.py │ │ └── hook-playwright.sync_api.py │ ├── _api_structures.py │ ├── _artifact.py │ ├── _assertions.py │ ├── _async_base.py │ ├── _browser.py │ ├── _browser_context.py │ ├── _browser_type.py │ ├── _cdp_session.py │ ├── _clock.py │ ├── _connection.py │ ├── _console_message.py │ ├── _dialog.py │ ├── _download.py │ ├── _driver.py │ ├── _element_handle.py │ ├── _errors.py │ ├── _event_context_manager.py │ ├── _fetch.py │ ├── _file_chooser.py │ ├── _frame.py │ ├── _glob.py │ ├── _greenlets.py │ ├── _har_router.py │ ├── _helper.py │ ├── _impl_to_api_mapping.py │ ├── _input.py │ ├── _js_handle.py │ ├── _json_pipe.py │ ├── _local_utils.py │ ├── _locator.py │ ├── _map.py │ ├── _network.py │ ├── _object_factory.py │ ├── _page.py │ ├── _path_utils.py │ ├── _playwright.py │ ├── _selectors.py │ ├── _set_input_files_helpers.py │ ├── _str_utils.py │ ├── _stream.py │ ├── _sync_base.py │ ├── _tracing.py │ ├── _transport.py │ ├── _video.py │ ├── _waiter.py │ ├── _web_error.py │ └── _writable_stream.py ├── async_api │ ├── __init__.py │ ├── _context_manager.py │ └── _generated.py ├── py.typed └── sync_api │ ├── __init__.py │ ├── _context_manager.py │ └── _generated.py ├── pyproject.toml ├── requirements.txt ├── scripts ├── documentation_provider.py ├── example_async.py ├── example_sync.py ├── expected_api_mismatch.txt ├── generate_api.py ├── generate_async_api.py ├── generate_sync_api.py ├── update_api.sh └── update_versions.py ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── assets │ ├── beforeunload.html │ ├── client-certificates │ │ ├── README.md │ │ ├── client │ │ │ ├── localhost │ │ │ │ ├── localhost.csr │ │ │ │ ├── localhost.ext │ │ │ │ ├── localhost.key │ │ │ │ └── localhost.pem │ │ │ ├── self-signed │ │ │ │ ├── cert.pem │ │ │ │ ├── csr.pem │ │ │ │ └── key.pem │ │ │ └── trusted │ │ │ │ ├── cert-legacy.pfx │ │ │ │ ├── cert.pem │ │ │ │ ├── cert.pfx │ │ │ │ ├── csr.pem │ │ │ │ └── key.pem │ │ ├── generate.sh │ │ └── server │ │ │ ├── server_cert.pem │ │ │ └── server_key.pem │ ├── client.py │ ├── consolelog.html │ ├── csp.html │ ├── digits │ │ ├── 0.png │ │ ├── 1.png │ │ ├── 2.png │ │ ├── 3.png │ │ ├── 4.png │ │ ├── 5.png │ │ ├── 6.png │ │ ├── 7.png │ │ ├── 8.png │ │ └── 9.png │ ├── dom.html │ ├── download-blob.html │ ├── drag-n-drop.html │ ├── dummy_bad_browser_executable.js │ ├── empty.html │ ├── error.html │ ├── es6 │ │ ├── .eslintrc │ │ ├── es6import.js │ │ ├── es6module.js │ │ └── es6pathimport.js │ ├── extension-mv3-simple │ │ ├── content-script.js │ │ ├── index.js │ │ └── manifest.json │ ├── extension-mv3-with-logging │ │ ├── background.js │ │ ├── content.js │ │ └── manifest.json │ ├── file-to-upload-2.txt │ ├── file-to-upload.txt │ ├── frames │ │ ├── child-redirect.html │ │ ├── frame.html │ │ ├── frameset.html │ │ ├── nested-frames.html │ │ ├── one-frame.html │ │ ├── redirect-my-parent.html │ │ ├── script.js │ │ ├── style.css │ │ └── two-frames.html │ ├── geolocation.html │ ├── global-var.html │ ├── grid.html │ ├── har-fulfill.har │ ├── har-redirect.har │ ├── har-sha1-main-response.txt │ ├── har-sha1.har │ ├── har.html │ ├── headings.html │ ├── historyapi.html │ ├── injectedfile.js │ ├── injectedstyle.css │ ├── input │ │ ├── animating-button.html │ │ ├── button.html │ │ ├── checkbox.html │ │ ├── fileupload-multi.html │ │ ├── fileupload.html │ │ ├── folderupload.html │ │ ├── handle-locator.html │ │ ├── keyboard.html │ │ ├── mouse-helper.js │ │ ├── rotatedButton.html │ │ ├── scrollable.html │ │ ├── select.html │ │ ├── textarea.html │ │ └── touches.html │ ├── mobile.html │ ├── networkidle.html │ ├── networkidle.js │ ├── offscreenbuttons.html │ ├── one-style.css │ ├── one-style.html │ ├── playground.html │ ├── popup │ │ ├── popup.html │ │ └── window-open.html │ ├── pptr.png │ ├── react.html │ ├── react │ │ ├── react-dom@16.13.1.production.min.js │ │ └── react@16.13.1.production.min.js │ ├── sectionselectorengine.js │ ├── self-request.html │ ├── serviceworkers │ │ ├── empty │ │ │ ├── sw.html │ │ │ └── sw.js │ │ ├── fetch │ │ │ ├── style.css │ │ │ ├── sw.html │ │ │ └── sw.js │ │ └── fetchdummy │ │ │ ├── sw.html │ │ │ └── sw.js │ ├── shadow.html │ ├── simple.json │ ├── title.html │ ├── worker │ │ ├── worker.html │ │ └── worker.js │ └── wrappedlink.html ├── async │ ├── __init__.py │ ├── conftest.py │ ├── test_add_init_script.py │ ├── test_assertions.py │ ├── test_asyncio.py │ ├── test_browser.py │ ├── test_browsercontext.py │ ├── test_browsercontext_add_cookies.py │ ├── test_browsercontext_clearcookies.py │ ├── test_browsercontext_client_certificates.py │ ├── test_browsercontext_cookies.py │ ├── test_browsercontext_events.py │ ├── test_browsercontext_proxy.py │ ├── test_browsercontext_request_fallback.py │ ├── test_browsercontext_request_intercept.py │ ├── test_browsercontext_route.py │ ├── test_browsercontext_service_worker_policy.py │ ├── test_browsercontext_storage_state.py │ ├── test_browsertype_connect.py │ ├── test_browsertype_connect_cdp.py │ ├── test_cdp_session.py │ ├── test_check.py │ ├── test_chromium_tracing.py │ ├── test_click.py │ ├── test_console.py │ ├── test_context_manager.py │ ├── test_defaultbrowsercontext.py │ ├── test_device_descriptors.py │ ├── test_dialog.py │ ├── test_dispatch_event.py │ ├── test_download.py │ ├── test_element_handle.py │ ├── test_element_handle_wait_for_element_state.py │ ├── test_emulation_focus.py │ ├── test_expect_misc.py │ ├── test_extension.py │ ├── test_fetch_browser_context.py │ ├── test_fetch_global.py │ ├── test_fill.py │ ├── test_focus.py │ ├── test_frames.py │ ├── test_geolocation.py │ ├── test_har.py │ ├── test_headful.py │ ├── test_ignore_https_errors.py │ ├── test_input.py │ ├── test_issues.py │ ├── test_jshandle.py │ ├── test_keyboard.py │ ├── test_launcher.py │ ├── test_listeners.py │ ├── test_locators.py │ ├── test_navigation.py │ ├── test_network.py │ ├── test_page.py │ ├── test_page_add_locator_handler.py │ ├── test_page_aria_snapshot.py │ ├── test_page_base_url.py │ ├── test_page_clock.py │ ├── test_page_evaluate.py │ ├── test_page_event_console.py │ ├── test_page_event_pageerror.py │ ├── test_page_event_request.py │ ├── test_page_network_request.py │ ├── test_page_network_response.py │ ├── test_page_request_fallback.py │ ├── test_page_request_gc.py │ ├── test_page_request_intercept.py │ ├── test_page_route.py │ ├── test_page_select_option.py │ ├── test_pdf.py │ ├── test_popup.py │ ├── test_proxy.py │ ├── test_queryselector.py │ ├── test_request_continue.py │ ├── test_request_fulfill.py │ ├── test_request_intercept.py │ ├── test_resource_timing.py │ ├── test_route_web_socket.py │ ├── test_screenshot.py │ ├── test_selector_generator.py │ ├── test_selectors_get_by.py │ ├── test_selectors_misc.py │ ├── test_selectors_text.py │ ├── test_tap.py │ ├── test_tracing.py │ ├── test_unroute_behavior.py │ ├── test_video.py │ ├── test_wait_for_function.py │ ├── test_wait_for_url.py │ ├── test_websocket.py │ ├── test_worker.py │ └── utils.py ├── common │ ├── __init__.py │ ├── test_collect_handles.py │ ├── test_events.py │ ├── test_signals.py │ └── test_threads.py ├── conftest.py ├── golden-chromium │ ├── grid-cell-0.png │ ├── mask-should-work-with-element-handle.png │ ├── mask-should-work-with-locator.png │ ├── mask-should-work-with-page.png │ ├── mock-binary-response.png │ ├── mock-svg.png │ ├── screenshot-element-bounding-box.png │ └── screenshot-sanity.png ├── golden-firefox │ ├── grid-cell-0.png │ ├── mask-should-work-with-element-handle.png │ ├── mask-should-work-with-locator.png │ ├── mask-should-work-with-page.png │ ├── mock-binary-response.png │ ├── mock-svg.png │ ├── screenshot-element-bounding-box.png │ └── screenshot-sanity.png ├── golden-webkit │ ├── grid-cell-0.png │ ├── mask-should-work-with-element-handle.png │ ├── mask-should-work-with-locator.png │ ├── mask-should-work-with-page.png │ ├── mock-binary-response.png │ ├── mock-svg.png │ ├── screenshot-element-bounding-box.png │ └── screenshot-sanity.png ├── server.py ├── sync │ ├── __init__.py │ ├── conftest.py │ ├── test_add_init_script.py │ ├── test_assertions.py │ ├── test_browser.py │ ├── test_browsercontext_client_certificates.py │ ├── test_browsercontext_events.py │ ├── test_browsercontext_request_fallback.py │ ├── test_browsercontext_request_intercept.py │ ├── test_browsercontext_service_worker_policy.py │ ├── test_browsercontext_storage_state.py │ ├── test_browsertype_connect.py │ ├── test_browsertype_connect_cdp.py │ ├── test_cdp_session.py │ ├── test_check.py │ ├── test_console.py │ ├── test_context_manager.py │ ├── test_element_handle.py │ ├── test_element_handle_wait_for_element_state.py │ ├── test_expect_misc.py │ ├── test_extension.py │ ├── test_fetch_browser_context.py │ ├── test_fetch_global.py │ ├── test_fill.py │ ├── test_har.py │ ├── test_input.py │ ├── test_launcher.py │ ├── test_listeners.py │ ├── test_locator_get_by.py │ ├── test_locators.py │ ├── test_network.py │ ├── test_page.py │ ├── test_page_add_locator_handler.py │ ├── test_page_aria_snapshot.py │ ├── test_page_clock.py │ ├── test_page_event_console.py │ ├── test_page_event_pageerror.py │ ├── test_page_event_request.py │ ├── test_page_network_response.py │ ├── test_page_request_fallback.py │ ├── test_page_request_gc.py │ ├── test_page_request_intercept.py │ ├── test_page_select_option.py │ ├── test_pdf.py │ ├── test_queryselector.py │ ├── test_request_fulfill.py │ ├── test_request_intercept.py │ ├── test_resource_timing.py │ ├── test_route_web_socket.py │ ├── test_selectors_misc.py │ ├── test_sync.py │ ├── test_tap.py │ ├── test_tracing.py │ ├── test_unroute_behavior.py │ ├── test_video.py │ └── utils.py ├── test_installation.py ├── test_reference_count_async.py ├── testserver │ ├── cert.pem │ └── key.pem └── utils.py └── utils ├── docker ├── .gitignore ├── Dockerfile.jammy ├── Dockerfile.noble ├── build.sh └── publish_docker.sh └── linting └── check_file_header.py /.azure-pipelines/guardian/SDL/.gdnsuppress: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/.azure-pipelines/guardian/SDL/.gdnsuppress -------------------------------------------------------------------------------- /.azure-pipelines/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/.azure-pipelines/publish.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/.github/ISSUE_TEMPLATE/bug.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/.github/ISSUE_TEMPLATE/documentation.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/.github/ISSUE_TEMPLATE/feature.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/.github/ISSUE_TEMPLATE/question.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/regression.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/.github/ISSUE_TEMPLATE/regression.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/publish_docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/.github/workflows/publish_docker.yml -------------------------------------------------------------------------------- /.github/workflows/test_docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/.github/workflows/test_docker.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/README.md -------------------------------------------------------------------------------- /ROLLING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/ROLLING.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /conda_build_config_linux_aarch64.yaml: -------------------------------------------------------------------------------- 1 | target_platform: 2 | - linux-aarch64 3 | -------------------------------------------------------------------------------- /conda_build_config_osx_arm64.yaml: -------------------------------------------------------------------------------- 1 | target_platform: 2 | - osx-arm64 3 | -------------------------------------------------------------------------------- /examples/todomvc/mvctests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/todomvc/mvctests/test_clear_completed_button.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/examples/todomvc/mvctests/test_clear_completed_button.py -------------------------------------------------------------------------------- /examples/todomvc/mvctests/test_counter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/examples/todomvc/mvctests/test_counter.py -------------------------------------------------------------------------------- /examples/todomvc/mvctests/test_editing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/examples/todomvc/mvctests/test_editing.py -------------------------------------------------------------------------------- /examples/todomvc/mvctests/test_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/examples/todomvc/mvctests/test_item.py -------------------------------------------------------------------------------- /examples/todomvc/mvctests/test_mark_all_as_completed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/examples/todomvc/mvctests/test_mark_all_as_completed.py -------------------------------------------------------------------------------- /examples/todomvc/mvctests/test_new_todo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/examples/todomvc/mvctests/test_new_todo.py -------------------------------------------------------------------------------- /examples/todomvc/mvctests/test_persistence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/examples/todomvc/mvctests/test_persistence.py -------------------------------------------------------------------------------- /examples/todomvc/mvctests/test_routing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/examples/todomvc/mvctests/test_routing.py -------------------------------------------------------------------------------- /examples/todomvc/mvctests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/examples/todomvc/mvctests/utils.py -------------------------------------------------------------------------------- /examples/todomvc/requirements.txt: -------------------------------------------------------------------------------- 1 | pytest-playwright 2 | -------------------------------------------------------------------------------- /local-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/local-requirements.txt -------------------------------------------------------------------------------- /meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/meta.yaml -------------------------------------------------------------------------------- /playwright/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/playwright/__init__.py -------------------------------------------------------------------------------- /playwright/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/playwright/__main__.py -------------------------------------------------------------------------------- /playwright/_impl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /playwright/_impl/__pyinstaller/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/playwright/_impl/__pyinstaller/__init__.py -------------------------------------------------------------------------------- /playwright/_impl/__pyinstaller/hook-playwright.async_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/playwright/_impl/__pyinstaller/hook-playwright.async_api.py -------------------------------------------------------------------------------- /playwright/_impl/__pyinstaller/hook-playwright.sync_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/playwright/_impl/__pyinstaller/hook-playwright.sync_api.py -------------------------------------------------------------------------------- /playwright/_impl/_api_structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/playwright/_impl/_api_structures.py -------------------------------------------------------------------------------- /playwright/_impl/_artifact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/playwright/_impl/_artifact.py -------------------------------------------------------------------------------- /playwright/_impl/_assertions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/playwright/_impl/_assertions.py -------------------------------------------------------------------------------- /playwright/_impl/_async_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/playwright/_impl/_async_base.py -------------------------------------------------------------------------------- /playwright/_impl/_browser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/playwright/_impl/_browser.py -------------------------------------------------------------------------------- /playwright/_impl/_browser_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/playwright/_impl/_browser_context.py -------------------------------------------------------------------------------- /playwright/_impl/_browser_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/playwright/_impl/_browser_type.py -------------------------------------------------------------------------------- /playwright/_impl/_cdp_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/playwright/_impl/_cdp_session.py -------------------------------------------------------------------------------- /playwright/_impl/_clock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/playwright/_impl/_clock.py -------------------------------------------------------------------------------- /playwright/_impl/_connection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/playwright/_impl/_connection.py -------------------------------------------------------------------------------- /playwright/_impl/_console_message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/playwright/_impl/_console_message.py -------------------------------------------------------------------------------- /playwright/_impl/_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/playwright/_impl/_dialog.py -------------------------------------------------------------------------------- /playwright/_impl/_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/playwright/_impl/_download.py -------------------------------------------------------------------------------- /playwright/_impl/_driver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/playwright/_impl/_driver.py -------------------------------------------------------------------------------- /playwright/_impl/_element_handle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/playwright/_impl/_element_handle.py -------------------------------------------------------------------------------- /playwright/_impl/_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/playwright/_impl/_errors.py -------------------------------------------------------------------------------- /playwright/_impl/_event_context_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/playwright/_impl/_event_context_manager.py -------------------------------------------------------------------------------- /playwright/_impl/_fetch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/playwright/_impl/_fetch.py -------------------------------------------------------------------------------- /playwright/_impl/_file_chooser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/playwright/_impl/_file_chooser.py -------------------------------------------------------------------------------- /playwright/_impl/_frame.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/playwright/_impl/_frame.py -------------------------------------------------------------------------------- /playwright/_impl/_glob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/playwright/_impl/_glob.py -------------------------------------------------------------------------------- /playwright/_impl/_greenlets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/playwright/_impl/_greenlets.py -------------------------------------------------------------------------------- /playwright/_impl/_har_router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/playwright/_impl/_har_router.py -------------------------------------------------------------------------------- /playwright/_impl/_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/playwright/_impl/_helper.py -------------------------------------------------------------------------------- /playwright/_impl/_impl_to_api_mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/playwright/_impl/_impl_to_api_mapping.py -------------------------------------------------------------------------------- /playwright/_impl/_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/playwright/_impl/_input.py -------------------------------------------------------------------------------- /playwright/_impl/_js_handle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/playwright/_impl/_js_handle.py -------------------------------------------------------------------------------- /playwright/_impl/_json_pipe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/playwright/_impl/_json_pipe.py -------------------------------------------------------------------------------- /playwright/_impl/_local_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/playwright/_impl/_local_utils.py -------------------------------------------------------------------------------- /playwright/_impl/_locator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/playwright/_impl/_locator.py -------------------------------------------------------------------------------- /playwright/_impl/_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/playwright/_impl/_map.py -------------------------------------------------------------------------------- /playwright/_impl/_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/playwright/_impl/_network.py -------------------------------------------------------------------------------- /playwright/_impl/_object_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/playwright/_impl/_object_factory.py -------------------------------------------------------------------------------- /playwright/_impl/_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/playwright/_impl/_page.py -------------------------------------------------------------------------------- /playwright/_impl/_path_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/playwright/_impl/_path_utils.py -------------------------------------------------------------------------------- /playwright/_impl/_playwright.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/playwright/_impl/_playwright.py -------------------------------------------------------------------------------- /playwright/_impl/_selectors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/playwright/_impl/_selectors.py -------------------------------------------------------------------------------- /playwright/_impl/_set_input_files_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/playwright/_impl/_set_input_files_helpers.py -------------------------------------------------------------------------------- /playwright/_impl/_str_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/playwright/_impl/_str_utils.py -------------------------------------------------------------------------------- /playwright/_impl/_stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/playwright/_impl/_stream.py -------------------------------------------------------------------------------- /playwright/_impl/_sync_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/playwright/_impl/_sync_base.py -------------------------------------------------------------------------------- /playwright/_impl/_tracing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/playwright/_impl/_tracing.py -------------------------------------------------------------------------------- /playwright/_impl/_transport.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/playwright/_impl/_transport.py -------------------------------------------------------------------------------- /playwright/_impl/_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/playwright/_impl/_video.py -------------------------------------------------------------------------------- /playwright/_impl/_waiter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/playwright/_impl/_waiter.py -------------------------------------------------------------------------------- /playwright/_impl/_web_error.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/playwright/_impl/_web_error.py -------------------------------------------------------------------------------- /playwright/_impl/_writable_stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/playwright/_impl/_writable_stream.py -------------------------------------------------------------------------------- /playwright/async_api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/playwright/async_api/__init__.py -------------------------------------------------------------------------------- /playwright/async_api/_context_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/playwright/async_api/_context_manager.py -------------------------------------------------------------------------------- /playwright/async_api/_generated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/playwright/async_api/_generated.py -------------------------------------------------------------------------------- /playwright/py.typed: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /playwright/sync_api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/playwright/sync_api/__init__.py -------------------------------------------------------------------------------- /playwright/sync_api/_context_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/playwright/sync_api/_context_manager.py -------------------------------------------------------------------------------- /playwright/sync_api/_generated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/playwright/sync_api/_generated.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/documentation_provider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/scripts/documentation_provider.py -------------------------------------------------------------------------------- /scripts/example_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/scripts/example_async.py -------------------------------------------------------------------------------- /scripts/example_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/scripts/example_sync.py -------------------------------------------------------------------------------- /scripts/expected_api_mismatch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/scripts/expected_api_mismatch.txt -------------------------------------------------------------------------------- /scripts/generate_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/scripts/generate_api.py -------------------------------------------------------------------------------- /scripts/generate_async_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/scripts/generate_async_api.py -------------------------------------------------------------------------------- /scripts/generate_sync_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/scripts/generate_sync_api.py -------------------------------------------------------------------------------- /scripts/update_api.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/scripts/update_api.sh -------------------------------------------------------------------------------- /scripts/update_versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/scripts/update_versions.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/assets/beforeunload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/beforeunload.html -------------------------------------------------------------------------------- /tests/assets/client-certificates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/client-certificates/README.md -------------------------------------------------------------------------------- /tests/assets/client-certificates/client/localhost/localhost.csr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/client-certificates/client/localhost/localhost.csr -------------------------------------------------------------------------------- /tests/assets/client-certificates/client/localhost/localhost.ext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/client-certificates/client/localhost/localhost.ext -------------------------------------------------------------------------------- /tests/assets/client-certificates/client/localhost/localhost.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/client-certificates/client/localhost/localhost.key -------------------------------------------------------------------------------- /tests/assets/client-certificates/client/localhost/localhost.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/client-certificates/client/localhost/localhost.pem -------------------------------------------------------------------------------- /tests/assets/client-certificates/client/self-signed/cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/client-certificates/client/self-signed/cert.pem -------------------------------------------------------------------------------- /tests/assets/client-certificates/client/self-signed/csr.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/client-certificates/client/self-signed/csr.pem -------------------------------------------------------------------------------- /tests/assets/client-certificates/client/self-signed/key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/client-certificates/client/self-signed/key.pem -------------------------------------------------------------------------------- /tests/assets/client-certificates/client/trusted/cert-legacy.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/client-certificates/client/trusted/cert-legacy.pfx -------------------------------------------------------------------------------- /tests/assets/client-certificates/client/trusted/cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/client-certificates/client/trusted/cert.pem -------------------------------------------------------------------------------- /tests/assets/client-certificates/client/trusted/cert.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/client-certificates/client/trusted/cert.pfx -------------------------------------------------------------------------------- /tests/assets/client-certificates/client/trusted/csr.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/client-certificates/client/trusted/csr.pem -------------------------------------------------------------------------------- /tests/assets/client-certificates/client/trusted/key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/client-certificates/client/trusted/key.pem -------------------------------------------------------------------------------- /tests/assets/client-certificates/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/client-certificates/generate.sh -------------------------------------------------------------------------------- /tests/assets/client-certificates/server/server_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/client-certificates/server/server_cert.pem -------------------------------------------------------------------------------- /tests/assets/client-certificates/server/server_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/client-certificates/server/server_key.pem -------------------------------------------------------------------------------- /tests/assets/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/client.py -------------------------------------------------------------------------------- /tests/assets/consolelog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/consolelog.html -------------------------------------------------------------------------------- /tests/assets/csp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/csp.html -------------------------------------------------------------------------------- /tests/assets/digits/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/digits/0.png -------------------------------------------------------------------------------- /tests/assets/digits/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/digits/1.png -------------------------------------------------------------------------------- /tests/assets/digits/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/digits/2.png -------------------------------------------------------------------------------- /tests/assets/digits/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/digits/3.png -------------------------------------------------------------------------------- /tests/assets/digits/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/digits/4.png -------------------------------------------------------------------------------- /tests/assets/digits/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/digits/5.png -------------------------------------------------------------------------------- /tests/assets/digits/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/digits/6.png -------------------------------------------------------------------------------- /tests/assets/digits/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/digits/7.png -------------------------------------------------------------------------------- /tests/assets/digits/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/digits/8.png -------------------------------------------------------------------------------- /tests/assets/digits/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/digits/9.png -------------------------------------------------------------------------------- /tests/assets/dom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/dom.html -------------------------------------------------------------------------------- /tests/assets/download-blob.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/download-blob.html -------------------------------------------------------------------------------- /tests/assets/drag-n-drop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/drag-n-drop.html -------------------------------------------------------------------------------- /tests/assets/dummy_bad_browser_executable.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | process.exit(1); 4 | -------------------------------------------------------------------------------- /tests/assets/empty.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/assets/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/error.html -------------------------------------------------------------------------------- /tests/assets/es6/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/es6/.eslintrc -------------------------------------------------------------------------------- /tests/assets/es6/es6import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/es6/es6import.js -------------------------------------------------------------------------------- /tests/assets/es6/es6module.js: -------------------------------------------------------------------------------- 1 | export default 42; 2 | -------------------------------------------------------------------------------- /tests/assets/es6/es6pathimport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/es6/es6pathimport.js -------------------------------------------------------------------------------- /tests/assets/extension-mv3-simple/content-script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/extension-mv3-simple/content-script.js -------------------------------------------------------------------------------- /tests/assets/extension-mv3-simple/index.js: -------------------------------------------------------------------------------- 1 | // Mock script for background extension 2 | globalThis.MAGIC = 42; 3 | -------------------------------------------------------------------------------- /tests/assets/extension-mv3-simple/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/extension-mv3-simple/manifest.json -------------------------------------------------------------------------------- /tests/assets/extension-mv3-with-logging/background.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/extension-mv3-with-logging/background.js -------------------------------------------------------------------------------- /tests/assets/extension-mv3-with-logging/content.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/extension-mv3-with-logging/content.js -------------------------------------------------------------------------------- /tests/assets/extension-mv3-with-logging/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/extension-mv3-with-logging/manifest.json -------------------------------------------------------------------------------- /tests/assets/file-to-upload-2.txt: -------------------------------------------------------------------------------- 1 | contents of the file 2 | -------------------------------------------------------------------------------- /tests/assets/file-to-upload.txt: -------------------------------------------------------------------------------- 1 | contents of the file 2 | -------------------------------------------------------------------------------- /tests/assets/frames/child-redirect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/frames/child-redirect.html -------------------------------------------------------------------------------- /tests/assets/frames/frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/frames/frame.html -------------------------------------------------------------------------------- /tests/assets/frames/frameset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/frames/frameset.html -------------------------------------------------------------------------------- /tests/assets/frames/nested-frames.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/frames/nested-frames.html -------------------------------------------------------------------------------- /tests/assets/frames/one-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/frames/one-frame.html -------------------------------------------------------------------------------- /tests/assets/frames/redirect-my-parent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/frames/redirect-my-parent.html -------------------------------------------------------------------------------- /tests/assets/frames/script.js: -------------------------------------------------------------------------------- 1 | console.log('Cheers!'); 2 | -------------------------------------------------------------------------------- /tests/assets/frames/style.css: -------------------------------------------------------------------------------- 1 | div { 2 | color: blue; 3 | } 4 | -------------------------------------------------------------------------------- /tests/assets/frames/two-frames.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/frames/two-frames.html -------------------------------------------------------------------------------- /tests/assets/geolocation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/geolocation.html -------------------------------------------------------------------------------- /tests/assets/global-var.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/global-var.html -------------------------------------------------------------------------------- /tests/assets/grid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/grid.html -------------------------------------------------------------------------------- /tests/assets/har-fulfill.har: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/har-fulfill.har -------------------------------------------------------------------------------- /tests/assets/har-redirect.har: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/har-redirect.har -------------------------------------------------------------------------------- /tests/assets/har-sha1-main-response.txt: -------------------------------------------------------------------------------- 1 | Hello, world -------------------------------------------------------------------------------- /tests/assets/har-sha1.har: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/har-sha1.har -------------------------------------------------------------------------------- /tests/assets/har.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/har.html -------------------------------------------------------------------------------- /tests/assets/headings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/headings.html -------------------------------------------------------------------------------- /tests/assets/historyapi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/historyapi.html -------------------------------------------------------------------------------- /tests/assets/injectedfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/injectedfile.js -------------------------------------------------------------------------------- /tests/assets/injectedstyle.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: red; 3 | } 4 | -------------------------------------------------------------------------------- /tests/assets/input/animating-button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/input/animating-button.html -------------------------------------------------------------------------------- /tests/assets/input/button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/input/button.html -------------------------------------------------------------------------------- /tests/assets/input/checkbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/input/checkbox.html -------------------------------------------------------------------------------- /tests/assets/input/fileupload-multi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/input/fileupload-multi.html -------------------------------------------------------------------------------- /tests/assets/input/fileupload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/input/fileupload.html -------------------------------------------------------------------------------- /tests/assets/input/folderupload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/input/folderupload.html -------------------------------------------------------------------------------- /tests/assets/input/handle-locator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/input/handle-locator.html -------------------------------------------------------------------------------- /tests/assets/input/keyboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/input/keyboard.html -------------------------------------------------------------------------------- /tests/assets/input/mouse-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/input/mouse-helper.js -------------------------------------------------------------------------------- /tests/assets/input/rotatedButton.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/input/rotatedButton.html -------------------------------------------------------------------------------- /tests/assets/input/scrollable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/input/scrollable.html -------------------------------------------------------------------------------- /tests/assets/input/select.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/input/select.html -------------------------------------------------------------------------------- /tests/assets/input/textarea.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/input/textarea.html -------------------------------------------------------------------------------- /tests/assets/input/touches.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/input/touches.html -------------------------------------------------------------------------------- /tests/assets/mobile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/mobile.html -------------------------------------------------------------------------------- /tests/assets/networkidle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/networkidle.html -------------------------------------------------------------------------------- /tests/assets/networkidle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/networkidle.js -------------------------------------------------------------------------------- /tests/assets/offscreenbuttons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/offscreenbuttons.html -------------------------------------------------------------------------------- /tests/assets/one-style.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: pink; 3 | } 4 | -------------------------------------------------------------------------------- /tests/assets/one-style.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/one-style.html -------------------------------------------------------------------------------- /tests/assets/playground.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/playground.html -------------------------------------------------------------------------------- /tests/assets/popup/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/popup/popup.html -------------------------------------------------------------------------------- /tests/assets/popup/window-open.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/popup/window-open.html -------------------------------------------------------------------------------- /tests/assets/pptr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/pptr.png -------------------------------------------------------------------------------- /tests/assets/react.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/react.html -------------------------------------------------------------------------------- /tests/assets/react/react-dom@16.13.1.production.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/react/react-dom@16.13.1.production.min.js -------------------------------------------------------------------------------- /tests/assets/react/react@16.13.1.production.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/react/react@16.13.1.production.min.js -------------------------------------------------------------------------------- /tests/assets/sectionselectorengine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/sectionselectorengine.js -------------------------------------------------------------------------------- /tests/assets/self-request.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/self-request.html -------------------------------------------------------------------------------- /tests/assets/serviceworkers/empty/sw.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/serviceworkers/empty/sw.html -------------------------------------------------------------------------------- /tests/assets/serviceworkers/empty/sw.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/assets/serviceworkers/fetch/style.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: pink; 3 | } 4 | -------------------------------------------------------------------------------- /tests/assets/serviceworkers/fetch/sw.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/serviceworkers/fetch/sw.html -------------------------------------------------------------------------------- /tests/assets/serviceworkers/fetch/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/serviceworkers/fetch/sw.js -------------------------------------------------------------------------------- /tests/assets/serviceworkers/fetchdummy/sw.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/serviceworkers/fetchdummy/sw.html -------------------------------------------------------------------------------- /tests/assets/serviceworkers/fetchdummy/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/serviceworkers/fetchdummy/sw.js -------------------------------------------------------------------------------- /tests/assets/shadow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/shadow.html -------------------------------------------------------------------------------- /tests/assets/simple.json: -------------------------------------------------------------------------------- 1 | {"foo": "bar"} 2 | -------------------------------------------------------------------------------- /tests/assets/title.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/title.html -------------------------------------------------------------------------------- /tests/assets/worker/worker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/worker/worker.html -------------------------------------------------------------------------------- /tests/assets/worker/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/worker/worker.js -------------------------------------------------------------------------------- /tests/assets/wrappedlink.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/assets/wrappedlink.html -------------------------------------------------------------------------------- /tests/async/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/async/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/conftest.py -------------------------------------------------------------------------------- /tests/async/test_add_init_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_add_init_script.py -------------------------------------------------------------------------------- /tests/async/test_assertions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_assertions.py -------------------------------------------------------------------------------- /tests/async/test_asyncio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_asyncio.py -------------------------------------------------------------------------------- /tests/async/test_browser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_browser.py -------------------------------------------------------------------------------- /tests/async/test_browsercontext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_browsercontext.py -------------------------------------------------------------------------------- /tests/async/test_browsercontext_add_cookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_browsercontext_add_cookies.py -------------------------------------------------------------------------------- /tests/async/test_browsercontext_clearcookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_browsercontext_clearcookies.py -------------------------------------------------------------------------------- /tests/async/test_browsercontext_client_certificates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_browsercontext_client_certificates.py -------------------------------------------------------------------------------- /tests/async/test_browsercontext_cookies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_browsercontext_cookies.py -------------------------------------------------------------------------------- /tests/async/test_browsercontext_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_browsercontext_events.py -------------------------------------------------------------------------------- /tests/async/test_browsercontext_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_browsercontext_proxy.py -------------------------------------------------------------------------------- /tests/async/test_browsercontext_request_fallback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_browsercontext_request_fallback.py -------------------------------------------------------------------------------- /tests/async/test_browsercontext_request_intercept.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_browsercontext_request_intercept.py -------------------------------------------------------------------------------- /tests/async/test_browsercontext_route.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_browsercontext_route.py -------------------------------------------------------------------------------- /tests/async/test_browsercontext_service_worker_policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_browsercontext_service_worker_policy.py -------------------------------------------------------------------------------- /tests/async/test_browsercontext_storage_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_browsercontext_storage_state.py -------------------------------------------------------------------------------- /tests/async/test_browsertype_connect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_browsertype_connect.py -------------------------------------------------------------------------------- /tests/async/test_browsertype_connect_cdp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_browsertype_connect_cdp.py -------------------------------------------------------------------------------- /tests/async/test_cdp_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_cdp_session.py -------------------------------------------------------------------------------- /tests/async/test_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_check.py -------------------------------------------------------------------------------- /tests/async/test_chromium_tracing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_chromium_tracing.py -------------------------------------------------------------------------------- /tests/async/test_click.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_click.py -------------------------------------------------------------------------------- /tests/async/test_console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_console.py -------------------------------------------------------------------------------- /tests/async/test_context_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_context_manager.py -------------------------------------------------------------------------------- /tests/async/test_defaultbrowsercontext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_defaultbrowsercontext.py -------------------------------------------------------------------------------- /tests/async/test_device_descriptors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_device_descriptors.py -------------------------------------------------------------------------------- /tests/async/test_dialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_dialog.py -------------------------------------------------------------------------------- /tests/async/test_dispatch_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_dispatch_event.py -------------------------------------------------------------------------------- /tests/async/test_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_download.py -------------------------------------------------------------------------------- /tests/async/test_element_handle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_element_handle.py -------------------------------------------------------------------------------- /tests/async/test_element_handle_wait_for_element_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_element_handle_wait_for_element_state.py -------------------------------------------------------------------------------- /tests/async/test_emulation_focus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_emulation_focus.py -------------------------------------------------------------------------------- /tests/async/test_expect_misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_expect_misc.py -------------------------------------------------------------------------------- /tests/async/test_extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_extension.py -------------------------------------------------------------------------------- /tests/async/test_fetch_browser_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_fetch_browser_context.py -------------------------------------------------------------------------------- /tests/async/test_fetch_global.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_fetch_global.py -------------------------------------------------------------------------------- /tests/async/test_fill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_fill.py -------------------------------------------------------------------------------- /tests/async/test_focus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_focus.py -------------------------------------------------------------------------------- /tests/async/test_frames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_frames.py -------------------------------------------------------------------------------- /tests/async/test_geolocation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_geolocation.py -------------------------------------------------------------------------------- /tests/async/test_har.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_har.py -------------------------------------------------------------------------------- /tests/async/test_headful.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_headful.py -------------------------------------------------------------------------------- /tests/async/test_ignore_https_errors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_ignore_https_errors.py -------------------------------------------------------------------------------- /tests/async/test_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_input.py -------------------------------------------------------------------------------- /tests/async/test_issues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_issues.py -------------------------------------------------------------------------------- /tests/async/test_jshandle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_jshandle.py -------------------------------------------------------------------------------- /tests/async/test_keyboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_keyboard.py -------------------------------------------------------------------------------- /tests/async/test_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_launcher.py -------------------------------------------------------------------------------- /tests/async/test_listeners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_listeners.py -------------------------------------------------------------------------------- /tests/async/test_locators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_locators.py -------------------------------------------------------------------------------- /tests/async/test_navigation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_navigation.py -------------------------------------------------------------------------------- /tests/async/test_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_network.py -------------------------------------------------------------------------------- /tests/async/test_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_page.py -------------------------------------------------------------------------------- /tests/async/test_page_add_locator_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_page_add_locator_handler.py -------------------------------------------------------------------------------- /tests/async/test_page_aria_snapshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_page_aria_snapshot.py -------------------------------------------------------------------------------- /tests/async/test_page_base_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_page_base_url.py -------------------------------------------------------------------------------- /tests/async/test_page_clock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_page_clock.py -------------------------------------------------------------------------------- /tests/async/test_page_evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_page_evaluate.py -------------------------------------------------------------------------------- /tests/async/test_page_event_console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_page_event_console.py -------------------------------------------------------------------------------- /tests/async/test_page_event_pageerror.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_page_event_pageerror.py -------------------------------------------------------------------------------- /tests/async/test_page_event_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_page_event_request.py -------------------------------------------------------------------------------- /tests/async/test_page_network_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_page_network_request.py -------------------------------------------------------------------------------- /tests/async/test_page_network_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_page_network_response.py -------------------------------------------------------------------------------- /tests/async/test_page_request_fallback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_page_request_fallback.py -------------------------------------------------------------------------------- /tests/async/test_page_request_gc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_page_request_gc.py -------------------------------------------------------------------------------- /tests/async/test_page_request_intercept.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_page_request_intercept.py -------------------------------------------------------------------------------- /tests/async/test_page_route.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_page_route.py -------------------------------------------------------------------------------- /tests/async/test_page_select_option.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_page_select_option.py -------------------------------------------------------------------------------- /tests/async/test_pdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_pdf.py -------------------------------------------------------------------------------- /tests/async/test_popup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_popup.py -------------------------------------------------------------------------------- /tests/async/test_proxy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_proxy.py -------------------------------------------------------------------------------- /tests/async/test_queryselector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_queryselector.py -------------------------------------------------------------------------------- /tests/async/test_request_continue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_request_continue.py -------------------------------------------------------------------------------- /tests/async/test_request_fulfill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_request_fulfill.py -------------------------------------------------------------------------------- /tests/async/test_request_intercept.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_request_intercept.py -------------------------------------------------------------------------------- /tests/async/test_resource_timing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_resource_timing.py -------------------------------------------------------------------------------- /tests/async/test_route_web_socket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_route_web_socket.py -------------------------------------------------------------------------------- /tests/async/test_screenshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_screenshot.py -------------------------------------------------------------------------------- /tests/async/test_selector_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_selector_generator.py -------------------------------------------------------------------------------- /tests/async/test_selectors_get_by.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_selectors_get_by.py -------------------------------------------------------------------------------- /tests/async/test_selectors_misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_selectors_misc.py -------------------------------------------------------------------------------- /tests/async/test_selectors_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_selectors_text.py -------------------------------------------------------------------------------- /tests/async/test_tap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_tap.py -------------------------------------------------------------------------------- /tests/async/test_tracing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_tracing.py -------------------------------------------------------------------------------- /tests/async/test_unroute_behavior.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_unroute_behavior.py -------------------------------------------------------------------------------- /tests/async/test_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_video.py -------------------------------------------------------------------------------- /tests/async/test_wait_for_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_wait_for_function.py -------------------------------------------------------------------------------- /tests/async/test_wait_for_url.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_wait_for_url.py -------------------------------------------------------------------------------- /tests/async/test_websocket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_websocket.py -------------------------------------------------------------------------------- /tests/async/test_worker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/test_worker.py -------------------------------------------------------------------------------- /tests/async/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/async/utils.py -------------------------------------------------------------------------------- /tests/common/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/common/test_collect_handles.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/common/test_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/common/test_events.py -------------------------------------------------------------------------------- /tests/common/test_signals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/common/test_signals.py -------------------------------------------------------------------------------- /tests/common/test_threads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/common/test_threads.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/golden-chromium/grid-cell-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/golden-chromium/grid-cell-0.png -------------------------------------------------------------------------------- /tests/golden-chromium/mask-should-work-with-element-handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/golden-chromium/mask-should-work-with-element-handle.png -------------------------------------------------------------------------------- /tests/golden-chromium/mask-should-work-with-locator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/golden-chromium/mask-should-work-with-locator.png -------------------------------------------------------------------------------- /tests/golden-chromium/mask-should-work-with-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/golden-chromium/mask-should-work-with-page.png -------------------------------------------------------------------------------- /tests/golden-chromium/mock-binary-response.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/golden-chromium/mock-binary-response.png -------------------------------------------------------------------------------- /tests/golden-chromium/mock-svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/golden-chromium/mock-svg.png -------------------------------------------------------------------------------- /tests/golden-chromium/screenshot-element-bounding-box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/golden-chromium/screenshot-element-bounding-box.png -------------------------------------------------------------------------------- /tests/golden-chromium/screenshot-sanity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/golden-chromium/screenshot-sanity.png -------------------------------------------------------------------------------- /tests/golden-firefox/grid-cell-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/golden-firefox/grid-cell-0.png -------------------------------------------------------------------------------- /tests/golden-firefox/mask-should-work-with-element-handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/golden-firefox/mask-should-work-with-element-handle.png -------------------------------------------------------------------------------- /tests/golden-firefox/mask-should-work-with-locator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/golden-firefox/mask-should-work-with-locator.png -------------------------------------------------------------------------------- /tests/golden-firefox/mask-should-work-with-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/golden-firefox/mask-should-work-with-page.png -------------------------------------------------------------------------------- /tests/golden-firefox/mock-binary-response.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/golden-firefox/mock-binary-response.png -------------------------------------------------------------------------------- /tests/golden-firefox/mock-svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/golden-firefox/mock-svg.png -------------------------------------------------------------------------------- /tests/golden-firefox/screenshot-element-bounding-box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/golden-firefox/screenshot-element-bounding-box.png -------------------------------------------------------------------------------- /tests/golden-firefox/screenshot-sanity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/golden-firefox/screenshot-sanity.png -------------------------------------------------------------------------------- /tests/golden-webkit/grid-cell-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/golden-webkit/grid-cell-0.png -------------------------------------------------------------------------------- /tests/golden-webkit/mask-should-work-with-element-handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/golden-webkit/mask-should-work-with-element-handle.png -------------------------------------------------------------------------------- /tests/golden-webkit/mask-should-work-with-locator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/golden-webkit/mask-should-work-with-locator.png -------------------------------------------------------------------------------- /tests/golden-webkit/mask-should-work-with-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/golden-webkit/mask-should-work-with-page.png -------------------------------------------------------------------------------- /tests/golden-webkit/mock-binary-response.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/golden-webkit/mock-binary-response.png -------------------------------------------------------------------------------- /tests/golden-webkit/mock-svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/golden-webkit/mock-svg.png -------------------------------------------------------------------------------- /tests/golden-webkit/screenshot-element-bounding-box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/golden-webkit/screenshot-element-bounding-box.png -------------------------------------------------------------------------------- /tests/golden-webkit/screenshot-sanity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/golden-webkit/screenshot-sanity.png -------------------------------------------------------------------------------- /tests/server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/server.py -------------------------------------------------------------------------------- /tests/sync/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/sync/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/sync/conftest.py -------------------------------------------------------------------------------- /tests/sync/test_add_init_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/sync/test_add_init_script.py -------------------------------------------------------------------------------- /tests/sync/test_assertions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/sync/test_assertions.py -------------------------------------------------------------------------------- /tests/sync/test_browser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/sync/test_browser.py -------------------------------------------------------------------------------- /tests/sync/test_browsercontext_client_certificates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/sync/test_browsercontext_client_certificates.py -------------------------------------------------------------------------------- /tests/sync/test_browsercontext_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/sync/test_browsercontext_events.py -------------------------------------------------------------------------------- /tests/sync/test_browsercontext_request_fallback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/sync/test_browsercontext_request_fallback.py -------------------------------------------------------------------------------- /tests/sync/test_browsercontext_request_intercept.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/sync/test_browsercontext_request_intercept.py -------------------------------------------------------------------------------- /tests/sync/test_browsercontext_service_worker_policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/sync/test_browsercontext_service_worker_policy.py -------------------------------------------------------------------------------- /tests/sync/test_browsercontext_storage_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/sync/test_browsercontext_storage_state.py -------------------------------------------------------------------------------- /tests/sync/test_browsertype_connect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/sync/test_browsertype_connect.py -------------------------------------------------------------------------------- /tests/sync/test_browsertype_connect_cdp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/sync/test_browsertype_connect_cdp.py -------------------------------------------------------------------------------- /tests/sync/test_cdp_session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/sync/test_cdp_session.py -------------------------------------------------------------------------------- /tests/sync/test_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/sync/test_check.py -------------------------------------------------------------------------------- /tests/sync/test_console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/sync/test_console.py -------------------------------------------------------------------------------- /tests/sync/test_context_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/sync/test_context_manager.py -------------------------------------------------------------------------------- /tests/sync/test_element_handle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/sync/test_element_handle.py -------------------------------------------------------------------------------- /tests/sync/test_element_handle_wait_for_element_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/sync/test_element_handle_wait_for_element_state.py -------------------------------------------------------------------------------- /tests/sync/test_expect_misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/sync/test_expect_misc.py -------------------------------------------------------------------------------- /tests/sync/test_extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/sync/test_extension.py -------------------------------------------------------------------------------- /tests/sync/test_fetch_browser_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/sync/test_fetch_browser_context.py -------------------------------------------------------------------------------- /tests/sync/test_fetch_global.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/sync/test_fetch_global.py -------------------------------------------------------------------------------- /tests/sync/test_fill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/sync/test_fill.py -------------------------------------------------------------------------------- /tests/sync/test_har.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/sync/test_har.py -------------------------------------------------------------------------------- /tests/sync/test_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/sync/test_input.py -------------------------------------------------------------------------------- /tests/sync/test_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/sync/test_launcher.py -------------------------------------------------------------------------------- /tests/sync/test_listeners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/sync/test_listeners.py -------------------------------------------------------------------------------- /tests/sync/test_locator_get_by.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/sync/test_locator_get_by.py -------------------------------------------------------------------------------- /tests/sync/test_locators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/sync/test_locators.py -------------------------------------------------------------------------------- /tests/sync/test_network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/sync/test_network.py -------------------------------------------------------------------------------- /tests/sync/test_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/sync/test_page.py -------------------------------------------------------------------------------- /tests/sync/test_page_add_locator_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/sync/test_page_add_locator_handler.py -------------------------------------------------------------------------------- /tests/sync/test_page_aria_snapshot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/sync/test_page_aria_snapshot.py -------------------------------------------------------------------------------- /tests/sync/test_page_clock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/sync/test_page_clock.py -------------------------------------------------------------------------------- /tests/sync/test_page_event_console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/sync/test_page_event_console.py -------------------------------------------------------------------------------- /tests/sync/test_page_event_pageerror.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/sync/test_page_event_pageerror.py -------------------------------------------------------------------------------- /tests/sync/test_page_event_request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/sync/test_page_event_request.py -------------------------------------------------------------------------------- /tests/sync/test_page_network_response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/sync/test_page_network_response.py -------------------------------------------------------------------------------- /tests/sync/test_page_request_fallback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/sync/test_page_request_fallback.py -------------------------------------------------------------------------------- /tests/sync/test_page_request_gc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/sync/test_page_request_gc.py -------------------------------------------------------------------------------- /tests/sync/test_page_request_intercept.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/sync/test_page_request_intercept.py -------------------------------------------------------------------------------- /tests/sync/test_page_select_option.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/sync/test_page_select_option.py -------------------------------------------------------------------------------- /tests/sync/test_pdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/sync/test_pdf.py -------------------------------------------------------------------------------- /tests/sync/test_queryselector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/sync/test_queryselector.py -------------------------------------------------------------------------------- /tests/sync/test_request_fulfill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/sync/test_request_fulfill.py -------------------------------------------------------------------------------- /tests/sync/test_request_intercept.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/sync/test_request_intercept.py -------------------------------------------------------------------------------- /tests/sync/test_resource_timing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/sync/test_resource_timing.py -------------------------------------------------------------------------------- /tests/sync/test_route_web_socket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/sync/test_route_web_socket.py -------------------------------------------------------------------------------- /tests/sync/test_selectors_misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/sync/test_selectors_misc.py -------------------------------------------------------------------------------- /tests/sync/test_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/sync/test_sync.py -------------------------------------------------------------------------------- /tests/sync/test_tap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/sync/test_tap.py -------------------------------------------------------------------------------- /tests/sync/test_tracing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/sync/test_tracing.py -------------------------------------------------------------------------------- /tests/sync/test_unroute_behavior.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/sync/test_unroute_behavior.py -------------------------------------------------------------------------------- /tests/sync/test_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/sync/test_video.py -------------------------------------------------------------------------------- /tests/sync/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/sync/utils.py -------------------------------------------------------------------------------- /tests/test_installation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/test_installation.py -------------------------------------------------------------------------------- /tests/test_reference_count_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/test_reference_count_async.py -------------------------------------------------------------------------------- /tests/testserver/cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/testserver/cert.pem -------------------------------------------------------------------------------- /tests/testserver/key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/testserver/key.pem -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/tests/utils.py -------------------------------------------------------------------------------- /utils/docker/.gitignore: -------------------------------------------------------------------------------- 1 | oras/ 2 | -------------------------------------------------------------------------------- /utils/docker/Dockerfile.jammy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/utils/docker/Dockerfile.jammy -------------------------------------------------------------------------------- /utils/docker/Dockerfile.noble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/utils/docker/Dockerfile.noble -------------------------------------------------------------------------------- /utils/docker/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/utils/docker/build.sh -------------------------------------------------------------------------------- /utils/docker/publish_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/utils/docker/publish_docker.sh -------------------------------------------------------------------------------- /utils/linting/check_file_header.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/playwright-python/HEAD/utils/linting/check_file_header.py --------------------------------------------------------------------------------