public function LayoutBuilderTest::testBlockUiListing in Drupal 9
Same name and namespace in other branches
- 8 core/modules/layout_builder/tests/src/Functional/LayoutBuilderTest.php \Drupal\Tests\layout_builder\Functional\LayoutBuilderTest::testBlockUiListing()
- 10 core/modules/layout_builder/tests/src/Functional/LayoutBuilderTest.php \Drupal\Tests\layout_builder\Functional\LayoutBuilderTest::testBlockUiListing()
Tests the Block UI when Layout Builder is installed.
File
- core/
modules/ layout_builder/ tests/ src/ Functional/ LayoutBuilderTest.php, line 1212
Class
- LayoutBuilderTest
- Tests the Layout Builder UI.
Namespace
Drupal\Tests\layout_builder\FunctionalCode
public function testBlockUiListing() {
$assert_session = $this
->assertSession();
$page = $this
->getSession()
->getPage();
$this
->drupalLogin($this
->drupalCreateUser([
'administer blocks',
]));
$this
->drupalGet('admin/structure/block');
$page
->clickLink('Place block');
// Ensure that blocks expected to appear are available.
$assert_session
->pageTextContains('Test HTML block');
$assert_session
->pageTextContains('Block test');
// Ensure that blocks not expected to appear are not available.
$assert_session
->pageTextNotContains('Body');
$assert_session
->pageTextNotContains('Content fields');
}