IDeviceInfo Interface
Information about the available mobile device returned from Digital Lab (UFT Mobile).

C# Syntax

public interface IDeviceInfo 
Public Properties
 NameDescription
PropertyFleetType

Supported in UFT Developer version 24.2 and later

The fleetType of the device, as defined on Digital Lab (UFT Mobile).

The fleetType is relevant only when the device is hosted by OpenText or stored on an AWS farm. (DeviceSource=Hosted or AmazonDeviceFarm)

C# Syntax

string FleetType {get;}

Possible values: Any (default), Public, or Private.

PropertyIdThe ID of the device in Digital Lab (UFT Mobile).  
PropertyLocation

Supported in UFT Developer version 24.2 and later

The geographical location of the public device, as defined on Digital Lab (UFT Mobile).

The location is relevant only when the DeviceSource is Hosted and the fleetType is Public.

C# Syntax

 string Location {get;}

Possible values: Any (default) or a string representing the geographic location.

PropertyManufacturerThe manufacturer of the device.  
PropertyModelThe model name of the device.  
PropertyNameThe name of the device as defined in Digital Lab (UFT Mobile).  
PropertyOSTypeThe operating system currently running on the device.  
PropertyOSVersionThe version of the operating system currently running on the device.  
Top