New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

assemble-driver

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

assemble-driver

Standalone builder for Selenium-webdriver.

latest
Source
npmnpm
Version
1.0.2
Version published
Maintainers
1
Created
Source

assemble

Standalone builder for Selenium-webdriver. Assemble makes it easy to get a webdriver instance with minimal configurations.

Install

$ npm install --save assemble-driver

Usage

const buildConfig = {
	server: 'http://localhost:4444/wd/hub',
	browser: 'Chrome'
}
const assemble = require('assemble-driver');

assemble(buildConfig).webdriver();
//=> Selenium WebDriver instance

API

assemble([buildConfig])

buildConfig

These options should be a json format.

OptionTypeDefaultDescription
serverstringhttp://localhost:4444/wd/hubTarget host for test.
browserstringFirefoxTarget browser.
browser_versionstring~Browser version. Will use current latest version if not set.
osstring~Operating System.
os_versionstring~OS version.
devicestring~Device.
debugbooleanfalseDebug mode.
videobooleantrueRecord browser. (browserstack)
projectstringProjectAssembleProject Name
buildstring(today's date)Build Name
credsObject~Cloud or grid creds: {user, key}

License

MIT ©

FAQs

Package last updated on 15 Jun 2017

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