playwriter 0.0.25 → 0.0.29

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.
Files changed (105) hide show
  1. package/bin.js +1 -1
  2. package/dist/bippy.js +966 -0
  3. package/dist/{extension/cdp-relay.d.ts → cdp-relay.d.ts} +3 -2
  4. package/dist/cdp-relay.d.ts.map +1 -0
  5. package/dist/{extension/cdp-relay.js → cdp-relay.js} +101 -3
  6. package/dist/cdp-relay.js.map +1 -0
  7. package/dist/cdp-session.d.ts +1 -1
  8. package/dist/cdp-session.d.ts.map +1 -1
  9. package/dist/cdp-session.js +4 -4
  10. package/dist/cdp-session.js.map +1 -1
  11. package/dist/cli.d.ts +3 -0
  12. package/dist/cli.d.ts.map +1 -0
  13. package/dist/cli.js +71 -0
  14. package/dist/cli.js.map +1 -0
  15. package/dist/create-logger.d.ts.map +1 -1
  16. package/dist/create-logger.js +2 -1
  17. package/dist/create-logger.js.map +1 -1
  18. package/dist/debugger-examples-types.d.ts +18 -0
  19. package/dist/debugger-examples-types.d.ts.map +1 -0
  20. package/dist/debugger-examples-types.js +2 -0
  21. package/dist/debugger-examples-types.js.map +1 -0
  22. package/dist/debugger-examples.d.ts +6 -0
  23. package/dist/debugger-examples.d.ts.map +1 -0
  24. package/dist/debugger-examples.js +53 -0
  25. package/dist/debugger-examples.js.map +1 -0
  26. package/dist/debugger-examples.ts +66 -0
  27. package/dist/debugger.d.ts +380 -0
  28. package/dist/debugger.d.ts.map +1 -0
  29. package/dist/debugger.js +631 -0
  30. package/dist/debugger.js.map +1 -0
  31. package/dist/editor-examples.d.ts +11 -0
  32. package/dist/editor-examples.d.ts.map +1 -0
  33. package/dist/editor-examples.js +124 -0
  34. package/dist/editor-examples.js.map +1 -0
  35. package/dist/editor.d.ts +203 -0
  36. package/dist/editor.d.ts.map +1 -0
  37. package/dist/editor.js +335 -0
  38. package/dist/editor.js.map +1 -0
  39. package/dist/index.d.ts +1 -1
  40. package/dist/index.d.ts.map +1 -1
  41. package/dist/index.js +1 -1
  42. package/dist/index.js.map +1 -1
  43. package/dist/mcp-client.d.ts +5 -1
  44. package/dist/mcp-client.d.ts.map +1 -1
  45. package/dist/mcp-client.js +13 -9
  46. package/dist/mcp-client.js.map +1 -1
  47. package/dist/mcp.d.ts +4 -1
  48. package/dist/mcp.d.ts.map +1 -1
  49. package/dist/mcp.js +170 -27
  50. package/dist/mcp.js.map +1 -1
  51. package/dist/mcp.test.d.ts.map +1 -1
  52. package/dist/mcp.test.js +886 -182
  53. package/dist/mcp.test.js.map +1 -1
  54. package/dist/prompt.md +86 -6
  55. package/dist/{extension/protocol.d.ts → protocol.d.ts} +1 -1
  56. package/dist/protocol.d.ts.map +1 -0
  57. package/dist/protocol.js.map +1 -0
  58. package/dist/react-source.d.ts +13 -0
  59. package/dist/react-source.d.ts.map +1 -0
  60. package/dist/react-source.js +66 -0
  61. package/dist/react-source.js.map +1 -0
  62. package/dist/selector-generator.js +7065 -18
  63. package/dist/start-relay-server.d.ts +4 -2
  64. package/dist/start-relay-server.d.ts.map +1 -1
  65. package/dist/start-relay-server.js +3 -3
  66. package/dist/start-relay-server.js.map +1 -1
  67. package/dist/styles.d.ts +27 -0
  68. package/dist/styles.d.ts.map +1 -0
  69. package/dist/styles.js +232 -0
  70. package/dist/styles.js.map +1 -0
  71. package/dist/utils.d.ts +3 -1
  72. package/dist/utils.d.ts.map +1 -1
  73. package/dist/utils.js +7 -3
  74. package/dist/utils.js.map +1 -1
  75. package/dist/wait-for-page-load.d.ts.map +1 -1
  76. package/dist/wait-for-page-load.js +3 -2
  77. package/dist/wait-for-page-load.js.map +1 -1
  78. package/package.json +5 -2
  79. package/src/{extension/cdp-relay.ts → cdp-relay.ts} +109 -5
  80. package/src/cdp-session.ts +4 -4
  81. package/src/cdp-timing.md +128 -0
  82. package/src/cli.ts +85 -0
  83. package/src/create-logger.ts +2 -1
  84. package/src/debugger-examples-types.ts +10 -0
  85. package/src/debugger-examples.ts +66 -0
  86. package/src/debugger.ts +711 -0
  87. package/src/editor-examples.ts +148 -0
  88. package/src/editor.ts +389 -0
  89. package/src/index.ts +1 -1
  90. package/src/mcp-client.ts +14 -9
  91. package/src/mcp.test.ts +1053 -196
  92. package/src/mcp.ts +195 -30
  93. package/src/prompt.md +86 -6
  94. package/src/{extension/protocol.ts → protocol.ts} +1 -1
  95. package/src/react-source.ts +92 -0
  96. package/src/snapshots/shadcn-ui-accessibility.md +57 -57
  97. package/src/start-relay-server.ts +3 -3
  98. package/src/styles.ts +343 -0
  99. package/src/utils.ts +8 -3
  100. package/src/wait-for-page-load.ts +3 -2
  101. package/dist/extension/cdp-relay.d.ts.map +0 -1
  102. package/dist/extension/cdp-relay.js.map +0 -1
  103. package/dist/extension/protocol.d.ts.map +0 -1
  104. package/dist/extension/protocol.js.map +0 -1
  105. /package/dist/{extension/protocol.js → protocol.js} +0 -0
