Table of Contents

Class AuthRequiredEventArgs

Namespace
OpenQA.Selenium.DevTools.V146.Fetch
Assembly
Selenium.WebDriver.dll

Issued when the domain is enabled with handleAuthRequests set to true. The request is paused until client responds with continueWithAuth.

public sealed class AuthRequiredEventArgs : EventArgs
Inheritance
AuthRequiredEventArgs
Inherited Members

Properties

AuthChallenge

Details of the Authorization Challenge encountered. If this is set, client should respond with continueRequest that contains AuthChallengeResponse.

[JsonPropertyName("authChallenge")]
public AuthChallenge AuthChallenge { get; set; }

Property Value

AuthChallenge

FrameId

The id of the frame that initiated the request.

[JsonPropertyName("frameId")]
public string FrameId { get; set; }

Property Value

string

Request

The details of the request.

[JsonPropertyName("request")]
public Request Request { get; set; }

Property Value

Request

RequestId

Each request the page makes will have a unique id.

[JsonPropertyName("requestId")]
public string RequestId { get; set; }

Property Value

string

ResourceType

How the requested resource will be used.

[JsonPropertyName("resourceType")]
public ResourceType ResourceType { get; set; }

Property Value

ResourceType