You are here

public static function JsWebAssertTestForm::addWaitForElementVisible 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::addWaitForElementVisible()

Ajax callback for the "Test waitForElementVisible" button.

File

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

Class

JsWebAssertTestForm
Test form for JSWebAssert WebDriverTestBase.

Namespace

Drupal\js_webassert_test\Form

Code

public static function addWaitForElementVisible(array $form, FormStateInterface $form_state) {

  // Attach the library necessary for this test.
  $form['#attached']['library'][] = 'js_webassert_test/wait_for_element';
  $form['element_invisible'] = [
    '#id' => 'js_webassert_test_element_invisible',
    '#type' => 'submit',
    '#value' => 'Added WaitForElementVisible',
    '#button_type' => 'primary',
    '#attributes' => [
      'style' => [
        'display: none;',
      ],
    ],
  ];
  return $form;
}