@@ -0,0 +1,380 @@
1
+ import type { CDPSession } from './cdp-session.js';
2
+ export interface BreakpointInfo {
3
+ id: string;
4
+ file: string;
5
+ line: number;
6
+ }
7
+ export interface LocationInfo {
8
+ url: string;
9
+ lineNumber: number;
10
+ columnNumber: number;
11
+ callstack: Array<{
12
+ functionName: string;
13
+ url: string;
14
+ lineNumber: number;
15
+ columnNumber: number;
16
+ }>;
17
+ sourceContext: string;
18
+ }
19
+ export interface EvaluateResult {
20
+ value: unknown;
21
+ }
22
+ export interface ScriptInfo {
23
+ scriptId: string;
24
+ url: string;
25
+ }
26
+ /**
27
+ * A class for debugging JavaScript code via Chrome DevTools Protocol.
28
+ * Works with both Node.js (--inspect) and browser debugging.
29
+ *
30
+ * @example
31
+ * ```ts
32
+ * const cdp = await getCDPSessionForPage({ page, wsUrl })
33
+ * const dbg = new Debugger({ cdp })
34
+ *
35
+ * await dbg.setBreakpoint({ file: 'https://example.com/app.js', line: 42 })
36
+ * // trigger the code path, then:
37
+ * const location = await dbg.getLocation()
38
+ * const vars = await dbg.inspectLocalVariables()
39
+ * await dbg.resume()
40
+ * ```
41
+ */
42
+ export declare class Debugger {
43
+ private cdp;
44
+ private debuggerEnabled;
45
+ private paused;
46
+ private currentCallFrames;
47
+ private breakpoints;
48
+ private scripts;
49
+ private xhrBreakpoints;
50
+ private blackboxPatterns;
51
+ /**
52
+ * Creates a new Debugger instance.
53
+ *
54
+ * @param options - Configuration options
55
+ * @param options.cdp - A CDPSession instance for sending CDP commands
56
+ *
57
+ * @example
58
+ * ```ts
59
+ * const cdp = await getCDPSessionForPage({ page, wsUrl })
60
+ * const dbg = new Debugger({ cdp })
61
+ * ```
62
+ */
63
+ constructor({ cdp }: {
64
+ cdp: CDPSession;
65
+ });
66
+ private setupEventListeners;
67
+ /**
68
+ * Enables the debugger and runtime domains. Called automatically by other methods.
69
+ * Also resumes execution if the target was started with --inspect-brk.
70
+ *
71
+ * @example
72
+ * ```ts
73
+ * await dbg.enable()
74
+ * ```
75
+ */
76
+ enable(): Promise<void>;
77
+ /**
78
+ * Sets a breakpoint at a specified URL and line number.
79
+ * Use the URL from listScripts() to find available scripts.
80
+ *
81
+ * @param options - Breakpoint options
82
+ * @param options.file - Script URL (e.g. https://example.com/app.js)
83
+ * @param options.line - Line number (1-based)
84
+ * @param options.condition - Optional JS expression; only pause when it evaluates to true
85
+ * @returns The breakpoint ID for later removal
86
+ *
87
+ * @example
88
+ * ```ts
89
+ * const id = await dbg.setBreakpoint({ file: 'https://example.com/app.js', line: 42 })
90
+ * // later:
91
+ * await dbg.deleteBreakpoint({ breakpointId: id })
92
+ *
93
+ * // Conditional breakpoint - only pause when userId is 123
94
+ * await dbg.setBreakpoint({
95
+ * file: 'https://example.com/app.js',
96
+ * line: 42,
97
+ * condition: 'userId === 123'
98
+ * })
99
+ * ```
100
+ */
101
+ setBreakpoint({ file, line, condition }: {
102
+ file: string;
103
+ line: number;
104
+ condition?: string;
105
+ }): Promise<string>;
106
+ /**
107
+ * Removes a breakpoint by its ID.
108
+ *
109
+ * @param options - Options
110
+ * @param options.breakpointId - The breakpoint ID returned by setBreakpoint
111
+ *
112
+ * @example
113
+ * ```ts
114
+ * await dbg.deleteBreakpoint({ breakpointId: 'bp-123' })
115
+ * ```
116
+ */
117
+ deleteBreakpoint({ breakpointId }: {
118
+ breakpointId: string;
119
+ }): Promise<void>;
120
+ /**
121
+ * Returns a list of all active breakpoints set by this debugger instance.
122
+ *
123
+ * @returns Array of breakpoint info objects
124
+ *
125
+ * @example
126
+ * ```ts
127
+ * const breakpoints = dbg.listBreakpoints()
128
+ * // [{ id: 'bp-123', file: 'https://example.com/index.js', line: 42 }]
129
+ * ```
130
+ */
131
+ listBreakpoints(): BreakpointInfo[];
132
+ /**
133
+ * Inspects local variables in the current call frame.
134
+ * Must be paused at a breakpoint. String values over 1000 chars are truncated.
135
+ * Use evaluate() for full control over reading specific values.
136
+ *
137
+ * @returns Record of variable names to values
138
+ * @throws Error if not paused or no active call frames
139
+ *
140
+ * @example
141
+ * ```ts
142
+ * const vars = await dbg.inspectLocalVariables()
143
+ * // { myVar: 'hello', count: 42 }
144
+ * ```
145
+ */
146
+ inspectLocalVariables(): Promise<Record<string, unknown>>;
147
+ /**
148
+ * Returns global lexical scope variable names.
149
+ *
150
+ * @returns Array of global variable names
151
+ *
152
+ * @example
153
+ * ```ts
154
+ * const globals = await dbg.inspectGlobalVariables()
155
+ * // ['myGlobal', 'CONFIG']
156
+ * ```
157
+ */
158
+ inspectGlobalVariables(): Promise<string[]>;
159
+ /**
160
+ * Evaluates a JavaScript expression and returns the result.
161
+ * When paused at a breakpoint, evaluates in the current stack frame scope,
162
+ * allowing access to local variables. Otherwise evaluates in global scope.
163
+ * Values are not truncated, use this for full control over reading specific variables.
164
+ *
165
+ * @param options - Options
166
+ * @param options.expression - JavaScript expression to evaluate
167
+ * @returns The result value
168
+ *
169
+ * @example
170
+ * ```ts
171
+ * // When paused, can access local variables:
172
+ * const result = await dbg.evaluate({ expression: 'localVar + 1' })
173
+ *
174
+ * // Read a large string that would be truncated in inspectLocalVariables:
175
+ * const full = await dbg.evaluate({ expression: 'largeStringVar' })
176
+ * ```
177
+ */
178
+ evaluate({ expression }: {
179
+ expression: string;
180
+ }): Promise<EvaluateResult>;
181
+ /**
182
+ * Gets the current execution location when paused at a breakpoint.
183
+ * Includes the call stack and surrounding source code for context.
184
+ *
185
+ * @returns Location info with URL, line number, call stack, and source context
186
+ * @throws Error if debugger is not paused
187
+ *
188
+ * @example
189
+ * ```ts
190
+ * const location = await dbg.getLocation()
191
+ * console.log(location.url) // 'https://example.com/src/index.js'
192
+ * console.log(location.lineNumber) // 42
193
+ * console.log(location.callstack) // [{ functionName: 'handleRequest', ... }]
194
+ * console.log(location.sourceContext)
195
+ * // ' 40: function handleRequest(req) {
196
+ * // 41: const data = req.body
197
+ * // > 42: processData(data)
198
+ * // 43: }'
199
+ * ```
200
+ */
201
+ getLocation(): Promise<LocationInfo>;
202
+ /**
203
+ * Steps over to the next line of code, not entering function calls.
204
+ *
205
+ * @throws Error if debugger is not paused
206
+ *
207
+ * @example
208
+ * ```ts
209
+ * await dbg.stepOver()
210
+ * const newLocation = await dbg.getLocation()
211
+ * ```
212
+ */
213
+ stepOver(): Promise<void>;
214
+ /**
215
+ * Steps into a function call on the current line.
216
+ *
217
+ * @throws Error if debugger is not paused
218
+ *
219
+ * @example
220
+ * ```ts
221
+ * await dbg.stepInto()
222
+ * const location = await dbg.getLocation()
223
+ * // now inside the called function
224
+ * ```
225
+ */
226
+ stepInto(): Promise<void>;
227
+ /**
228
+ * Steps out of the current function, returning to the caller.
229
+ *
230
+ * @throws Error if debugger is not paused
231
+ *
232
+ * @example
233
+ * ```ts
234
+ * await dbg.stepOut()
235
+ * const location = await dbg.getLocation()
236
+ * // back in the calling function
237
+ * ```
238
+ */
239
+ stepOut(): Promise<void>;
240
+ /**
241
+ * Resumes code execution until the next breakpoint or completion.
242
+ *
243
+ * @throws Error if debugger is not paused
244
+ *
245
+ * @example
246
+ * ```ts
247
+ * await dbg.resume()
248
+ * // execution continues
249
+ * ```
250
+ */
251
+ resume(): Promise<void>;
252
+ /**
253
+ * Returns whether the debugger is currently paused at a breakpoint.
254
+ *
255
+ * @returns true if paused, false otherwise
256
+ *
257
+ * @example
258
+ * ```ts
259
+ * if (dbg.isPaused()) {
260
+ * const vars = await dbg.inspectLocalVariables()
261
+ * }
262
+ * ```
263
+ */
264
+ isPaused(): boolean;
265
+ /**
266
+ * Configures the debugger to pause on exceptions.
267
+ *
268
+ * @param options - Options
269
+ * @param options.state - When to pause: 'none' (never), 'uncaught' (only uncaught), or 'all' (all exceptions)
270
+ *
271
+ * @example
272
+ * ```ts
273
+ * // Pause only on uncaught exceptions
274
+ * await dbg.setPauseOnExceptions({ state: 'uncaught' })
275
+ *
276
+ * // Pause on all exceptions (caught and uncaught)
277
+ * await dbg.setPauseOnExceptions({ state: 'all' })
278
+ *
279
+ * // Disable pausing on exceptions
280
+ * await dbg.setPauseOnExceptions({ state: 'none' })
281
+ * ```
282
+ */
283
+ setPauseOnExceptions({ state }: {
284
+ state: 'none' | 'uncaught' | 'all';
285
+ }): Promise<void>;
286
+ /**
287
+ * Lists available scripts where breakpoints can be set.
288
+ * Automatically enables the debugger if not already enabled.
289
+ *
290
+ * @param options - Options
291
+ * @param options.search - Optional string to filter scripts by URL (case-insensitive)
292
+ * @returns Array of up to 20 matching scripts with scriptId and url
293
+ *
294
+ * @example
295
+ * ```ts
296
+ * // List all scripts
297
+ * const scripts = await dbg.listScripts()
298
+ * // [{ scriptId: '1', url: 'https://example.com/app.js' }, ...]
299
+ *
300
+ * // Search for specific files
301
+ * const handlers = await dbg.listScripts({ search: 'handler' })
302
+ * // [{ scriptId: '5', url: 'https://example.com/handlers.js' }]
303
+ * ```
304
+ */
305
+ listScripts({ search }?: {
306
+ search?: string;
307
+ }): Promise<ScriptInfo[]>;
308
+ setXHRBreakpoint({ url }: {
309
+ url: string;
310
+ }): Promise<void>;
311
+ removeXHRBreakpoint({ url }: {
312
+ url: string;
313
+ }): Promise<void>;
314
+ listXHRBreakpoints(): string[];
315
+ /**
316
+ * Sets regex patterns for scripts to blackbox (skip when stepping).
317
+ * Blackboxed scripts are hidden from the call stack and stepped over automatically.
318
+ * Useful for ignoring framework/library code during debugging.
319
+ *
320
+ * @param options - Options
321
+ * @param options.patterns - Array of regex patterns to match script URLs
322
+ *
323
+ * @example
324
+ * ```ts
325
+ * // Skip all node_modules
326
+ * await dbg.setBlackboxPatterns({ patterns: ['node_modules'] })
327
+ *
328
+ * // Skip React and other frameworks
329
+ * await dbg.setBlackboxPatterns({
330
+ * patterns: [
331
+ * 'node_modules/react',
332
+ * 'node_modules/react-dom',
333
+ * 'node_modules/next',
334
+ * 'webpack://',
335
+ * ]
336
+ * })
337
+ *
338
+ * // Skip all third-party scripts
339
+ * await dbg.setBlackboxPatterns({ patterns: ['^https://cdn\\.'] })
340
+ *
341
+ * // Clear all blackbox patterns
342
+ * await dbg.setBlackboxPatterns({ patterns: [] })
343
+ * ```
344
+ */
345
+ setBlackboxPatterns({ patterns }: {
346
+ patterns: string[];
347
+ }): Promise<void>;
348
+ /**
349
+ * Adds a single regex pattern to the blackbox list.
350
+ *
351
+ * @param options - Options
352
+ * @param options.pattern - Regex pattern to match script URLs
353
+ *
354
+ * @example
355
+ * ```ts
356
+ * await dbg.addBlackboxPattern({ pattern: 'node_modules/lodash' })
357
+ * await dbg.addBlackboxPattern({ pattern: 'node_modules/axios' })
358
+ * ```
359
+ */
360
+ addBlackboxPattern({ pattern }: {
361
+ pattern: string;
362
+ }): Promise<void>;
363
+ /**
364
+ * Removes a pattern from the blackbox list.
365
+ *
366
+ * @param options - Options
367
+ * @param options.pattern - The exact pattern string to remove
368
+ */
369
+ removeBlackboxPattern({ pattern }: {
370
+ pattern: string;
371
+ }): Promise<void>;
372
+ /**
373
+ * Returns the current list of blackbox patterns.
374
+ */
375
+ listBlackboxPatterns(): string[];
376
+ private truncateValue;
377
+ private formatPropertyValue;
378
+ private processRemoteObject;
379
+ }
380
+ //# sourceMappingURL=debugger.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"debugger.d.ts","sourceRoot":"","sources":["../src/debugger.ts"],"names":[],"mappings":"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"}