Changeset 3539 for waeup/branches/uli-cleanup/src
- Timestamp:
- 1 Jul 2008, 02:36:51 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
waeup/branches/uli-cleanup/src/waeup/browser.txt
r3523 r3539 34 34 >>> browser.open('http://localhost/myuniversity') 35 35 >>> print browser.contents 36 < html>...36 <!DOCTYPE html ... 37 37 ...<h1>Congratulations!</h1>... 38 38 ... … … 51 51 True 52 52 53 Faculties54 =========55 56 Wie can add faculties, by calling and submitting an add form of an57 university. The add form can be retrieved by calling the58 ``addfaculty`` view of an university::59 60 >>> browser.open('http://localhost/myuniversity/addfaculty')61 >>> print browser.contents62 <html>...63 ...<span class="required">*</span><span>Name of Faculty</span>64 ...65 66 We fill in a new name for our new faculty::67 68 >>> ctrl = browser.getControl(name='form.name')69 >>> ctrl.value = 'TestFac'70 71 Finally we click on 'Add Faculty' to add the new thing::72 73 >>> browser.getControl('Add Faculty').click()74 >>> #print browser.contents75 76 We can view a faculty by browsing a URL like this::77 78 >>> browser.open('http://localhost/myuniversity/TestFac')79 80 Afterwards, the faculty should be visible:81 82 >>> browser.open('http://localhost/myuniversity/')83 >>> print browser.contents84 <html...85 ...<h2>Your faculties:</h2>86 ...<a href="http://localhost/myuniversity/TestFac">TestFac</a>87 ...88 89 90
Note: See TracChangeset for help on using the changeset viewer.