13 lines
200 B
PHP
13 lines
200 B
PHP
|
|
<?php
|
||
|
|
namespace WebGuy;
|
||
|
|
|
||
|
|
class RootWatcherSteps extends \WebGuy
|
||
|
|
{
|
||
|
|
public function seeInRootPage($selector)
|
||
|
|
{
|
||
|
|
$I = $this;
|
||
|
|
$I->amOnPage('/');
|
||
|
|
$I->see($selector);
|
||
|
|
}
|
||
|
|
}
|