chromewright 0.8.0

Browser automation MCP server via Chrome DevTools Protocol (CDP)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
// Shared in-page runtime: visibility, selector identity, and cross-frame DOM helpers.
function getDocumentView(doc) {
  return doc.defaultView || window;
}

function getFrameElementForView(view) {
  try {
    return view && view.frameElement ? view.frameElement : null;
  } catch (error) {
    return null;
  }
}

function getTopLevelViewForElement(element) {
  let view = getDocumentView(element.ownerDocument);

  while (true) {
    const frameElement = getFrameElementForView(view);
    if (!frameElement) {
      return view;
    }

    view = getDocumentView(frameElement.ownerDocument);
  }
}

function computeViewportRect(element) {
  const rect = element.getBoundingClientRect();
  let left = rect.left;
  let top = rect.top;
  let view = getDocumentView(element.ownerDocument);

  while (true) {
    const frameElement = getFrameElementForView(view);
    if (!frameElement) {
      break;
    }

    const frameRect = frameElement.getBoundingClientRect();
    left += frameRect.left + (frameElement.clientLeft || 0);
    top += frameRect.top + (frameElement.clientTop || 0);
    view = getDocumentView(frameElement.ownerDocument);
  }

  return {
    x: left,
    y: top,
    left,
    top,
    right: left + rect.width,
    bottom: top + rect.height,
    width: rect.width,
    height: rect.height
  };
}

function rectIntersectsViewport(rect, view) {
  return (
    rect.bottom > 0 &&
    rect.right > 0 &&
    rect.top < view.innerHeight &&
    rect.left < view.innerWidth
  );
}

function isElementVisibleInViewport(element) {
  let current = element;

  while (current) {
    const view = getDocumentView(current.ownerDocument);
    const rect = current.getBoundingClientRect();
    if (!rectIntersectsViewport(rect, view)) {
      return false;
    }

    const frameElement = getFrameElementForView(view);
    current = frameElement && frameElement.isConnected ? frameElement : null;
  }

  return true;
}

function isElementHiddenForAria(element) {
  const tagName = element.tagName;
  if (['STYLE', 'SCRIPT', 'NOSCRIPT', 'TEMPLATE'].includes(tagName)) {
    return true;
  }

  const style = getDocumentView(element.ownerDocument).getComputedStyle(element);
  if (style.visibility !== 'visible' || style.display === 'none') {
    return true;
  }

  if (element.getAttribute('aria-hidden') === 'true') {
    return true;
  }

  return false;
}

function isElementVisible(element) {
  const rect = element.getBoundingClientRect();
  return rect.width > 0 && rect.height > 0;
}

function computeBox(element) {
  const view = getDocumentView(element.ownerDocument);
  const style = view.getComputedStyle(element);
  const localRect = element.getBoundingClientRect();
  const rect = computeViewportRect(element);
  return {
    rect,
    visible: localRect.width > 0 && localRect.height > 0,
    cursor: style.cursor,
    inline: style.display === 'inline',
    pointerEvents: style.pointerEvents
  };
}

function receivesPointerEvents(element) {
  const box = computeBox(element);
  if (!box.visible) {
    return false;
  }

  return box.pointerEvents !== 'none';
}

function getInputRole(input) {
  const type = (input.type || 'text').toLowerCase();
  const roles = {
    button: 'button',
    checkbox: 'checkbox',
    radio: 'radio',
    range: 'slider',
    search: 'searchbox',
    text: 'textbox',
    email: 'textbox',
    tel: 'textbox',
    url: 'textbox',
    number: 'spinbutton'
  };
  return roles[type] || 'textbox';
}

