You are here

public function JSWebAssert::waitOnAutocomplete in Drupal 9

Same name and namespace in other branches
  1. 8 core/tests/Drupal/FunctionalJavascriptTests/JSWebAssert.php \Drupal\FunctionalJavascriptTests\JSWebAssert::waitOnAutocomplete()

Waits for the jQuery autocomplete delay duration.

See also

https://api.jqueryui.com/autocomplete/#option-delay

File

core/tests/Drupal/FunctionalJavascriptTests/JSWebAssert.php, line 233

Class

JSWebAssert
Defines a class with methods for asserting presence of elements during tests.

Namespace

Drupal\FunctionalJavascriptTests

Code

public function waitOnAutocomplete() {

  // Wait for the autocomplete to be visible.
  return $this
    ->waitForElementVisible('css', '.ui-autocomplete li');
}