function ImageTest::testImageSettingsForm
Tests the ckeditor5_imageResize and ckeditor5_imageUpload settings forms.
File
- 
              core/
modules/ ckeditor5/ tests/ src/ FunctionalJavascript/ ImageTest.php, line 139  
Class
- ImageTest
 - @coversDefaultClass \Drupal\ckeditor5\Plugin\CKEditor5Plugin\Image[[api-linebreak]] @group ckeditor5 @group #slow @internal
 
Namespace
Drupal\Tests\ckeditor5\FunctionalJavascriptCode
public function testImageSettingsForm() : void {
  $assert_session = $this->assertSession();
  $this->drupalGet('admin/config/content/formats/manage/test_format');
  // The image resize and upload plugin settings forms should be present.
  $assert_session->elementExists('css', '[data-drupal-selector="edit-editor-settings-plugins-ckeditor5-imageresize"]');
  $assert_session->elementExists('css', '[data-drupal-selector="edit-editor-settings-plugins-ckeditor5-image"]');
  // Removing the drupalImageInsert button from the toolbar must remove the
  // plugin settings forms too.
  $this->triggerKeyUp('.ckeditor5-toolbar-item-drupalInsertImage', 'ArrowUp');
  $assert_session->assertWaitOnAjaxRequest();
  $assert_session->elementNotExists('css', '[data-drupal-selector="edit-editor-settings-plugins-ckeditor5-imageresize"]');
  $assert_session->elementNotExists('css', '[data-drupal-selector="edit-editor-settings-plugins-ckeditor5-image"]');
  // Re-adding the drupalImageInsert button to the toolbar must re-add the
  // plugin settings forms too.
  $this->triggerKeyUp('.ckeditor5-toolbar-item-drupalInsertImage', 'ArrowDown');
  $assert_session->assertWaitOnAjaxRequest();
  $assert_session->elementExists('css', '[data-drupal-selector="edit-editor-settings-plugins-ckeditor5-imageresize"]');
  $assert_session->elementExists('css', '[data-drupal-selector="edit-editor-settings-plugins-ckeditor5-image"]');
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.