Spaces:
Runtime error
Runtime error
max-unfinity
commited on
Commit
·
aca6818
1
Parent(s):
c04a546
logs
Browse files- init_env.py +8 -1
init_env.py
CHANGED
@@ -15,4 +15,11 @@ def init_env():
|
|
15 |
tar.close()
|
16 |
|
17 |
# add geckodriver to PATH variable
|
18 |
-
os.environ["PATH"] +=
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
15 |
tar.close()
|
16 |
|
17 |
# add geckodriver to PATH variable
|
18 |
+
os.environ["PATH"] += ":" + os.getcwd()
|
19 |
+
print(os.environ["PATH"])
|
20 |
+
|
21 |
+
# print directory
|
22 |
+
print(os.listdir())
|
23 |
+
|
24 |
+
# output geckodriver version
|
25 |
+
os.system("geckodriver --version")
|