Checks that the given element is invisible or not present on the page.
You can also specify expected attributes of this element.
php
dontSeeElement('.error');
$I->dontSeeElement('//form/input[1]');
$I->dontSeeElement('input', ['name' => 'login']);
$I->dontSeeElement('input', ['value' => '123456']);
?>
public dontSeeElement ( $selector, array $attributes = null ) | ||
$selector | ||
$attributes | array |