LoginSignup
1
2

More than 5 years have passed since last update.

Puppeteerでステータスコード

Posted at

response.headers()

response.headers().status;// return string

ページによってstatusが無い場合があったので以下の方が良さそう。

response.status()

response.status();// return int

response.ok()

response.ok();// return boolean, true = 200-299
1
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2