protected function InlineBlockTestBase::configureInlineBlock in Drupal 10
Same name and namespace in other branches
- 8 core/modules/layout_builder/tests/src/FunctionalJavascript/InlineBlockTestBase.php \Drupal\Tests\layout_builder\FunctionalJavascript\InlineBlockTestBase::configureInlineBlock()
- 9 core/modules/layout_builder/tests/src/FunctionalJavascript/InlineBlockTestBase.php \Drupal\Tests\layout_builder\FunctionalJavascript\InlineBlockTestBase::configureInlineBlock()
Configures an inline block in the Layout Builder.
Parameters
string $old_body: The old body field value.
string $new_body: The new body field value.
string $block_css_locator: The CSS locator to use to select the contextual link.
File
- core/modules/ layout_builder/ tests/ src/ FunctionalJavascript/ InlineBlockTestBase.php, line 164 
Class
- InlineBlockTestBase
- Base class for testing inline blocks.
Namespace
Drupal\Tests\layout_builder\FunctionalJavascriptCode
protected function configureInlineBlock($old_body, $new_body, $block_css_locator = NULL) {
  $block_css_locator = $block_css_locator ?: static::INLINE_BLOCK_LOCATOR;
  $assert_session = $this
    ->assertSession();
  $page = $this
    ->getSession()
    ->getPage();
  $this
    ->clickContextualLink($block_css_locator, 'Configure');
  $textarea = $assert_session
    ->waitForElementVisible('css', '[name="settings[block_form][body][0][value]"]');
  $this
    ->assertNotEmpty($textarea);
  $this
    ->assertSame($old_body, $textarea
    ->getValue());
  $textarea
    ->setValue($new_body);
  $page
    ->pressButton('Update');
  $assert_session
    ->assertNoElementAfterWait('css', '#drupal-off-canvas');
  $assert_session
    ->assertWaitOnAjaxRequest();
  $this
    ->assertDialogClosedAndTextVisible($new_body);
}