airtap-match-browsers
Advanced tools
Weekly downloads
Readme
Match browser manifests to a desired set of browsers.
Replacessauce-browsers
in conjunction withairtap-sauce-browsers
.
const sauce = require('airtap-sauce-browsers').promise
const match = require('airtap-match-browsers')
// Browsers available on Sauce Labs, as manifests
const available = await sauce()
// Browsers that we want, by manifest properties
const wanted = [
{ name: 'firefox', platform: 'linux' },
{ name: 'chrome', version: '78..latest' },
{ name: 'ios safari', version: '13' }
]
// Find matches
const manifests = match(available, wanted)
name
Required, must be a string. Matched loosely using browser-names
.
version
Defaults to "latest". Supported forms (compatible with Zuul & Airtap):
<start>..<end>
, where start
and end
are either a version or a keyword. This will result in one or more matches.-<n>..latest
, for example -1..latest
which means the last 2 stable versions.oldest..latest
excludes "dev" and latest..dev
includes e.g. latest, "beta" and "dev".If a manifest doesn't have a version
, it behaves like a prerelease.
platform
and any other (nested) propertyYet to document. A quick example:
const manifests = match(available, [{
name: 'chrome for android',
version: '10',
capabilities: {
appium: {
// Select a specific emulator (case-insensitive)
deviceName: 'google pixel 3a googleapi emulator'
}
}
}])
Yet to document.
Yet to document.
With npm do:
npm install airtap-match-browsers
MIT © 2020-present Vincent Weevers
FAQs
Match browser manifests to a desired set of browsers
The npm package airtap-match-browsers receives a total of 808 weekly downloads. As such, airtap-match-browsers popularity was classified as not popular.
We found that airtap-match-browsers demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket installs a Github app to automatically flag issues on every pull request and report the health of your dependencies. Find out what is inside your node modules and prevent malicious activity before you update the dependencies.