Blame view

vendor/codeception/base/tests/web/FriendWithStepsCept.php 307 Bytes
2e86c939   xu   “首次提交”
1
2
3
4
5
6
7
8
9
<?php
$I = new WebGuy($scenario);
$I->wantTo('call friend with steps to ask expert work');
$I->amOnPage('/info');
$john = $I->haveFriend('john', '\WebGuy\RootWatcherSteps');
$john->does(function (WebGuy\RootWatcherSteps $I) {
    $I->seeInRootPage('Welcome to test app!');
});
$I->seeInCurrentUrl('/info');