Checks that the current page doesn't contain the text specified.
Give a locator as the second parameter to match a specific region.
php
dontSee('Login'); // I can suppose user is already logged in
$I->dontSee('Sign Up','h1'); // I can suppose it's not a signup page
$I->dontSee('Sign Up','//body/h1'); // with XPath
?>