1.20.x backdrop_web_test_case.php | protected BackdropWebTestCase::assertNoOption($id, $option, $message = '') |
Asserts that a select option in the current page does not exist.
Parameters
$id: Id of select field to assert.
$option: Option to assert.
$message: Message to display.
Return value
TRUE on pass, FALSE on fail.:
File
- modules/
simpletest/ backdrop_web_test_case.php, line 3751
Class
- BackdropWebTestCase
- Test case for typical Backdrop tests.
Code
protected function assertNoOption($id, $option, $message = '') {
$selects = $this->xpath('//select[@id=:id]', array(':id' => $id));
$options = $this->xpath('//select[@id=:id]/option[@value=:option]', array(':id' => $id, ':option' => $option));
return $this->assertTrue(isset($selects[0]) && !isset($options[0]), $message ? $message : t('Option @option for field @id does not exist.', array('@option' => $option, '@id' => $id)), t('Browser'));
}