pub fn parse_dom_ready(eval_output: &str) -> boolExpand description
Interpret the output of evaluate_script(() => document.readyState) as
DOM-readiness. chrome-devtools-mcp returns the JSON result wrapped in text
(verified live: a fenced ```json block containing "complete"); only the
"complete" readyState is treated as ready ("loading"/"interactive" are
not). Matching the quoted token avoids false positives from surrounding prose.