Skip to content

Lab, Viewing Requests

We can use the Chrome Developer Tools to see requests.

  1. Open a Google Chrome browser.
  2. Open Developer Tools using either
  3. View->Developer->Developer Tools
  4. ⌘⌥ I (Command Option India)
  5. You can choose where the Tools display by clicking the options icon.

options

  1. Select the Network tab.
  2. In the browser's address bar, type https://www.wikipedia.org/.
  3. Click the first option, www.wikipedia.org.

wikipedia.org request 1. The Headers tab shows the GET request your browser made to request the Web page.

wikipedia.org request

  1. The Response tab shows the data returned, which is HTML text.

wikipedia.org request

Skill++

Chrome Developer Tools is full of excellent widgets to help you build Web applications.


Prev -- Up