Skip to content

Commit ed493fd

Browse files
Random, minor typo fixes and grammatical cleanup
1 parent 25ee9bd commit ed493fd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,7 @@ wpt.runTest(script, (err, data) => {
423423
* **private**: _Boolean_, keep the test hidden from the test log
424424
* **label**: _String_, label for the test
425425
* **stopAtDocumentComplete**: _Boolean_, stop test at document complete. typically, tests run until all activity stops
426-
* **disableJavaScript**: _Boolean_, disable javascript (IE, Chrome, Firefox)
426+
* **disableJavaScript**: _Boolean_, disable JavaScript (IE, Chrome, Firefox)
427427
* **clearCerts**: _Boolean_, clear SSL certificate caches
428428
* **ignoreSSL**: _Boolean_, ignore SSL certificate errors, e.g. name mismatch, self-signed certificates, etc
429429
* **disableCompatibilityView**: _Boolean_, forces all pages to load in standards mode (IE only)
@@ -447,7 +447,7 @@ wpt.runTest(script, (err, data) => {
447447
* **disableHTTPHeaders**: _Boolean_, disable saving of the http headers (as well as browser status messages and CPU utilization)
448448
* **block**: _String_, space-delimited list of urls to block (substring match)
449449
* **spof**: _String_, space-delimited list of domains to simulate failure by re-routing to blackhole.webpagetest.org to silently drop all requests
450-
* **customMetrics**: _String_, execute arbitrary javascript at the end of a test to collect custom metrics
450+
* **customMetrics**: _String_, execute arbitrary JavaScript at the end of a test to collect custom metrics
451451
* **authenticationType**: _Number_, type of authentication: 0 = Basic, 1 = SNS [0]
452452
* **notifyEmail**: _String_, e-mail address to notify with the test results
453453
* **pingback**: _String_, URL to ping when the test is complete (the test ID will be passed as an "id" parameter)
@@ -631,7 +631,7 @@ setTimeout(() => {
631631
```
632632

633633
## Batch
634-
Batch command is available as command line only and loads a batch file containing one WebPageTest CLI command with options per line. It runs all commands in paralell but returns and array of results in order as they appear in the batch file once all results are ready. The exit status code is the sum of all individual commands exit status code.
634+
Batch command is available as command line only and loads a batch file containing one WebPageTest CLI command with options per line. It runs all commands in parallel, but returns an array of results in order as they appear in the batch file once all results are ready. The exit status code is the sum of all individual commands' exit status code.
635635

636636
By running
637637
```bash
@@ -667,7 +667,7 @@ $ echo $?
667667
0
668668
````
669669

670-
By running multiple sync tests, i.e. with either `--poll` or `--wait`, all tests are schedule and results are pulled or wait in paralell, it means if tests are set to run in different locations of same location with multiple agents, the final result might come together but the result array will only return once all tests are done. e.g.:
670+
By running multiple sync tests, i.e. with either `--poll` or `--wait`, all tests are scheduled and results are polled or wait in parallel; meaning, if tests are set to run in different locations or same location with multiple agents, the final result might come together, but the result array will only return once *all* tests are done. e.g.:
671671

672672
`commands.txt`:
673673
```

0 commit comments

Comments
 (0)