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.

19 lines (15 loc) 258 B
class BrowserName { static get CHROME() { return 'chrome'; } static get FIREFOX() { return 'firefox'; } static get SAFARI() { return 'safari'; } static get EDGE() { return 'microsoftedge'; } } module.exports = BrowserName;