function LayoutBuilderTest::testCustomSectionAttributes

Same name and namespace in other branches
  1. 9 core/modules/layout_builder/tests/src/Functional/LayoutBuilderTest.php \Drupal\Tests\layout_builder\Functional\LayoutBuilderTest::testCustomSectionAttributes()
  2. 8.9.x core/modules/layout_builder/tests/src/Functional/LayoutBuilderTest.php \Drupal\Tests\layout_builder\Functional\LayoutBuilderTest::testCustomSectionAttributes()
  3. 11.x core/modules/layout_builder/tests/src/Functional/LayoutBuilderTest.php \Drupal\Tests\layout_builder\Functional\LayoutBuilderTest::testCustomSectionAttributes()

Tests that sections can provide custom attributes.

File

core/modules/layout_builder/tests/src/Functional/LayoutBuilderTest.php, line 636

Class

LayoutBuilderTest
Tests the Layout Builder UI.

Namespace

Drupal\Tests\layout_builder\Functional

Code

public function testCustomSectionAttributes() : void {
  $assert_session = $this->assertSession();
  $page = $this->getSession()
    ->getPage();
  $this->drupalLogin($this->drupalCreateUser([
    'configure any layout',
    'administer node display',
  ]));
  $this->drupalGet('admin/structure/types/manage/bundle_with_section_field/display/default');
  $this->submitForm([
    'layout[enabled]' => TRUE,
  ], 'Save');
  $page->clickLink('Manage layout');
  $page->clickLink('Add section');
  $page->clickLink('Layout Builder Test Plugin');
  $page->pressButton('Add section');
  // See \Drupal\layout_builder_test\Plugin\Layout\LayoutBuilderTestPlugin::build().
  $assert_session->elementExists('css', '.go-birds');
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.