MCPcopy Create free account
hub / github.com/ChromeDevTools/chrome-devtools-mcp / redirectChain

Function redirectChain

tests/utils.ts:200–205  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

198 );
199 },
200 redirectChain(): HTTPRequest[] {
201 // Puppeteer returns a fresh copy on every call (HTTPRequest returns
202 // `this._redirectChain.slice()`); mirror that so formatters can't share
203 // and accidentally mutate the same array across calls.
204 return [...(options.redirectChain ?? [])];
205 },
206 isNavigationRequest() {
207 return options.navigationRequest ?? false;
208 },

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected