playwright-browserstack 1.62.0__py3-none-win_amd64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- playwright/__init__.py +19 -0
- playwright/__main__.py +33 -0
- playwright/_impl/__init__.py +0 -0
- playwright/_impl/__pyinstaller/__init__.py +20 -0
- playwright/_impl/__pyinstaller/hook-playwright.async_api.py +17 -0
- playwright/_impl/__pyinstaller/hook-playwright.sync_api.py +17 -0
- playwright/_impl/_android.py +704 -0
- playwright/_impl/_api_structures.py +365 -0
- playwright/_impl/_artifact.py +87 -0
- playwright/_impl/_assertions.py +1124 -0
- playwright/_impl/_async_base.py +105 -0
- playwright/_impl/_browser.py +293 -0
- playwright/_impl/_browser_context.py +754 -0
- playwright/_impl/_browser_type.py +368 -0
- playwright/_impl/_cdp_session.py +46 -0
- playwright/_impl/_clock.py +104 -0
- playwright/_impl/_connection.py +764 -0
- playwright/_impl/_console_message.py +98 -0
- playwright/_impl/_credentials.py +57 -0
- playwright/_impl/_debugger.py +54 -0
- playwright/_impl/_dialog.py +63 -0
- playwright/_impl/_disposable.py +96 -0
- playwright/_impl/_download.py +64 -0
- playwright/_impl/_driver.py +41 -0
- playwright/_impl/_element_handle.py +480 -0
- playwright/_impl/_errors.py +64 -0
- playwright/_impl/_event_context_manager.py +33 -0
- playwright/_impl/_fetch.py +626 -0
- playwright/_impl/_file_chooser.py +57 -0
- playwright/_impl/_form_data.py +34 -0
- playwright/_impl/_frame.py +985 -0
- playwright/_impl/_glob.py +65 -0
- playwright/_impl/_greenlets.py +49 -0
- playwright/_impl/_har_router.py +122 -0
- playwright/_impl/_helper.py +601 -0
- playwright/_impl/_impl_to_api_mapping.py +158 -0
- playwright/_impl/_input.py +111 -0
- playwright/_impl/_js_handle.py +336 -0
- playwright/_impl/_json_pipe.py +97 -0
- playwright/_impl/_local_utils.py +95 -0
- playwright/_impl/_locator.py +1024 -0
- playwright/_impl/_map.py +31 -0
- playwright/_impl/_network.py +1017 -0
- playwright/_impl/_object_factory.py +116 -0
- playwright/_impl/_page.py +1637 -0
- playwright/_impl/_path_utils.py +27 -0
- playwright/_impl/_playwright.py +68 -0
- playwright/_impl/_screencast.py +177 -0
- playwright/_impl/_selectors.py +67 -0
- playwright/_impl/_set_input_files_helpers.py +158 -0
- playwright/_impl/_str_utils.py +76 -0
- playwright/_impl/_stream.py +46 -0
- playwright/_impl/_sync_base.py +151 -0
- playwright/_impl/_tracing.py +281 -0
- playwright/_impl/_transport.py +184 -0
- playwright/_impl/_video.py +56 -0
- playwright/_impl/_waiter.py +197 -0
- playwright/_impl/_web_error.py +48 -0
- playwright/_impl/_web_storage.py +58 -0
- playwright/_impl/_writable_stream.py +42 -0
- playwright/_repo_version.py +24 -0
- playwright/async_api/__init__.py +275 -0
- playwright/async_api/_android_generated.py +462 -0
- playwright/async_api/_context_manager.py +57 -0
- playwright/async_api/_generated.py +23875 -0
- playwright/driver/LICENSE +2946 -0
- playwright/driver/README.md +1 -0
- playwright/driver/node.exe +0 -0
- playwright/driver/package/LICENSE +202 -0
- playwright/driver/package/NOTICE +5 -0
- playwright/driver/package/README.md +3 -0
- playwright/driver/package/ThirdPartyNotices.txt +13 -0
- playwright/driver/package/bin/install_media_pack.ps1 +5 -0
- playwright/driver/package/bin/install_webkit_wsl.ps1 +33 -0
- playwright/driver/package/bin/reinstall_chrome_beta_linux.sh +42 -0
- playwright/driver/package/bin/reinstall_chrome_beta_mac.sh +13 -0
- playwright/driver/package/bin/reinstall_chrome_beta_win.ps1 +24 -0
- playwright/driver/package/bin/reinstall_chrome_stable_linux.sh +42 -0
- playwright/driver/package/bin/reinstall_chrome_stable_mac.sh +12 -0
- playwright/driver/package/bin/reinstall_chrome_stable_win.ps1 +24 -0
- playwright/driver/package/bin/reinstall_msedge_beta_linux.sh +48 -0
- playwright/driver/package/bin/reinstall_msedge_beta_mac.sh +11 -0
- playwright/driver/package/bin/reinstall_msedge_beta_win.ps1 +23 -0
- playwright/driver/package/bin/reinstall_msedge_dev_linux.sh +48 -0
- playwright/driver/package/bin/reinstall_msedge_dev_mac.sh +11 -0
- playwright/driver/package/bin/reinstall_msedge_dev_win.ps1 +23 -0
- playwright/driver/package/bin/reinstall_msedge_stable_linux.sh +48 -0
- playwright/driver/package/bin/reinstall_msedge_stable_mac.sh +11 -0
- playwright/driver/package/bin/reinstall_msedge_stable_win.ps1 +24 -0
- playwright/driver/package/browsers.json +75 -0
- playwright/driver/package/cli.js +21 -0
- playwright/driver/package/index.d.ts +17 -0
- playwright/driver/package/index.js +17 -0
- playwright/driver/package/index.mjs +28 -0
- playwright/driver/package/lib/bootstrap.js +88 -0
- playwright/driver/package/lib/coreBundle.js +74830 -0
- playwright/driver/package/lib/entry/cliDaemon.js +5 -0
- playwright/driver/package/lib/entry/dashboardApp.js +3 -0
- playwright/driver/package/lib/entry/mcp.js +10 -0
- playwright/driver/package/lib/entry/oopBrowserDownload.js +3 -0
- playwright/driver/package/lib/package.js +50 -0
- playwright/driver/package/lib/server/chromium/appIcon.png +0 -0
- playwright/driver/package/lib/server/electron/loader.js +118 -0
- playwright/driver/package/lib/serverRegistry.js +7347 -0
- playwright/driver/package/lib/serverRegistry.js.LICENSE +354 -0
- playwright/driver/package/lib/tools/cli-client/channelSessions.js +141 -0
- playwright/driver/package/lib/tools/cli-client/cli.js +6 -0
- playwright/driver/package/lib/tools/cli-client/help.json +708 -0
- playwright/driver/package/lib/tools/cli-client/minimist.js +128 -0
- playwright/driver/package/lib/tools/cli-client/output.js +343 -0
- playwright/driver/package/lib/tools/cli-client/program.js +404 -0
- playwright/driver/package/lib/tools/cli-client/registry.js +176 -0
- playwright/driver/package/lib/tools/cli-client/session.js +258 -0
- playwright/driver/package/lib/tools/dashboard/appIcon.png +0 -0
- playwright/driver/package/lib/tools/skills/playwright-cli/SKILL.md +420 -0
- playwright/driver/package/lib/tools/skills/playwright-cli/references/element-attributes.md +23 -0
- playwright/driver/package/lib/tools/skills/playwright-cli/references/playwright-tests.md +39 -0
- playwright/driver/package/lib/tools/skills/playwright-cli/references/request-mocking.md +87 -0
- playwright/driver/package/lib/tools/skills/playwright-cli/references/running-code.md +241 -0
- playwright/driver/package/lib/tools/skills/playwright-cli/references/session-management.md +225 -0
- playwright/driver/package/lib/tools/skills/playwright-cli/references/storage-state.md +275 -0
- playwright/driver/package/lib/tools/skills/playwright-cli/references/test-generation.md +433 -0
- playwright/driver/package/lib/tools/skills/playwright-cli/references/tracing.md +139 -0
- playwright/driver/package/lib/tools/skills/playwright-cli/references/video-recording.md +143 -0
- playwright/driver/package/lib/tools/skills/playwright-component-testing/SKILL.md +143 -0
- playwright/driver/package/lib/tools/skills/playwright-component-testing/references/gallery-spec.md +144 -0
- playwright/driver/package/lib/tools/skills/playwright-component-testing/references/migration.md +85 -0
- playwright/driver/package/lib/tools/skills/playwright-component-testing/references/react.md +67 -0
- playwright/driver/package/lib/tools/skills/playwright-component-testing/references/vue.md +75 -0
- playwright/driver/package/lib/tools/skills/playwright-trace/SKILL.md +171 -0
- playwright/driver/package/lib/tools/utils/extension.js +101 -0
- playwright/driver/package/lib/tools/utils/socketConnection.js +108 -0
- playwright/driver/package/lib/utilsBundle.js +90764 -0
- playwright/driver/package/lib/utilsBundle.js.LICENSE +2179 -0
- playwright/driver/package/lib/vite/dashboard/assets/codicon-DCmgc-ay.ttf +0 -0
- playwright/driver/package/lib/vite/dashboard/assets/firefox-1bWoP6pv.svg +1 -0
- playwright/driver/package/lib/vite/dashboard/assets/firefox-beta-k3eOH_eK.svg +1 -0
- playwright/driver/package/lib/vite/dashboard/assets/firefox-nightly-Cp5nfeDT.svg +1 -0
- playwright/driver/package/lib/vite/dashboard/assets/index-CyWAfh-p.js +11 -0
- playwright/driver/package/lib/vite/dashboard/assets/index-DhC616m4.css +1 -0
- playwright/driver/package/lib/vite/dashboard/assets/safari-na3_-uQk.svg +1 -0
- playwright/driver/package/lib/vite/dashboard/index.html +29 -0
- playwright/driver/package/lib/vite/dashboard/playwright-logo.svg +24 -0
- playwright/driver/package/lib/vite/htmlReport/index.html +16 -0
- playwright/driver/package/lib/vite/htmlReport/report.css +2 -0
- playwright/driver/package/lib/vite/htmlReport/report.js +32 -0
- playwright/driver/package/lib/vite/recorder/assets/codeMirrorModule--QdMvsKi.css +1 -0
- playwright/driver/package/lib/vite/recorder/assets/codeMirrorModule-CwYYHbcZ.js +32 -0
- playwright/driver/package/lib/vite/recorder/assets/codicon-DCmgc-ay.ttf +0 -0
- playwright/driver/package/lib/vite/recorder/assets/index-DYjdXIbE.js +129 -0
- playwright/driver/package/lib/vite/recorder/assets/index-l_lX622x.css +1 -0
- playwright/driver/package/lib/vite/recorder/index.html +29 -0
- playwright/driver/package/lib/vite/recorder/playwright-logo.svg +9 -0
- playwright/driver/package/lib/vite/traceViewer/assets/codeMirrorModule-By56iMx7.js +32 -0
- playwright/driver/package/lib/vite/traceViewer/assets/defaultSettingsView-B34OrIms.js +181 -0
- playwright/driver/package/lib/vite/traceViewer/assets/urlMatch-L3liM589.js +1 -0
- playwright/driver/package/lib/vite/traceViewer/assets/xtermModule-COQkjINf.js +7 -0
- playwright/driver/package/lib/vite/traceViewer/codeMirrorModule.-QdMvsKi.css +1 -0
- playwright/driver/package/lib/vite/traceViewer/codicon.DCmgc-ay.ttf +0 -0
- playwright/driver/package/lib/vite/traceViewer/defaultSettingsView.BLFoOugd.css +1 -0
- playwright/driver/package/lib/vite/traceViewer/index.B_TqY17P.css +1 -0
- playwright/driver/package/lib/vite/traceViewer/index.Dl36UVQT.js +1 -0
- playwright/driver/package/lib/vite/traceViewer/index.html +44 -0
- playwright/driver/package/lib/vite/traceViewer/manifest.webmanifest +16 -0
- playwright/driver/package/lib/vite/traceViewer/playwright-logo.svg +9 -0
- playwright/driver/package/lib/vite/traceViewer/snapshot.B_Jk1wbt.js +1 -0
- playwright/driver/package/lib/vite/traceViewer/snapshot.html +10 -0
- playwright/driver/package/lib/vite/traceViewer/sw.bundle.js +4 -0
- playwright/driver/package/lib/vite/traceViewer/uiMode.C7UW1sC9.css +1 -0
- playwright/driver/package/lib/vite/traceViewer/uiMode.D962mr9b.js +5 -0
- playwright/driver/package/lib/vite/traceViewer/uiMode.html +18 -0
- playwright/driver/package/lib/vite/traceViewer/xtermModule.kHJ-D0s7.css +1 -0
- playwright/driver/package/lib/webp_codec.LICENSE +173 -0
- playwright/driver/package/lib/webp_codec.wasm +0 -0
- playwright/driver/package/lib/xdg-open +1267 -0
- playwright/driver/package/package.json +34 -0
- playwright/driver/package/types/protocol.d.ts +24842 -0
- playwright/driver/package/types/structs.d.ts +47 -0
- playwright/driver/package/types/types.d.ts +26188 -0
- playwright/py.typed +0 -0
- playwright/sync_api/__init__.py +275 -0
- playwright/sync_api/_android_generated.py +494 -0
- playwright/sync_api/_context_manager.py +98 -0
- playwright/sync_api/_generated.py +24045 -0
- playwright_browserstack-1.62.0.dist-info/METADATA +82 -0
- playwright_browserstack-1.62.0.dist-info/RECORD +192 -0
- playwright_browserstack-1.62.0.dist-info/WHEEL +5 -0
- playwright_browserstack-1.62.0.dist-info/entry_points.txt +5 -0
- playwright_browserstack-1.62.0.dist-info/licenses/LICENSE +202 -0
- playwright_browserstack-1.62.0.dist-info/licenses/LICENSE.txt +51 -0
- playwright_browserstack-1.62.0.dist-info/licenses/NOTICE +18 -0
- playwright_browserstack-1.62.0.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: playwright-browserstack
|
|
3
|
+
Version: 1.62.0
|
|
4
|
+
Summary: BrowserStack fork of Playwright Python with Android device automation support. Derivative work of microsoft/playwright-python.
|
|
5
|
+
Author-email: BrowserStack <support@browserstack.com>
|
|
6
|
+
License-Expression: Apache-2.0
|
|
7
|
+
Project-URL: homepage, https://github.com/browserstack/playwright-python
|
|
8
|
+
Project-URL: Release notes, https://github.com/browserstack/playwright-python/releases
|
|
9
|
+
Project-URL: Upstream, https://github.com/microsoft/playwright-python
|
|
10
|
+
Classifier: Topic :: Software Development :: Testing
|
|
11
|
+
Classifier: Topic :: Internet :: WWW/HTTP :: Browsers
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
19
|
+
Classifier: Operating System :: OS Independent
|
|
20
|
+
Requires-Python: >=3.10
|
|
21
|
+
Description-Content-Type: text/markdown
|
|
22
|
+
License-File: LICENSE
|
|
23
|
+
License-File: LICENSE.txt
|
|
24
|
+
License-File: NOTICE
|
|
25
|
+
Requires-Dist: pyee<14,>=13
|
|
26
|
+
Requires-Dist: greenlet<4.0.0,>=3.1.1
|
|
27
|
+
Dynamic: license-file
|
|
28
|
+
|
|
29
|
+
# 🎭 [Playwright](https://playwright.dev) for Python [](https://pypi.python.org/pypi/playwright/) [](https://aka.ms/playwright/discord)
|
|
30
|
+
|
|
31
|
+
Playwright is a Python library to automate [Chromium](https://www.chromium.org/Home), [Firefox](https://www.mozilla.org/en-US/firefox/new/) and [WebKit](https://webkit.org/) browsers with a single API. Playwright delivers automation that is **ever-green**, **capable**, **reliable** and **fast**. [See how Playwright is better](https://playwright.dev/python).
|
|
32
|
+
|
|
33
|
+
| | Linux | macOS | Windows |
|
|
34
|
+
| :--- | :---: | :---: | :---: |
|
|
35
|
+
| Chromium <!-- GEN:chromium-version -->151.0.7922.34<!-- GEN:stop --> | ✅ | ✅ | ✅ |
|
|
36
|
+
| WebKit <!-- GEN:webkit-version -->26.5<!-- GEN:stop --> | ✅ | ✅ | ✅ |
|
|
37
|
+
| Firefox <!-- GEN:firefox-version -->153.0<!-- GEN:stop --> | ✅ | ✅ | ✅ |
|
|
38
|
+
|
|
39
|
+
## Documentation
|
|
40
|
+
|
|
41
|
+
[https://playwright.dev/python/docs/intro](https://playwright.dev/python/docs/intro)
|
|
42
|
+
|
|
43
|
+
## API Reference
|
|
44
|
+
|
|
45
|
+
[https://playwright.dev/python/docs/api/class-playwright](https://playwright.dev/python/docs/api/class-playwright)
|
|
46
|
+
|
|
47
|
+
## Example
|
|
48
|
+
|
|
49
|
+
```py
|
|
50
|
+
from playwright.sync_api import sync_playwright
|
|
51
|
+
|
|
52
|
+
with sync_playwright() as p:
|
|
53
|
+
for browser_type in [p.chromium, p.firefox, p.webkit]:
|
|
54
|
+
browser = browser_type.launch()
|
|
55
|
+
page = browser.new_page()
|
|
56
|
+
page.goto('http://playwright.dev')
|
|
57
|
+
page.screenshot(path=f'example-{browser_type.name}.png')
|
|
58
|
+
browser.close()
|
|
59
|
+
```
|
|
60
|
+
|
|
61
|
+
```py
|
|
62
|
+
import asyncio
|
|
63
|
+
from playwright.async_api import async_playwright
|
|
64
|
+
|
|
65
|
+
async def main():
|
|
66
|
+
async with async_playwright() as p:
|
|
67
|
+
for browser_type in [p.chromium, p.firefox, p.webkit]:
|
|
68
|
+
browser = await browser_type.launch()
|
|
69
|
+
page = await browser.new_page()
|
|
70
|
+
await page.goto('http://playwright.dev')
|
|
71
|
+
await page.screenshot(path=f'example-{browser_type.name}.png')
|
|
72
|
+
await browser.close()
|
|
73
|
+
|
|
74
|
+
asyncio.run(main())
|
|
75
|
+
```
|
|
76
|
+
|
|
77
|
+
## Other languages
|
|
78
|
+
|
|
79
|
+
More comfortable in another programming language? [Playwright](https://playwright.dev) is also available in
|
|
80
|
+
- [Node.js (JavaScript / TypeScript)](https://playwright.dev/docs/intro),
|
|
81
|
+
- [.NET](https://playwright.dev/dotnet/docs/intro),
|
|
82
|
+
- [Java](https://playwright.dev/java/docs/intro).
|
|
@@ -0,0 +1,192 @@
|
|
|
1
|
+
playwright/__init__.py,sha256=BsOs2t0T4oE_y5WtkdU-44hcK19HO-zMRaV52c7q1ws,805
|
|
2
|
+
playwright/__main__.py,sha256=-NZUiThJKet2OjTBTjzsMsrNL5L8swBZND4PC5tW3cc,1064
|
|
3
|
+
playwright/_repo_version.py,sha256=P3PjPNbgc7JZLHxM3aihNSFTBcDfXaNX_xfhYIsCVN0,530
|
|
4
|
+
playwright/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
5
|
+
playwright/_impl/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
6
|
+
playwright/_impl/_android.py,sha256=y3UCG7MhTlskKuB0Qphpku9ZOaNMruunffbWUXHHhQ0,25991
|
|
7
|
+
playwright/_impl/_api_structures.py,sha256=cRche8KLkzEeDe0iMpNbuz5xzTamms6V-qW18Bm2GG0,7314
|
|
8
|
+
playwright/_impl/_artifact.py,sha256=NZbbcRNmJIoZPGoPG-hUcDSYe3J0yUnSzL48bTGYrHE,2702
|
|
9
|
+
playwright/_impl/_assertions.py,sha256=yAY9S7iBIb5NczWbdotnN6Q5pCduzXzJktgBKgyFsH4,36149
|
|
10
|
+
playwright/_impl/_async_base.py,sha256=EdOsIX4cbfK7pNoV4qWK1OaEW1GrmD53AcNZLSK5Qfc,3242
|
|
11
|
+
playwright/_impl/_browser.py,sha256=XQhyRtapiUNiOo0LyEiyevsWz2-x6e0R-5X_0ClvIBQ,10332
|
|
12
|
+
playwright/_impl/_browser_context.py,sha256=kPrptg-LyjxbkOIMB1EZvEPNOlYPKW7uex7oR7Y8Dro,27462
|
|
13
|
+
playwright/_impl/_browser_type.py,sha256=4pjLyM2y9DQ9Il70ZX28emrtYFOzdSLO8x2bRzZp39c,14083
|
|
14
|
+
playwright/_impl/_cdp_session.py,sha256=v05nvVeQ4cWb-6_QYAlnwjx2LQbKbQQZ-JIbu3wy9Ok,1625
|
|
15
|
+
playwright/_impl/_clock.py,sha256=ScYexA7fp-3cJkxvRhBRVDH_83bzAydqPbN6OiPi_kA,3040
|
|
16
|
+
playwright/_impl/_connection.py,sha256=HjI93dvG_ixXOXYAWbbNXXzHsUVlR-yM5EAj5HdKnW4,26759
|
|
17
|
+
playwright/_impl/_console_message.py,sha256=0h1jn-G3wSm6OpkcIHbR7TWx2bmpFC-QijNBJF69gds,3123
|
|
18
|
+
playwright/_impl/_credentials.py,sha256=322SJKGcXPrwujCzHWp5F54mXvYc3urO4QcaXZzn5RQ,2037
|
|
19
|
+
playwright/_impl/_debugger.py,sha256=GVhKoeYaaJYAFnkiwA8ZlSKEVWfGvHB9iFWdJc5O9kg,1978
|
|
20
|
+
playwright/_impl/_dialog.py,sha256=Gui_nRK2lKTHN9buD_7zzO4Tnv7Ef_t-IvDuJT-hSKo,2080
|
|
21
|
+
playwright/_impl/_disposable.py,sha256=l5bPPZ_GdP4fZi1QQLUa_fY7r5N8JQHxSkgpEPrq6YI,2933
|
|
22
|
+
playwright/_impl/_download.py,sha256=Bk1oB9grXc2AlKLxuRDB0zY2O_E1IA7hlP7x7DunXgQ,1977
|
|
23
|
+
playwright/_impl/_driver.py,sha256=mhVGneSw4VdzFp0y3xKippQpiosD7mhlXFBFMqJ9Tqo,1399
|
|
24
|
+
playwright/_impl/_element_handle.py,sha256=xXYWGLHwjZwNbD4QT5e-8Mxy9yEUwq2Q7-C5woQ_KwA,15309
|
|
25
|
+
playwright/_impl/_errors.py,sha256=SUB71hZKtWP4KyvzeGOiZVVQcVRNyr7b9766i-G2GM0,1950
|
|
26
|
+
playwright/_impl/_event_context_manager.py,sha256=VeoPq1oXrLs_b3l2EM8gp378vHti6MGbrFOhOPOccSc,1044
|
|
27
|
+
playwright/_impl/_fetch.py,sha256=d3cWXAFTOixyGTj2ig-0SWp_x7KCd3rMfKdUlN0kFOQ,20951
|
|
28
|
+
playwright/_impl/_file_chooser.py,sha256=tR_VFihVgmCMhVGBL7SQq46iaVKLK6JVeu_w3sjDMqA,1859
|
|
29
|
+
playwright/_impl/_form_data.py,sha256=qfi4xrolCd4wuE6QYjOOMRFN5k3jW9IEsk86fkKaCgw,1205
|
|
30
|
+
playwright/_impl/_frame.py,sha256=GUv8i4meU2M-_h4fa58dC-nDNCg5TpBIEO3L-uPHAYA,31545
|
|
31
|
+
playwright/_impl/_glob.py,sha256=r5J8HMGjPhIJQiTKlhWJZM4setn0tN46xg4W4Lr5-Ic,2269
|
|
32
|
+
playwright/_impl/_greenlets.py,sha256=J0VsDs_BgaBKahJF4PclSRKeOvC2EeYGB8tdKfT-JjQ,1410
|
|
33
|
+
playwright/_impl/_har_router.py,sha256=2XD2EYzVNGHURDLvZ5ZSHdkCE00qFzKaD47fmZSOfn4,4492
|
|
34
|
+
playwright/_impl/_helper.py,sha256=tqRI3dXw-6sEhykyzbXYizXPoDFED8OjcrKaoTKKftk,19505
|
|
35
|
+
playwright/_impl/_impl_to_api_mapping.py,sha256=D756Wrtga75RmwvpU6Q0ERY71AL3SMmc9bPyifE1WpE,5431
|
|
36
|
+
playwright/_impl/_input.py,sha256=AEYlZNGaW5xGrm5f6BvfDJVX194WIC3t8gsHUYOcJHU,3753
|
|
37
|
+
playwright/_impl/_js_handle.py,sha256=LbRVuXrwfb8AfhFO4_VGE57gmrL3odaxUpPN-2F5LXk,10159
|
|
38
|
+
playwright/_impl/_json_pipe.py,sha256=WrCZXYyWd6I_s2LZC7991fXCa9IyWf_-Gf__f8sDbvQ,3769
|
|
39
|
+
playwright/_impl/_local_utils.py,sha256=aEFnqgd6qp9AS7iSy8Snkq4OIgqn1XpNrxaMDrvoMcc,3388
|
|
40
|
+
playwright/_impl/_locator.py,sha256=_6xHGOGjOinR2tcjAW-OjWl-VY0eFiFIHWl-uAU1djY,31914
|
|
41
|
+
playwright/_impl/_map.py,sha256=YGCGtT7cKWBaX_CyIUffxkDjjGUInfeQBjrtnLib-qc,1045
|
|
42
|
+
playwright/_impl/_network.py,sha256=U809LDPvJNd9znjG49G32pMXdmQ3gEglHDyg98W0uEI,34761
|
|
43
|
+
playwright/_impl/_object_factory.py,sha256=ouVEc1NTuIBg8lIpdV7Q0P5g9kUrqndz6UlaVY7G-TQ,4796
|
|
44
|
+
playwright/_impl/_page.py,sha256=_u2ihTFEbrUzsoLjIRA8DGCYzs5ZJU31axAmDsZG8Aw,55215
|
|
45
|
+
playwright/_impl/_path_utils.py,sha256=LAw06MFOBNNQBE5ezKTYBLTF-RkalMRQ9Y5qP52LzRw,958
|
|
46
|
+
playwright/_impl/_playwright.py,sha256=HlwMtLVgUwI3yKtHg9RWsz7FLSXH4mm-dBbb-o8SSqg,2591
|
|
47
|
+
playwright/_impl/_screencast.py,sha256=luOsMCXaQgQyVFKE8RHXxWV7UNlkP-VskPEhKmRNODk,5929
|
|
48
|
+
playwright/_impl/_selectors.py,sha256=tXtMxs2_V07lExP42Zeu4UY6yRJkOgBR9R1fbiY_BbY,2636
|
|
49
|
+
playwright/_impl/_set_input_files_helpers.py,sha256=oc6OWkEDcZ5qnPVpqRkuX0jf35EZnPVy0Cp3FdDUceA,5605
|
|
50
|
+
playwright/_impl/_str_utils.py,sha256=D_G3KubQ3-_JKTn8pMwMLct-_k_Y5SDHLGMKa9lLD-M,2403
|
|
51
|
+
playwright/_impl/_stream.py,sha256=igFkg-TWL_WmS0RUpuZ-xWELOFyxbF6EmBm9MBSanfI,1673
|
|
52
|
+
playwright/_impl/_sync_base.py,sha256=-ZJKgg9-dN3XFRRZgUI2PzSEw2QXiTXu--gPnbiZiZc,4661
|
|
53
|
+
playwright/_impl/_tracing.py,sha256=VgMlSJJUgOBhRl9zmiwmJSrXGq4As9VGdNGHgK9I67U,9951
|
|
54
|
+
playwright/_impl/_transport.py,sha256=7ayDqUx2wPfNp4tYvq7TBDL9Q_YRu2VIDlLhYNpUQls,6656
|
|
55
|
+
playwright/_impl/_video.py,sha256=Yyl90W46FDyl6pPaPSO8uFkSPm57q6d5qDjW5MzR82s,2060
|
|
56
|
+
playwright/_impl/_waiter.py,sha256=o2ZgcM-wTc5zBu78apqu-SU-PAYIe-z7kx8WgkzOICM,6493
|
|
57
|
+
playwright/_impl/_web_error.py,sha256=Vd-CGb5Bks-j_T2ajTMFYaVHPaSL0FBamlFffCwQNPo,1420
|
|
58
|
+
playwright/_impl/_web_storage.py,sha256=I6wmgiY3TECS46EHnNEQQgvjB5uo0bCMZIVR7FX29vA,2039
|
|
59
|
+
playwright/_impl/_writable_stream.py,sha256=Jf6ppPdyUwD-eNCWxZhDr5ejoTF1NZ_GGGK999eQcL8,1472
|
|
60
|
+
playwright/_impl/__pyinstaller/__init__.py,sha256=WowM_rLYTtQoev3sJP_Oxg0e2Ce5Kv372CsjUf-uHBU,691
|
|
61
|
+
playwright/_impl/__pyinstaller/hook-playwright.async_api.py,sha256=1KjEVVSzulXoEC8D9Xa6tupKv7cM3GAJVHHVBONKEBQ,695
|
|
62
|
+
playwright/_impl/__pyinstaller/hook-playwright.sync_api.py,sha256=1KjEVVSzulXoEC8D9Xa6tupKv7cM3GAJVHHVBONKEBQ,695
|
|
63
|
+
playwright/async_api/__init__.py,sha256=xwqUvTvl_wYYXiuSY79HfNevDA64qfMB2Csfwjfc-NI,8121
|
|
64
|
+
playwright/async_api/_android_generated.py,sha256=CDIipqJQ26ABwRWkIt8qNe7klCBWBMvb0KhRyljff2U,14969
|
|
65
|
+
playwright/async_api/_context_manager.py,sha256=TWWR-Qa9mhmoORyAVVnqinX6RX43oxxrrGUld_Q6APo,2041
|
|
66
|
+
playwright/async_api/_generated.py,sha256=7yOkadcFTly9S3IoXsTklzHNLvOYU1lF0ZKkF86ixcI,964012
|
|
67
|
+
playwright/driver/LICENSE,sha256=2cTu2pUdbQj0qhMWthqvz2fm2l95sY-O3rVvpqvcA4w,160552
|
|
68
|
+
playwright/driver/README.md,sha256=ZhexDNUfnmhW0z_ZEugHpARqsBJOLXgquieNufMQ3cU,28
|
|
69
|
+
playwright/driver/node.exe,sha256=rFGQPEwRGBXVIoCx_cyNoGfLs34v4adlCXuFwykshYI,92540232
|
|
70
|
+
playwright/driver/package/LICENSE,sha256=RYc9AKDdJDWW3rSqI7JJOz0fBnGSG_JTjqQx1zgCIOs,11601
|
|
71
|
+
playwright/driver/package/NOTICE,sha256=bWAhkRh7NbmwHSz_oByEacLI2d6KlvG_ho4PJk9RyB0,254
|
|
72
|
+
playwright/driver/package/README.md,sha256=0W_3-OOPofyVT2la1VHNwRjZyb3V89gyA5AfTDF9fX4,120
|
|
73
|
+
playwright/driver/package/ThirdPartyNotices.txt,sha256=pUnTKbrYgG_iefDsrg_AJw3sfnwtyOwQ-Q45T3wysUQ,676
|
|
74
|
+
playwright/driver/package/browsers.json,sha256=8wbu1SlZmx6vL4qF253isj4aP-NsK2ZDS3yUNPtiepk,1780
|
|
75
|
+
playwright/driver/package/cli.js,sha256=8cQHWu8RbHZgkiUNfzezJJp87mRl2VMgf8OMj2FFvs0,839
|
|
76
|
+
playwright/driver/package/index.d.ts,sha256=eo7BCwg063GD5L_Nkpg4rHdYOCjjQyEbtzZ20eR_bwE,634
|
|
77
|
+
playwright/driver/package/index.js,sha256=pY-yzsQpPn3Pc8WKF5iYpPOYZmZFGhnaTnMfo69jJls,697
|
|
78
|
+
playwright/driver/package/index.mjs,sha256=PTbiEy08i2I5fSPwu0F3M2qu5QMgOuKiyQ--tb8zF90,1063
|
|
79
|
+
playwright/driver/package/package.json,sha256=RVbrvyGjHF6Nq7ScmR7CkcXwD_ytixjNpF5AcLikc70,876
|
|
80
|
+
playwright/driver/package/bin/install_media_pack.ps1,sha256=vCDwSbrfAh46U720FWYDyqXvSCyamiUfknYF5nakQXE,174
|
|
81
|
+
playwright/driver/package/bin/install_webkit_wsl.ps1,sha256=vGG-2jeoCO7yfTnOaEuqeS9tF3N6JaQysahNO1kauBU,1464
|
|
82
|
+
playwright/driver/package/bin/reinstall_chrome_beta_linux.sh,sha256=3Iwiud3nZYPOzihXV1uICUKZYV8xNqPFmBSXEMRd7jo,1217
|
|
83
|
+
playwright/driver/package/bin/reinstall_chrome_beta_mac.sh,sha256=qS6utOvPVjOk6cmBSB4UyAdk_IG2_LwFZTmOUP8xlDM,563
|
|
84
|
+
playwright/driver/package/bin/reinstall_chrome_beta_win.ps1,sha256=ttnkR0L-r7mNXtxW-iAEKUmXPPMNFBocW0-zhAlpZ8U,957
|
|
85
|
+
playwright/driver/package/bin/reinstall_chrome_stable_linux.sh,sha256=3HKrNWekzkO9g1PU7PQfHZwD6HAWk2fNPtkEOqv2fdE,1212
|
|
86
|
+
playwright/driver/package/bin/reinstall_chrome_stable_mac.sh,sha256=u0OpbBkqbMgVJK3gJkaG__eAnAGaiffbCphJY1h5w74,519
|
|
87
|
+
playwright/driver/package/bin/reinstall_chrome_stable_win.ps1,sha256=PZbE4vTruz-tRM87pY2c-Qrxyfswc-OyfUWnTPAFUVs,923
|
|
88
|
+
playwright/driver/package/bin/reinstall_msedge_beta_linux.sh,sha256=ELJvNdvCAAuU7fEXLYA6KcWHOk641SOvvGh5l7ZCdn4,1494
|
|
89
|
+
playwright/driver/package/bin/reinstall_msedge_beta_mac.sh,sha256=ADbXOLyQ1oYQDYHzKLoAA78Hhj9VALeSyNo5HRSXUPo,377
|
|
90
|
+
playwright/driver/package/bin/reinstall_msedge_beta_win.ps1,sha256=sXPDeKWfDMOAM87nAt4fRPCSdsmyJw0aZQ6-Zu4xJDM,874
|
|
91
|
+
playwright/driver/package/bin/reinstall_msedge_dev_linux.sh,sha256=AOSUfnpPgznG2wnIeXbYCFg8B_kXnkqnaU2IYUuC_pU,1489
|
|
92
|
+
playwright/driver/package/bin/reinstall_msedge_dev_mac.sh,sha256=b4meOzEfdCwkyjf_njIpjoKQUU_8FL9YjMUVVqKdpMA,372
|
|
93
|
+
playwright/driver/package/bin/reinstall_msedge_dev_win.ps1,sha256=Rvf5jIHLCr5ofX9KWv6puJejjSpt1vZmL72Ef3oivVE,869
|
|
94
|
+
playwright/driver/package/bin/reinstall_msedge_stable_linux.sh,sha256=7AoxpfCcVl4QhHOhhQiVpEWKsAxxOsHeOqIAGRLkZo8,1507
|
|
95
|
+
playwright/driver/package/bin/reinstall_msedge_stable_mac.sh,sha256=OvHok1J_8iV6otvDslmgU7kvRcPq2xPjjrpG6HkCZV0,371
|
|
96
|
+
playwright/driver/package/bin/reinstall_msedge_stable_win.ps1,sha256=QLtfy_zru-LOQ8bnNufF3u_FvgO26caRRCPAbsH1kb4,856
|
|
97
|
+
playwright/driver/package/lib/bootstrap.js,sha256=Rjf02_75z8AbrrX10stj-gkBUiyWkV6iInKQVY0nEj4,3481
|
|
98
|
+
playwright/driver/package/lib/coreBundle.js,sha256=MljRzzNMavyV8iqpwpJDbLl2s5HgQ38TWcg7hPDLnWY,3425217
|
|
99
|
+
playwright/driver/package/lib/package.js,sha256=n5OOHUSg3SMbFmDKYvfa6WSFm3nL3DcLhULF03XKPAU,2112
|
|
100
|
+
playwright/driver/package/lib/serverRegistry.js,sha256=6dudTqqMNpD3AOowR697C24LFpN6lpWJZ4xR25InKuk,247102
|
|
101
|
+
playwright/driver/package/lib/serverRegistry.js.LICENSE,sha256=XPVA_lWiupvPDrduc5tFT6qFgeLxoPd3YC7whVU0MC4,18617
|
|
102
|
+
playwright/driver/package/lib/utilsBundle.js,sha256=WA9XG_Bj4iVrUbOUagNbxFL8DiKAjVVHsZi66jmSOjI,3239355
|
|
103
|
+
playwright/driver/package/lib/utilsBundle.js.LICENSE,sha256=V5RTOMukh443NkZzNSgBf749sVA-wrQx_TDSo5DHDDM,122225
|
|
104
|
+
playwright/driver/package/lib/webp_codec.LICENSE,sha256=mVx-41rOt2ZoKbelAcqJwIZOErSTwRdLFVd0qx4D2DE,8841
|
|
105
|
+
playwright/driver/package/lib/webp_codec.wasm,sha256=FkzZWDo-TQgfdn07Qf8KcwRD3HU1_MXK_4NWFGM4S3k,565369
|
|
106
|
+
playwright/driver/package/lib/xdg-open,sha256=fXWdVPDUzhvus07mLFh5hbUEI3To3iN7DcuM1HqmmM8,32416
|
|
107
|
+
playwright/driver/package/lib/entry/cliDaemon.js,sha256=Bi8lb7Kae_kXk6AUucPx-c8txrEuQKii67qIpjCuFqA,197
|
|
108
|
+
playwright/driver/package/lib/entry/dashboardApp.js,sha256=IJlixuru8RYp8ibWoqsz7HokgHVCQrbhlZCp5utx0SY,108
|
|
109
|
+
playwright/driver/package/lib/entry/mcp.js,sha256=zIfcACDLQcrrvwT1DkK8eDWwM6bYDpw_Cj0LPb3zQcc,442
|
|
110
|
+
playwright/driver/package/lib/entry/oopBrowserDownload.js,sha256=h1Z829Z90vULsjLUfTeEcB7OfIHjnAKHu30bRmtozwY,120
|
|
111
|
+
playwright/driver/package/lib/server/chromium/appIcon.png,sha256=a6mU8Fxc8Y4i2ba--YmPvexq1NTXf1GH0GCctC1y0B4,16565
|
|
112
|
+
playwright/driver/package/lib/server/electron/loader.js,sha256=j08sIJM-e-8rvtmhtFUnitFGGqkZsDhvNgruWyWAFJ0,5100
|
|
113
|
+
playwright/driver/package/lib/tools/cli-client/channelSessions.js,sha256=a5xhPoc0D0itcYKt3XSVqP8_vlX-sbvQzgT1nxVS4SY,7087
|
|
114
|
+
playwright/driver/package/lib/tools/cli-client/cli.js,sha256=396Onf3jDEs5FOsluhxahSTsZGUdhmFx11zXtBqCcYA,153
|
|
115
|
+
playwright/driver/package/lib/tools/cli-client/help.json,sha256=1j8cfgBrG9--ZW5r6itNyp4bbBf4yAb9rKZW_vcdI00,38111
|
|
116
|
+
playwright/driver/package/lib/tools/cli-client/minimist.js,sha256=HSAGJzc6Nn4Al_Gr6qpNZ83iwz8uXvyly1UiLHZnrcM,4106
|
|
117
|
+
playwright/driver/package/lib/tools/cli-client/output.js,sha256=LqzpFFR6SHsqodw0r3h_6SFo8Lez3eJPKxJ-gXzJsrQ,11703
|
|
118
|
+
playwright/driver/package/lib/tools/cli-client/program.js,sha256=Sj7Ob3WnB-avccHd6GUAgOeBlCFZTyUbk5fi5F6Jy7g,16059
|
|
119
|
+
playwright/driver/package/lib/tools/cli-client/registry.js,sha256=wR0njgVUKAi6N72wMgGOzPnceDd_gCW9dPqQauAJyjA,6662
|
|
120
|
+
playwright/driver/package/lib/tools/cli-client/session.js,sha256=cW6H_HclESmt-MZjdMzMZ4j3agK0szaSx-Y6AaZZy1w,9519
|
|
121
|
+
playwright/driver/package/lib/tools/dashboard/appIcon.png,sha256=OAN7zxjH-blQ2i4aLYgA04-ydjfM2ik9ODaKNwS2fxg,18945
|
|
122
|
+
playwright/driver/package/lib/tools/skills/playwright-cli/SKILL.md,sha256=KcC2aaUk1CtRk019uRRMHAelZtBUmub7bM2BDlo89hs,12587
|
|
123
|
+
playwright/driver/package/lib/tools/skills/playwright-cli/references/element-attributes.md,sha256=vxmqRnHgpQoP76nHkPORJOgDBg7v45UEK3I8Kfy3-qI,665
|
|
124
|
+
playwright/driver/package/lib/tools/skills/playwright-cli/references/playwright-tests.md,sha256=xbBxn-8s_f9QvXRAUbL5r8EZd120tI6bKILBzziGeXw,1690
|
|
125
|
+
playwright/driver/package/lib/tools/skills/playwright-cli/references/request-mocking.md,sha256=VOgByWY_wrbWjOsFjLHDYHJMJJn0Ksx4UqaOg-W183w,2182
|
|
126
|
+
playwright/driver/package/lib/tools/skills/playwright-cli/references/running-code.md,sha256=2VxTmlmQtx0C2L3x2UFN8WGR62z_lbAGOCBRi3oT3LI,5642
|
|
127
|
+
playwright/driver/package/lib/tools/skills/playwright-cli/references/session-management.md,sha256=zT4mG4djv5UvHjcbh2y3jQVDea_shUgvklBjPht-bEQ,5671
|
|
128
|
+
playwright/driver/package/lib/tools/skills/playwright-cli/references/storage-state.md,sha256=msR_muShrtzSB3-Kyasbpr7hliy4P_Ua3NNvttg7XsY,5198
|
|
129
|
+
playwright/driver/package/lib/tools/skills/playwright-cli/references/test-generation.md,sha256=EvVM-nGNnlWbrZGBIKTKTxHJMxZ3E9G5xfmYcu3a90k,16114
|
|
130
|
+
playwright/driver/package/lib/tools/skills/playwright-cli/references/tracing.md,sha256=eS4Kx3BeVqxI34TA9UACIc6GEHiXxnFZCmSk6mqCUI4,3440
|
|
131
|
+
playwright/driver/package/lib/tools/skills/playwright-cli/references/video-recording.md,sha256=hVWrVADfDZDmYxiqzAqKRBj7-HLnRjgk1V1cQWFavYM,5387
|
|
132
|
+
playwright/driver/package/lib/tools/skills/playwright-component-testing/SKILL.md,sha256=d7xvjR3lesj4mWroYMHPxEbxj0jnjMZDtDOJ5al9XGY,10027
|
|
133
|
+
playwright/driver/package/lib/tools/skills/playwright-component-testing/references/gallery-spec.md,sha256=DKJd3mES6zefVuthhYW2TcLf0Twvf5Vqx-q712pokSs,6199
|
|
134
|
+
playwright/driver/package/lib/tools/skills/playwright-component-testing/references/migration.md,sha256=Cv2i6TMjWtXFOMkU51wkacFgzTvnZQvU7Ia--e-ujWM,4758
|
|
135
|
+
playwright/driver/package/lib/tools/skills/playwright-component-testing/references/react.md,sha256=KpZhw7_40SBk1QqnHE4P4SC89unyQ_JQahrZCw7fL5A,2921
|
|
136
|
+
playwright/driver/package/lib/tools/skills/playwright-component-testing/references/vue.md,sha256=WgEzSlUh1nKPfQ6HdR77ByPWp-P3FfmU_flriIU5ZsE,3180
|
|
137
|
+
playwright/driver/package/lib/tools/skills/playwright-trace/SKILL.md,sha256=34VQa_qKRFyWHvoawkTMpzNme3F3EbzJnB-TmUwp1dw,4712
|
|
138
|
+
playwright/driver/package/lib/tools/utils/extension.js,sha256=7RpWy5prRkOmod6mBMVBpOOkvo2Jce3P5Tx9yczu_pg,4260
|
|
139
|
+
playwright/driver/package/lib/tools/utils/socketConnection.js,sha256=lzwr6nCh8URfRnP5np-jUeUKLsn9k9c4GyxBu03nZN0,3317
|
|
140
|
+
playwright/driver/package/lib/vite/dashboard/index.html,sha256=PBJ5Gbk9mipiHsWqW-hWVoDtxulh5i0CiRRUnSK8shg,1078
|
|
141
|
+
playwright/driver/package/lib/vite/dashboard/playwright-logo.svg,sha256=URUkocFFgZMDoY-3GHCkMHw-dA-elyL3aGorQrCZW2w,5645
|
|
142
|
+
playwright/driver/package/lib/vite/dashboard/assets/codicon-DCmgc-ay.ttf,sha256=Dx1SGZNOlug7jbFi1gtNjAm13h59OAMcuv5KPA8oick,80340
|
|
143
|
+
playwright/driver/package/lib/vite/dashboard/assets/firefox-1bWoP6pv.svg,sha256=PzdC0eeMDbbC01MSUPcMMGde5TEN4y-om--vc4xU79A,7488
|
|
144
|
+
playwright/driver/package/lib/vite/dashboard/assets/firefox-beta-k3eOH_eK.svg,sha256=fqtf_cJZA7ozpyAvf_-hmZ8RnHvkWjnp5wPBGJBPkXo,9280
|
|
145
|
+
playwright/driver/package/lib/vite/dashboard/assets/firefox-nightly-Cp5nfeDT.svg,sha256=8xHAdLD6mZ_Na3NEEwH7VO6HpI_zvwXzGGR5KBEEdto,9143
|
|
146
|
+
playwright/driver/package/lib/vite/dashboard/assets/index-CyWAfh-p.js,sha256=M6vHWW5J0kHls5cUEHPnO7L7fuyYgLseDi5tD2c6FQ4,324278
|
|
147
|
+
playwright/driver/package/lib/vite/dashboard/assets/index-DhC616m4.css,sha256=tK2vPAmjo6TRfQJoJVET0Lus0gRc-rR-1pp44Lm9vXg,131922
|
|
148
|
+
playwright/driver/package/lib/vite/dashboard/assets/safari-na3_-uQk.svg,sha256=gP1yyl64VF8ZgSd7MfT5KVHUadTv69B45AhrZ2_lF9w,5254
|
|
149
|
+
playwright/driver/package/lib/vite/htmlReport/index.html,sha256=znwJgCCg65zhDt1BYkXqbaUN_qqxjf0KIXaXnSJkO-Y,464
|
|
150
|
+
playwright/driver/package/lib/vite/htmlReport/report.css,sha256=r6XI8gQJjHnrCT6TVNgkiKLMqncbRUU81NHpoHV3nLg,99364
|
|
151
|
+
playwright/driver/package/lib/vite/htmlReport/report.js,sha256=8JQXRLLvNbker7PWCZ9dSss0LduzAA_yk7bjq_gNKaw,415216
|
|
152
|
+
playwright/driver/package/lib/vite/recorder/index.html,sha256=2Kl0VAODwBwDHdfzF9QnZnXsxWJ0eYbm1wI0dREn6JE,1078
|
|
153
|
+
playwright/driver/package/lib/vite/recorder/playwright-logo.svg,sha256=awpDZ73qsQmVvCOSePBMaMEOSK2-wV55ngGQmg1m3Lk,5033
|
|
154
|
+
playwright/driver/package/lib/vite/recorder/assets/codeMirrorModule--QdMvsKi.css,sha256=IL6CSoKDK2LMBGQtMdo8YJ_SgLI_HNyx5iLE9AqsWrg,6251
|
|
155
|
+
playwright/driver/package/lib/vite/recorder/assets/codeMirrorModule-CwYYHbcZ.js,sha256=tnOs90ehZnu9kLltneWD1pkFsL14oZayp5eaVz9Rcf0,307374
|
|
156
|
+
playwright/driver/package/lib/vite/recorder/assets/codicon-DCmgc-ay.ttf,sha256=Dx1SGZNOlug7jbFi1gtNjAm13h59OAMcuv5KPA8oick,80340
|
|
157
|
+
playwright/driver/package/lib/vite/recorder/assets/index-DYjdXIbE.js,sha256=88AoiEC-21c5ZJ9_6TijD1dGnUbWyh5W7ohaCGC5jfk,358249
|
|
158
|
+
playwright/driver/package/lib/vite/recorder/assets/index-l_lX622x.css,sha256=Ae7L75VDecuZvzZQKEn_blA4h72KExpdAt1djCO2EG8,85451
|
|
159
|
+
playwright/driver/package/lib/vite/traceViewer/codeMirrorModule.-QdMvsKi.css,sha256=IL6CSoKDK2LMBGQtMdo8YJ_SgLI_HNyx5iLE9AqsWrg,6251
|
|
160
|
+
playwright/driver/package/lib/vite/traceViewer/codicon.DCmgc-ay.ttf,sha256=Dx1SGZNOlug7jbFi1gtNjAm13h59OAMcuv5KPA8oick,80340
|
|
161
|
+
playwright/driver/package/lib/vite/traceViewer/defaultSettingsView.BLFoOugd.css,sha256=ciQbMRKrYJyg4GGV6F4Cyzc3mSF81fJKB9YdknPErT4,105310
|
|
162
|
+
playwright/driver/package/lib/vite/traceViewer/index.B_TqY17P.css,sha256=CKIS_KyuGGb0TwZWVK_MTH0DQJxox0szFcW9oXoMoAM,2055
|
|
163
|
+
playwright/driver/package/lib/vite/traceViewer/index.Dl36UVQT.js,sha256=tmfhD69WcmHjVDxGOXrH2mrotGHu4Ud92nNzsYpcaa0,6566
|
|
164
|
+
playwright/driver/package/lib/vite/traceViewer/index.html,sha256=7AWq97PVokOBAmJbOazUE0iqWS8wKsDoMPecJINYD3U,2363
|
|
165
|
+
playwright/driver/package/lib/vite/traceViewer/manifest.webmanifest,sha256=2FQFAGA6MqOf5-WgN13A-euv0REY4GqEbbfvxggiOrk,429
|
|
166
|
+
playwright/driver/package/lib/vite/traceViewer/playwright-logo.svg,sha256=awpDZ73qsQmVvCOSePBMaMEOSK2-wV55ngGQmg1m3Lk,5033
|
|
167
|
+
playwright/driver/package/lib/vite/traceViewer/snapshot.B_Jk1wbt.js,sha256=1NCeBUUdEH2OGmu9BBQF_lGLn9KDOJDk66qtg7f1VPU,650
|
|
168
|
+
playwright/driver/package/lib/vite/traceViewer/snapshot.html,sha256=xgjIiZyVxadNP1VuIBRsPYUrnfha4oVMZZp8x3PJtyc,389
|
|
169
|
+
playwright/driver/package/lib/vite/traceViewer/sw.bundle.js,sha256=z9ZmKnGRRRbv6Qpabz2iu-XbbkQpObhoykZfdl0zcj8,93459
|
|
170
|
+
playwright/driver/package/lib/vite/traceViewer/uiMode.C7UW1sC9.css,sha256=wZTnA61Gl-McXpuNHk918gGh--mUBiD6YxnfpVQ3B7Q,54341
|
|
171
|
+
playwright/driver/package/lib/vite/traceViewer/uiMode.D962mr9b.js,sha256=LeKX1eE3-01oS1MokA1fOH6Jb5ffIYgNPf8B-WdZa7s,37932
|
|
172
|
+
playwright/driver/package/lib/vite/traceViewer/uiMode.html,sha256=hf7ZhyRDcsJKMaz0EUDAsZ4A8hxbKElbjMTBcPo8Boo,727
|
|
173
|
+
playwright/driver/package/lib/vite/traceViewer/xtermModule.kHJ-D0s7.css,sha256=DdYAVhNOaimUqGtZoel4m58E6Skk2hCa74ySOsrwjOU,2853
|
|
174
|
+
playwright/driver/package/lib/vite/traceViewer/assets/codeMirrorModule-By56iMx7.js,sha256=CnHc-RRXcxsYia0ZPsPuQ-R-mrg2OvezuMOS2q59y0Y,307393
|
|
175
|
+
playwright/driver/package/lib/vite/traceViewer/assets/defaultSettingsView-B34OrIms.js,sha256=QWLEfhTqxyJHYDTrl0CDUSIWY_HMT8azXzGVuY3NZTo,643042
|
|
176
|
+
playwright/driver/package/lib/vite/traceViewer/assets/urlMatch-L3liM589.js,sha256=G8YyHjLRHDGkUrx1iW8LNE5hUzIYVNnxZYgYvn-EXBY,2510
|
|
177
|
+
playwright/driver/package/lib/vite/traceViewer/assets/xtermModule-COQkjINf.js,sha256=rM5V4AncIwrbOuVbIZQ-q6E2qOtg6SP2brUxJVN66yc,288730
|
|
178
|
+
playwright/driver/package/types/protocol.d.ts,sha256=uDbu2Yt5-rtU8d9zJSoM4Xi430qJeUJRreL6DF5Stng,823302
|
|
179
|
+
playwright/driver/package/types/structs.d.ts,sha256=nEEcZc6K9VjSCmBot1ExVQXCbl4EgBLOowqZmyG1T9U,2319
|
|
180
|
+
playwright/driver/package/types/types.d.ts,sha256=bGiCUPK3BhzsOherh5dnETe2U_jE6Bpt8xkMsRKnV5o,1110840
|
|
181
|
+
playwright/sync_api/__init__.py,sha256=_hdWnYWIwrn7YPVnls1lj0LLyv7JBInBBa-TvTgN7JI,8115
|
|
182
|
+
playwright/sync_api/_android_generated.py,sha256=dS0B-X77jHj4aJfXm429jyKwjFFuRwFsPhlIrYnD5GU,15643
|
|
183
|
+
playwright/sync_api/_context_manager.py,sha256=1AYEJT4RUh1kAptxVOFk-B4z4dESadprQSAV1rtLKRs,3643
|
|
184
|
+
playwright/sync_api/_generated.py,sha256=FtHSgSbWTHGYd277HjZ3XT8HHwTx8LyWgX8ujutZ8o8,964930
|
|
185
|
+
playwright_browserstack-1.62.0.dist-info/METADATA,sha256=JyjEA1bhYOnyf3B3nQcjyVe04y9cTlIKE4K968PU628,3573
|
|
186
|
+
playwright_browserstack-1.62.0.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
|
|
187
|
+
playwright_browserstack-1.62.0.dist-info/entry_points.txt,sha256=G-lS5tnQw21PHcXKbZFGy81lczindXIDUejIefH8VoY,130
|
|
188
|
+
playwright_browserstack-1.62.0.dist-info/top_level.txt,sha256=oYiz5-Zb4y23ANZot2i3lMsK-BAiwXqTlQ4hytLJYuE,11
|
|
189
|
+
playwright_browserstack-1.62.0.dist-info/RECORD,,
|
|
190
|
+
playwright_browserstack-1.62.0.dist-info/licenses/LICENSE,sha256=f6sUYbQZcP83bxyTA6Y3B2v6rrcc0S3TocRKr1mhork,11399
|
|
191
|
+
playwright_browserstack-1.62.0.dist-info/licenses/LICENSE.txt,sha256=060klz1PQ4atGXY7_sBZOSliy8qEwkJhPDWHrrXD7wQ,4336
|
|
192
|
+
playwright_browserstack-1.62.0.dist-info/licenses/NOTICE,sha256=-_b49Q5c3bEO9Xa8soM-WGnbc0ylyymEo7MVHfXG3ho,771
|
|
@@ -0,0 +1,202 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
+
|
|
180
|
+
To apply the Apache License to your work, attach the following
|
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
182
|
+
replaced with your own identifying information. (Don't include
|
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
+
comment syntax for the file format. We also recommend that a
|
|
185
|
+
file or class name and description of purpose be included on the
|
|
186
|
+
same "printed page" as the copyright notice for easier
|
|
187
|
+
identification within third-party archives.
|
|
188
|
+
|
|
189
|
+
Portions Copyright (c) Microsoft Corporation.
|
|
190
|
+
Portions Copyright 2017 Google Inc.
|
|
191
|
+
|
|
192
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
193
|
+
you may not use this file except in compliance with the License.
|
|
194
|
+
You may obtain a copy of the License at
|
|
195
|
+
|
|
196
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
197
|
+
|
|
198
|
+
Unless required by applicable law or agreed to in writing, software
|
|
199
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
200
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
201
|
+
See the License for the specific language governing permissions and
|
|
202
|
+
limitations under the License.
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
BrowserStack Software License Agreement
|
|
2
|
+
The “Licensed Software” under this BrowserStack Software License Agreement (“Agreement”) shall be used by
|
|
3
|
+
you only if You agree to the following terms and conditions. Downloading the Licensed Software and indicating
|
|
4
|
+
your consent to the terms of this license constitutes a binding Agreement between BrowserStack and You. If
|
|
5
|
+
you do not agree with all of the terms of this Agreement, you must not use the Licensed Software and you must
|
|
6
|
+
delete all of copies of the Licensed Software from your computer, device and/or systems. These terms also apply
|
|
7
|
+
to any updates or upgrades to the Licensed Software.
|
|
8
|
+
1. License: This Licensed Software shall remain the property of BrowserStack at all times.. The Licensed
|
|
9
|
+
Software is licensed, not sold. This Agreement only gives you some rights to use the Licensed Software.
|
|
10
|
+
You may install and use any number of copies of the Licensed Software to develop and test your
|
|
11
|
+
applications and distribution of the Licensed Software is limited to within your affiliates, employees and
|
|
12
|
+
independent contractors who are not competitors of BrowserStack. .
|
|
13
|
+
2. Restrictions: You will not (and will not permit any third party) to: (a) rent, lease, provide access to or
|
|
14
|
+
sublicense the Licensed Software to a third party; (b) use the Licensed Software to provide, or incorporate
|
|
15
|
+
the Licensed Software into, any product or service provided to a third party; (c) copy or modify the
|
|
16
|
+
Licensed Software or any Documentation, or create any derivative work from any of the foregoing; (d)
|
|
17
|
+
remove or obscure any proprietary or other notices contained in the Licensed Software; or (e) You may
|
|
18
|
+
not reverse engineer, decompile, disassemble, modify, translate, or attempt to discover the source code of
|
|
19
|
+
the Licensed Software; (f) You may not work around any technical limitation in the Licensed Software;
|
|
20
|
+
(g) distribute, resell, or provide the Licensed Software for use, copying or modification to any competitors
|
|
21
|
+
of BrowserStack; or (h) You may use the Licensed Software along with the BrowserStack Services on the
|
|
22
|
+
BrowserStack platform only.
|
|
23
|
+
3. Usage Data: You agree and acknowledge through this Agreement that BrowserStack will collect data such
|
|
24
|
+
as, but not limited to, use logs and error messages while using the Licensed Software.
|
|
25
|
+
4. Term and Termination: This Agreement shall be for the term agreed to in the Terms or Service or Master
|
|
26
|
+
SAAS Subscription Agreement or any other Agreement entered into between the You and BrowserStack
|
|
27
|
+
for sue of BrowserStack Services and testing platform. BrowserStack can terminate this Agreement for
|
|
28
|
+
convenience by providing seven (7) days’ notice to You or may terminate upon immediate effect if You
|
|
29
|
+
commit a material breach of this Agreement.
|
|
30
|
+
5. Confidentiality: All features and codes of the Licensed Software shall remain confidential. You
|
|
31
|
+
understand that any violation or breach of this term of the Agreement may cause irreparable damages to
|
|
32
|
+
BrowserStack. Thus, nothing in this Agreement shall limit Your liability with regard to violation of this
|
|
33
|
+
Clause.
|
|
34
|
+
6. DISCLAIMER OF WARRANTY. THE LICENSED SOFTWARE IS LICENSED “AS-IS.” YOU BEAR
|
|
35
|
+
THE RISK OF USING IT. BROWSERSTACK GIVES NO EXPRESS WARRANTIES, GUARANTEES
|
|
36
|
+
OR CONDITIONS. TO THE EXTENT PERMITTED UNDER YOUR LOCAL LAWS,
|
|
37
|
+
BROWSERSTACK EXCLUDES THE IMPLIED WARRANTIES OF MERCHANTABILITY,
|
|
38
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
|
|
39
|
+
7. LIMITATION ON AND EXCLUSION OF REMEDIES AND DAMAGES. YOU CAN RECOVER
|
|
40
|
+
FROM BROWSERSTACK AND ITS SUPPLIERS ONLY DIRECT DAMAGES UP TO U.S. $1. YOU
|
|
41
|
+
CANNOT RECOVER ANY OTHER DAMAGES, INCLUDING CONSEQUENTIAL, LOST PROFITS,
|
|
42
|
+
SPECIAL, INDIRECT OR INCIDENTAL DAMAGES.
|
|
43
|
+
8. Indemnity: You are required to indemnify Browserstack for breach of any obligations and terms set forth
|
|
44
|
+
under this Agreement.
|
|
45
|
+
9. Export Restrictions. You must comply with all domestic and international export laws and regulations that
|
|
46
|
+
apply to the Licensed Software, which include restrictions on destinations, end users, and end use.
|
|
47
|
+
10. ENTIRE AGREEMENT. This Agreement, and the terms for supplements, updates, Internet-based
|
|
48
|
+
services and support services that you use, are the entire Agreement for the Licensed Software and
|
|
49
|
+
support services.
|
|
50
|
+
11. APPLICABLE LAW. The laws and courts of State of California applies to interpretation of and claims
|
|
51
|
+
for breach of this Agreement.
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
Playwright Python
|
|
2
|
+
(Modified by BrowserStack)
|
|
3
|
+
|
|
4
|
+
========================================================================
|
|
5
|
+
|
|
6
|
+
This product is a derivative work of the Playwright Python project.
|
|
7
|
+
The original software is Copyright (c) Microsoft Corporation.
|
|
8
|
+
The original source can be found at: https://github.com/microsoft/playwright-python
|
|
9
|
+
|
|
10
|
+
The original software is licensed under the Apache License, Version 2.0 (the "License"). A copy of the license is included in this distribution.
|
|
11
|
+
|
|
12
|
+
Modifications to the original software are copyright BrowserStack.
|
|
13
|
+
|
|
14
|
+
BrowserStack has made the following modifications:
|
|
15
|
+
|
|
16
|
+
Added support for Android device automation.
|
|
17
|
+
|
|
18
|
+
Aligned the Python implementation for Android support with the existing functionality in the Node.js version of Playwright.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
playwright
|