@xbrowser/cli 0.15.1 → 1.0.0
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.
- package/dist/{browser-R7B255ML.js → browser-53KUFEEM.js} +5 -1
- package/dist/{browser-I2HJZ7IP.js → browser-DSVV4GHS.js} +2 -2
- package/dist/{browser-GWBH6OJK.js → browser-GURRY444.js} +3 -1
- package/dist/cdp-driver-MNPR3HZH.js +2537 -0
- package/dist/cdp-driver-SSXUGXP6.js +47 -0
- package/dist/{chunk-2ONMTDLK.js → chunk-2BQZIT3S.js} +2535 -50
- package/dist/{chunk-KDYXFLAC.js → chunk-2MFXKN32.js} +2 -2
- package/dist/chunk-42RPMJ76.js +2530 -0
- package/dist/{chunk-F3ZWFCJJ.js → chunk-E4O5ZU3H.js} +2535 -50
- package/dist/{chunk-ATFTAKMN.js → chunk-IDVD44ED.js} +20 -0
- package/dist/chunk-T4J4C2NZ.js +250 -0
- package/dist/{chunk-RS6YYWTK.js → chunk-YKOHDEFV.js} +73 -38
- package/dist/cli.js +1176 -281
- package/dist/{convert-4DUWZIKH.js → convert-EGFYNICZ.js} +2 -0
- package/dist/{daemon-client-GX2UYIW4.js → daemon-client-3VM7VU7O.js} +22 -0
- package/dist/{daemon-client-3IJD6X4B.js → daemon-client-YAVQ343A.js} +7 -1
- package/dist/daemon-main.js +1004 -161
- package/dist/{extract-EGRXZSSK.js → extract-L2IW3IUB.js} +2 -0
- package/dist/{filter-OLAE26HN.js → filter-HC4RA7JY.js} +2 -0
- package/dist/index.d.ts +581 -41
- package/dist/index.js +1220 -321
- package/dist/launcher-KA7J32K5.js +19 -0
- package/dist/{network-store-YAF5OIBH.js → network-store-66A2RATI.js} +1 -0
- package/dist/{session-recorder-XET3DNML.js → session-recorder-MA75PKTQ.js} +1 -1
- package/package.json +3 -4
- package/dist/daemon-client-XWSSQBEA.js +0 -58
- package/dist/network-store-2S5HATEV.js +0 -194
- package/dist/parse-action-dsl-DRSPBALP.js +0 -72
- package/dist/screenshot-MB6R7RSS.js +0 -26
- package/dist/session-recorder-ILSSV2UC.js +0 -6
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import {
|
|
2
|
+
CDPConnection,
|
|
3
|
+
CDPProtocolError,
|
|
4
|
+
XBBrowserImpl,
|
|
5
|
+
XBCDPSessionImpl,
|
|
6
|
+
XBContextImpl,
|
|
7
|
+
XBElementHandleImpl,
|
|
8
|
+
XBKeyboardImpl,
|
|
9
|
+
XBLocatorImpl,
|
|
10
|
+
XBMouseImpl,
|
|
11
|
+
XBPageImpl,
|
|
12
|
+
checkActionable,
|
|
13
|
+
launch,
|
|
14
|
+
scrollIntoView,
|
|
15
|
+
waitForActionable,
|
|
16
|
+
waitForNetworkIdle
|
|
17
|
+
} from "./chunk-42RPMJ76.js";
|
|
18
|
+
import {
|
|
19
|
+
connectToCDP,
|
|
20
|
+
findChrome,
|
|
21
|
+
getCDPTargets,
|
|
22
|
+
killChrome,
|
|
23
|
+
launchChrome
|
|
24
|
+
} from "./chunk-T4J4C2NZ.js";
|
|
25
|
+
import "./chunk-3RG5ZIWI.js";
|
|
26
|
+
export {
|
|
27
|
+
CDPConnection,
|
|
28
|
+
CDPProtocolError,
|
|
29
|
+
XBBrowserImpl,
|
|
30
|
+
XBCDPSessionImpl,
|
|
31
|
+
XBContextImpl,
|
|
32
|
+
XBElementHandleImpl,
|
|
33
|
+
XBKeyboardImpl,
|
|
34
|
+
XBLocatorImpl,
|
|
35
|
+
XBMouseImpl,
|
|
36
|
+
XBPageImpl,
|
|
37
|
+
checkActionable,
|
|
38
|
+
connectToCDP,
|
|
39
|
+
findChrome,
|
|
40
|
+
getCDPTargets,
|
|
41
|
+
killChrome,
|
|
42
|
+
launch,
|
|
43
|
+
launchChrome,
|
|
44
|
+
scrollIntoView,
|
|
45
|
+
waitForActionable,
|
|
46
|
+
waitForNetworkIdle
|
|
47
|
+
};
|