function FormErrorHandlerCKEditor5Test::testFragmentLink
Same name in other branches
- 10 core/modules/inline_form_errors/tests/src/FunctionalJavascript/FormErrorHandlerCKEditor5Test.php \Drupal\Tests\inline_form_errors\FunctionalJavascript\FormErrorHandlerCKEditor5Test::testFragmentLink()
- 11.x core/modules/inline_form_errors/tests/src/FunctionalJavascript/FormErrorHandlerCKEditor5Test.php \Drupal\Tests\inline_form_errors\FunctionalJavascript\FormErrorHandlerCKEditor5Test::testFragmentLink()
Tests if the fragment link to a textarea works with CKEditor 5 enabled.
File
-
core/
modules/ inline_form_errors/ tests/ src/ FunctionalJavascript/ FormErrorHandlerCKEditor5Test.php, line 85
Class
- FormErrorHandlerCKEditor5Test
- Tests the inline errors fragment link to a CKEditor5-enabled textarea.
Namespace
Drupal\Tests\inline_form_errors\FunctionalJavascriptCode
public function testFragmentLink() {
$session = $this->getSession();
$web_assert = $this->assertSession();
$ckeditor_class = '.ck-editor';
$ckeditor_id = '#cke_edit-body-0-value';
$this->drupalGet('node/add/page');
// Only enter a title in the node add form and leave the body field empty.
$edit = [
'edit-title-0-value' => 'Test inline form error with CKEditor 5',
];
$this->submitForm($edit, 'Save');
$this->assertSession()
->waitForElement('css', '#cke_edit-body-0-value');
// Add a bottom margin to the title field to be sure the body field is not
// visible.
$session->executeScript("document.getElementById('edit-title-0-value').style.marginBottom = window.innerHeight*2 + 'px';");
// Check that the CKEditor5-enabled body field is currently not visible in
// the viewport.
$web_assert->assertNotVisibleInViewport('css', $ckeditor_class, 'topLeft', 'CKEditor5-enabled body field is not visible.');
// Check if we can find the error fragment link within the errors summary
// message.
$errors_link = $this->assertSession()
->waitForElementVisible('css', 'a[href$="#edit-body-0-value"]');
$this->assertNotEmpty($errors_link, 'Error fragment link is visible.');
$errors_link->click();
// Check that the CKEditor5-enabled body field is visible in the viewport.
// The hash change adds an ID to the CKEditor 5 instance so check its visibility using the ID now.
$web_assert->assertVisibleInViewport('css', $ckeditor_id, 'topLeft', 'CKEditor5-enabled body field is visible.');
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.