Table of Contents

Class DownloadWillBeginEventArgs

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

Fired when page is about to start a download. Deprecated. Use Browser.downloadWillBegin instead.

public sealed class DownloadWillBeginEventArgs : EventArgs
Inheritance
DownloadWillBeginEventArgs
Inherited Members

Properties

FrameId

Id of the frame that caused download to begin.

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

Property Value

string

Guid

Global unique identifier of the download.

[JsonPropertyName("guid")]
public string Guid { get; set; }

Property Value

string

SuggestedFilename

Suggested file name of the resource (the actual name of the file saved on disk may differ).

[JsonPropertyName("suggestedFilename")]
public string SuggestedFilename { get; set; }

Property Value

string

Url

URL of the resource being downloaded.

[JsonPropertyName("url")]
public string Url { get; set; }

Property Value

string