Package allurium.primitives
Class MenuItem
java.lang.Object
allurium.primitives.UIElement
allurium.primitives.MenuItem
- All Implemented Interfaces:
AlluriumElement
,ListComponent
,WebElementMeta
Represents a `MenuItem` element in the UI, extending ` or similar elements)
commonly used in navigation menus or dropdowns in a user interface.
UIElement
.
This class encapsulates the behavior and attributes of menu item elements (`
Features:
- Encapsulates behavior and attributes of menu item elements.
- Supports initialization using various constructors and static factory methods.
- Provides a consistent interface for interacting with menu items in UI tests.
Purpose:
- Standardizes the interaction with menu item elements in the UI.
- Simplifies the creation and manipulation of menu item elements in tests.
Constructors:
MenuItem()
- Default constructor.MenuItem(String)
- Creates a `MenuItem` using a Selenide locator string.MenuItem(String, String)
- Creates a `MenuItem` using a Selenide locator string and a name.MenuItem(By)
- Creates a `MenuItem` using a SeleniumBy
locator.MenuItem(By, String)
- Creates a `MenuItem` using a SeleniumBy
locator and a name.MenuItem(SelenideElement)
- Creates a `MenuItem` from aSelenideElement
.MenuItem(SelenideElement, String)
- Creates a `MenuItem` from aSelenideElement
with a name.
Static Factory Methods:
_$menuItem(String)
- Creates a `MenuItem` using an XPath expression.$menuItem(By)
- Creates a `MenuItem` using a SeleniumBy
locator.$menuItem(By, String)
- Creates a `MenuItem` using a SeleniumBy
locator and a name.$menuItem(SelenideElement)
- Creates a `MenuItem` from aSelenideElement
.$menuItem(SelenideElement, String)
- Creates a `MenuItem` from aSelenideElement
with a name.$menuItem(String)
- Creates a `MenuItem` using a Selenide locator string.$menuItem(String, String)
- Creates a `MenuItem` using a Selenide locator string and a name.
Usage Example:
// Creating a menu item using a Selenide locator
MenuItem menuItem = MenuItem.$menuItem("ul > li.menu-item");
// Creating a menu item with a custom name
MenuItem namedMenuItem = MenuItem.$menuItem(By.cssSelector(".menu-item"), "Custom Menu Item");
-
Field Summary
Fields inherited from class allurium.primitives.UIElement
assignNameMethod, description, id, parent, root, stepsConsoleLoggingEnabled, stepsReportLoggingEnabled, uiElementName, uiElementType
-
Constructor Summary
Constructors -
Method Summary
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, setAssignNameMethod, setDescription, setParent, setUiElementName
-
Constructor Details
-
MenuItem
public MenuItem() -
MenuItem
-
MenuItem
-
MenuItem
public MenuItem(org.openqa.selenium.By locator) -
MenuItem
-
MenuItem
public MenuItem(com.codeborne.selenide.SelenideElement selenideElement) -
MenuItem
-
-
Method Details