Reputation: 93
Does anyone know how to get the list of items and check/uncheck items in a CheckedListBox from python? I've found this to help me partly on the way. I think I've found the handle for the CheckedListBox(listed as a SysTreeView32 by WinGuiAuto.py).
One usage will for my part be to create an autoinstaller that manages to uncheck all checkboxes that installs bloatware.
Upvotes: 0
Views: 571
Reputation: 93
By using pywinauto I've managed to check items in a checkedlistbox by selecting them twice.
from pywinauto import application
app = application.Application()
app.Form1.CheckedListBox1.Select('item1')
app.Form1.CheckedListBox1.Select('item1')
Upvotes: 1