()
| 224 | params = locals_to_params(locals()) |
| 225 | |
| 226 | async def inner() -> Page: |
| 227 | context = await self.new_context(**params) |
| 228 | page = await context.new_page() |
| 229 | page._owned_context = context |
| 230 | context._owner_page = page |
| 231 | return page |
| 232 | |
| 233 | return await self._connection.wrap_api_call(inner, title="Create page") |
| 234 |
nothing calls this directly
no test coverage detected