Your IP : 216.73.216.79


Current Path : /var/www/html/dyna-hr/vendor/codeception/base/tests/web/
Upload File :
Current File : /var/www/html/dyna-hr/vendor/codeception/base/tests/web/FriendsLeaveCept.php

<?php
$I = new WebGuy($scenario);
$I->wantTo('test leave bug');
$I->amOnPage('/info');

$jon = $I->haveFriend('jon');
$jon->does(function (WebGuy $I) {
    $I->amOnPage('/');
    $I->seeInCurrentUrl('/');
});
$I->see('Information', 'h1');
$jon->leave();

$I->see('Don\'t do that at home');