Changeset 2418 for trunk/tests
- Timestamp:
- 04/08/2008 09:48:48 AM (9 months ago)
- Location:
- trunk/tests/FunctionalTests/tickets
- Files:
-
- 2 modified
-
protected/pages/Ticket595.page (modified) (1 diff)
-
tests/Ticket595TestCase.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/tests/FunctionalTests/tickets/protected/pages/Ticket595.page
r2417 r2418 1 1 <com:TContent ID="Content"> 2 2 <style type="text/css"> 3 .errorclassA, .errorclassB { 4 background-color:pink; 5 } 6 </style> 3 7 <com:TTextBox ID="A" /> 4 8 <com:TRequiredFieldValidator ControlToValidate="A" Text="Required!" ControlCssClass="errorclassA" ValidationGroup="A"/> -
trunk/tests/FunctionalTests/tickets/tests/Ticket595TestCase.php
r2417 r2418 16 16 $this->assertAttribute($base.'A@class','errorclassA'); 17 17 18 $this->type($base.'A', 'test@ example.com');18 $this->type($base.'A', 'test@pradosoft.com'); 19 19 $this->click($base.'ctl2'); 20 20 $this->pause(800); … … 31 31 $this->assertAttribute($base.'B@class','errorclassB'); 32 32 33 $this->type($base.'B', 'test@ example.com');33 $this->type($base.'B', 'test@pradosoft.com'); 34 34 $this->click($base.'ctl5'); 35 35 $this->pause(800);
