UNPKG

chrec-core

Version:

ChRec's core business logic and model for testing HTML locator robustness

13 lines (12 loc) 333 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); class Settings { constructor(seleniumServerUrl, browsers) { this.seleniumServerUrl = seleniumServerUrl; this.browsers = browsers; } addBrowser(browser) { this.browsers.push(browser); } } exports.Settings = Settings;