Ignore:
Timestamp:
15 Jun 2020, 07:58:00 (5 years ago)
Author:
Henrik Bettermann
Message:

Finetune transcript processing. Allow transcript officers to request a transcript.

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  
    16631663    buttonname = _('Check status now')
    16641664    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'
    16681668
    16691669    def update(self, SUBMIT=None):
  • main/waeup.kofa/trunk/src/waeup/kofa/applicants/tests/test_browser.py

    r16116 r16120  
    15461546        self.browser.getControl(name="email").value = 'aa@aa.aa'
    15471547        self.browser.getControl("Check status now").click()
    1548         # Here the test fails because it seems that
    1549         # xmlrpclib.ServerProxy can't be
    1550         # used in tests even if we use
    1551         # zope.app.testing.xmlrpc import ServerProxy with correct
    1552         # URL. Any idea Uli?
    15531548        self.assertTrue('No student record was found in Kofa'
    15541549            in self.browser.contents)
    1555         self.browser.getControl(
    1556           name="unique_id").value = self.applicant.applicant_id
    1557         self.browser.getControl(name="email").value = 'aa@aa.aa'
    1558         self.browser.getControl("Check status now").click()
    15591550
    15601551class ApplicantsExportTests(ApplicantsFullSetup, FunctionalAsyncTestCase):
Note: See TracChangeset for help on using the changeset viewer.