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

Method get

playwright/_impl/_fetch.py:188–215  ·  view source on GitHub ↗
(
        self,
        url: str,
        params: ParamsType = None,
        headers: Headers = None,
        data: DataType = None,
        form: FormType = None,
        multipart: MultipartType = None,
        timeout: float = None,
        failOnStatusCode: bool = None,
        ignoreHTTPSErrors: bool = None,
        maxRedirects: int = None,
        maxRetries: int = None,
    )

Source from the content-addressed store, hash-verified

186 )
187
188 async def get(
189 self,
190 url: str,
191 params: ParamsType = None,
192 headers: Headers = None,
193 data: DataType = None,
194 form: FormType = None,
195 multipart: MultipartType = None,
196 timeout: float = None,
197 failOnStatusCode: bool = None,
198 ignoreHTTPSErrors: bool = None,
199 maxRedirects: int = None,
200 maxRetries: int = None,
201 ) -> "APIResponse":
202 return await self.fetch(
203 url,
204 method="GET",
205 params=params,
206 headers=headers,
207 data=data,
208 form=form,
209 multipart=multipart,
210 timeout=timeout,
211 failOnStatusCode=failOnStatusCode,
212 ignoreHTTPSErrors=ignoreHTTPSErrors,
213 maxRedirects=maxRedirects,
214 maxRetries=maxRetries,
215 )
216
217 async def patch(
218 self,

Callers 3

new_contextMethod · 0.45
security_detailsMethod · 0.45
server_addrMethod · 0.45

Calls 1

fetchMethod · 0.95

Tested by

no test coverage detected