When redirected, how to see the URL you´re redirected to?

This has been answered on Twitter: https://twitter.com/ambertests/status/1153709610768859136

After you make the request, the redirect url will be in the temporary request headers

one can access them via request.headers[“referer”]

1 Like