在 XCTest (UITesting) 中获取设备名称
Get Device name in XCTest (UITesting)
当 运行 为我的目标进行 UITesting 时,我很难找到设备名称。下面的代码 returns MacBook 在模拟器上 运行 时的名称。
UIDevice.current.name
那是因为你 运行 在你的 Mac 上,这就是它的名字。
UIDevice.current.name
returns
The name identifying the device.
查看参考资料 here,了解 UIDevice 必须使用哪些值来识别自身和操作系统。
这就是获取设备名称的方法。
当 运行 为我的目标进行 UITesting 时,我很难找到设备名称。下面的代码 returns MacBook 在模拟器上 运行 时的名称。
UIDevice.current.name
那是因为你 运行 在你的 Mac 上,这就是它的名字。
UIDevice.current.name
returns
The name identifying the device.
查看参考资料 here,了解 UIDevice 必须使用哪些值来识别自身和操作系统。
这就是获取设备名称的方法。