Table of Contents

Class GetHeapUsageCommandResponse

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

Response for Returns the JavaScript heap usage. It is the total usage of the corresponding isolate not scoped to a particular Runtime.

public sealed class GetHeapUsageCommandResponse : ICommandResponse<GetHeapUsageCommandSettings>, ICommandResponse
Inheritance
GetHeapUsageCommandResponse
Implements
Inherited Members
Extension Methods

Properties

BackingStorageSize

Size in bytes of backing storage for array buffers and external strings.

[JsonPropertyName("backingStorageSize")]
public double BackingStorageSize { get; set; }

Property Value

double

EmbedderHeapUsedSize

Used size in bytes in the embedder's garbage-collected heap.

[JsonPropertyName("embedderHeapUsedSize")]
public double EmbedderHeapUsedSize { get; set; }

Property Value

double

TotalSize

Allocated JavaScript heap size in bytes.

[JsonPropertyName("totalSize")]
public double TotalSize { get; set; }

Property Value

double

UsedSize

Used JavaScript heap size in bytes.

[JsonPropertyName("usedSize")]
public double UsedSize { get; set; }

Property Value

double