drupalGet('form-test/system-config-form'); $element = $this->xpath('//div[@id = :id]/input[contains(@class, :class)]', [':id' => 'edit-actions', ':class' => 'button--primary']); $this->assertTrue($element, 'The primary action submit button was found.'); $this->drupalPostForm(NULL, [], t('Save configuration')); $this->assertText(t('The configuration options have been saved.')); } }