Autocomplete

Web Automation

// Definition

A UI pattern that suggests completions as the user types, typically backed by a search or lookup endpoint. Testing concerns include: suggestions appearing for partial input, debouncing (requests should not fire on every keystroke), keyboard navigation through suggestions, screen-reader accessibility, and what happens when the backend is slow or returns no results. Also verify that selecting a suggestion correctly populates the target field and that the suggestion list closes on blur or Escape.

// Related terms