def runSession(self):
     self.cookie['date'] = time.time()
     interface = BaseInterface(self.form, self.cookie)
     interface.init(title='cookie test')
     if self.validCookie:
         interface.page.add('Using Existing Cookie')
     else:
         interface.page.add('No Cookie Found')
     print self.cookie
     print interface.getPage()