Checks that the current page contains the given string.
Specify a locator as the second parameter to match a specific region.
php
see('Logout'); // I can suppose user is logged in
$I->see('Sign Up','h1'); // I can suppose it's a signup page
$I->see('Sign Up','//body/h1'); // with XPath
?>