npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

appium-ios-simulator-vrunoa

v3.10.1-beta2

Published

iOS Simulator interface for Appium.

Downloads

4

Readme

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 '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.

| iOS | Xcode 7.1 beta 3 | Xcode 7.0.1 | Xcode 6.4 | Xcode 6.3.2 | Xcode 6.2 | Xcode 6.1.1 | Xcode 6.0.1 | |-----|------------------|----------------|-----------|-------------|-----------|-------------|-------------| | 7.1 | 11D167 | n/a | 11D167 | 11D167 | 11D167 | 11D167 | 11D167 | | 8.0 | n/a | n/a | n/a | n/a | n/a | n/a | 12A365 | | 8.1 | 12B411 | 12B411 | 12B411 | 12B411 | 12B411 | 12B411 | 12B411 | | 8.2 | 12D508 | 12D508 | 12D508 | 12D508 | 12D508 | n/a | n/a | | 8.3 | 12F70 | 12F70 | 12F70 | 12F69 | 12F70 | n/a | n/a | | 8.4 | 12H141 | 12H141 | 12H141 | 12H141 | 12H141 | n/a | n/a | | 9.0 | 13A344 | 13A340 | n/a | n/a | n/a | n/a | n/a | | 9.1 | 13B134 | n/a | n/a | n/a | n/a | n/a | n/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