Direct answer
Android Chrome pages and WebViews that call WebView.setWebContentsDebuggingEnabled(true) expose network events through the Chrome DevTools Protocol. TabQA attaches to those targets during mirroring, records status, timing, requests, and responses, and exports sanitized cURL or HAR.

Confirm whether the target is capturable
| Traffic source | Current support |
|---|---|
| Android Chrome page | Supported |
| Hybrid page with WebView debugging enabled | Supported |
| WebView without debugging | Not supported |
| Native libraries such as OkHttp or Retrofit | Not supported |
Diagnose a failed request
- Start mirroring and open the network panel.
- Reproduce the issue and filter requests by status or keyword.
- Review URL, method, status, timing, headers, body, and response.
- Copy a sanitized cURL to replay one request or export a sanitized HAR for engineering.
Storage and redaction boundaries
- A session keeps at most 1,000 requests and 256 KiB per text body side.
- Binary bodies are not retained.
- Common auth headers and sensitive key names are masked, but application-specific fields still need review.
- Capture runs in the local test session the user explicitly starts.