public function ConditionalFieldNumberTest::testVisibleEmpty in Conditional Fields 4.x
Same name and namespace in other branches
- 8 tests/src/FunctionalJavascript/ConditionalFieldNumberTest.php \Drupal\Tests\conditional_fields\FunctionalJavascript\ConditionalFieldNumberTest::testVisibleEmpty()
File
- tests/
src/ FunctionalJavascript/ ConditionalFieldNumberTest.php, line 474
Class
- ConditionalFieldNumberTest
- Test Conditional Fields Number Plugin.
Namespace
Drupal\Tests\conditional_fields\FunctionalJavascriptCode
public function testVisibleEmpty() {
$this
->baseTestSteps();
// Visit a ConditionalFields configuration page for Content bundles.
$this
->createCondition('body', 'field_' . $this->fieldName, 'visible', 'empty');
$this
->createScreenshot($this->screenshotPath . '01-testNumberInteger-testVisibleValueWidget.png');
$this
->createScreenshot($this->screenshotPath . '02-testNumberInteger-testVisibleValueWidget.png');
// Check if that configuration is saved.
$this
->drupalGet('admin/structure/types/manage/article/conditionals');
$this
->createScreenshot($this->screenshotPath . '03-testNumberInteger-testVisibleValueWidget.png');
$this
->assertSession()
->pageTextContains('body field_' . $this->fieldName . ' visible empty');
// Visit Article Add form to check that conditions are applied.
$this
->drupalGet('node/add/article');
// Check that the field Body is not visible.
$this
->createScreenshot($this->screenshotPath . '04-testNumberInteger-testVisibleValueWidget.png');
$this
->waitUntilVisible('.field--name-body', 50, '01. Article Body field is not visible');
// Change the number field to show the body.
$this
->changeField($this->fieldSelector, $this->validValue);
$this
->createScreenshot($this->screenshotPath . '06-testNumberInteger-testVisibleValueWidget.png');
$this
->waitUntilHidden('.field--name-body', 50, '02. Article Body field is visible');
// Set an empty value to hide body.
$this
->changeField($this->fieldSelector, '');
$this
->createScreenshot($this->screenshotPath . '08-testNumberInteger-testVisibleValueWidget.png');
$this
->waitUntilVisible('.field--name-body', 50, '03. Article Body field is not visible');
}