FriendsCept.php 257 B

1234567891011
  1. <?php
  2. $I = new WebGuy($scenario);
  3. $I->wantTo('call friends to try multi session');
  4. $I->amOnPage('/info');
  5. $jon = $I->haveFriend('jon');
  6. $jon->does(function (WebGuy $I) {
  7. $I->amOnPage('/');
  8. $I->seeInCurrentUrl('/');
  9. });
  10. $I->seeInCurrentUrl('/info');