diff --git a/core/modules/search/src/Form/SearchPageAddForm.php b/core/modules/search/src/Form/SearchPageAddForm.php
index 7202502..a97f1fa 100644
--- a/core/modules/search/src/Form/SearchPageAddForm.php
+++ b/core/modules/search/src/Form/SearchPageAddForm.php
@@ -24,7 +24,7 @@ public function buildForm(array $form, FormStateInterface $form_state, $search_p
    */
   protected function actions(array $form, FormStateInterface $form_state) {
     $actions = parent::actions($form, $form_state);
-    $actions['submit']['#value'] = $this->t('Add search page');
+    $actions['submit']['#value'] = $this->t('Save');
     return $actions;
   }
 
diff --git a/core/modules/search/src/SearchPageListBuilder.php b/core/modules/search/src/SearchPageListBuilder.php
index afbf54c..b529f6e 100644
--- a/core/modules/search/src/SearchPageListBuilder.php
+++ b/core/modules/search/src/SearchPageListBuilder.php
@@ -269,10 +269,11 @@ public function buildForm(array $form, FormStateInterface $form_state) {
     );
     $form['search_pages']['add_page']['add_search_submit'] = array(
       '#type' => 'submit',
-      '#value' => $this->t('Add new page'),
+      '#value' => $this->t('Add search page'),
       '#validate' => array('::validateAddSearchPage'),
       '#submit' => array('::submitAddSearchPage'),
       '#limit_validation_errors' => array(array('search_type')),
+      '#button_type' => 'primary',
     );
 
     // Move the listing into the search_pages element.
diff --git a/core/modules/search/src/Tests/SearchConfigSettingsFormTest.php b/core/modules/search/src/Tests/SearchConfigSettingsFormTest.php
index c458b16..beaefe6 100644
--- a/core/modules/search/src/Tests/SearchConfigSettingsFormTest.php
+++ b/core/modules/search/src/Tests/SearchConfigSettingsFormTest.php
@@ -237,8 +237,8 @@ public function testMultipleSearchPages() {
     // Add a search page.
     $edit = array();
     $edit['search_type'] = 'search_extra_type_search';
-    $this->drupalPostForm(NULL, $edit, t('Add new page'));
-    $this->assertTitle('Add new search page | Drupal');
+    $this->drupalPostForm(NULL, $edit, t('Add search page'));
+    $this->assertTitle('Add search page | Drupal');
 
     $first = array();
     $first['label'] = $this->randomString();
@@ -251,7 +251,7 @@ public function testMultipleSearchPages() {
     // Attempt to add a search page with an existing path.
     $edit = array();
     $edit['search_type'] = 'search_extra_type_search';
-    $this->drupalPostForm(NULL, $edit, t('Add new page'));
+    $this->drupalPostForm(NULL, $edit, t('Add search page'));
     $edit = array();
     $edit['label'] = $this->randomString();
     $edit['id'] = strtolower($this->randomMachineName(8));
