UNPKG

@nightwatch/nightwatch-inspector

Version:

Nightwatch Inspector that allows you to tests command directly from the browser

91 lines (72 loc) 2.41 kB
// Refer to the online docs for more details: // https://nightwatchjs.org/gettingstarted/configuration/ // // _ _ _ _ _ _ _ // | \ | |(_) | | | | | | | | // | \| | _ __ _ | |__ | |_ __ __ __ _ | |_ ___ | |__ // | . ` || | / _` || '_ \ | __|\ \ /\ / / / _` || __| / __|| '_ \ // | |\ || || (_| || | | || |_ \ V V / | (_| || |_ | (__ | | | | // \_| \_/|_| \__, ||_| |_| \__| \_/\_/ \__,_| \__| \___||_| |_| // __/ | // |___/ module.exports = { // An array of folders (excluding subfolders) where your tests are located; // if this is not specified, the test source must be passed as the second argument to the test runner. src_folders: ['tests'], // See https://nightwatchjs.org/guide/concepts/page-object-model.html page_objects_path: [], // See https://nightwatchjs.org/guide/extending-nightwatch/adding-custom-commands.html custom_commands_path: [], // See https://nightwatchjs.org/guide/extending-nightwatch/adding-custom-assertions.html custom_assertions_path: [], // See https://nightwatchjs.org/guide/extending-nightwatch/adding-plugins.html // plugins: [], // See https://nightwatchjs.org/guide/concepts/test-globals.html globals_path: '', webdriver: {}, test_workers: { enabled: true }, test_settings: { default: { disable_error_log: false, launch_url: 'http://localhost', screenshots: { enabled: false, path: 'screens', on_failure: true }, desiredCapabilities: { browserName: 'chrome' }, webdriver: { start_process: true, server_path: '' }, }, chrome: { desiredCapabilities: { browserName: 'chrome', 'goog:chromeOptions': { args: [ // to load extension from unpacked directory. `--load-extension=${__dirname}/src`, 'auto-open-devtools-for-tabs' //'--headless' ], // load extension from .crx file. // extensions: [ // require('fs').readFileSync('./dist/extension.crx', {encoding: 'base64'}) // ] } }, webdriver: { start_process: true, server_path: '', cli_args: [ // --verbose ] } }, }, };