class Playwright::Route
def fetch(
**Details**
```
page.route("https://dog.ceo/api/breeds/list/all", handle)
route.fulfill(response=response, json=json)
json["message"]["big_red_dog"] = []
json = response.json()
response = route.fetch()
def handle(route):
```python sync
**Usage**
could be modified and then fulfilled.
Performs the request and fetches result without fulfilling it, so that the response
def fetch( headers: nil, maxRedirects: nil, method: nil, postData: nil, timeout: nil, url: nil) wrap_impl(@impl.fetch(headers: unwrap_impl(headers), maxRedirects: unwrap_impl(maxRedirects), method: unwrap_impl(method), postData: unwrap_impl(postData), timeout: unwrap_impl(timeout), url: unwrap_impl(url))) end