function getAriaRole(element) {
  const explicitRole = element.getAttribute('role');
  if (explicitRole) {
    const roles = explicitRole.split(' ').map((role) => role.trim());
    if (roles[0]) {
      return roles[0];
    }
  }

  const tagName = element.tagName;
  const implicitRoles = {
    BUTTON: 'button',
    A: element.hasAttribute('href') ? 'link' : null,
    INPUT: getInputRole(element),
    TEXTAREA: 'textbox',
    SELECT: element.hasAttribute('multiple') || element.size > 1 ? 'listbox' : 'combobox',
    H1: 'heading',
    H2: 'heading',
    H3: 'heading',
    H4: 'heading',
    H5: 'heading',
    H6: 'heading',
    IMG: element.getAttribute('alt') === '' ? 'presentation' : 'img',
    NAV: 'navigation',
    MAIN: 'main',
    ARTICLE: 'article',
    SECTION: element.hasAttribute('aria-label') || element.hasAttribute('aria-labelledby') ? 'region' : null,
    HEADER: 'banner',
    FOOTER: 'contentinfo',
    ASIDE: 'complementary',
    FORM: 'form',
    TABLE: 'table',
    UL: 'list',
    OL: 'list',
    LI: 'listitem',
    P: 'paragraph',
    DIALOG: 'dialog',
    IFRAME: 'iframe'
  };

  return implicitRoles[tagName] || 'generic';
}

function isActionableRole(role) {
  return [
    'button',
    'link',
    'textbox',
    'searchbox',
    'checkbox',
    'radio',
    'combobox',
    'listbox',
    'option',
    'menuitem',
    'menuitemcheckbox',
    'menuitemradio',
    'tab',
    'slider',
    'spinbutton',
    'switch',
    'dialog',
    'alertdialog'
  ].includes(role);
}

function isActionableElement(element) {
  const role = getAriaRole(element);
  const box = computeBox(element);
  return box.visible && (isActionableRole(role) || box.cursor === 'pointer');
}

function visitActionableTree(node, frameDepth, visitor) {
  if (!node || node.nodeType !== 1) {
    return null;
  }

  const element = node;
  const visible = !isElementHiddenForAria(element) || isElementVisible(element);
  if (!visible) {
    return null;
  }

  if (isActionableElement(element)) {
    const match = visitor(element, frameDepth);
    if (match !== undefined && match !== null) {
      return match;
    }
  }

  if (element.nodeName === 'SLOT') {
    for (const child of element.assignedNodes()) {
      const match = visitActionableTree(child, frameDepth, visitor);
      if (match !== null) {
        return match;
      }
    }
  } else {
    for (let child = element.firstChild; child; child = child.nextSibling) {
      if (!child.assignedSlot) {
        const match = visitActionableTree(child, frameDepth, visitor);
        if (match !== null) {
          return match;
        }
      }
    }

    if (element.shadowRoot) {
      for (let child = element.shadowRoot.firstChild; child; child = child.nextSibling) {
        const match = visitActionableTree(child, frameDepth, visitor);
        if (match !== null) {
          return match;
        }
      }
    }

    if (element.tagName === 'IFRAME') {
      try {
        const frameDoc = element.contentDocument;
        const frameWindow = element.contentWindow;
        if (frameDoc && frameWindow) {
          const frameRoot = frameDoc.body || frameDoc.documentElement;
          const match = visitActionableTree(frameRoot, frameDepth + 1, visitor);
          if (match !== null) {
            return match;
          }
        }
      } catch (error) {
        // Cross-origin frame; actionable lookup stops at the iframe boundary.
      }
    }
  }

  return null;
}

function searchActionableIndex(targetIndex) {
  let currentIndex = 0;
  const root = document.body || document.documentElement;
  return visitActionableTree(root, 0, (element, frameDepth) => {
    if (currentIndex === targetIndex) {
      return {
        element,
        frame_depth: frameDepth
      };
    }

    currentIndex += 1;
    return null;
  });
}

function findActionableIndexForElement(targetElement) {
  let currentIndex = 0;
  const root = document.body || document.documentElement;
  return visitActionableTree(root, 0, (element) => {
    if (element === targetElement) {
      return currentIndex;
    }

    currentIndex += 1;
    return null;
  });
}

function escapeCssIdentifier(value) {
  const text = String(value || '');
  if (typeof CSS !== 'undefined' && CSS && typeof CSS.escape === 'function') {
    return CSS.escape(text);
  }

  return text
    .replace(/[\0-\x1f\x7f]/g, (char) => '\\' + char.charCodeAt(0).toString(16) + ' ')
    .replace(/^-?\d/, (char) => '\\' + char.charCodeAt(0).toString(16) + ' ')
    .replace(/[^\w-]/g, (char) => '\\' + char);
}

