You are here

public static function JsWebAssertTestForm::addField in Drupal 9

Same name and namespace in other branches
  1. 8 core/modules/system/tests/modules/js_webassert_test/src/Form/JsWebAssertTestForm.php \Drupal\js_webassert_test\Form\JsWebAssertTestForm::addField()

Ajax callback for the "Add field" button.

File

core/modules/system/tests/modules/js_webassert_test/src/Form/JsWebAssertTestForm.php, line 162

Class

JsWebAssertTestForm
Test form for JSWebAssert WebDriverTestBase.

Namespace

Drupal\js_webassert_test\Form

Code

public static function addField(array $form, FormStateInterface $form_state) {
  $form['added_field'] = [
    '#type' => 'textfield',
    '#title' => 'Added textfield',
    '#name' => 'added_field',
  ];
  return $form;
}