Show that WebPageReplay is used (#2052)
This commit is contained in:
parent
239df85009
commit
2e99617aa7
|
|
@ -101,7 +101,7 @@ function runWebPageReplay() {
|
|||
|
||||
if [ $? -eq 0 ]
|
||||
then
|
||||
exec node --max-old-space-size=$MAX_OLD_SPACE_SIZE $SITESPEEDIO --browsertime.firefox.preference security.OCSP.enabled:0 --browsertime.firefox.preference network.dns.forceResolve:127.0.0.1 --browsertime.chrome.args host-resolver-rules="MAP *:$HTTP_PORT 127.0.0.1:$WPR_HTTP_PORT,MAP *:$HTTPS_PORT 127.0.0.1:$WPR_HTTPS_PORT,EXCLUDE localhost" --video --visualMetrics --browsertime.pageCompleteCheck "$WAIT_SCRIPT" --browsertime.connectivity.engine throttle --browsertime.connectivity.throttle.localhost --browsertime.connectivity.profile custom --browsertime.connectivity.latency $LATENCY "$@" &
|
||||
exec node --max-old-space-size=$MAX_OLD_SPACE_SIZE $SITESPEEDIO --browsertime.firefox.preference security.OCSP.enabled:0 --browsertime.firefox.preference network.dns.forceResolve:127.0.0.1 --browsertime.chrome.args host-resolver-rules="MAP *:$HTTP_PORT 127.0.0.1:$WPR_HTTP_PORT,MAP *:$HTTPS_PORT 127.0.0.1:$WPR_HTTPS_PORT,EXCLUDE localhost" --video --visualMetrics --browsertime.pageCompleteCheck "$WAIT_SCRIPT" --browsertime.connectivity.engine throttle --browsertime.connectivity.throttle.localhost --replay --browsertime.connectivity.profile custom --browsertime.connectivity.latency $LATENCY "$@" &
|
||||
|
||||
PID=$!
|
||||
|
||||
|
|
|
|||
|
|
@ -4,4 +4,4 @@
|
|||
p.small Tested #{timestamp} using #{h.cap(options.browsertime.browser)} for
|
||||
| #{ h.get(options, 'browsertime.chrome.android.package') ? h.get(options, 'browsertime.chrome.android.package') + ' ': ''}
|
||||
| #{options.preURL ? 'preURL ' + h.short(options.preURL, 60) + ' ' : ''}
|
||||
| #{h.plural(options.browsertime.iterations, 'run')} with #{profile} profile and connectivity #{options.browsertime.connectivity.profile}.
|
||||
| #{h.plural(options.browsertime.iterations, 'run')} with #{profile} profile and connectivity #{options.browsertime.connectivity.profile}.#{ options.replay ? ' Using WebPageReplay.' : ''}
|
||||
|
|
@ -3,4 +3,4 @@
|
|||
p.small Tested #{runTime} using #{h.cap(options.browsertime.browser)} #{browser.version} for
|
||||
| #{ h.get(options, 'browsertime.chrome.android.package') ? ' ' + h.get(options, 'browsertime.chrome.android.package') + ' ': ''}
|
||||
| #{options.preURL ? 'preURL ' + h.short(options.preURL, 60) + ' ': ''}
|
||||
| #{h.plural(options.browsertime.iterations, 'run')} with #{profile} profile and connectivity #{options.browsertime.connectivity.profile}.
|
||||
| #{h.plural(options.browsertime.iterations, 'run')} with #{profile} profile and connectivity #{options.browsertime.connectivity.profile}. #{ options.replay ? ' Using WebPageReplay.' : ''}
|
||||
Loading…
Reference in New Issue