Commit 81f9be9297f2419e36899c7b3ebdc3e8d337f99f

Authored by selurvedu
1 parent de489b4f

Remove 'chromedriver' from dependencies

Please note that it is just a (rather broken) Python package.
Its purpose is solely to download a `chromedriver` binary
from the Google servers and make it discoverable by simply importing
the module.

The reason for removal is that it currently breaks the build process
and pulls a very outdated version.

If you wish to use the test suites with the Chrome / Chromium browser,
you should manually install a `chromedriver` binary of an appropriate
version into one of your `$PATH` directories.
1   -from chromedriver import CHROMEDRV_PATH
2   -from robot import run_cli
3 1 import os
4 2 import sys
5   -
6   -sys.path.append(CHROMEDRV_PATH)
  3 +from robot import run_cli
7 4
8 5
9 6 def runner():
... ...
... ... @@ -22,7 +22,6 @@ setup(name='op_robot_tests',
22 22 'Pillow',
23 23 'PyYAML',
24 24 'barbecue',
25   - 'chromedriver',
26 25 'dateutils',
27 26 'dpath',
28 27 'haversine',
... ...
Please register or login to post a comment