sikuli-driver team mailing list archive
-
sikuli-driver team
-
Mailing list archive
-
Message #28215
[Question #254515]: Passing arguments to test script... Broken?
New question #254515 on Sikuli:
https://answers.launchpad.net/sikuli/+question/254515
Hi,
Previously I used the stable version 1.0.1 of sikuli and I could launch my sikuli script from command line with this line in my Python scipt:
test_launcher_script.py
p = subprocess.Popen(["/home/krgus1/devel/sikuli-1.0.1/runScript -r " + testPath +
" --args " + SCRIPT_DIR + "/testConfig.config"],
shell=True, cwd=SCRIPT_DIR)
where testPath is the path to my sikuli test: /bla/bla/bla/Test.sikuli
And SCRIPT_DIR is the path to the directory where this script is located. This worked I could access the arguments in my sikuli test script
And then I updated to sikuli 1.1.0
p = subprocess.Popen(["/home/krgus1/devel/sikulix1.1.0/runsikulix -r " + testPath +
" --args " + SCRIPT_DIR + "/testConfig.config"],
shell=True, cwd=SCRIPT_DIR)
The parameters are the same.
And now I cannot get access to the arguments in sys.argv in my sikuli test script
So either is something broken or I am doing it wrong
BR
KG
--
You received this question notification because you are a member of
Sikuli Drivers, which is an answer contact for Sikuli.