Skip to main content

Interested in sponsoring the site? [find out more]

blog title image

1 minute read - Web Testing

URL Query Param Viewing

Mar 2, 2019

I was testing a system that created particularly long URLs that were hard to read because there were so many query parameters. I needed a way to fix that.

I was just about to write a small tool to parse the url and show me the query parameters in a nice view, and then thought to ask myself… can the dev tools do this already?

Yes they can.

  • Chrome - network tab, click on the request, headers, look at the bottom to see the query params
  • Safari - network tab, click on the request, headers, look at the bottom to see the query params
  • Edge - network tab, click on the request, parameters, to see the query params
  • Firefox - network tab, click on the request, params, to see the query params

A quick tip for easily viewing URL query parameters.

Free Video Showing How to View Query Params

Watch on YouTube

If you like this content then you might be interested in my Patreon Community. I create exclusive content multiple times a week. Gain access to Patreon only content and online training courses for as little as $1 per month. Learn more about the EvilTester Patreon Community.

<< Software Testing Podcast - What is Software Testing? - The Evil Tester Show Episode 008
Are there any programming Katas related to testing? >>