You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Summary: The HeadlessBrowserRequestSender class does not honor the TestSettings.FollowHttpRedirectionResponses property when it is set to false. Despite the expectation that HTTP redirection responses should not be followed when this property is disabled, the class continues to process redirections as if the property were enabled.
Steps to Reproduce:
Set TestSettings.FollowHttpRedirectionResponses to false.
Initiate a request that results in an HTTP redirection response using the HeadlessBrowserRequestSender class.
Observe that the redirection response is followed, contrary to the property setting.
Expected Behavior: When TestSettings.FollowHttpRedirectionResponses is set to false, the HeadlessBrowserRequestSender class should not follow any HTTP redirection responses.
Actual Behavior: The HeadlessBrowserRequestSender class follows the HTTP redirection response even when TestSettings.FollowHttpRedirectionResponses is disabled.