Removed one extra pageLoadStrategy item
This commit is contained in:
parent
0ebf2938eb
commit
c56b217a5a
|
|
@ -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',
|
||||
|
|
|
|||
Loading…
Reference in New Issue