function CKEditorTestTrait::assertEditorButtonDisabled

Same name and namespace in other branches
  1. 8.9.x core/modules/ckeditor/tests/src/Traits/CKEditorTestTrait.php \Drupal\Tests\ckeditor\Traits\CKEditorTestTrait::assertEditorButtonDisabled()

Asserts a CKEditor button is disabled.

Parameters

string $name: The name of the button, such as `drupallink`, `source`, etc.

string $instance_id: (optional) The CKEditor instance ID. Defaults to 'edit-body-0-value'.

File

core/modules/ckeditor/tests/src/Traits/CKEditorTestTrait.php, line 91

Class

CKEditorTestTrait
Provides methods to test CKEditor.

Namespace

Drupal\Tests\ckeditor\Traits

Code

protected function assertEditorButtonDisabled($name, $instance_id = 'edit-body-0-value') {
  $button = $this->getEditorButton($name, $instance_id);
  $this->assertTrue($button->hasClass('cke_button_disabled'));
  $this->assertSame('true', $button->getAttribute('aria-disabled'));
}

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