- Timestamp:
- 03/28/07 08:04:06 (22 months ago)
- Files:
-
- 1 modified
-
protocols/protocol_launchpadstaging_web.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
protocols/protocol_launchpadstaging_web.py
r64 r68 296 296 response = br.submit() 297 297 return br 298 299 def __isform_comment(self,htmlform) : 300 if htmlform.action.find("+addcomment") != -1 : 301 return True 302 else : 303 return False 298 304 299 305 def postComment(self,bugnbr,title,comment) : … … 301 307 br = self.__login() 302 308 br.open(urlcom) 303 br.select_form( nr=2)309 br.select_form(predicate=self.__isform_comment) 304 310 # TODO : set the title 305 311 br["field.comment"]= comment
