Class Select

All Implemented Interfaces:
AlluriumElement, ListComponent, Selectable, WebElementMeta
Direct Known Subclasses:
DropdownSelect

public class Select extends UIElement implements Selectable
Encapsulates interactions with a select menu (`` elements in web pages.
  • Enhances readability and maintainability of tests through a unified interface.
  • Standardizes select menu interactions across different test cases.
  • Integrates seamlessly with Allure for comprehensive test reporting.
  • Usage Example:

    
     Select selectOptionsList = $select("#dropdown-list-class");
     selectOptionsList.select("Option 1");
     selectOptionsList.assertCurrentValue("Option 1");
     selectOptionsList.selectAnyBesides("Option 2");
     selectOptionsList.assertHasItem("Option 3");
     

    Class Integration:

    • Inherits from UIElement for shared behavior across web elements.
    • Implements Selectable for standard select operations.
    • Field Details

      • options

        protected com.codeborne.selenide.ElementsCollection options
        Collection of options within the options list.
    • Constructor Details

      • Select

        protected Select()
        Default constructor. Initializes the element type as "select".
      • Select

        public Select(org.openqa.selenium.By rootLocator)
        Constructor that initializes the select using a Selenium By locator.
        Parameters:
        rootLocator - the Selenium locator for the dropdown
      • Select

        public Select(String selenideLocator)
        Constructor that initializes the select using a Selenide locator string.
        Parameters:
        selenideLocator - the Selenide locator as a string
      • Select

        public Select(com.codeborne.selenide.SelenideElement selenideElement)
        Constructor that initializes the select using a Selenide element.
        Parameters:
        selenideElement - the Selenide element representing the dropdown
    • Method Details

      • $select

        public static Select $select(org.openqa.selenium.By locator)
      • $select

        public static Select $select(String selenideLocator)
      • $select

        public static Select $select(com.codeborne.selenide.SelenideElement selenideElement)
      • _$select

        public static Select _$select(String xpath)
      • refreshOptions

        protected void refreshOptions()
        Refreshes the list of options within the options list.
      • select

        public void select(String option)
        Selects an option by its visible text.

        Step: Processed by Aspect

        Specified by:
        select in interface Selectable
        Parameters:
        option - the text of the option to select
      • select

        public void select(String option, SelectOptions selectOptions)
        Selects an option by its visible text with additional selection behavior.
        Parameters:
        option - the text of the option to select
        selectOptions - additional selection behavior
      • select

        public void select(int index)
        Selects an option by its index.

        Step: Processed by Aspect

        Parameters:
        index - the index of the option to select
      • select

        public void select(int index, SelectOptions selectOptions)
        Selects an option by its index with additional selection behavior.
        Parameters:
        index - the index of the option to select
        selectOptions - additional selection behavior
      • selectByArrowsLeftAndRight

        public void selectByArrowsLeftAndRight(String text)
        Selects an option by navigating using keyboard arrows.

        Step: Processed by Aspect

        Parameters:
        text - the text of the option to select
      • selectFirst

        public void selectFirst()
        Selects the first available option.

        Step: Processed by Aspect

        Specified by:
        selectFirst in interface Selectable
      • selectLast

        public void selectLast()
        Selects the last available option.

        Step: Processed by Aspect

        Specified by:
        selectLast in interface Selectable
      • selectAny

        public void selectAny()
        Selects a random option from the selectOptionsList.

        Step: Processed by Aspect

        Specified by:
        selectAny in interface Selectable
      • selectAnyBesides

        public void selectAnyBesides(String value)
        Selects any option from the select or dropdown list except the one specified by its value.

        This method filters the dropdown options to exclude the specified value and then selects the first available option that does not match.

        Step: Processed by Aspect

        Specified by:
        selectAnyBesides in interface Selectable
        Parameters:
        value - the text of the option to exclude
        Throws:
        IllegalArgumentException - if no option besides the specified value exists
      • assertCurrentValue

        public void assertCurrentValue(String value)
        Asserts that the currently selected value in the select or dropdown list matches the expected value.

        This method verifies the `value` attribute of the select element and ensures it matches the provided input.

        Step: Processed by Aspect

        Example Usage:

        
         Select selectOptionsList = new Select("select");
         selectOptionsList.assertSelectedValue("Expected Option");
         

        Behavior:

        • Throws an AssertionError if the selected value does not match the provided value.
        Parameters:
        value - the expected value to match
      • assertCurrentValueIsNot

        public void assertCurrentValueIsNot(String value)
        Asserts that the currently selected value in the select or dropdown list does not match the given value.

        This method verifies the `value` attribute of the select element and ensures it is not equal to the provided input.

        Step: Processed by Aspect

        Example Usage:

        
         Select selectOptionsList = new Select("select");
         selectOptionsList.assertSelectedValueIsNot("Excluded Option");
         

        Behavior:

        • Throws an AssertionError if the selected value matches the provided value.
        Parameters:
        value - the value to ensure is not selected
      • assertHasItem

        public void assertHasItem(String item)
        Asserts that the select or dropdown list contains a specific option by its visible text.

        This method checks the list of available options within the dropdown and verifies that the specified item exists.

        Step: Processed by Aspect

        Example Usage:

        
         Select selectOptionsList = new Select("select");
         selectOptionsList.assertHasItem("Option 1");
         

        Behavior:

        • Throws an AssertionError if the specified item is not found in the selectOptionsList.
        Parameters:
        item - the visible text of the option to verify
      • assertHasItems

        public void assertHasItems(List<String> items) throws Throwable
        method is overridable

        Step: Processed by Aspect

        Parameters:
        items -
        Throws:
        Throwable