File tree Expand file tree Collapse file tree 3 files changed +9
-1
lines changed
test/fixtures/command-line Expand file tree Collapse file tree 3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ $ webpagetest test https://twitter.com/marcelduran
23
23
### Docker
24
24
#### Build
25
25
``` bash
26
- $ docker build -t webpagetest-api .
26
+ $ docker build -t webpagetest-api .
27
27
```
28
28
#### Run
29
29
``` bash
@@ -109,6 +109,7 @@ _The default WPT server can also be specified via environment variable `WEBPAGET
109
109
* ** -M, --timeline** : capture Developer Tools Timeline (Chrome only)
110
110
* ** -J, --callstack** : set between 1-5 to include the JS call stack. must be used in conjunction with timeline (increases overhead) (Chrome only)
111
111
* ** -q, --chrometrace** : capture chrome trace (about://tracing) (Chrome only)
112
+ * ** --tracecategories** _ \< categories>\> _ : trace categories (when chrometrace enabled) (Chrome only)
112
113
* ** -G, --netlog** : capture Network Log (Chrome only)
113
114
* ** -Q, --datareduction** : enable data reduction on Chrome 34+ Android (Chrome only)
114
115
* ** -x, --useragent** _ \< string\> _ : custom user agent string (Chrome only)
Original file line number Diff line number Diff line change @@ -184,6 +184,12 @@ var options = {
184
184
bool : true ,
185
185
info : 'capture chrome trace (about://tracing) (Chrome only)'
186
186
} ,
187
+ 'tracecategories' : {
188
+ name : 'traceCategories' ,
189
+ api : 'traceCategories' ,
190
+ param : 'categories' ,
191
+ info : 'trace categories (when chrometrace enabled) (Chrome only)'
192
+ } ,
187
193
'netlog' : {
188
194
name : 'netLog' ,
189
195
key : 'G' ,
Original file line number Diff line number Diff line change 29
29
-M, --timeline capture Developer Tools Timeline (Chrome only)
30
30
-J, --callstack set between 1-5 to include the JS call stack. must be used in conjunction with timeline (increases overhead) (Chrome only)
31
31
-q, --chrometrace capture chrome trace (about://tracing) (Chrome only)
32
+ --tracecategories <categories> trace categories (when chrometrace enabled) (Chrome only)
32
33
-G, --netlog capture Network Log (Chrome only)
33
34
-Q, --datareduction enable data reduction on Chrome 34+ Android (Chrome only)
34
35
-x, --useragent <string> custom user agent string (Chrome only)
You can’t perform that action at this time.
0 commit comments