Class SystemInfo.GetInfoResponse
- java.lang.Object
-
- org.openqa.selenium.devtools.systeminfo.SystemInfo.GetInfoResponse
-
- Enclosing class:
- SystemInfo
public static class SystemInfo.GetInfoResponse extends java.lang.Object
-
-
Constructor Summary
Constructors Constructor Description GetInfoResponse(GPUInfo gpu, java.lang.String modelName, java.lang.String modelVersion, java.lang.String commandLine)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getCommandLine()
The command line string used to launch the browser.GPUInfo
getGpu()
Information about the GPUs on the system.java.lang.String
getModelName()
A platform-dependent description of the model of the machine.java.lang.String
getModelVersion()
A platform-dependent description of the version of the machine.
-
-
-
Constructor Detail
-
GetInfoResponse
public GetInfoResponse(GPUInfo gpu, java.lang.String modelName, java.lang.String modelVersion, java.lang.String commandLine)
-
-
Method Detail
-
getGpu
public GPUInfo getGpu()
Information about the GPUs on the system.
-
getModelName
public java.lang.String getModelName()
A platform-dependent description of the model of the machine. On Mac OS, this is, for example, 'MacBookPro'. Will be the empty string if not supported.
-
getModelVersion
public java.lang.String getModelVersion()
A platform-dependent description of the version of the machine. On Mac OS, this is, for example, '10.1'. Will be the empty string if not supported.
-
getCommandLine
public java.lang.String getCommandLine()
The command line string used to launch the browser. Will be the empty string if not supported.
-
-