winIDEA SDK
test_add_remove.py
1# This script is licensed under BSD License, see file LICENSE.txt.
2#
3# (c) TASKING Germany GmbH, 2023
4
5import isystem.connect as ic
6
7
8winidea_id = ''
9
10
11def test_addRemove():
12 connMgr = ic.ConnectionMgr()
13 connMgr.connect(ic.CConnectionConfig().instanceId(winidea_id))
14
15 optCtrl = ic.COptionController(connMgr, "/IDE/System.Debug.Applications")
16
17 initialSize = optCtrl.size()
18
19 print(f"Adding another item to the: {optCtrl.URL()} array...")
20 optCtrl2 = optCtrl.add()
21 print(f"\tURL: {optCtrl2.URL()}")
22 print(f"\tDefault value of 'Name' attribute: {optCtrl2.get('Name')}")
23
24 print(f"Removing the created item (index {initialSize})...")
25 optCtrl.remove(initialSize)
26
27
28if __name__ == "__main__":
29 test_addRemove()