UNPKG

nightwatch

Version:

Easy to use Node.js based end-to-end testing solution for web applications using the W3C WebDriver API.

24 lines (23 loc) 479 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const BrowserName = module.exports = { get CHROME() { return 'chrome'; }, get FIREFOX() { return 'firefox'; }, get SAFARI() { return 'safari'; }, get EDGE() { return 'MicrosoftEdge'; }, get INTERNET_EXPLORER() { return 'internet explorer'; }, get OPERA() { return 'opera'; } }; Object.freeze(BrowserName);