import isystem.connect as ic
winidea_id = ''
def test_stepHigh():
connMgr = ic.ConnectionMgr()
connMgr.connect(ic.CConnectionConfig().instanceId(winidea_id))
execCtrl = ic.CExecutionController(connMgr)
print("Executing one high-level source step...")
execCtrl.stepHigh()
if __name__ == "__main__":
test_stepHigh()