Playwright Trace CLI Inspect trace files produced by Playwright tests without opening a browser. Workflow 1. Start with to extract the trace and see its metadata. 2. Use to see all actions with their action IDs. 3. Use to drill into a specific action — see parameters, logs, source location, and available snapshots. 4. Use , , or for cross-cutting views. 5. Use to get the DOM snapshot, or run a browser command against it. 6. Use to remove the extracted trace data when done. All commands after operate on the currently opened trace — no need to pass the trace file again. Opening a new trace repl…