chobitsu
chobitsu copied to clipboard
Chrome devtools protocol JavaScript implementation
`FetchRequest` is expected to be constucted with only single `Request` object as the first parameter of the constructor. However, `FetchRequest` only extracts `url` from `Request` without `headers` and `method` for...
https://github.com/liriliri/chobitsu/blob/ead5067da71fd0622722c063edc29c7d124c9da4/src/domains/Network.ts#L157
https://github.com/liriliri/chobitsu/blob/6156d2b681c8204daf6ee179bcec01243b7e8cfd/src/lib/nodeManager.ts#L73-L77 ### **In mobile & electron** When node is `iframe`,i think the `node.childNodes` must be `node.contentDocument.childNodes` ``` js export function getChildNodes(node: any, depth: number) { let childNodes = filterNodes(node.childNodes) if...