Example #1
0
 def checkForm (self, formTemplate, readonly=False):
     """
         Method to check the layout of a form
         elementList:  data to check the elements on the form
         buttonList:   data to check the buttons on the form
         helpList:     data to check the help balloons 
         side effects: TestCase::fail() is called if any check failed
         side effects: messages are written out reflecting what was verified
     """
     self.startCoverage("checkForm")
     f = Form(self)
     f.checkForm(formTemplate, readonly)
     self.endCoverage()
     return f