Table of Contents

Class SharedStorageWorkletOperationExecutionFinishedEventArgs

Namespace
OpenQA.Selenium.DevTools.V147.Storage
Assembly
Selenium.WebDriver.dll

A shared storage run or selectURL operation finished its execution. The following parameters are included in all events.

public sealed class SharedStorageWorkletOperationExecutionFinishedEventArgs : EventArgs
Inheritance
SharedStorageWorkletOperationExecutionFinishedEventArgs
Inherited Members

Properties

ExecutionTime

Time, in microseconds, from start of shared storage JS API call until end of operation execution in the worklet.

[JsonPropertyName("executionTime")]
public long ExecutionTime { get; set; }

Property Value

long

FinishedTime

Time that the operation finished.

[JsonPropertyName("finishedTime")]
public double FinishedTime { get; set; }

Property Value

double

MainFrameId

DevTools Frame Token for the primary frame tree's root.

[JsonPropertyName("mainFrameId")]
public string MainFrameId { get; set; }

Property Value

string

Method

Enum value indicating the Shared Storage API method invoked.

[JsonPropertyName("method")]
public SharedStorageAccessMethod Method { get; set; }

Property Value

SharedStorageAccessMethod

OperationId

ID of the operation call.

[JsonPropertyName("operationId")]
public string OperationId { get; set; }

Property Value

string

OwnerOrigin

Serialization of the origin owning the Shared Storage data.

[JsonPropertyName("ownerOrigin")]
public string OwnerOrigin { get; set; }

Property Value

string

WorkletTargetId

Hex representation of the DevTools token used as the TargetID for the associated shared storage worklet.

[JsonPropertyName("workletTargetId")]
public string WorkletTargetId { get; set; }

Property Value

string