示例#1
0
 /**
  * Test for requirement 120 of SLC
  * @param  WebGuy $I [description]
  * @return [type]    [description]
  */
 public function gebruikerBeheren(\WebGuy $I)
 {
     $I->amOnPage('/login');
     $I->see('Uren');
     $I->fillField('Username', 'slc');
     $I->fillField('Password', 'slc');
     $I->click('Login');
     $I->amOnPage('/slc/3');
     $I->see('SLC');
     $I->amOnPage('/slc/3/student/add');
     $I->fillField('Student Naam', 'TestStudent');
     $I->fillField('Student Code', '1234');
     $I->fillField('Student Email', '*****@*****.**');
     $I->fillField('Student Paswoord', '123123');
     $I->fillFIeld('Student Klas', 'I12R');
     $I->click('Opslaan');
     $I->amOnPage('/slc/3');
 }