Зачем получать данные ответа на pyppeteer
Я написал код Python, чтобы запросить какой-либо веб-сайт, он вернет данные XML
page.once('request', lambda request: asyncio.ensure_future(interception_get_request(page, request)))
await page.goto(url)```
async def interception_get_request(page: Page, request: Request):
response = await request.continue_({'method': 'GET', 'headers': {**request.headers, 'Content-Type': 'application/x-www-form-urlencoded'}})
await page.setRequestInterception(False)
Can i now how can i get response data