@haibun/web-playwright 1.43.0 → 1.44.1
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/build/BrowserFactory.d.ts +15 -27
- package/build/BrowserFactory.d.ts.map +1 -1
- package/build/BrowserFactory.js +71 -50
- package/build/BrowserFactory.js.map +1 -1
- package/build/PlaywrightEvents.d.ts +3 -3
- package/build/PlaywrightEvents.d.ts.map +1 -1
- package/build/PlaywrightEvents.js +17 -13
- package/build/PlaywrightEvents.js.map +1 -1
- package/build/monitor/XXlogToMonitor.d.ts +8 -0
- package/build/monitor/XXlogToMonitor.d.ts.map +1 -0
- package/build/monitor/XXlogToMonitor.js +151 -0
- package/build/monitor/XXlogToMonitor.js.map +1 -0
- package/build/monitor/controls.d.ts +3 -0
- package/build/monitor/controls.d.ts.map +1 -0
- package/build/monitor/controls.js +318 -0
- package/build/monitor/controls.js.map +1 -0
- package/build/monitor/disclosureJson.d.ts +3 -0
- package/build/monitor/disclosureJson.d.ts.map +1 -0
- package/build/monitor/disclosureJson.js +121 -0
- package/build/monitor/disclosureJson.js.map +1 -0
- package/build/monitor/mermaidDiagram.d.ts +22 -0
- package/build/monitor/mermaidDiagram.d.ts.map +1 -0
- package/build/monitor/mermaidDiagram.js +199 -0
- package/build/monitor/mermaidDiagram.js.map +1 -0
- package/build/monitor/messages.d.ts +18 -0
- package/build/monitor/messages.d.ts.map +1 -0
- package/build/monitor/messages.js +303 -0
- package/build/monitor/messages.js.map +1 -0
- package/build/monitor/monitor.d.ts +16 -0
- package/build/monitor/monitor.d.ts.map +1 -0
- package/build/monitor/monitor.js +61 -0
- package/build/monitor/monitor.js.map +1 -0
- package/build/monitor/monitorHandler.d.ts +12 -0
- package/build/monitor/monitorHandler.d.ts.map +1 -0
- package/build/monitor/monitorHandler.js +89 -0
- package/build/monitor/monitorHandler.js.map +1 -0
- package/build/rest-playwright.d.ts +60 -2
- package/build/rest-playwright.d.ts.map +1 -1
- package/build/rest-playwright.js +170 -51
- package/build/rest-playwright.js.map +1 -1
- package/build/web-playwright.d.ts +142 -54
- package/build/web-playwright.d.ts.map +1 -1
- package/build/web-playwright.js +327 -110
- package/build/web-playwright.js.map +1 -1
- package/package.json +5 -4
- package/web/monitor.html +2925 -0
|
@@ -1,126 +1,141 @@
|
|
|
1
|
-
import { Page } from 'playwright';
|
|
2
|
-
import { IHasOptions, TNamed,
|
|
3
|
-
import { BrowserFactory,
|
|
1
|
+
import { Page, Download } from 'playwright';
|
|
2
|
+
import { IHasOptions, TNamed, AStepper, TWorld, TFeatureStep, TAnyFixme, IStepperCycles } from '@haibun/core/build/lib/defs.js';
|
|
3
|
+
import { BrowserFactory, TTaggedBrowserFactoryOptions } from './BrowserFactory.js';
|
|
4
4
|
import { AStorage } from '@haibun/domain-storage/build/AStorage.js';
|
|
5
|
-
import {
|
|
5
|
+
import { EExecutionMessageType, TMessageContext } from '@haibun/core/build/lib/interfaces/logger.js';
|
|
6
|
+
import { TCapturedResponse } from './rest-playwright.js';
|
|
7
|
+
export declare enum EMonitoringTypes {
|
|
8
|
+
MONITOR_ALL = "all",
|
|
9
|
+
MONITOR_EACH = "each"
|
|
10
|
+
}
|
|
11
|
+
type TRequestOptions = {
|
|
12
|
+
headers?: Record<string, string>;
|
|
13
|
+
postData?: string | URLSearchParams | FormData | Blob | ArrayBuffer | ArrayBufferView;
|
|
14
|
+
userAgent?: string;
|
|
15
|
+
};
|
|
6
16
|
declare class WebPlaywright extends AStepper implements IHasOptions {
|
|
17
|
+
cycles: IStepperCycles;
|
|
7
18
|
static STORAGE: string;
|
|
8
19
|
static PERSISTENT_DIRECTORY: string;
|
|
9
20
|
requireDomains: string[];
|
|
10
21
|
options: {
|
|
11
|
-
[
|
|
12
|
-
desc: string;
|
|
13
|
-
parse: (input: string) => {
|
|
14
|
-
error: string;
|
|
15
|
-
result?: undefined;
|
|
16
|
-
} | {
|
|
17
|
-
result: boolean;
|
|
18
|
-
error?: undefined;
|
|
19
|
-
};
|
|
20
|
-
dependsOn?: undefined;
|
|
21
|
-
} | {
|
|
22
|
+
[WebPlaywright.PERSISTENT_DIRECTORY]: {
|
|
22
23
|
desc: string;
|
|
23
24
|
parse: (input: string) => {
|
|
24
|
-
|
|
25
|
+
parseError: string;
|
|
25
26
|
result?: undefined;
|
|
26
27
|
} | {
|
|
27
28
|
result: string;
|
|
28
|
-
|
|
29
|
+
parseError?: undefined;
|
|
29
30
|
};
|
|
30
|
-
|
|
31
|
-
|
|
31
|
+
};
|
|
32
|
+
[WebPlaywright.STORAGE]: {
|
|
32
33
|
desc: string;
|
|
33
34
|
parse: (input: string) => {
|
|
34
|
-
|
|
35
|
+
parseError: string;
|
|
35
36
|
result?: undefined;
|
|
36
37
|
} | {
|
|
37
|
-
result:
|
|
38
|
-
|
|
38
|
+
result: string;
|
|
39
|
+
parseError?: undefined;
|
|
39
40
|
};
|
|
40
|
-
|
|
41
|
-
}
|
|
41
|
+
required: boolean;
|
|
42
|
+
};
|
|
43
|
+
MONITOR: {
|
|
42
44
|
desc: string;
|
|
43
45
|
parse: (input: string) => {
|
|
44
|
-
|
|
46
|
+
parseError: string;
|
|
45
47
|
result?: undefined;
|
|
46
48
|
} | {
|
|
47
|
-
result:
|
|
48
|
-
|
|
49
|
+
result: string;
|
|
50
|
+
parseError?: undefined;
|
|
49
51
|
};
|
|
50
|
-
dependsOn?: undefined;
|
|
51
52
|
};
|
|
52
53
|
HEADLESS: {
|
|
53
54
|
desc: string;
|
|
54
55
|
parse: (input: string) => {
|
|
55
|
-
|
|
56
|
+
parseError: string;
|
|
56
57
|
result?: undefined;
|
|
57
58
|
} | {
|
|
58
59
|
result: boolean;
|
|
59
|
-
|
|
60
|
+
parseError?: undefined;
|
|
60
61
|
};
|
|
61
62
|
};
|
|
62
63
|
DEVTOOLS: {
|
|
63
64
|
desc: string;
|
|
64
65
|
parse: (input: string) => {
|
|
65
|
-
|
|
66
|
+
parseError: string;
|
|
66
67
|
result?: undefined;
|
|
67
68
|
} | {
|
|
68
69
|
result: boolean;
|
|
69
|
-
|
|
70
|
+
parseError?: undefined;
|
|
70
71
|
};
|
|
71
72
|
};
|
|
72
73
|
ARGS: {
|
|
73
74
|
desc: string;
|
|
74
75
|
parse: (input: string) => {
|
|
75
|
-
|
|
76
|
+
parseError: string;
|
|
76
77
|
result?: undefined;
|
|
77
78
|
} | {
|
|
78
79
|
result: string;
|
|
79
|
-
|
|
80
|
+
parseError?: undefined;
|
|
80
81
|
};
|
|
81
82
|
};
|
|
82
83
|
CAPTURE_VIDEO: {
|
|
83
84
|
desc: string;
|
|
84
85
|
parse: (input: string) => {
|
|
85
|
-
|
|
86
|
+
parseError: string;
|
|
86
87
|
result?: undefined;
|
|
87
88
|
} | {
|
|
88
89
|
result: boolean;
|
|
89
|
-
|
|
90
|
+
parseError?: undefined;
|
|
90
91
|
};
|
|
91
92
|
dependsOn: string[];
|
|
92
93
|
};
|
|
93
94
|
TIMEOUT: {
|
|
94
95
|
desc: string;
|
|
95
96
|
parse: (input: string) => {
|
|
96
|
-
|
|
97
|
+
parseError: string;
|
|
97
98
|
result?: undefined;
|
|
98
99
|
} | {
|
|
99
100
|
result: number;
|
|
100
|
-
|
|
101
|
+
parseError?: undefined;
|
|
101
102
|
};
|
|
102
103
|
};
|
|
103
104
|
};
|
|
104
105
|
hasFactory: boolean;
|
|
105
106
|
bf?: BrowserFactory;
|
|
106
107
|
storage?: AStorage;
|
|
107
|
-
factoryOptions?:
|
|
108
|
+
factoryOptions?: TTaggedBrowserFactoryOptions;
|
|
108
109
|
tab: number;
|
|
109
110
|
withFrame: string;
|
|
110
111
|
downloaded: string[];
|
|
111
|
-
captureVideo:
|
|
112
|
+
captureVideo: boolean;
|
|
113
|
+
closers: Array<() => Promise<void>>;
|
|
114
|
+
logElementError: TAnyFixme;
|
|
115
|
+
monitor: EMonitoringTypes;
|
|
116
|
+
static monitorPage: Page;
|
|
117
|
+
userAgentPages: {
|
|
118
|
+
[name: string]: Page;
|
|
119
|
+
};
|
|
120
|
+
apiUserAgent: string;
|
|
121
|
+
extraHTTPHeaders: {
|
|
122
|
+
[name: string]: string;
|
|
123
|
+
};
|
|
124
|
+
BROWSER_STATE_PATH: string;
|
|
125
|
+
expectedDownload: Promise<Download>;
|
|
112
126
|
setWorld(world: TWorld, steppers: AStepper[]): Promise<void>;
|
|
113
127
|
getCaptureDir(type: string): Promise<string>;
|
|
114
128
|
getBrowserFactory(): Promise<BrowserFactory>;
|
|
115
|
-
|
|
129
|
+
getExistingBrowserContext(tag?: import("@haibun/core/build/lib/defs.js").TTag): Promise<import("playwright").BrowserContext>;
|
|
116
130
|
getPage(): Promise<Page>;
|
|
117
131
|
withPage<TReturn>(f: TAnyFixme): Promise<TReturn>;
|
|
118
|
-
onFailure(result: TStepResult, step?: TFeatureStep): Promise<void | TTraceMessageContext>;
|
|
119
|
-
endFeature(): Promise<void>;
|
|
120
|
-
close(): Promise<void>;
|
|
121
|
-
finish(): Promise<void>;
|
|
122
132
|
sees(text: string, selector: string): Promise<import("@haibun/core/build/lib/defs.js").TOKActionResult | import("@haibun/core/build/lib/defs.js").TNotOKActionResult>;
|
|
133
|
+
getCookies(): Promise<import("playwright").Cookie[]>;
|
|
123
134
|
steps: {
|
|
135
|
+
openDevTools: {
|
|
136
|
+
gwta: string;
|
|
137
|
+
action: () => Promise<import("@haibun/core/build/lib/defs.js").TOKActionResult>;
|
|
138
|
+
};
|
|
124
139
|
press: {
|
|
125
140
|
gwta: string;
|
|
126
141
|
action: ({ key }: TNamed) => Promise<import("@haibun/core/build/lib/defs.js").TOKActionResult>;
|
|
@@ -161,6 +176,14 @@ declare class WebPlaywright extends AStepper implements IHasOptions {
|
|
|
161
176
|
gwta: string;
|
|
162
177
|
action: ({ what }: TNamed) => Promise<import("@haibun/core/build/lib/defs.js").TOKActionResult | import("@haibun/core/build/lib/defs.js").TNotOKActionResult>;
|
|
163
178
|
};
|
|
179
|
+
createMonitor: {
|
|
180
|
+
gwta: string;
|
|
181
|
+
action: () => Promise<import("@haibun/core/build/lib/defs.js").TOKActionResult>;
|
|
182
|
+
};
|
|
183
|
+
finishMonitor: {
|
|
184
|
+
gwta: string;
|
|
185
|
+
action: () => Promise<import("@haibun/core/build/lib/defs.js").TOKActionResult>;
|
|
186
|
+
};
|
|
164
187
|
onNewPage: {
|
|
165
188
|
gwta: string;
|
|
166
189
|
action: () => Promise<import("@haibun/core/build/lib/defs.js").TOKActionResult>;
|
|
@@ -273,10 +296,6 @@ declare class WebPlaywright extends AStepper implements IHasOptions {
|
|
|
273
296
|
gwta: string;
|
|
274
297
|
action: ({ what }: TNamed) => Promise<import("@haibun/core/build/lib/defs.js").TOKActionResult>;
|
|
275
298
|
};
|
|
276
|
-
pressBack: {
|
|
277
|
-
gwta: string;
|
|
278
|
-
action: () => Promise<import("@haibun/core/build/lib/defs.js").TOKActionResult>;
|
|
279
|
-
};
|
|
280
299
|
usingBrowserVar: {
|
|
281
300
|
gwta: string;
|
|
282
301
|
action: ({ browser }: TNamed) => Promise<import("@haibun/core/build/lib/defs.js").TOKActionResult>;
|
|
@@ -285,6 +304,18 @@ declare class WebPlaywright extends AStepper implements IHasOptions {
|
|
|
285
304
|
gwta: string;
|
|
286
305
|
action: ({ file, selector }: TNamed) => Promise<import("@haibun/core/build/lib/defs.js").TOKActionResult>;
|
|
287
306
|
};
|
|
307
|
+
waitForFileChooser: {
|
|
308
|
+
gwta: string;
|
|
309
|
+
action: ({ file, selector }: TNamed) => Promise<import("@haibun/core/build/lib/defs.js").TOKActionResult | import("@haibun/core/build/lib/defs.js").TNotOKActionResult>;
|
|
310
|
+
};
|
|
311
|
+
expectDownload: {
|
|
312
|
+
gwta: string;
|
|
313
|
+
action: () => Promise<import("@haibun/core/build/lib/defs.js").TOKActionResult | import("@haibun/core/build/lib/defs.js").TNotOKActionResult>;
|
|
314
|
+
};
|
|
315
|
+
receiveDownload: {
|
|
316
|
+
gwta: string;
|
|
317
|
+
action: ({ file }: TNamed) => Promise<import("@haibun/core/build/lib/defs.js").TOKActionResult | import("@haibun/core/build/lib/defs.js").TNotOKActionResult>;
|
|
318
|
+
};
|
|
288
319
|
waitForDownload: {
|
|
289
320
|
gwta: string;
|
|
290
321
|
action: ({ file }: TNamed) => Promise<import("@haibun/core/build/lib/defs.js").TOKActionResult | import("@haibun/core/build/lib/defs.js").TNotOKActionResult>;
|
|
@@ -299,7 +330,7 @@ declare class WebPlaywright extends AStepper implements IHasOptions {
|
|
|
299
330
|
};
|
|
300
331
|
takeScreenshot: {
|
|
301
332
|
gwta: string;
|
|
302
|
-
action: (notUsed: any, featureStep: TFeatureStep) => Promise<import("@haibun/core/build/lib/defs.js").
|
|
333
|
+
action: (notUsed: any, featureStep: TFeatureStep) => Promise<import("@haibun/core/build/lib/defs.js").TNotOKActionResult>;
|
|
303
334
|
};
|
|
304
335
|
assertOpen: {
|
|
305
336
|
gwta: string;
|
|
@@ -313,14 +344,58 @@ declare class WebPlaywright extends AStepper implements IHasOptions {
|
|
|
313
344
|
gwta: string;
|
|
314
345
|
action: ({ width, height }: TNamed) => Promise<import("@haibun/core/build/lib/defs.js").TOKActionResult>;
|
|
315
346
|
};
|
|
347
|
+
setApiUserAgent: {
|
|
348
|
+
gwta: string;
|
|
349
|
+
action: ({ agent }: TNamed) => Promise<import("@haibun/core/build/lib/defs.js").TOKActionResult>;
|
|
350
|
+
};
|
|
351
|
+
addBasicAuthCredentials: {
|
|
352
|
+
gwta: string;
|
|
353
|
+
action: ({ username, password }: TNamed) => Promise<import("@haibun/core/build/lib/defs.js").TOKActionResult>;
|
|
354
|
+
};
|
|
316
355
|
addAuthBearerToken: {
|
|
317
356
|
gwta: string;
|
|
318
357
|
action: ({ token }: TNamed) => Promise<import("@haibun/core/build/lib/defs.js").TOKActionResult>;
|
|
319
358
|
};
|
|
359
|
+
restTokenRequest: {
|
|
360
|
+
gwta: string;
|
|
361
|
+
action: ({ endpoint }: TNamed) => Promise<import("@haibun/core/build/lib/defs.js").TOKActionResult>;
|
|
362
|
+
};
|
|
363
|
+
restTokenLogout: {
|
|
364
|
+
gwta: string;
|
|
365
|
+
action: ({ endpoint }: TNamed) => Promise<import("@haibun/core/build/lib/defs.js").TOKActionResult>;
|
|
366
|
+
};
|
|
367
|
+
acceptEndpointRequest: {
|
|
368
|
+
gwta: string;
|
|
369
|
+
action: ({ accept, method, endpoint }: TNamed) => Promise<import("@haibun/core/build/lib/defs.js").TOKActionResult | import("@haibun/core/build/lib/defs.js").TNotOKActionResult>;
|
|
370
|
+
};
|
|
320
371
|
restEndpointRequest: {
|
|
321
372
|
gwta: string;
|
|
322
373
|
action: ({ method, endpoint }: TNamed) => Promise<import("@haibun/core/build/lib/defs.js").TOKActionResult | import("@haibun/core/build/lib/defs.js").TNotOKActionResult>;
|
|
323
374
|
};
|
|
375
|
+
filterResponseJson: {
|
|
376
|
+
gwta: string;
|
|
377
|
+
action: ({ property, match }: TNamed) => Promise<import("@haibun/core/build/lib/defs.js").TOKActionResult | import("@haibun/core/build/lib/defs.js").TNotOKActionResult>;
|
|
378
|
+
};
|
|
379
|
+
filteredResponseLengthIs: {
|
|
380
|
+
gwta: string;
|
|
381
|
+
action: ({ length }: TNamed) => Promise<import("@haibun/core/build/lib/defs.js").TOKActionResult | import("@haibun/core/build/lib/defs.js").TNotOKActionResult>;
|
|
382
|
+
};
|
|
383
|
+
showResponseLength: {
|
|
384
|
+
gwta: string;
|
|
385
|
+
action: () => Promise<import("@haibun/core/build/lib/defs.js").TOKActionResult | import("@haibun/core/build/lib/defs.js").TNotOKActionResult>;
|
|
386
|
+
};
|
|
387
|
+
showFilteredLength: {
|
|
388
|
+
gwta: string;
|
|
389
|
+
action: () => Promise<import("@haibun/core/build/lib/defs.js").TOKActionResult | import("@haibun/core/build/lib/defs.js").TNotOKActionResult>;
|
|
390
|
+
};
|
|
391
|
+
responseJsonLengthIs: {
|
|
392
|
+
gwta: string;
|
|
393
|
+
action: ({ length }: TNamed) => Promise<import("@haibun/core/build/lib/defs.js").TOKActionResult | import("@haibun/core/build/lib/defs.js").TNotOKActionResult>;
|
|
394
|
+
};
|
|
395
|
+
restEndpointFilteredPropertyRequest: {
|
|
396
|
+
gwta: string;
|
|
397
|
+
action: ({ property, method, endpoint, status }: TNamed) => Promise<import("@haibun/core/build/lib/defs.js").TOKActionResult | import("@haibun/core/build/lib/defs.js").TNotOKActionResult>;
|
|
398
|
+
};
|
|
324
399
|
restEndpointRequestWithPayload: {
|
|
325
400
|
gwta: string;
|
|
326
401
|
action: ({ method, endpoint, payload }: TNamed) => Promise<import("@haibun/core/build/lib/defs.js").TOKActionResult | import("@haibun/core/build/lib/defs.js").TNotOKActionResult>;
|
|
@@ -335,17 +410,30 @@ declare class WebPlaywright extends AStepper implements IHasOptions {
|
|
|
335
410
|
};
|
|
336
411
|
restResponseIs: {
|
|
337
412
|
gwta: string;
|
|
338
|
-
action: ({
|
|
413
|
+
action: ({ value }: TNamed) => Promise<import("@haibun/core/build/lib/defs.js").TOKActionResult | import("@haibun/core/build/lib/defs.js").TNotOKActionResult>;
|
|
339
414
|
};
|
|
340
415
|
};
|
|
341
416
|
setBrowser(browser: string): import("@haibun/core/build/lib/defs.js").TOKActionResult;
|
|
342
417
|
newTab(): void;
|
|
343
|
-
captureFailureScreenshot(event:
|
|
344
|
-
|
|
345
|
-
|
|
418
|
+
captureFailureScreenshot(event: EExecutionMessageType, step: TFeatureStep): Promise<void>;
|
|
419
|
+
captureScreenshotAndLog(event: EExecutionMessageType, details: {
|
|
420
|
+
seq?: number;
|
|
421
|
+
step?: TFeatureStep;
|
|
422
|
+
}): Promise<void>;
|
|
423
|
+
captureScreenshot(event: EExecutionMessageType, details: {
|
|
346
424
|
seq?: number;
|
|
347
425
|
step?: TFeatureStep;
|
|
426
|
+
}): Promise<{
|
|
427
|
+
context: TMessageContext;
|
|
428
|
+
path: string;
|
|
429
|
+
}>;
|
|
430
|
+
setExtraHTTPHeaders(headers: {
|
|
431
|
+
[name: string]: string;
|
|
348
432
|
}): Promise<void>;
|
|
433
|
+
withPageFetch(endpoint: string, method?: string, requestOptions?: TRequestOptions): Promise<TCapturedResponse>;
|
|
434
|
+
callClosers(): Promise<void>;
|
|
435
|
+
createMonitor: () => Promise<import("@haibun/core/build/lib/defs.js").TOKActionResult>;
|
|
436
|
+
runtimePath(world?: TWorld): Promise<string>;
|
|
349
437
|
}
|
|
350
438
|
export default WebPlaywright;
|
|
351
439
|
//# sourceMappingURL=web-playwright.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"web-playwright.d.ts","sourceRoot":"","sources":["../src/web-playwright.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,
|
|
1
|
+
{"version":3,"file":"web-playwright.d.ts","sourceRoot":"","sources":["../src/web-playwright.ts"],"names":[],"mappings":"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"}
|