diff --git a/lib/cli/cli.js b/lib/cli/cli.js index ae9fb45b9..40839d2c3 100644 --- a/lib/cli/cli.js +++ b/lib/cli/cli.js @@ -225,7 +225,7 @@ module.exports.parseCommandLine = function parseCommandLine() { .option('browsertime.pageCompleteCheckPollTimeout', { alias: 'pageCompleteCheckPollTimeout', type: 'number', - default: 200, + default: 1500, describe: 'The time in ms to wait for running the page complete check the next time.', group: 'Browser' @@ -241,7 +241,7 @@ module.exports.parseCommandLine = function parseCommandLine() { .option('browsertime.pageLoadStrategy', { alias: 'pageLoadStrategy', type: 'string', - default: 'normal', + default: 'none', choices: ['eager', 'none', 'normal'], describe: 'Set the strategy to waiting for document readiness after a navigation event. After the strategy is ready, your pageCompleteCheck will start running. This only work for Firefox and Chrome and please check which value each browser implements.',