mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
f7857d27c4
* chore(docs): document HTTPRequest with TSDoc * doclint * example
40 lines
1.2 KiB
Markdown
40 lines
1.2 KiB
Markdown
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
|
|
[Home](./index.md) > [puppeteer](./puppeteer.md) > [HTTPRequest](./puppeteer.httprequest.md) > [redirectChain](./puppeteer.httprequest.redirectchain.md)
|
|
|
|
## HTTPRequest.redirectChain() method
|
|
|
|
<b>Signature:</b>
|
|
|
|
```typescript
|
|
redirectChain(): HTTPRequest[];
|
|
```
|
|
<b>Returns:</b>
|
|
|
|
[HTTPRequest](./puppeteer.httprequest.md)<!-- -->\[\]
|
|
|
|
the chain of requests - if a server responds with at least a single redirect, this chain will contain all requests that were redirected.
|
|
|
|
## Remarks
|
|
|
|
`redirectChain` is shared between all the requests of the same chain.
|
|
|
|
For example, if the website `http://example.com` has a single redirect to `https://example.com`<!-- -->, then the chain will contain one request:
|
|
|
|
```js
|
|
const response = await page.goto('http://example.com');
|
|
const chain = response.request().redirectChain();
|
|
console.log(chain.length); // 1
|
|
console.log(chain[0].url()); // 'http://example.com'
|
|
|
|
```
|
|
If the website `https://google.com` has no redirects, then the chain will be empty:
|
|
|
|
```js
|
|
const response = await page.goto('https://google.com');
|
|
const chain = response.request().redirectChain();
|
|
console.log(chain.length); // 0
|
|
|
|
```
|
|
|