We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 86d5b42 commit 8ebaf31Copy full SHA for 8ebaf31
test/chromium/script.py
@@ -28,6 +28,7 @@ class bcolors:
28
chromeOps = webdriver.ChromeOptions()
29
chromeOps.add_extension(sys.argv[1])
30
31
+chromedriver_path = "chromedriver"
32
if 'TRAVIS' in os.environ.keys():
33
# For TravisCI, we manually copy chromedriver to the local path.
34
chromedriver_path = os.path.abspath("test/chromium/chromedriver")
@@ -41,12 +42,6 @@ class bcolors:
41
42
#Debian is lowercase when platform.linux_distribution() is used.
43
#This is not a mistake.
44
chromedriver_path = "/usr/lib/chromium/chromedriver"
- else:
45
- # Let's hope it's in the user's path.
46
- chromedriver_path = "chromedriver"
47
-else:
48
49
50
51
52
try:
0 commit comments