function normalizeSimpleIdSelector(selector) {
  if (typeof selector !== 'string' || selector.length < 2 || selector[0] !== '#') {
    return null;
  }

  const rawId = selector.slice(1);
  if (!rawId || /\s/.test(rawId)) {
    return null;
  }

  const normalized = '#' + escapeCssIdentifier(rawId);
  return normalized === selector ? null : normalized;
}

function queryRootSelector(root, selector) {
  try {
    return root.querySelector(selector);
  } catch (error) {
    const normalized = normalizeSimpleIdSelector(selector);
    if (!normalized) {
      return null;
    }

    try {
      return root.querySelector(normalized);
    } catch (fallbackError) {
      return null;
    }
  }
}

function querySelectorAcrossScopes(selector, options) {
  const visitedDocs = new Set();
  const collectBoundaries = Boolean(options && options.collectBoundaries);
  const boundaries = [];

  function pushBoundary(status) {
    if (!collectBoundaries) {
      return;
    }

    boundaries.push({
      kind: 'iframe',
      status,
      available: false,
      url: null
    });
  }

  function searchRoot(root, frameDepth) {
    if (!root || typeof root.querySelector !== 'function') {
      return null;
    }

    const directMatch = queryRootSelector(root, selector);

    if (directMatch) {
      return {
        element: directMatch,
        frame_depth: frameDepth
      };
    }

    const elements = root.querySelectorAll ? root.querySelectorAll('*') : [];
    for (const element of elements) {
      if (element.shadowRoot) {
        const shadowMatch = searchRoot(element.shadowRoot, frameDepth);
        if (shadowMatch) {
          return shadowMatch;
        }
      }

      if (element.tagName === 'IFRAME') {
        try {
          const frameDoc = element.contentDocument;
          if (!frameDoc) {
            pushBoundary('unavailable');
            continue;
          }

          if (visitedDocs.has(frameDoc)) {
            continue;
          }

          visitedDocs.add(frameDoc);
          const frameMatch = searchRoot(frameDoc, frameDepth + 1);
          if (frameMatch) {
            return frameMatch;
          }
        } catch (error) {
          pushBoundary('cross_origin');
        }
      }
    }

    return null;
  }

  visitedDocs.add(document);
  const match = searchRoot(document, 0);
  if (collectBoundaries) {
    return {
      match,
      boundaries
    };
  }

  return match;
}

function resolveTargetMatch(config, options) {
  let selectorSearch = null;

  if (config.selector) {
    selectorSearch = querySelectorAcrossScopes(
      config.selector,
      options && options.collectBoundaries ? { collectBoundaries: true } : undefined
    );
    const selectorMatch =
      selectorSearch && selectorSearch.match !== undefined
        ? selectorSearch.match
        : selectorSearch;
    if (selectorMatch && selectorMatch.element && selectorMatch.element.isConnected) {
      if (typeof config.target_index === 'number') {
        const selectorActionableIndex = findActionableIndexForElement(selectorMatch.element);
        if (selectorActionableIndex !== config.target_index) {
          const indexedMatch = searchActionableIndex(config.target_index);
          if (indexedMatch && indexedMatch.element && indexedMatch.element.isConnected) {
            return {
              match: indexedMatch,
              selector_search: selectorSearch
            };
          }
        }
      }

      return {
        match: selectorMatch,
        selector_search: selectorSearch
      };
    }
  }

  if (typeof config.target_index === 'number') {
    return {
      match: searchActionableIndex(config.target_index),
      selector_search: selectorSearch
    };
  }

  return {
    match: null,
    selector_search: selectorSearch
  };
}

function resolveTargetElement(config) {
  const resolved = resolveTargetMatch(config);
  const match = resolved.match;
  if (match && match.element && match.element.isConnected) {
    return match.element;
  }

  return null;
}

function selectorExistsAcrossScopes(selector) {
  const match = querySelectorAcrossScopes(selector);
  return Boolean(match && match.element);
}