3.8.5 • Published 5 years ago

kuben-appium-ios-simulator v3.8.5

Weekly downloads
1
License
Apache-2.0
Repository
github
Last release
5 years ago

appium-ios-simulator

NPM version Downloads Dependency Status devDependency Status

Build Status Coverage Status Greenkeeper badge

Appium API for dealing with iOS simulators. Allows the user to find locations of directories and applications, gives access to settings in order to read from and write to simulator plists, and allows control over starting and stopping simulators.

Note: Issue tracking for this repo has been disabled. Please use the main Appium issue tracker instead.

Usage

async getSimulator(udid)

This is the main entry of this module. This function returns a simulator object (see below) associated with the udid passed in. If an iOS simulator with the given udid does not exist already on this machine, it will throw an error.

If you want to create a new simulator, you can use the createDevice() method of node-simctl.

import { getSimulator } from 'kuben-appium-ios-simulator';

let sim = await getSimulator('DAE95172-0788-4A85-8D0D-5C85509109E1');

Xcode and iOS versions

See wikipedia for details of builds for Xcode versions.

iOSXcode 7.1 beta 3Xcode 7.0.1Xcode 6.4Xcode 6.3.2Xcode 6.2Xcode 6.1.1Xcode 6.0.1
7.111D167n/a11D16711D16711D16711D16711D167
8.0n/an/an/an/an/an/a12A365
8.112B41112B41112B41112B41112B41112B41112B411
8.212D50812D50812D50812D50812D508n/an/a
8.312F7012F7012F7012F6912F70n/an/a
8.412H14112H14112H14112H14112H141n/an/a
9.013A34413A340n/an/an/an/an/a
9.113B134n/an/an/an/an/an/a

file locations

iOS 9.3

  • base
    • ~/Library/Developer/CoreSimulator/Devices/identifier/data/
  • safari plists
    • base/Containers/Containers/Data/Application/identifier/<.com.apple.mobile_container_manager.metadata.plist, com.apple.mobilesafari>
  • locationd cache plists
    • base/Library/Caches/locationd/cache.plist
    • base/Library/Preferences/com.apple.locationd.plist
  • locationd clients plists
    • base/Library/Caches/locationd/clients.plist
  • user settings plists
    • base/Library/UserConfigurationProfiles/UserSettings.plist
    • base/Library/UserConfigurationProfiles/EffectiveUserSettings.plist
    • base/Library/UserConfigurationProfiles/PublicInfo/PublicEffectiveUserSettings.plist
  • other plists
    • base/Library/Preferences
  • logs
    • ~/Library/Logs/CoreSimulator/identifier/
    • sym linked to base/Library/Logs

iOS 9.2, 9.1, 9.0, 8.4, 8.3

  • base
    • ~/Library/Developer/CoreSimulator/Devices/identifier/data/
  • safari plists
    • base/Containers/Data/Application/identifier/<.com.apple.mobile_container_manager.metadata.plist, com.apple.mobilesafari>
  • locationd cache plists
    • base/Library/Caches/locationd/cache.plist
    • base/Library/Preferences/com.apple.locationd.plist
  • locationd clients plists
    • base/Library/Caches/locationd/clients.plist
  • user settings plists
    • base/Library/ConfigurationProfiles/UserSettings.plist
    • base/Library/ConfigurationProfiles/EffectiveUserSettings.plist
    • base/Library/ConfigurationProfiles/PublicInfo/PublicEffectiveUserSettings.plist
  • other plists
    • base/Library/Preferences
  • logs
    • ~/Library/Logs/CoreSimulator/identifier/
    • sym linked to base/Library/Logs

iOS 7.1

  • base
    • ~/Library/Developer/CoreSimulator/Devices/identifier/data/
  • safari
    • base/Applications/identifier/Library/Preferences/com.apple.mobilesafari.plist
  • locationCache
    • base/Library/Caches/locationd/cache.plist
    • base/Library/Preferences/com.apple.locationd.plist
  • locationClients
    • base/Library/Caches/locationd/clients.plist
  • userSettings
    • base/Library/ConfigurationProfiles/UserSettings.plist
    • base/Library/ConfigurationProfiles/EffectiveUserSettings.plist
    • base/Library/ConfigurationProfiles/PublicInfo/PublicEffectiveUserSettings.plist
  • other plists
    • base/Library/Preferences
  • logs
    • ~/Library/Logs/CoreSimulator/identifier/
    • sym linked to base/Library/Logs