Asserts that a field does not exist with the given name and value.
$name: Name of field to assert.
$value: (optional) Value for the field, to assert that the field's value on the page doesn't match it. You may pass in NULL to skip checking the value, while still checking that the field doesn't exist. However, the default value ('') asserts that the field value is not an empty string.
$message: (optional) Message to display.
$group: The group this message belongs to.
TRUE on pass, FALSE on fail.
protected function assertNoFieldByName($name, $value = '', $message = '') {
return $this
->assertNoFieldByXPath($this
->constructFieldXpath('name', $name), $value, $message ? $message : t('Did not find field by name @name', array(
'@name' => $name,
)), t('Browser'));
}