2

Need to install Google Chrome on a Linux server without having root access. Chrome is needed in order to run Selenium webdirver tests with google chrome. Would this be possible?

krup123
  • 23
  • 1
  • 3

1 Answers1

1

Google Chrome is pretty portable between computers, since it is entirely self-contained in /opt/google/chrome/.

Just copy that directory from somewhere else and you can launch it from there.

harrymc
  • 455,459
  • 31
  • 526
  • 924
  • Awesome looks like that is going to work, thanks! Copying that directory and pointing Selenium to the binary in the copied directory instead of the default location works! – krup123 Aug 05 '19 at 14:09