Changeset 7200 for main/waeup.sirp/trunk/src/waeup/sirp/applicants/tests
- Timestamp:
- 25 Nov 2011, 14:10:21 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.sirp/trunk/src/waeup/sirp/applicants/tests/test_browser.py
r7193 r7200 290 290 self.applicant_path = 'http://localhost/app/applicants/app2009/%s' % self.pin_applicant 291 291 self.applicant_view_path = self.applicant_path + '/index' 292 self.applicant_manage_path = self.applicant_path + '/ edit_full'292 self.applicant_manage_path = self.applicant_path + '/manage' 293 293 self.applicant_slip_path = self.applicant_path + '/application_slip.pdf' 294 294 self.browser.open(self.applicant_manage_path) … … 603 603 self.edit_path = 'http://localhost/app/applicants/app2009/%s/edit' % ( 604 604 self.pin) 605 self. edit_full_path = 'http://localhost/app/applicants/%s/%s/%s' % (606 'app2009', self.pin, ' edit_full')605 self.manage_path = 'http://localhost/app/applicants/%s/%s/%s' % ( 606 'app2009', self.pin, 'manage') 607 607 608 608 def tearDown(self): … … 773 773 # Now go on as an officer 774 774 self.browser.addHeader('Authorization', 'Basic mgr:mgrpw') 775 self.browser.open(self. edit_full_path)775 self.browser.open(self.manage_path) 776 776 777 777 # Create a pseudo image file and select it to be uploaded in form … … 848 848 # Login as manager and lock the form 849 849 self.browser.addHeader('Authorization', 'Basic mgr:mgrpw') 850 self.browser.open(self. edit_full_path)850 self.browser.open(self.manage_path) 851 851 self.browser.getControl(name="form.locked").value = True 852 852 self.browser.getControl("Save").click()
Note: See TracChangeset for help on using the changeset viewer.