OpenText™ Functional Testing for Developers JavaScript SDK

Mobile. Lab

new Lab()

The OpenText Functional Testing Lab, where you manage users, applications, and devices.

Methods

getConfig() → {Promise.<Mobile.MobileCenterConfiguration>}

Returns the MobileCenter connection configuration.
Returns:
a promise that is fulfilled with the OpenText Functional Testing Lab connection configuration.
Type
Promise.<Mobile.MobileCenterConfiguration>

getDeviceList() → {Promise.<Array.<Mobile.DeviceInfo>>}

Returns an array of device information describing all the devices in the OpenText Functional Testing Lab. The device information can be passed to the lockDeviceByInfo function in order to lock the appropriate device.
Returns:
a promise that is fulfilled with an array of device information describing all the devices in the OpenText Functional Testing Lab.
Type
Promise.<Array.<Mobile.DeviceInfo>>

getDevicesWithOpenViewers() → {Promise.<Mobile.DeviceTO>}

Returns a list of all devices with an open viewer.
Returns:
a promise that is fulfilled with the list of all devices with an open viewer.
Type
Promise.<Mobile.DeviceTO>

lockDevice(description, appsToInstallopt, deviceSourceopt) → {Promise.<Mobile.DeviceTO>}

Obtains a device from the OpenText Functional Testing Lab and locks it, so that only OpenText Functional Testing for Developers can perform actions on it.
Parameters:
Name Type Attributes Description
description Mobile.Device The description of the device.
appsToInstall Array.<Mobile.Application> <optional>
An Application array of applications to install on the device.
deviceSource Mobile.DeviceSource <optional>
The source location of the device. You can use the DeviceSource object or just pass 'mobile_center', 'on_premises', 'amazon_device_farm' or 'any' as a string.
Returns:
a promise that is fulfilled with the locked device.
Type
Promise.<Mobile.DeviceTO>

lockDeviceById(deviceID) → {Promise.<Mobile.DeviceTO>}

Obtains a device from the OpenText Functional Testing Lab by deviceID and locks it, so that only OpenText Functional Testing for Developers can perform actions on it.
Parameters:
Name Type Description
deviceID string The device ID used by OpenText Functional Testing Lab.
Returns:
a promise that is fulfilled with the locked device.
Type
Promise.<Mobile.DeviceTO>

lockDeviceByInfo(deviceInfo) → {Promise.<Mobile.DeviceTO>}

Obtains a device from the OpenText Functional Testing Lab by device information and locks it, so that only OpenText Functional Testing for Developers can perform actions on it.
Note: The device information is the structure returned by the getDeviceList function.
Parameters:
Name Type Description
deviceInfo Mobile.DeviceInfo The device information of the device to lock.
Returns:
a promise that is fulfilled with the locked device.
Type
Promise.<Mobile.DeviceTO>

lockDeviceByName(deviceName) → {Promise.<Mobile.DeviceTO>}

Obtains a device from the OpenText Functional Testing Lab by device name and locks it, so that only OpenText Functional Testing for Developers can perform actions on it.
Parameters:
Name Type Description
deviceName string The logical name that OpenText Functional Testing Lab uses to identify the device.
Returns:
a promise that is fulfilled with the locked device.
Type
Promise.<Mobile.DeviceTO>

lockDeviceWithOptions(description, sessionOptions) → {Promise.<Mobile.DeviceTO>}

Obtains a device from the OpenText Functional Testing Lab and locks it, so that only the current test can perform actions on it.
Parameters:
Name Type Description
description Mobile.Device The description of the device.
sessionOptions Object the session options to use.
Properties
Name Type Attributes Default Description
appsToInstall Array.<Mobile.Application> <optional>
An Application array of applications to install on the device.
deviceSource Mobile.DeviceSource <optional>
The source location of the device. You can use the DeviceSource object or just pass 'mobile_center', 'on_premises', 'amazon_device_farm' or 'any' as a string.
collectLogs bool <optional>
true indicates whether logs should be collected in this session.
collectVitals Object <optional>
Defines which device vitals should be collected in this session.
Properties
Name Type Attributes Default Description
cpu bool <optional>
false indicates whether to collect the device CPU usage.
memory bool <optional>
false indicates whether to collect the device memory usage.
freeMemory bool <optional>
false indicates whether to collect the device free memory.
Returns:
a promise that is fulfilled with the locked device.
Type
Promise.<Mobile.DeviceTO>