diff --git a/tests/src/Functional/ContributeFunctionalTest.php b/tests/src/Functional/ContributeFunctionalTest.php
index f04bfac..f3d4689 100644
--- a/tests/src/Functional/ContributeFunctionalTest.php
+++ b/tests/src/Functional/ContributeFunctionalTest.php
@@ -40,20 +40,23 @@ class ContributeFunctionalTest extends BrowserTestBase {
       'account_type' => 'user',
       'user_id' => 'jrockowitz',
     ];
-    $this->drupalPostForm('/admin/reports/status/contribute/configure', $edit, $this->t('Save'));
+    $this->drupalGet('/admin/reports/status/contribute/configure');
+    $this->submitForm($edit, $this->t('Save'));
     $this->assertSession()->responseContains('Community information has been saved.');
     $this->assertSession()->responseContains('Community information');
     $this->assertSession()->responseNotContains('When you <a href="https://register.drupal.org/user/register">create a Drupal.org account</a>, you gain access to a whole ecosystem of Drupal.org sites and services.');
     $this->assertSession()->responseContains('<strong><a href="https://www.drupal.org/u/jrockowitz">Jacob Rockowitz</a></strong>');
+    $this->drupalGet('/admin/reports/status/contribute/configure');
 
     // Check that 'Community information' can be cleared.
-    $this->drupalPostForm('/admin/reports/status/contribute/configure', [], $this->t('Clear'));
+    $this->submitForm([], $this->t('Clear'));
     $this->assertSession()->responseContains('Community information has been cleared.');
     $this->assertSession()->responseNotContains('<strong><a href="https://www.drupal.org/u/jrockowitz">Jacob Rockowitz</a></strong>');
 
     // Check that 'Community information' can be disabled.
     $edit = ['disable' => TRUE];
-    $this->drupalPostForm('/admin/reports/status/contribute/configure', $edit, $this->t('Save'));
+    $this->drupalGet('/admin/reports/status/contribute/configure');
+    $this->submitForm($edit, $this->t('Save'));
     $this->assertSession()->responseContains('Community information has been disabled.');
 
     // Check that 'Community information' can be remove.
