function LayoutBuilderQuickEditTest::revertLayoutToDefaults
Reverts a layout override.
File
-
core/
modules/ quickedit/ tests/ src/ FunctionalJavascript/ LayoutBuilderQuickEditTest.php, line 290
Class
- LayoutBuilderQuickEditTest
- Tests that Layout Builder functions with Quick Edit.
Namespace
Drupal\Tests\quickedit\FunctionalJavascriptCode
protected function revertLayoutToDefaults() {
$page = $this->getSession()
->getPage();
$assert_session = $this->assertSession();
// Save the current user to re-login after Layout Builder changes.
$user = $this->loggedInUser;
$this->loginLayoutAdmin();
$this->drupalGet('node/' . $this->article
->id() . '/layout');
$assert_session->buttonExists('Revert to defaults');
$page->pressButton('Revert to defaults');
$page->pressButton('Revert');
$assert_session->pageTextContains('The layout has been reverted back to defaults.');
$this->drupalLogin($user);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.