pywinauto/Branches/OriginalPydlgChecks/tests/allcontrols.py

19 lines
292 B
Python
Raw Normal View History

2006-01-04 20:40:23 +01:00
import re
#-----------------------------------------------------------------------------
def AllControlsTest(windows):
"Returns just one bug for each control"
bugs = []
for win in windows:
bugs.append((
[win,],
{},
"AllControls",
0
))
return bugs