pywinauto/Branches/OriginalPydlgChecks/tests/allcontrols.py
2006-01-04 19:40:23 +00:00

19 lines
292 B
Python

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