Showing
2 changed files
with
5 additions
and
3 deletions
1 | 1 | from robot import run_cli |
2 | 2 | import os |
3 | 3 | import sys |
4 | +from chromedriver import CHROMEDRV_PATH | |
5 | + | |
6 | +sys.path.append(CHROMEDRV_PATH) | |
4 | 7 | |
5 | 8 | |
6 | 9 | def runner(): |
7 | 10 | args = sys.argv[1:] |
8 | - #if '-s' not in args: | |
9 | - # args += ['-s', 'OpenProcurementProcess'] | |
10 | 11 | if '-d' not in args: |
11 | 12 | directory = os.path.join(os.getcwd(), 'test_output') |
12 | 13 | if not os.path.exists(directory): | ... | ... |
Please
register
or
login
to post a comment