5import isystem.connect
as ic
12 connMgr = ic.ConnectionMgr()
13 connMgr.connect(ic.CConnectionConfig().instanceId(winidea_id))
15 optCtrl = ic.COptionController(connMgr,
"/IDE/System.Debug.Applications")
17 print(f
"Getting the option controller of the array item whose 'Name' value is 'App'...")
18 optCtrl2 = optCtrl.find(
"Name",
"App")
19 print(f
"\tFound, URL: {optCtrl2.URL()}")
22if __name__ ==
"__main__":