function MediaLibraryTestBase::switchToMediaLibraryGrid
Switches to the grid display of the widget view.
1 call to MediaLibraryTestBase::switchToMediaLibraryGrid()
- WidgetViewsTest::testWidgetViews in core/
modules/ media_library/ tests/ src/ FunctionalJavascript/ WidgetViewsTest.php  - Tests that the views in the Media library's widget work as expected.
 
File
- 
              core/
modules/ media_library/ tests/ src/ FunctionalJavascript/ MediaLibraryTestBase.php, line 424  
Class
- MediaLibraryTestBase
 - Base class for functional tests of Media Library functionality.
 
Namespace
Drupal\Tests\media_library\FunctionalJavascriptCode
protected function switchToMediaLibraryGrid() {
  $this->getSession()
    ->getPage()
    ->clickLink('Grid');
  // Assert the display change is correctly announced for screen readers.
  $this->assertAnnounceContains('Loading grid view.');
  $this->assertAnnounceContains('Changed to grid view.');
  $this->assertMediaLibraryGrid();
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.