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-driver

v4.8.3

Published

Appium driver for iOS

Downloads

166,178

Readme

Appium iOS Driver

NPM version Downloads Dependency Status devDependency Status

Build Status

Appium iOS Driver is a test automation tool for iOS devices up to an including iOS 9.3. Appium iOS Driver automates native, hybrid and mobile web apps, tested on simulators and real devices, using Apples' UI Automation framework. Appium iOS Driver is part of the Appium mobile test automation tool.

To automate iOS devices with a version of iOS greater than 9.3, see appium-xcuitest-driver.

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

iOS Support

Appium iOS Driver supports iOS versions 8+

Installation

npm install appium-ios-driver

Authorization for automation support

On some systems Instruments is not authorized to automate iOS devices. This package comes with a little utility that pre-authorizes Instruments to run UIAutomation scripts.

Running the authorization script will bring up an alert that prompts the user to input their sudo password. There is no way around this.

Command line usage

If this package has been installed globally (either as part of an Appium installation, with npm install -g appium, or individually, with npm install -g appium-ios-driver), a global command line utility will be installed, so you simply need to invoke it:

$ authorize-ios

Programmatic usage

To invoke programmatically (in, for instance, a test runner) is as simple as importing and invoking the authorize function, which returns a Promise:

npm install -S appium-ios-driver
import { authorize } from 'appium-ios-driver';

authorize()
  .then(function () {
    console.log('iOS authorized!');
  })
  .catch(function (err) {
    console.error(`Error authorizing: ${err.message}`);
  });

Usage

Import iOS Driver, set desired capabilities and create a session:

import { IosDriver } from `appium-ios-driver`

let defaultCaps = {
  app: 'path/to/your.app',
  platformName: 'iOS',
  deviceName: 'iPhone 6'
};

let driver = new IosDriver();
await driver.createSession(defaultCaps);

Run commands:

await driver.setOrientation('LANDSCAPE');
console.log(await driver.getOrientation()); // -> 'LANDSCAPE'

Commands

| Command | |----------------------------| | active | | asyncScriptTimeout | | back | | background | | checkForAlert | | clear | | click | | clickButtonToLaunchSafari | | clickCoords | | clickCurrent | | clickWebCoords | | closeAlertBeforeTest | | closeApp | | closeWindow | | convertElementsForAtoms | | deleteCookie | | deleteCookies | | elementDisplayed | | elementEnabled | | elementSelected | | execute | | executeAsync | | executeAtom | | executeAtomAsync | | executeMobile | | findElOrEls | | findUIElementOrElements | | findUIElementsByXpath | | findWebElementOrElements | | flick | | flickElement | | forward | | getAlertText | | getAtomsElement | | getAttribute | | getContexts | | getContextsAndViews | | getCookies | | getCssProperty | | getCurrentContext | | getDeviceTime | | getLatestWebviewContextForTitle | | getLocation | | getLocationInView | | getLog | | getLogTypes | | getName | | getOrientation | | getPageSource | | getScreenshot | | getSimFileFullPath | | getSize | | getText | | getUrl | | getWindowHandle | | getWindowHandles | | getWindowSize | | getWindowRect | | handleTap | | hideKeyboard | | initAutoWebview | | isWebContext | | keys | | launchApp | | listWebFrames | | lock | | mobileRotation | | mobileScroll | | mobileShake | | mobileWebNav | | moveTo | | nativeTap | | nativeWebTap | | navToInitialWebview | | navToViewThroughFavorites | | navToViewWithTitle | | onPageChange | | parseElementResponse | | parseExecuteResponse | | parseTouch | | performMultiAction | | performTouch | | postAcceptAlert | | postDismissAlert | | pullFile | | pullFolder | | pushFile | | receiveAsyncResponse | | refresh | | setAlertText | | setContext | | setCookie | | setFrame | | setGeoLocation | | setOrientation | | setUrl | | setValue | | setValueImmediate | | setWindow | | stopRemote | | submit | | title | | translateWebCoords | | typeAndNavToUrl | | useAtomsElement | | useNewSafari | | waitForAtom | | webContextIndex | | webFlickElement | | xySpeedFlick |

Insecure Features

These can be enabled when running this driver through Appium, via the --allow-insecure or --relaxed-security flags.

|Feature Name|Description| |------------|-----------| |get_server_logs|Allows retrieving of Appium server logs via the Webdriver log interface|

Watch code for changes, re-transpile and run unit tests:

gulp watch

Test

For tests, the default sims required are an iOS 9.2 iPhone 6 and iPad 2, which you can create as follows if one doesn't already exist on your system (use xcrun simctl list to check first):

xcrun simctl create "iPhone 6" "iPhone 6" 9.2
xcrun simctl create "iPad 2" "iPad 2" 9.2

Then you can run unit and e2e tests:

// unit tests:
gulp once

// e2e tests - specify your desired iOS version, for example iOS8.4:
DEVICE=ios84 gulp e2e-test