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

Method items

playwright/_impl/_web_storage.py:33–37  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

31 self._dispatcher_fiber = page._dispatcher_fiber
32
33 async def items(self) -> List[NameValue]:
34 result = await self._page._channel.send_return_as_dict(
35 "webStorageItems", None, {"kind": self._kind}
36 )
37 return (result or {}).get("items", [])
38
39 async def get_item(self, name: str) -> Optional[str]:
40 result = await self._page._channel.send_return_as_dict(

Callers 15

generateFunction · 0.45
print_entryMethod · 0.45
render_linksMethod · 0.45
serialize_python_typeMethod · 0.45
print_remainderMethod · 0.45
generateFunction · 0.45
signatureFunction · 0.45
argumentsFunction · 0.45
get_type_hintsFunction · 0.45
from_maybe_implMethod · 0.45
from_impl_dictMethod · 0.45
to_implMethod · 0.45

Calls 2

send_return_as_dictMethod · 0.80
getMethod · 0.45