Skip to content

Commit 880202f

Browse files
authored
fix: correct third-party component capitalization (#143)
correct terms: - ChromeDriver - Chrome for Testing - Firefox - geckodriver - CentOS - Debian - macOS
1 parent 1fc10fe commit 880202f

File tree

9 files changed

+33
-33
lines changed

9 files changed

+33
-33
lines changed

src/@orb.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version: 2.1
22

33
description: >
4-
Install a variety of browsers and tools for browser testing. Includes Chrome, FireFox, ChromeDriver and GeckoDriver.
4+
Install a variety of browsers and tools for browser testing. Includes Chrome, Firefox, ChromeDriver and geckodriver.
55
66
display:
77
source_url: https://github.com/CircleCI-Public/browser-tools-orb

src/commands/install_browser_tools.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ parameters:
3434
type: string
3535
default: latest
3636
description: >
37-
Version of Geckodriver to install, defaults to latest release. To
37+
Version of geckodriver to install, defaults to latest release. To
3838
install an older release, specify a full semantic version tag,
3939
e.g., `v0.23.0`. For a list of releases, and a Firefox/Geckodriver
4040
version compatibility table, see the following links:
@@ -45,7 +45,7 @@ parameters:
4545
type: string
4646
default: /usr/local/bin
4747
description: >
48-
Directory in which to install Geckodriver
48+
Directory in which to install geckodriver
4949
5050
# chrome / chromedriver
5151
install_chrome:
@@ -67,7 +67,7 @@ parameters:
6767
type: boolean
6868
default: true
6969
description: >
70-
Install Chromedriver? Note: requires Google Chrome. A Chromedriver
70+
Install ChromeDriver? Note: requires Google Chrome. A ChromeDriver
7171
version will be dynamically selected based on the installed version
7272
of Chrome; for details, see the following information:
7373
https://sites.google.com/a/chromium.org/chromedriver/downloads/version-selection
@@ -76,8 +76,8 @@ parameters:
7676
type: string
7777
default: /usr/local/bin
7878
description: >
79-
Directory in which to install Chromedriver.
80-
If installling Chrome Testing Driver as well, use a different directoy for each.
79+
Directory in which to install ChromeDriver.
80+
If installing Chrome Testing Driver as well, use a different directory for each.
8181
8282
chrome_version:
8383
default: latest
@@ -86,7 +86,7 @@ parameters:
8686
Version of Chrome to install, defaults to the latest stable release.
8787
To install an older release, specify a full chrome version number,
8888
e.g., 85.0.4183.83
89-
Only supported on centos and debian
89+
Only supported on CentOS and Debian
9090
9191
install_edge:
9292
default: false
@@ -102,7 +102,7 @@ parameters:
102102
type: string
103103
default: latest
104104
description: Version of Edge to install, defaults to the latest stable release.
105-
This param only works for Ubuntu/Debian version, MacOS will always install latest version.
105+
This param only works for Ubuntu/Debian version, macOS will always install latest version.
106106

107107
edge_driver_dir:
108108
type: string
@@ -113,25 +113,25 @@ parameters:
113113
install_chrome_for_testing:
114114
default: false
115115
type: boolean
116-
description: Install Chrome for testing?
116+
description: Install Chrome for Testing?
117117

118118
install_chrome_for_testing_driver:
119119
default: false
120120
type: boolean
121-
description: Install Chrome for testing with driver?
121+
description: Install Chrome for Testing with driver?
122122

123123
chrome_for_testing_version:
124124
type: string
125125
default: latest
126126
description: >
127-
Version of Chrome for testing to install, defaults to the latest stable release.
127+
Version of Chrome for Testing to install, defaults to the latest stable release.
128128
129129
chrome_for_testing_driver_install_dir:
130130
type: string
131131
default: /usr/local/bin
132132
description: >
133-
Directory in which to install Chromedriver.
134-
If installling chromedriver as well, use a different directoy for each.
133+
Directory in which to install ChromeDriver.
134+
If installing ChromeDriver as well, use a different directory for each.
135135
136136
steps:
137137
- when:

src/commands/install_chrome.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ parameters:
1616
type: string
1717
description: >
1818
Version of Chrome to install, defaults to the latest stable release.
19-
To install an older release, specify a full chrome version number,
19+
To install an older release, specify a full Chrome version number,
2020
e.g., 85.0.4183.83
21-
Only supported on centos and debian
21+
Only supported on CentOS and Debian
2222
If replace_existing is false, this version is ignored.
2323
channel:
2424
description: |
@@ -28,14 +28,14 @@ parameters:
2828
default: "stable"
2929
use_cache:
3030
description: |
31-
Install chrome using a cached version.
31+
Install Chrome using a cached version.
3232
Using this option will increase costs and does not improve times considerable, use only if having problems with download.
3333
Defaults to false.
3434
default: false
3535
type: boolean
3636
cache_key:
3737
description: |
38-
Cache key to save chrome.
38+
Cache key to save Chrome.
3939
Defaults to v1.
4040
default: v1
4141
type: string

src/commands/install_chrome_for_testing.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
description: >
2-
Install Chrome for testing and its driver into the specified directory.
3-
For more information about chrome for testing:
2+
Install Chrome for Testing and its driver into the specified directory.
3+
For more information about Chrome for Testing:
44
https://developer.chrome.com/blog/chrome-for-testing/
55
66
parameters:
@@ -14,16 +14,16 @@ parameters:
1414
type: string
1515
default: /usr/local/bin
1616
description: >
17-
Directory in which to download chrome and the driver.
17+
Directory in which to download Chrome and the driver.
1818
1919
install_chromedriver:
2020
type: boolean
2121
default: true
2222
description: >
23-
Whether or not to install Chrome for Testing chromedriver alongside Chrome for Testing
23+
Whether or not to install Chrome for Testing ChromeDriver alongside Chrome for Testing
2424
steps:
2525
- run:
26-
name: Install Chrome for testing
26+
name: Install Chrome for Testing
2727
environment:
2828
ORB_PARAM_DIR: <<parameters.install_dir>>
2929
ORB_PARAM_VERSION: <<parameters.version>>

src/commands/install_edge.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
description: >
22
Install Edge browser, for use in browser testing.
3-
Supports Linux (Debian/Ubuntu) amd64 and MacOS environments.
3+
Supports Linux (Debian/Ubuntu) amd64 and macOS environments.
44
There is not an Edge version of Edge for Linux ARM.
5-
For MacOS brew is required.
5+
For macOS brew is required.
66
77
parameters:
88
version:
99
default: latest
1010
type: string
1111
description: >
1212
Version of Edge to install, defaults to the latest stable release.
13-
This param only works for Ubuntu/Debian version, MacOS will always install latest version.
13+
This param only works for Ubuntu/Debian version, macOS will always install latest version.
1414
steps:
1515
- run:
1616
name: Install Edge

src/commands/install_firefox.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ parameters:
1919
2020
use_cache:
2121
description: |
22-
Install firefox using a cached version of the installer.
22+
Install Firefox using a cached version of the installer.
2323
Using this option will increase costs and does not improve times considerable, use only if having problems with download.
2424
Cache won't be used when version is set to latest.
2525
Defaults to false.

src/commands/install_geckodriver.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
description: >
2-
Install Mozilla's Geckodriver WebDriver proxy, for use in browser
2+
Install Mozilla's geckodriver WebDriver proxy, for use in browser
33
testing with Firefox. Requirements: curl, tar
44
55
parameters:
66
version:
77
type: string
88
default: latest
99
description: >
10-
Version of Geckodriver to install, defaults to latest release. To
10+
Version of geckodriver to install, defaults to latest release. To
1111
install an older release, specify a full semantic version tag,
12-
e.g., `v0.23.0`. For a list of releases, and a Firefox/Geckodriver
12+
e.g., `v0.23.0`. For a list of releases, and a Firefox/geckodriver
1313
version compatibility table, see the following links:
1414
https://github.com/mozilla/geckodriver/releases
1515
https://firefox-source-docs.mozilla.org/testing/geckodriver/Support.html
@@ -18,11 +18,11 @@ parameters:
1818
type: string
1919
default: /usr/local/bin
2020
description: >
21-
Directory in which to install Geckodriver
21+
Directory in which to install geckodriver
2222
2323
steps:
2424
- run:
25-
name: Install Geckodriver
25+
name: Install geckodriver
2626
environment:
2727
ORB_PARAM_GECKO_INSTALL_DIR: <<parameters.install_dir>>
2828
ORB_PARAM_GECKO_VERSION: <<parameters.version>>

src/examples/install_browsers.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
description: |
2-
Install all available browsers and browser drivers. Includes Chrome, FireFox, ChromeDriver and GeckoDriver. Use the node variant
2+
Install all available browsers and browser drivers. Includes Chrome, Firefox, ChromeDriver and geckodriver. Use the node variant
33
usage:
44
version: 2.1
55
orbs:

src/examples/install_versioned_browsers.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
description: |
2-
Install specific versions of firefox and chrome in the base variant image.
2+
Install specific versions of Firefox and Chrome in the base variant image.
33
usage:
44
version: 2.1
55
orbs:

0 commit comments

Comments
 (0)