function MediaTest::waitForMetadataDialog

Waits for the form that allows editing metadata.

See also

\Drupal\media\Form\EditorMediaDialog

File

core/modules/ckeditor/tests/src/FunctionalJavascript/MediaTest.php, line 1348

Class

MediaTest
@coversDefaultClass \Drupal\ckeditor\Plugin\CKEditorPlugin\DrupalMedia[[api-linebreak]] @group ckeditor @group legacy

Namespace

Drupal\Tests\ckeditor\FunctionalJavascript

Code

protected function waitForMetadataDialog() {
  $page = $this->getSession()
    ->getPage();
  $this->getSession()
    ->switchToIFrame();
  // Wait for the dialog to open.
  $result = $page->waitFor(10, function ($page) {
    $metadata_editor = $page->find('css', 'form.editor-media-dialog');
    return !empty($metadata_editor);
  });
  $this->assertTrue($result);
}

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