Class GPUInfo
- Namespace
- OpenQA.Selenium.DevTools.V148.SystemInfo
- Assembly
- Selenium.WebDriver.dll
Provides information about the GPU(s) on the system.
public sealed class GPUInfo
- Inheritance
-
GPUInfo
- Inherited Members
Properties
AuxAttributes
An optional dictionary of additional GPU related attributes.
[JsonPropertyName("auxAttributes")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public object? AuxAttributes { get; set; }
Property Value
Devices
The graphics devices on the system. Element 0 is the primary GPU.
[JsonPropertyName("devices")]
public GPUDevice[] Devices { get; set; }
Property Value
DriverBugWorkarounds
An optional array of GPU driver bug workarounds.
[JsonPropertyName("driverBugWorkarounds")]
public string[] DriverBugWorkarounds { get; set; }
Property Value
- string[]
FeatureStatus
An optional dictionary of graphics features and their status.
[JsonPropertyName("featureStatus")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public object? FeatureStatus { get; set; }
Property Value
VideoDecoding
Supported accelerated video decoding capabilities.
[JsonPropertyName("videoDecoding")]
public VideoDecodeAcceleratorCapability[] VideoDecoding { get; set; }
Property Value
VideoEncoding
Supported accelerated video encoding capabilities.
[JsonPropertyName("videoEncoding")]
public VideoEncodeAcceleratorCapability[] VideoEncoding { get; set; }