airtap-manual

1.0.0 • Public • Published

airtap-manual

Browser provider for manually opened browser. Prints a URL to open by hand.

npm status node Travis build status JavaScript Style Guide

Table of Contents

Usage

Programmatic

const Manual = require('airtap-manual')
const provider = new Manual()
 
// Get a list of desired browsers (there's just 1 here)
const wanted = [{ name: 'manual' }]
const manifests = await provider.manifests(wanted)
 
// Instantiate a browser
const target = { url: 'http://localhost:3000' }
const browser = provider.browser(manifests[0], target)
 
await browser.open()

With Airtap

providers:
  - airtap-manual
 
browsers:
  name: manual

API

Manual()

Constructor. Returns an instance of browser-provider.

Install

With npm do:

npm install airtap-manual

License

MIT © 2020-present Airtap contributors

Package Sidebar

Install

npm i airtap-manual

Weekly Downloads

85

Version

1.0.0

License

MIT

Unpacked Size

4.05 kB

Total Files

4

Last publish

Collaborators

  • vweevers