MCPcopy
hub / github.com/ChromeDevTools/chrome-devtools-mcp / handleActionError

Function handleActionError

src/tools/input.ts:36–44  ·  view source on GitHub ↗
(error: unknown, uid: string)

Source from the content-addressed store, hash-verified

34 );
35
36function handleActionError(error: unknown, uid: string) {
37 logger?.('failed to act using a locator', error);
38 throw new Error(
39 `Failed to interact with the element with uid ${uid}. The element did not become interactive within the configured timeout.`,
40 {
41 cause: error,
42 },
43 );
44}
45
46async function selectNativeSelectOption(handle: ElementHandle<Element>) {
47 const selectHandle = await handle.evaluateHandle(node => {

Callers 2

input.tsFile · 0.85
fillFormElementFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…