DemoCept.php 204 B

12345678
  1. <?php
  2. $I = new OtherGuy($scenario);
  3. $I->amOnPage('/');
  4. $I->see('Welcome to test app');
  5. $I->haveFriend("friend")->does(function(OtherGuy $I) {
  6. $I->amOnPage('/info');
  7. $I->see('Lots of valuable data');
  8. });