UNPKG

nightwatch

Version:

Easy to use Node.js based End-to-End testing solution for browser based apps and websites, using the W3C WebDriver API.

34 lines (25 loc) 582 B
const BaseWDServer = require('./base-wd-server.js'); class ChromeDriver extends BaseWDServer { static get supportsConcurrency() { return true; } static get serviceName() { return 'ChromeDriver'; } get npmPackageName() { return 'chromedriver'; } get outputFile() { return 'chromedriver.log'; } get defaultPort() { return 9515; } get serviceDownloadUrl() { return 'https://sites.google.com/a/chromium.org/chromedriver/downloads'; } get serviceName() { return ChromeDriver.serviceName; } } module.exports = ChromeDriver;