├── .gitattributes ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug-report.md │ └── feature-request.md └── workflows │ ├── build.yml │ ├── docs.yml │ └── verify_type_generation.yml ├── .gitignore ├── .gitmodules ├── .golangci.yaml ├── .nojekyll ├── 404.html ├── CONTRIBUTING.md ├── Dockerfile.example ├── LICENSE ├── README.md ├── _config.yml ├── apiresponse_assertions.go ├── artifact.go ├── assertions.go ├── binding_call.go ├── browser.go ├── browser_context.go ├── browser_type.go ├── cdp_session.go ├── channel.go ├── channel_owner.go ├── clock.go ├── cmd └── playwright │ └── main.go ├── connection.go ├── console_message.go ├── dialog.go ├── docs ├── .gitignore ├── Gemfile └── Gemfile.lock ├── download.go ├── element_handle.go ├── errors.go ├── event_emitter.go ├── event_emitter_test.go ├── examples ├── download │ └── main.go ├── end-to-end-testing │ └── main.go ├── javascript │ └── main.go ├── mobile-and-geolocation │ └── main.go ├── network-monitoring │ └── main.go ├── parallel-scraping │ └── main.go ├── pdf │ └── main.go ├── scraping │ └── main.go ├── screenshot │ └── main.go ├── use-local-chrome │ └── main.go └── video │ └── main.go ├── fetch.go ├── file_chooser.go ├── frame.go ├── frame_locator.go ├── generated-enums.go ├── generated-interfaces.go ├── generated-structs.go ├── glob.go ├── glob_test.go ├── go.mod ├── go.sum ├── har_router.go ├── helpers.go ├── helpers_test.go ├── input.go ├── input_files_helper.go ├── internal └── safe │ └── map.go ├── js_handle.go ├── jsonPipe.go ├── local_utils.go ├── locator.go ├── locator_assertions.go ├── locator_helpers.go ├── network.go ├── objectFactory.go ├── page.go ├── page_assertions.go ├── patches └── main.patch ├── playwright.go ├── request.go ├── response.go ├── route.go ├── run.go ├── run_test.go ├── run_unix.go ├── run_win.go ├── scripts ├── apply-patch.sh ├── generate-api.sh ├── install-browsers │ └── main.go ├── update-patch.sh └── update-readme-versions │ └── main.go ├── selectors.go ├── stream.go ├── tests ├── apiresponse_assertions_test.go ├── assets │ ├── background-color.html │ ├── beforeunload.html │ ├── button-overlay-oopif.html │ ├── cached │ │ ├── one-style.css │ │ └── one-style.html │ ├── callback.js │ ├── checkerboard.html │ ├── chromium-linux.zip │ ├── 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 │ ├── consolelog.html │ ├── csp.html │ ├── css-transition.html │ ├── csscoverage │ │ ├── Dosis-Regular.ttf │ │ ├── OFL.txt │ │ ├── involved.html │ │ ├── media.html │ │ ├── multiple.html │ │ ├── simple.html │ │ ├── sourceurl.html │ │ ├── stylesheet1.css │ │ ├── stylesheet2.css │ │ └── unused.html │ ├── deep-shadow.html │ ├── detect-touch.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 │ ├── dynamic-oopif.html │ ├── empty-standard-mode.html │ ├── empty.html │ ├── empty.pdf │ ├── error.html │ ├── es6 │ │ ├── .eslintrc │ │ ├── es6import.js │ │ ├── es6module.js │ │ └── es6pathimport.js │ ├── example.mp3 │ ├── file-to-upload-2.txt │ ├── file-to-upload.txt │ ├── formatted-number.html │ ├── frames │ │ ├── child-redirect.html │ │ ├── frame.html │ │ ├── frameset.html │ │ ├── lazy-frame.html │ │ ├── nested-frames.html │ │ ├── one-frame.html │ │ ├── redirect-my-parent.html │ │ ├── script.js │ │ ├── style.css │ │ └── two-frames.html │ ├── geolocation.html │ ├── global-var.html │ ├── grid-iframe-in-shadow.html │ ├── grid.html │ ├── har-fulfill.har │ ├── har-redirect.har │ ├── har-sha1-main-response.txt │ ├── har-sha1.har │ ├── har.html │ ├── headings.html │ ├── highdpi.html │ ├── historyapi.html │ ├── injectedfile.js │ ├── injectedstyle.css │ ├── input │ │ ├── animating-button.html │ │ ├── button.html │ │ ├── checkbox.html │ │ ├── drag-n-drop-manual.html │ │ ├── fileupload.html │ │ ├── folderupload.html │ │ ├── handle-locator.html │ │ ├── keyboard.html │ │ ├── mouse-helper.js │ │ ├── rotatedButton.html │ │ ├── scrollable.html │ │ ├── scrollable2.html │ │ ├── select.html │ │ ├── textarea.html │ │ └── touches.html │ ├── jscoverage │ │ ├── eval.html │ │ ├── involved.html │ │ ├── multiple.html │ │ ├── ranges.html │ │ ├── script1.js │ │ ├── script2.js │ │ ├── simple.html │ │ ├── sourceurl.html │ │ └── unused.html │ ├── load-event │ │ ├── load-event.html │ │ └── module.js │ ├── media-query-prefers-color-scheme.svg │ ├── mobile.html │ ├── modernizr.html │ ├── modernizr.js │ ├── modernizr │ │ ├── mobile-safari-14-1.json │ │ └── safari-14-1.json │ ├── movie.mp4 │ ├── movie.ogv │ ├── mui.html │ ├── networkidle-frame.html │ ├── networkidle.html │ ├── networkidle.js │ ├── offscreenbuttons.html │ ├── one-style.css │ ├── one-style.html │ ├── overflow-large.html │ ├── overflow.html │ ├── player.html │ ├── playground.html │ ├── popup │ │ ├── popup.html │ │ └── window-open.html │ ├── pptr.png │ ├── redirectloop1.html │ ├── redirectloop2.html │ ├── resetcss.html │ ├── rotate-pseudo.html │ ├── rotate-z-shadow-dom.html │ ├── rotate-z.html │ ├── screenshots │ │ ├── canvas.html │ │ ├── controls.html │ │ ├── translateZ.html │ │ └── webgl.html │ ├── sectionselectorengine.js │ ├── selenium-grid │ │ ├── broken-selenium-driver.js │ │ └── selenium-config-standalone.json │ ├── self-request.html │ ├── serviceworkers │ │ ├── empty │ │ │ ├── sw.html │ │ │ └── sw.js │ │ ├── fetch │ │ │ ├── style.css │ │ │ ├── sw.html │ │ │ └── sw.js │ │ └── fetchdummy │ │ │ ├── sw.html │ │ │ └── sw.js │ ├── shadow-dom-link.html │ ├── shadow.html │ ├── simple-extension │ │ ├── content-script.js │ │ ├── index.js │ │ └── manifest.json │ ├── simple.json │ ├── simplezip.json │ ├── tamperable.html │ ├── title.html │ ├── video.html │ ├── video_mp4.html │ ├── wasm │ │ ├── table2.html │ │ └── table2.wasm │ ├── web-animation.html │ ├── webfont │ │ ├── README.md │ │ ├── iconfont.svg │ │ ├── iconfont.woff2 │ │ └── webfont.html │ ├── window-stop.html │ ├── worker │ │ ├── import-me.js │ │ ├── worker-http-import.html │ │ ├── worker-http-import.js │ │ ├── worker.html │ │ └── worker.js │ └── wrappedlink.html ├── binding_test.go ├── browser_context_client_certificates_test.go ├── browser_context_storage_state_test.go ├── browser_context_test.go ├── browser_test.go ├── browser_type_test.go ├── cdp_session_test.go ├── console_message_test.go ├── dialog_test.go ├── download_test.go ├── element_handle_test.go ├── fetch_test.go ├── file_chooser_test.go ├── frame_locator_test.go ├── frame_test.go ├── har_test.go ├── helper_test.go ├── input_test.go ├── js_handle_test.go ├── locator_assertions_test.go ├── locator_get_by_test.go ├── locator_test.go ├── network_test.go ├── page_add_locator_handler_test.go ├── page_aria_snapshot_test.go ├── page_assertions_test.go ├── page_clock_test.go ├── page_request_gc_test.go ├── page_test.go ├── remote_server_test.go ├── route_test.go ├── route_web_socket_test.go ├── screenshot-snapshots │ ├── mask-should-work-chromium.png │ ├── mask-should-work-firefox.png │ ├── mask-should-work-webkit.png │ ├── mask-should-work-with-elementhandle-chromium.png │ ├── mask-should-work-with-elementhandle-firefox.png │ ├── mask-should-work-with-elementhandle-webkit.png │ ├── mask-should-work-with-locator-chromium.png │ ├── mask-should-work-with-locator-firefox.png │ ├── mask-should-work-with-locator-webkit.png │ ├── screenshot-element-bounding-box-chromium.png │ ├── screenshot-element-bounding-box-firefox.png │ └── screenshot-element-bounding-box-webkit.png ├── screenshot_test.go ├── selectors_get_by_test.go ├── selectors_test.go ├── selectors_text_test.go ├── tracing_test.go ├── unroute_behavior_test.go ├── utils_test.go ├── video_test.go ├── websocket_test.go └── worker_test.go ├── tracing.go ├── transport.go ├── type_helpers.go ├── video.go ├── waiter.go ├── waiter_test.go ├── web_error.go ├── websocket.go ├── websocket_route.go ├── worker.go └── writable_stream.go /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: mxschmitt 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/verify_type_generation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/.github/workflows/verify_type_generation.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/.gitmodules -------------------------------------------------------------------------------- /.golangci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/.golangci.yaml -------------------------------------------------------------------------------- /.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/404.html -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/Dockerfile.example -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/_config.yml -------------------------------------------------------------------------------- /apiresponse_assertions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/apiresponse_assertions.go -------------------------------------------------------------------------------- /artifact.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/artifact.go -------------------------------------------------------------------------------- /assertions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/assertions.go -------------------------------------------------------------------------------- /binding_call.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/binding_call.go -------------------------------------------------------------------------------- /browser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/browser.go -------------------------------------------------------------------------------- /browser_context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/browser_context.go -------------------------------------------------------------------------------- /browser_type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/browser_type.go -------------------------------------------------------------------------------- /cdp_session.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/cdp_session.go -------------------------------------------------------------------------------- /channel.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/channel.go -------------------------------------------------------------------------------- /channel_owner.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/channel_owner.go -------------------------------------------------------------------------------- /clock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/clock.go -------------------------------------------------------------------------------- /cmd/playwright/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/cmd/playwright/main.go -------------------------------------------------------------------------------- /connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/connection.go -------------------------------------------------------------------------------- /console_message.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/console_message.go -------------------------------------------------------------------------------- /dialog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/dialog.go -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | _site/ 2 | .jekyll-cache/ 3 | -------------------------------------------------------------------------------- /docs/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/docs/Gemfile -------------------------------------------------------------------------------- /docs/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/docs/Gemfile.lock -------------------------------------------------------------------------------- /download.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/download.go -------------------------------------------------------------------------------- /element_handle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/element_handle.go -------------------------------------------------------------------------------- /errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/errors.go -------------------------------------------------------------------------------- /event_emitter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/event_emitter.go -------------------------------------------------------------------------------- /event_emitter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/event_emitter_test.go -------------------------------------------------------------------------------- /examples/download/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/examples/download/main.go -------------------------------------------------------------------------------- /examples/end-to-end-testing/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/examples/end-to-end-testing/main.go -------------------------------------------------------------------------------- /examples/javascript/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/examples/javascript/main.go -------------------------------------------------------------------------------- /examples/mobile-and-geolocation/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/examples/mobile-and-geolocation/main.go -------------------------------------------------------------------------------- /examples/network-monitoring/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/examples/network-monitoring/main.go -------------------------------------------------------------------------------- /examples/parallel-scraping/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/examples/parallel-scraping/main.go -------------------------------------------------------------------------------- /examples/pdf/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/examples/pdf/main.go -------------------------------------------------------------------------------- /examples/scraping/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/examples/scraping/main.go -------------------------------------------------------------------------------- /examples/screenshot/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/examples/screenshot/main.go -------------------------------------------------------------------------------- /examples/use-local-chrome/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/examples/use-local-chrome/main.go -------------------------------------------------------------------------------- /examples/video/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/examples/video/main.go -------------------------------------------------------------------------------- /fetch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/fetch.go -------------------------------------------------------------------------------- /file_chooser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/file_chooser.go -------------------------------------------------------------------------------- /frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/frame.go -------------------------------------------------------------------------------- /frame_locator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/frame_locator.go -------------------------------------------------------------------------------- /generated-enums.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/generated-enums.go -------------------------------------------------------------------------------- /generated-interfaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/generated-interfaces.go -------------------------------------------------------------------------------- /generated-structs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/generated-structs.go -------------------------------------------------------------------------------- /glob.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/glob.go -------------------------------------------------------------------------------- /glob_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/glob_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/go.sum -------------------------------------------------------------------------------- /har_router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/har_router.go -------------------------------------------------------------------------------- /helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/helpers.go -------------------------------------------------------------------------------- /helpers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/helpers_test.go -------------------------------------------------------------------------------- /input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/input.go -------------------------------------------------------------------------------- /input_files_helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/input_files_helper.go -------------------------------------------------------------------------------- /internal/safe/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/internal/safe/map.go -------------------------------------------------------------------------------- /js_handle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/js_handle.go -------------------------------------------------------------------------------- /jsonPipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/jsonPipe.go -------------------------------------------------------------------------------- /local_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/local_utils.go -------------------------------------------------------------------------------- /locator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/locator.go -------------------------------------------------------------------------------- /locator_assertions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/locator_assertions.go -------------------------------------------------------------------------------- /locator_helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/locator_helpers.go -------------------------------------------------------------------------------- /network.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/network.go -------------------------------------------------------------------------------- /objectFactory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/objectFactory.go -------------------------------------------------------------------------------- /page.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/page.go -------------------------------------------------------------------------------- /page_assertions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/page_assertions.go -------------------------------------------------------------------------------- /patches/main.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/patches/main.patch -------------------------------------------------------------------------------- /playwright.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/playwright.go -------------------------------------------------------------------------------- /request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/request.go -------------------------------------------------------------------------------- /response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/response.go -------------------------------------------------------------------------------- /route.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/route.go -------------------------------------------------------------------------------- /run.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/run.go -------------------------------------------------------------------------------- /run_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/run_test.go -------------------------------------------------------------------------------- /run_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/run_unix.go -------------------------------------------------------------------------------- /run_win.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/run_win.go -------------------------------------------------------------------------------- /scripts/apply-patch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/scripts/apply-patch.sh -------------------------------------------------------------------------------- /scripts/generate-api.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/scripts/generate-api.sh -------------------------------------------------------------------------------- /scripts/install-browsers/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/scripts/install-browsers/main.go -------------------------------------------------------------------------------- /scripts/update-patch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/scripts/update-patch.sh -------------------------------------------------------------------------------- /scripts/update-readme-versions/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/scripts/update-readme-versions/main.go -------------------------------------------------------------------------------- /selectors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/selectors.go -------------------------------------------------------------------------------- /stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/stream.go -------------------------------------------------------------------------------- /tests/apiresponse_assertions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/apiresponse_assertions_test.go -------------------------------------------------------------------------------- /tests/assets/background-color.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/background-color.html -------------------------------------------------------------------------------- /tests/assets/beforeunload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/beforeunload.html -------------------------------------------------------------------------------- /tests/assets/button-overlay-oopif.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/button-overlay-oopif.html -------------------------------------------------------------------------------- /tests/assets/cached/one-style.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: pink; 3 | } 4 | -------------------------------------------------------------------------------- /tests/assets/cached/one-style.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/cached/one-style.html -------------------------------------------------------------------------------- /tests/assets/callback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/callback.js -------------------------------------------------------------------------------- /tests/assets/checkerboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/checkerboard.html -------------------------------------------------------------------------------- /tests/assets/chromium-linux.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/chromium-linux.zip -------------------------------------------------------------------------------- /tests/assets/client-certificates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/client-certificates/README.md -------------------------------------------------------------------------------- /tests/assets/client-certificates/client/localhost/localhost.csr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/client-certificates/client/localhost/localhost.csr -------------------------------------------------------------------------------- /tests/assets/client-certificates/client/localhost/localhost.ext: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/client-certificates/client/localhost/localhost.ext -------------------------------------------------------------------------------- /tests/assets/client-certificates/client/localhost/localhost.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/client-certificates/client/localhost/localhost.key -------------------------------------------------------------------------------- /tests/assets/client-certificates/client/localhost/localhost.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/client-certificates/client/localhost/localhost.pem -------------------------------------------------------------------------------- /tests/assets/client-certificates/client/self-signed/cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/client-certificates/client/self-signed/cert.pem -------------------------------------------------------------------------------- /tests/assets/client-certificates/client/self-signed/csr.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/client-certificates/client/self-signed/csr.pem -------------------------------------------------------------------------------- /tests/assets/client-certificates/client/self-signed/key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/client-certificates/client/self-signed/key.pem -------------------------------------------------------------------------------- /tests/assets/client-certificates/client/trusted/cert-legacy.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/client-certificates/client/trusted/cert-legacy.pfx -------------------------------------------------------------------------------- /tests/assets/client-certificates/client/trusted/cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/client-certificates/client/trusted/cert.pem -------------------------------------------------------------------------------- /tests/assets/client-certificates/client/trusted/cert.pfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/client-certificates/client/trusted/cert.pfx -------------------------------------------------------------------------------- /tests/assets/client-certificates/client/trusted/csr.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/client-certificates/client/trusted/csr.pem -------------------------------------------------------------------------------- /tests/assets/client-certificates/client/trusted/key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/client-certificates/client/trusted/key.pem -------------------------------------------------------------------------------- /tests/assets/client-certificates/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/client-certificates/generate.sh -------------------------------------------------------------------------------- /tests/assets/client-certificates/server/server_cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/client-certificates/server/server_cert.pem -------------------------------------------------------------------------------- /tests/assets/client-certificates/server/server_key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/client-certificates/server/server_key.pem -------------------------------------------------------------------------------- /tests/assets/consolelog.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/consolelog.html -------------------------------------------------------------------------------- /tests/assets/csp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/csp.html -------------------------------------------------------------------------------- /tests/assets/css-transition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/css-transition.html -------------------------------------------------------------------------------- /tests/assets/csscoverage/Dosis-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/csscoverage/Dosis-Regular.ttf -------------------------------------------------------------------------------- /tests/assets/csscoverage/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/csscoverage/OFL.txt -------------------------------------------------------------------------------- /tests/assets/csscoverage/involved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/csscoverage/involved.html -------------------------------------------------------------------------------- /tests/assets/csscoverage/media.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/csscoverage/media.html -------------------------------------------------------------------------------- /tests/assets/csscoverage/multiple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/csscoverage/multiple.html -------------------------------------------------------------------------------- /tests/assets/csscoverage/simple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/csscoverage/simple.html -------------------------------------------------------------------------------- /tests/assets/csscoverage/sourceurl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/csscoverage/sourceurl.html -------------------------------------------------------------------------------- /tests/assets/csscoverage/stylesheet1.css: -------------------------------------------------------------------------------- 1 | body { 2 | color: red; 3 | } 4 | -------------------------------------------------------------------------------- /tests/assets/csscoverage/stylesheet2.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/csscoverage/stylesheet2.css -------------------------------------------------------------------------------- /tests/assets/csscoverage/unused.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/csscoverage/unused.html -------------------------------------------------------------------------------- /tests/assets/deep-shadow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/deep-shadow.html -------------------------------------------------------------------------------- /tests/assets/detect-touch.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/detect-touch.html -------------------------------------------------------------------------------- /tests/assets/digits/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/digits/0.png -------------------------------------------------------------------------------- /tests/assets/digits/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/digits/1.png -------------------------------------------------------------------------------- /tests/assets/digits/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/digits/2.png -------------------------------------------------------------------------------- /tests/assets/digits/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/digits/3.png -------------------------------------------------------------------------------- /tests/assets/digits/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/digits/4.png -------------------------------------------------------------------------------- /tests/assets/digits/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/digits/5.png -------------------------------------------------------------------------------- /tests/assets/digits/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/digits/6.png -------------------------------------------------------------------------------- /tests/assets/digits/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/digits/7.png -------------------------------------------------------------------------------- /tests/assets/digits/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/digits/8.png -------------------------------------------------------------------------------- /tests/assets/digits/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/digits/9.png -------------------------------------------------------------------------------- /tests/assets/dom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/dom.html -------------------------------------------------------------------------------- /tests/assets/download-blob.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/download-blob.html -------------------------------------------------------------------------------- /tests/assets/drag-n-drop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/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/dynamic-oopif.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/dynamic-oopif.html -------------------------------------------------------------------------------- /tests/assets/empty-standard-mode.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/assets/empty.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/assets/empty.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/empty.pdf -------------------------------------------------------------------------------- /tests/assets/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/error.html -------------------------------------------------------------------------------- /tests/assets/es6/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/es6/.eslintrc -------------------------------------------------------------------------------- /tests/assets/es6/es6import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/es6/es6import.js -------------------------------------------------------------------------------- /tests/assets/es6/es6module.js: -------------------------------------------------------------------------------- 1 | export default 42; -------------------------------------------------------------------------------- /tests/assets/es6/es6pathimport.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/es6/es6pathimport.js -------------------------------------------------------------------------------- /tests/assets/example.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/example.mp3 -------------------------------------------------------------------------------- /tests/assets/file-to-upload-2.txt: -------------------------------------------------------------------------------- 1 | contents of the file -------------------------------------------------------------------------------- /tests/assets/file-to-upload.txt: -------------------------------------------------------------------------------- 1 | contents of the file -------------------------------------------------------------------------------- /tests/assets/formatted-number.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/formatted-number.html -------------------------------------------------------------------------------- /tests/assets/frames/child-redirect.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/frames/child-redirect.html -------------------------------------------------------------------------------- /tests/assets/frames/frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/frames/frame.html -------------------------------------------------------------------------------- /tests/assets/frames/frameset.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/frames/frameset.html -------------------------------------------------------------------------------- /tests/assets/frames/lazy-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/frames/lazy-frame.html -------------------------------------------------------------------------------- /tests/assets/frames/nested-frames.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/frames/nested-frames.html -------------------------------------------------------------------------------- /tests/assets/frames/one-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/frames/one-frame.html -------------------------------------------------------------------------------- /tests/assets/frames/redirect-my-parent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/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/playwright-community/playwright-go/HEAD/tests/assets/frames/two-frames.html -------------------------------------------------------------------------------- /tests/assets/geolocation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/geolocation.html -------------------------------------------------------------------------------- /tests/assets/global-var.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/global-var.html -------------------------------------------------------------------------------- /tests/assets/grid-iframe-in-shadow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/grid-iframe-in-shadow.html -------------------------------------------------------------------------------- /tests/assets/grid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/grid.html -------------------------------------------------------------------------------- /tests/assets/har-fulfill.har: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/har-fulfill.har -------------------------------------------------------------------------------- /tests/assets/har-redirect.har: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/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/playwright-community/playwright-go/HEAD/tests/assets/har-sha1.har -------------------------------------------------------------------------------- /tests/assets/har.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/har.html -------------------------------------------------------------------------------- /tests/assets/headings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/headings.html -------------------------------------------------------------------------------- /tests/assets/highdpi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/highdpi.html -------------------------------------------------------------------------------- /tests/assets/historyapi.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/historyapi.html -------------------------------------------------------------------------------- /tests/assets/injectedfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/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/playwright-community/playwright-go/HEAD/tests/assets/input/animating-button.html -------------------------------------------------------------------------------- /tests/assets/input/button.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/input/button.html -------------------------------------------------------------------------------- /tests/assets/input/checkbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/input/checkbox.html -------------------------------------------------------------------------------- /tests/assets/input/drag-n-drop-manual.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/input/drag-n-drop-manual.html -------------------------------------------------------------------------------- /tests/assets/input/fileupload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/input/fileupload.html -------------------------------------------------------------------------------- /tests/assets/input/folderupload.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/input/folderupload.html -------------------------------------------------------------------------------- /tests/assets/input/handle-locator.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/input/handle-locator.html -------------------------------------------------------------------------------- /tests/assets/input/keyboard.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/input/keyboard.html -------------------------------------------------------------------------------- /tests/assets/input/mouse-helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/input/mouse-helper.js -------------------------------------------------------------------------------- /tests/assets/input/rotatedButton.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/input/rotatedButton.html -------------------------------------------------------------------------------- /tests/assets/input/scrollable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/input/scrollable.html -------------------------------------------------------------------------------- /tests/assets/input/scrollable2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/input/scrollable2.html -------------------------------------------------------------------------------- /tests/assets/input/select.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/input/select.html -------------------------------------------------------------------------------- /tests/assets/input/textarea.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/input/textarea.html -------------------------------------------------------------------------------- /tests/assets/input/touches.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/input/touches.html -------------------------------------------------------------------------------- /tests/assets/jscoverage/eval.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/jscoverage/eval.html -------------------------------------------------------------------------------- /tests/assets/jscoverage/involved.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/jscoverage/involved.html -------------------------------------------------------------------------------- /tests/assets/jscoverage/multiple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/jscoverage/multiple.html -------------------------------------------------------------------------------- /tests/assets/jscoverage/ranges.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/jscoverage/ranges.html -------------------------------------------------------------------------------- /tests/assets/jscoverage/script1.js: -------------------------------------------------------------------------------- 1 | console.log(3); 2 | -------------------------------------------------------------------------------- /tests/assets/jscoverage/script2.js: -------------------------------------------------------------------------------- 1 | console.log(3); 2 | -------------------------------------------------------------------------------- /tests/assets/jscoverage/simple.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/jscoverage/simple.html -------------------------------------------------------------------------------- /tests/assets/jscoverage/sourceurl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/jscoverage/sourceurl.html -------------------------------------------------------------------------------- /tests/assets/jscoverage/unused.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/jscoverage/unused.html -------------------------------------------------------------------------------- /tests/assets/load-event/load-event.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/load-event/load-event.html -------------------------------------------------------------------------------- /tests/assets/load-event/module.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/load-event/module.js -------------------------------------------------------------------------------- /tests/assets/media-query-prefers-color-scheme.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/media-query-prefers-color-scheme.svg -------------------------------------------------------------------------------- /tests/assets/mobile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/mobile.html -------------------------------------------------------------------------------- /tests/assets/modernizr.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/modernizr.html -------------------------------------------------------------------------------- /tests/assets/modernizr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/modernizr.js -------------------------------------------------------------------------------- /tests/assets/modernizr/mobile-safari-14-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/modernizr/mobile-safari-14-1.json -------------------------------------------------------------------------------- /tests/assets/modernizr/safari-14-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/modernizr/safari-14-1.json -------------------------------------------------------------------------------- /tests/assets/movie.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/movie.mp4 -------------------------------------------------------------------------------- /tests/assets/movie.ogv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/movie.ogv -------------------------------------------------------------------------------- /tests/assets/mui.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/mui.html -------------------------------------------------------------------------------- /tests/assets/networkidle-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/networkidle-frame.html -------------------------------------------------------------------------------- /tests/assets/networkidle.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/networkidle.html -------------------------------------------------------------------------------- /tests/assets/networkidle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/networkidle.js -------------------------------------------------------------------------------- /tests/assets/offscreenbuttons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/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/playwright-community/playwright-go/HEAD/tests/assets/one-style.html -------------------------------------------------------------------------------- /tests/assets/overflow-large.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/overflow-large.html -------------------------------------------------------------------------------- /tests/assets/overflow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/overflow.html -------------------------------------------------------------------------------- /tests/assets/player.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/player.html -------------------------------------------------------------------------------- /tests/assets/playground.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/playground.html -------------------------------------------------------------------------------- /tests/assets/popup/popup.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/popup/popup.html -------------------------------------------------------------------------------- /tests/assets/popup/window-open.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/popup/window-open.html -------------------------------------------------------------------------------- /tests/assets/pptr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/pptr.png -------------------------------------------------------------------------------- /tests/assets/redirectloop1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/redirectloop1.html -------------------------------------------------------------------------------- /tests/assets/redirectloop2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/redirectloop2.html -------------------------------------------------------------------------------- /tests/assets/resetcss.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/resetcss.html -------------------------------------------------------------------------------- /tests/assets/rotate-pseudo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/rotate-pseudo.html -------------------------------------------------------------------------------- /tests/assets/rotate-z-shadow-dom.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/rotate-z-shadow-dom.html -------------------------------------------------------------------------------- /tests/assets/rotate-z.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/rotate-z.html -------------------------------------------------------------------------------- /tests/assets/screenshots/canvas.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/screenshots/canvas.html -------------------------------------------------------------------------------- /tests/assets/screenshots/controls.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/screenshots/controls.html -------------------------------------------------------------------------------- /tests/assets/screenshots/translateZ.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/screenshots/translateZ.html -------------------------------------------------------------------------------- /tests/assets/screenshots/webgl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/screenshots/webgl.html -------------------------------------------------------------------------------- /tests/assets/sectionselectorengine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/sectionselectorengine.js -------------------------------------------------------------------------------- /tests/assets/selenium-grid/broken-selenium-driver.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | process.exit(1); 4 | -------------------------------------------------------------------------------- /tests/assets/selenium-grid/selenium-config-standalone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/selenium-grid/selenium-config-standalone.json -------------------------------------------------------------------------------- /tests/assets/self-request.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/self-request.html -------------------------------------------------------------------------------- /tests/assets/serviceworkers/empty/sw.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/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/playwright-community/playwright-go/HEAD/tests/assets/serviceworkers/fetch/sw.html -------------------------------------------------------------------------------- /tests/assets/serviceworkers/fetch/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/serviceworkers/fetch/sw.js -------------------------------------------------------------------------------- /tests/assets/serviceworkers/fetchdummy/sw.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/serviceworkers/fetchdummy/sw.html -------------------------------------------------------------------------------- /tests/assets/serviceworkers/fetchdummy/sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/serviceworkers/fetchdummy/sw.js -------------------------------------------------------------------------------- /tests/assets/shadow-dom-link.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/shadow-dom-link.html -------------------------------------------------------------------------------- /tests/assets/shadow.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/shadow.html -------------------------------------------------------------------------------- /tests/assets/simple-extension/content-script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/simple-extension/content-script.js -------------------------------------------------------------------------------- /tests/assets/simple-extension/index.js: -------------------------------------------------------------------------------- 1 | // Mock script for background extension 2 | window.MAGIC = 42; 3 | -------------------------------------------------------------------------------- /tests/assets/simple-extension/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/simple-extension/manifest.json -------------------------------------------------------------------------------- /tests/assets/simple.json: -------------------------------------------------------------------------------- 1 | {"foo": "bar"} 2 | -------------------------------------------------------------------------------- /tests/assets/simplezip.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/simplezip.json -------------------------------------------------------------------------------- /tests/assets/tamperable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/tamperable.html -------------------------------------------------------------------------------- /tests/assets/title.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/title.html -------------------------------------------------------------------------------- /tests/assets/video.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/video.html -------------------------------------------------------------------------------- /tests/assets/video_mp4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/video_mp4.html -------------------------------------------------------------------------------- /tests/assets/wasm/table2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/wasm/table2.html -------------------------------------------------------------------------------- /tests/assets/wasm/table2.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/wasm/table2.wasm -------------------------------------------------------------------------------- /tests/assets/web-animation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/web-animation.html -------------------------------------------------------------------------------- /tests/assets/webfont/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/webfont/README.md -------------------------------------------------------------------------------- /tests/assets/webfont/iconfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/webfont/iconfont.svg -------------------------------------------------------------------------------- /tests/assets/webfont/iconfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/webfont/iconfont.woff2 -------------------------------------------------------------------------------- /tests/assets/webfont/webfont.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/webfont/webfont.html -------------------------------------------------------------------------------- /tests/assets/window-stop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/window-stop.html -------------------------------------------------------------------------------- /tests/assets/worker/import-me.js: -------------------------------------------------------------------------------- 1 | console.log("hello from import-me.js"); 2 | -------------------------------------------------------------------------------- /tests/assets/worker/worker-http-import.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/worker/worker-http-import.html -------------------------------------------------------------------------------- /tests/assets/worker/worker-http-import.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/worker/worker-http-import.js -------------------------------------------------------------------------------- /tests/assets/worker/worker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/worker/worker.html -------------------------------------------------------------------------------- /tests/assets/worker/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/worker/worker.js -------------------------------------------------------------------------------- /tests/assets/wrappedlink.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/assets/wrappedlink.html -------------------------------------------------------------------------------- /tests/binding_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/binding_test.go -------------------------------------------------------------------------------- /tests/browser_context_client_certificates_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/browser_context_client_certificates_test.go -------------------------------------------------------------------------------- /tests/browser_context_storage_state_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/browser_context_storage_state_test.go -------------------------------------------------------------------------------- /tests/browser_context_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/browser_context_test.go -------------------------------------------------------------------------------- /tests/browser_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/browser_test.go -------------------------------------------------------------------------------- /tests/browser_type_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/browser_type_test.go -------------------------------------------------------------------------------- /tests/cdp_session_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/cdp_session_test.go -------------------------------------------------------------------------------- /tests/console_message_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/console_message_test.go -------------------------------------------------------------------------------- /tests/dialog_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/dialog_test.go -------------------------------------------------------------------------------- /tests/download_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/download_test.go -------------------------------------------------------------------------------- /tests/element_handle_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/element_handle_test.go -------------------------------------------------------------------------------- /tests/fetch_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/fetch_test.go -------------------------------------------------------------------------------- /tests/file_chooser_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/file_chooser_test.go -------------------------------------------------------------------------------- /tests/frame_locator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/frame_locator_test.go -------------------------------------------------------------------------------- /tests/frame_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/frame_test.go -------------------------------------------------------------------------------- /tests/har_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/har_test.go -------------------------------------------------------------------------------- /tests/helper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/helper_test.go -------------------------------------------------------------------------------- /tests/input_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/input_test.go -------------------------------------------------------------------------------- /tests/js_handle_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/js_handle_test.go -------------------------------------------------------------------------------- /tests/locator_assertions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/locator_assertions_test.go -------------------------------------------------------------------------------- /tests/locator_get_by_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/locator_get_by_test.go -------------------------------------------------------------------------------- /tests/locator_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/locator_test.go -------------------------------------------------------------------------------- /tests/network_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/network_test.go -------------------------------------------------------------------------------- /tests/page_add_locator_handler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/page_add_locator_handler_test.go -------------------------------------------------------------------------------- /tests/page_aria_snapshot_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/page_aria_snapshot_test.go -------------------------------------------------------------------------------- /tests/page_assertions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/page_assertions_test.go -------------------------------------------------------------------------------- /tests/page_clock_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/page_clock_test.go -------------------------------------------------------------------------------- /tests/page_request_gc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/page_request_gc_test.go -------------------------------------------------------------------------------- /tests/page_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/page_test.go -------------------------------------------------------------------------------- /tests/remote_server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/remote_server_test.go -------------------------------------------------------------------------------- /tests/route_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/route_test.go -------------------------------------------------------------------------------- /tests/route_web_socket_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/route_web_socket_test.go -------------------------------------------------------------------------------- /tests/screenshot-snapshots/mask-should-work-chromium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/screenshot-snapshots/mask-should-work-chromium.png -------------------------------------------------------------------------------- /tests/screenshot-snapshots/mask-should-work-firefox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/screenshot-snapshots/mask-should-work-firefox.png -------------------------------------------------------------------------------- /tests/screenshot-snapshots/mask-should-work-webkit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/screenshot-snapshots/mask-should-work-webkit.png -------------------------------------------------------------------------------- /tests/screenshot-snapshots/mask-should-work-with-elementhandle-chromium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/screenshot-snapshots/mask-should-work-with-elementhandle-chromium.png -------------------------------------------------------------------------------- /tests/screenshot-snapshots/mask-should-work-with-elementhandle-firefox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/screenshot-snapshots/mask-should-work-with-elementhandle-firefox.png -------------------------------------------------------------------------------- /tests/screenshot-snapshots/mask-should-work-with-elementhandle-webkit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/screenshot-snapshots/mask-should-work-with-elementhandle-webkit.png -------------------------------------------------------------------------------- /tests/screenshot-snapshots/mask-should-work-with-locator-chromium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/screenshot-snapshots/mask-should-work-with-locator-chromium.png -------------------------------------------------------------------------------- /tests/screenshot-snapshots/mask-should-work-with-locator-firefox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/screenshot-snapshots/mask-should-work-with-locator-firefox.png -------------------------------------------------------------------------------- /tests/screenshot-snapshots/mask-should-work-with-locator-webkit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/screenshot-snapshots/mask-should-work-with-locator-webkit.png -------------------------------------------------------------------------------- /tests/screenshot-snapshots/screenshot-element-bounding-box-chromium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/screenshot-snapshots/screenshot-element-bounding-box-chromium.png -------------------------------------------------------------------------------- /tests/screenshot-snapshots/screenshot-element-bounding-box-firefox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/screenshot-snapshots/screenshot-element-bounding-box-firefox.png -------------------------------------------------------------------------------- /tests/screenshot-snapshots/screenshot-element-bounding-box-webkit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/screenshot-snapshots/screenshot-element-bounding-box-webkit.png -------------------------------------------------------------------------------- /tests/screenshot_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/screenshot_test.go -------------------------------------------------------------------------------- /tests/selectors_get_by_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/selectors_get_by_test.go -------------------------------------------------------------------------------- /tests/selectors_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/selectors_test.go -------------------------------------------------------------------------------- /tests/selectors_text_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/selectors_text_test.go -------------------------------------------------------------------------------- /tests/tracing_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/tracing_test.go -------------------------------------------------------------------------------- /tests/unroute_behavior_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/unroute_behavior_test.go -------------------------------------------------------------------------------- /tests/utils_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/utils_test.go -------------------------------------------------------------------------------- /tests/video_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/video_test.go -------------------------------------------------------------------------------- /tests/websocket_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/websocket_test.go -------------------------------------------------------------------------------- /tests/worker_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tests/worker_test.go -------------------------------------------------------------------------------- /tracing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/tracing.go -------------------------------------------------------------------------------- /transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/transport.go -------------------------------------------------------------------------------- /type_helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/type_helpers.go -------------------------------------------------------------------------------- /video.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/video.go -------------------------------------------------------------------------------- /waiter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/waiter.go -------------------------------------------------------------------------------- /waiter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/waiter_test.go -------------------------------------------------------------------------------- /web_error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/web_error.go -------------------------------------------------------------------------------- /websocket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/websocket.go -------------------------------------------------------------------------------- /websocket_route.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/websocket_route.go -------------------------------------------------------------------------------- /worker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/worker.go -------------------------------------------------------------------------------- /writable_stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/playwright-community/playwright-go/HEAD/writable_stream.go --------------------------------------------------------------------------------