Skip to content

Commit 96a6201

Browse files
authored
Document location of installation executables (#10)
1 parent 090d09d commit 96a6201

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

README.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,22 @@ heroku buildpacks:add -i 1 heroku-community/chrome-for-testing
1717

1818
Deploy the app to install Chrome for Testing. 🚀
1919

20+
### Path to Installed Executables
21+
22+
After being installed by this buildpack, `chrome` & `chromedriver` are set in the `PATH` of dynos.
23+
24+
If the absolute paths are required, you can discover their location in an app:
25+
26+
```bash
27+
>>> heroku run bash
28+
$ which chrome
29+
/app/.chrome-for-testing/chrome-linux64/chrome
30+
$ which chromedriver
31+
/app/.chrome-for-testing/chromedriver-linux64/chromedriver
32+
```
33+
34+
These locations may change in future versions of this buildpack, so please allow the operating system to resolve their locations from `PATH`, if possible.
35+
2036
## Selecting the Chrome Release Channel
2137

2238
By default, this buildpack will download the latest `Stable` release, which is provided

0 commit comments

Comments
 (0)