diff --git a/lib/cli/cli.js b/lib/cli/cli.js index 3d413b7b3..174fa81c0 100644 --- a/lib/cli/cli.js +++ b/lib/cli/cli.js @@ -236,7 +236,7 @@ module.exports.parseCommandLine = function parseCommandLine() { default: 'normal', 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 runninhg. This only for Firefox and Chrome and please check which value each browser implements.', + '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.', group: 'Browser' }) .option('browsertime.script', { @@ -292,14 +292,6 @@ module.exports.parseCommandLine = function parseCommandLine() { 'Delay between runs, in milliseconds. Use it if your web server needs to rest between runs :)', group: 'Browser' }) - .option('browsertime.pageLoadStrategy', { - alias: 'pageLoadStrategy', - choices: ['normal', 'none'], - default: 'normal', - describe: - 'The Page Load Strategy decides when you have control of the page load. Default is normal meaning you will have control after onload. You can change that to none to get control direct after navigation.', - group: 'Browser' - }) .option('browsertime.visualMetrics', { alias: ['visualMetrics', 'speedIndex'], type: 'boolean',