使用AppiumBooster打造心目中理想的自动化测试框架(24)

发表于:2016-09-12来源:debugtalk作者:Leo Lee点击数: 标签:Appium
其中, device_id / device_type_id / runtime_id 这些属性值可以通过执行 xcrun simctl list 命令获取得到。 1 2 3 4 5 6 7 8 9 10 11 12 13 14 $ xcrun simctl list == Device Types == iPho

其中,device_id/device_type_id/runtime_id这些属性值可以通过执行xcrun simctl list命令获取得到。


					
1
2
3
4
5
6
7
8
9
10
11
12
13
14

					
$ xcrun simctl list
== Device Types ==
iPhone 5s (com.apple.CoreSimulator.SimDeviceType.iPhone-5s)
iPhone 6 (com.apple.CoreSimulator.SimDeviceType.iPhone-6)
== Runtimes ==
iOS 8.4 (8.4 - 12H141) (com.apple.CoreSimulator.SimRuntime.iOS-8-4)
iOS 9.3 (9.3 - 13E230) (com.apple.CoreSimulator.SimRuntime.iOS-9-3)
== Devices ==
-- iOS 8.4 --
iPhone 5s (E1BD9CC5-8E95-408F-849C-B0C6A44D669A) (Shutdown)
-- iOS 9.3 --
iPhone 5s (BAFEFBE1-3ADB-45C4-9C4E-E3791D260524) (Shutdown)
iPhone 6 (F23B3F85-7B65-4999-9F1C-80111783F5A5) (Shutdown)
== Device Pairs ==

原文转自:http://debugtalk.com/post/build-ideal-app-automation-test-framework/