How to use the appium-ios-simulator.getDeviceString function in appium-ios-simulator

To help you get started, we’ve selected a few appium-ios-simulator examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github appium / appium-ios-driver / lib / device.js View on Github external
async function getAdjustedDeviceName (opts) {
  opts._adjustedDeviceName = opts._adjustedDeviceName || await getDeviceString(opts);
  return opts._adjustedDeviceName;
}