mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-06 14:49:27 +00:00
17 lines
446 B
PHP
17 lines
446 B
PHP
<?php
|
|
$I = new AcceptanceTester($scenario);
|
|
$I->wantTo('test the Search-Feature of VileSci');
|
|
|
|
$I->wantTo('test the left nav-frame');
|
|
$I->amOnPage('/vilesci/left.php?categorie=Personen');
|
|
$I->seeElement('.left_nav');
|
|
$I->click('a');
|
|
|
|
$I->wantTo('test the searchPerson Page');
|
|
$I->amOnPage('/vilesci/personen/suche.php');
|
|
$I->seeElement('[name=search]');
|
|
$I->fillField('searchstr', 'Vicenta');
|
|
$I->click('[type=submit]');
|
|
$I->see('McKenzie');
|
|
?>
|