sikuli-driver team mailing list archive
-
sikuli-driver team
-
Mailing list archive
-
Message #24816
[Question #245657]: Multiple Test Cases
New question #245657 on Sikuli:
https://answers.launchpad.net/sikuli/+question/245657
Hi ,
My script looks like the following -
setShowActions = True
Settings.DebugLogs = True
###### TC-1 >> deploy policy only ############
myScriptPath = "C:\\Users\pgupta\\Automation\\PolicyOnly"
if not myScriptPath in sys.path: sys.path.append(myScriptPath)
import PolicyOnly
###### TC-2 >> deploy configurations only ############
myScriptPath = "C:\\Users\pgupta\\Automation\\Configurations"
if not myScriptPath in sys.path: sys.path.append(myScriptPath)
import Configurations
###### TC-3 >> add, load and modify snapshots ############
myScriptPath = "C:\\Users\pgupta\\Automation\\Snapshot"
if not myScriptPath in sys.path: sys.path.append(myScriptPath)
import Snapshot
After TC -1 is execute successfully, the script stops. Not sure whats wrong i am doing here
--
You received this question notification because you are a member of
Sikuli Drivers, which is an answer contact for Sikuli.