How to add firefox to system PATH on Linux instance at Amazon Web Service? How to add firefox to system PATH on Linux instance at Amazon Web Service? selenium selenium

How to add firefox to system PATH on Linux instance at Amazon Web Service?


Add the following to your ~/.profile:

export PATH="$PATH:/home/firefox"

Or to ~/.bashrc, or ~/.bash_profile, if the shell is Bash.

See Shell initialization files