Package allurium.inputs
Class DropdownSelect
java.lang.Object
allurium.primitives.UIElement
allurium.inputs.Select
allurium.inputs.DropdownSelect
- All Implemented Interfaces:
AlluriumElement
,Dropdown
,ListComponent
,Selectable
,WebElementMeta
Represents a custom dropdown menu that mimics the behavior of a native `
-
Field Summary
Fields inherited from class allurium.primitives.UIElement
assignNameMethod, description, id, parent, root, stepsConsoleLoggingEnabled, stepsReportLoggingEnabled, uiElementName, uiElementType
-
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor.DropdownSelect
(com.codeborne.selenide.SelenideElement selenideElement) Constructor that initializes the dropdown using a Selenide element.DropdownSelect
(String selenideLocator) Constructor that initializes the dropdown using a Selenide locator string.DropdownSelect
(org.openqa.selenium.By rootLocator) Constructor that initializes the dropdown using a SeleniumBy
locator. -
Method Summary
Modifier and TypeMethodDescriptionstatic DropdownSelect
_$dropdownSelect
(String xpath) static DropdownSelect
$dropdownSelect
(com.codeborne.selenide.SelenideElement selenideElement) static DropdownSelect
$dropdownSelect
(String selenideLocator) static DropdownSelect
$dropdownSelect
(org.openqa.selenium.By rootLocator) void
extend()
Expands the dropdown menu by clicking its root element.void
select
(String option, SelectOptions selectOptions) Selects an option by its visible text with specific selection behavior.Methods inherited from class allurium.inputs.Select
_$select, $select, $select, $select, assertCurrentValue, assertCurrentValueIsNot, assertHasItem, assertHasItems, refreshOptions, select, select, select, selectAny, selectAnyBesides, selectByArrowsLeftAndRight, selectFirst, selectLast
Methods inherited from class allurium.primitives.UIElement
_$uiElement, $uiElement, $uiElement, $uiElement, $uiElement, $uiElement, $uiElement, applyName, applyName, as, assertEmpty, assertEquals, assertExists, assertExists, assertHasCssClass, assertHasCssClass, assertHasNotCssClass, assertHasNotCssClass, assertHasNotCssClass, assertHasText, assertIsNotEmpty, assertNotExist, assertNotExist, assertNotVisible, assertNotVisible, assertNotVisible, assertText, assertVisible, assertVisible, assertVisible, assertVisible, assertVisibleInViewport, click, click, click, click, click, clickAndHold, clickAndHold, clickAndHold, contextClick, contextClick, contextClick, doubleClick, doubleClick, doubleClick, get, getAllureCompiledStep, getAttribute, getHeight, getId, getStepText, getUiElementName, getWidth, hover, hover, hover, isDisplayed, logStep, logStepToReport, logStepToReport, scrollTo, scrollTo, scrollTo, setRoot, setRoot, text, verifyEmpty, verifyIsNotEmpty, wrappedName
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface allurium.interfaces.AlluriumElement
getRoot
Methods inherited from interface allurium.interfaces.WebElementMeta
getDescription, getMetaKeys, getParent, getUiElementName, setAssignNameMethod, setDescription, setParent, setUiElementName
-
Constructor Details
-
DropdownSelect
public DropdownSelect()Default constructor. Initializes the dropdown type as "dropdown select". -
DropdownSelect
public DropdownSelect(org.openqa.selenium.By rootLocator) Constructor that initializes the dropdown using a SeleniumBy
locator.- Parameters:
rootLocator
- the Selenium locator for the dropdown element
-
DropdownSelect
Constructor that initializes the dropdown using a Selenide locator string.- Parameters:
selenideLocator
- the Selenide locator as a string
-
DropdownSelect
public DropdownSelect(com.codeborne.selenide.SelenideElement selenideElement) Constructor that initializes the dropdown using a Selenide element.- Parameters:
selenideElement
- the Selenide element representing the dropdown
-
-
Method Details
-
$dropdownSelect
-
$dropdownSelect
-
$dropdownSelect
public static DropdownSelect $dropdownSelect(com.codeborne.selenide.SelenideElement selenideElement) -
_$dropdownSelect
-
extend
public void extend()Expands the dropdown menu by clicking its root element. -
select
Selects an option by its visible text with specific selection behavior.
-