Interface Dropdown

All Superinterfaces:
AlluriumElement, WebElementMeta
All Known Implementing Classes:
DropdownSelect

public interface Dropdown extends AlluriumElement
Interface for web components that behave similarly to native `` elements with extended functionality
  • List-based dropdowns with selectable `
  • ` elements
  • Usage Example:

    
     public class CustomDropdown implements Dropdown {
    
    See Also:
    • Method Details

      • extend

        void extend()
        Extends the dropdown to make the options visible.

        This method handles the behavior for showing or unfolding the dropdown list.

      • select

        void select(String value)
        Selects an option from the dropdown by its visible text.

        This method implements the behavior for choosing a specific value from the dropdown's options.

        Parameters:
        value - the text of the option to select