def dropdown_element(self, text, choices):
     Form.radio_element(self, text, choices)
     self.multiline_check() 
 def yesno_element(self, text):
     Form.radio_element(self, text, ['Yes','No']) 
     self.multiline_check() 
 def truefalse_element(self, text):
     Form.radio_element(self, text, ['True','False']) 
     self.multiline_check() 
 def dropdown_element(self, text, choices):
     Form.radio_element(self, text, choices)
 def yesno_element(self, text):
     Form.radio_element(self, text, ['Yes','No']) 
 def truefalse_element(self, text):
     Form.radio_element(self, text, ['True','False'])