You are here

public function MenuLinkContentFormTest::testMenuLinkContentForm in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/menu_link_content/tests/src/Functional/MenuLinkContentFormTest.php \Drupal\Tests\menu_link_content\Functional\MenuLinkContentFormTest::testMenuLinkContentForm()

Tests the MenuLinkContentForm class.

File

core/modules/menu_link_content/tests/src/Functional/MenuLinkContentFormTest.php, line 84

Class

MenuLinkContentFormTest
Tests the menu link content UI.

Namespace

Drupal\Tests\menu_link_content\Functional

Code

public function testMenuLinkContentForm() {
  $this
    ->drupalGet('admin/structure/menu/manage/admin/add');
  $option = $this
    ->assertSession()
    ->optionExists('edit-menu-parent', 'admin:');
  $this
    ->assertTrue($option
    ->isSelected());

  // Test that the field description is present.
  $this
    ->assertSession()
    ->pageTextContains('The location this menu link points to.');
  $this
    ->submitForm([
    'title[0][value]' => t('Front page'),
    'link[0][uri]' => '<front>',
  ], 'Save');
  $this
    ->assertSession()
    ->pageTextContains('The menu link has been saved.');
}