MCPcopy Index your code
hub / github.com/microsoft/playwright-python / format_call_log

Function format_call_log

playwright/_impl/_connection.py:672–677  ·  view source on GitHub ↗
(log: Optional[List[str]])

Source from the content-addressed store, hash-verified

670
671
672def format_call_log(log: Optional[List[str]]) -> str:
673 if not log:
674 return ""
675 if len(list(filter(lambda x: x.strip(), log))) == 0:
676 return ""
677 return "\nCall log:\n" + "\n".join(log) + "\n"

Callers 3

_expect_implMethod · 0.90
to_be_okMethod · 0.90
dispatchMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected