| Current Path : /var/www/html/dyna-project/vendor/codeception/base/tests/web/_steps/ |
| Current File : /var/www/html/dyna-project/vendor/codeception/base/tests/web/_steps/RootWatcherSteps.php |
<?php
namespace WebGuy;
class RootWatcherSteps extends \WebGuy
{
public function seeInRootPage($selector)
{
$I = $this;
$I->amOnPage('/');
$I->see($selector);
}
}