You are here

public function MediaLibraryTestBase::addMediaFileToField in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/media_library/tests/src/FunctionalJavascript/MediaLibraryTestBase.php \Drupal\Tests\media_library\FunctionalJavascript\MediaLibraryTestBase::addMediaFileToField()
  2. 9 core/modules/media_library/tests/src/FunctionalJavascript/MediaLibraryTestBase.php \Drupal\Tests\media_library\FunctionalJavascript\MediaLibraryTestBase::addMediaFileToField()

Waits for a file field to exist before uploading.

File

core/modules/media_library/tests/src/FunctionalJavascript/MediaLibraryTestBase.php, line 219

Class

MediaLibraryTestBase
Base class for functional tests of Media Library functionality.

Namespace

Drupal\Tests\media_library\FunctionalJavascript

Code

public function addMediaFileToField($locator, $path) {
  $page = $this
    ->getSession()
    ->getPage();
  $this
    ->waitForFieldExists($locator);
  $page
    ->attachFileToField($locator, $path);
}