IOP-Patho/vendor/codeception/base/tests/web/_steps/RootWatcherSteps.php

13 lines
200 B
PHP
Raw Normal View History

2025-07-17 08:28:28 +00:00
<?php
namespace WebGuy;
class RootWatcherSteps extends \WebGuy
{
public function seeInRootPage($selector)
{
$I = $this;
$I->amOnPage('/');
$I->see($selector);
}
}