The following error occurs on the redirected page
ProtocolError: Protocol error (Fetch.getResponseBody): Can only get response body on requests captured after headers received.
The error could be avoided by including 3XX in the StatusCode check.
if (!responseStatusCode) ->
if (!responseStatusCode || responseStatusCode === 302) {
The following error occurs on the redirected page
ProtocolError: Protocol error (Fetch.getResponseBody): Can only get response body on requests captured after headers received.
The error could be avoided by including 3XX in the StatusCode check.
if (!responseStatusCode)
->if (!responseStatusCode || responseStatusCode === 302) {