Table of Contents

Class ContextRealtimeData

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

Fields in AudioContext that change in real-time.

public sealed class ContextRealtimeData
Inheritance
ContextRealtimeData
Inherited Members

Properties

CallbackIntervalMean

A running mean of callback interval.

[JsonPropertyName("callbackIntervalMean")]
public double CallbackIntervalMean { get; set; }

Property Value

double

CallbackIntervalVariance

A running variance of callback interval.

[JsonPropertyName("callbackIntervalVariance")]
public double CallbackIntervalVariance { get; set; }

Property Value

double

CurrentTime

The current context time in second in BaseAudioContext.

[JsonPropertyName("currentTime")]
public double CurrentTime { get; set; }

Property Value

double

RenderCapacity

The time spent on rendering graph divided by render quantum duration, and multiplied by 100. 100 means the audio renderer reached the full capacity and glitch may occur.

[JsonPropertyName("renderCapacity")]
public double RenderCapacity { get; set; }

Property Value

double