New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

appiumx-helios-driver

Package Overview
Dependencies
Maintainers
1
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

appiumx-helios-driver

Appium bridge for Helios devices

  • 0.0.11-beta.2
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
4
decreased by-42.86%
Maintainers
1
Weekly downloads
 
Created
Source

Appium Helios Driver

Appium Helios Driver is a test automation tool for Helios apps

Installation

npm install appiumx-helios-driver

Usage

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

import { HeliosDriver } from `appiumx-helios-driver`

let defaultCaps = {
  platformName: 'Helios'
};

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

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

npm run test

Test

You can run unit and e2e tests:

// unit tests:
npm run test

// e2e tests
npm run e2e-test

Go server piece (temporary?)

In order for the driver to talk to a running moneymobilex app, we need to run the go server.

$ cd go-server
$ go build
$ go run *.go

After launching an app, navigate to http://localhost:4666 and you should see your device there. Grab your device's id (or mac address) and use it to create a session with appium (as a capability).

The following capabilities will talk to the Helios driver correctly.

Capabilities

{
 "platformName": "Helios",
 "uuid": "a4%3A5e%3A60%3Ac9%3A2e%3Ac7"
}

Keywords

FAQs

Package last updated on 17 Apr 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc