MCPcopy Create free account
hub / github.com/microsoft/Webwright / Environment

Class Environment

src/webwright/__init__.py:53–64  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

51
52
53class Environment(Protocol):
54 config: Any
55
56 def prepare(self, **kwargs) -> None: ...
57
58 def execute(self, action: dict[str, Any], cwd: str = "") -> dict[str, Any]: ...
59
60 def get_template_vars(self, **kwargs) -> dict[str, Any]: ...
61
62 def serialize(self) -> dict[str, Any]: ...
63
64 def close(self) -> None: ...
65
66
67class Agent(Protocol):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected