Changeset 16120 for main/waeup.kofa/trunk/src/waeup/kofa/applicants
- Timestamp:
- 15 Jun 2020, 07:58:00 (5 years ago)
- Location:
- main/waeup.kofa/trunk/src/waeup/kofa/applicants
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/applicants/browser.py
r16118 r16120 1663 1663 buttonname = _('Check status now') 1664 1664 pnav = 8 1665 websites = (('DemoPortal', 'http ://localhost:8080/app/'),)1666 appl_url1 = 'http ://localhost:8080/app/applicants'1667 appl_url2 = 'http ://localhost:8080/app/applicants'1665 websites = (('DemoPortal', 'https://kofa-demo.waeup.org/'),) 1666 appl_url1 = 'https://kofa-demo.waeup.org/applicants' 1667 appl_url2 = 'https://kofa-demo.waeup.org/applicants' 1668 1668 1669 1669 def update(self, SUBMIT=None): -
main/waeup.kofa/trunk/src/waeup/kofa/applicants/tests/test_browser.py
r16116 r16120 1546 1546 self.browser.getControl(name="email").value = 'aa@aa.aa' 1547 1547 self.browser.getControl("Check status now").click() 1548 # Here the test fails because it seems that1549 # xmlrpclib.ServerProxy can't be1550 # used in tests even if we use1551 # zope.app.testing.xmlrpc import ServerProxy with correct1552 # URL. Any idea Uli?1553 1548 self.assertTrue('No student record was found in Kofa' 1554 1549 in self.browser.contents) 1555 self.browser.getControl(1556 name="unique_id").value = self.applicant.applicant_id1557 self.browser.getControl(name="email").value = 'aa@aa.aa'1558 self.browser.getControl("Check status now").click()1559 1550 1560 1551 class ApplicantsExportTests(ApplicantsFullSetup, FunctionalAsyncTestCase):
Note: See TracChangeset for help on using the changeset viewer.