Package allurium.primitives
Class Image
java.lang.Object
allurium.primitives.UIElement
allurium.primitives.Image
- All Implemented Interfaces:
AlluriumElement
,ListComponent
,WebElementMeta
Represents an `Image` element in the UI, extending
UIElement
.
This class provides constructors and methods to initialize and interact with image elements,
identified by locators or SelenideElement
.
It also supports dynamically setting and retrieving a custom ID or falling back to the `url` attribute.
Features:
- Encapsulates behavior and attributes of an image element.
- Provides multiple constructors for initialization using:
- Selenide locators as strings
- Selenium
By
locators SelenideElement
instances
- Offers static factory methods for convenient creation of `Image` objects.
- Supports setting and retrieving a custom ID for the image.
- Falls back to the `url` attribute if no custom ID is set.
Purpose:
- Standardizes the interaction with image elements in the UI.
- Simplifies the creation of `Image` objects using various initialization methods.
Constructors:
Image()
- Default constructor.Image(String)
- Creates an `Image` using a Selenide locator string.Image(String, String)
- Creates an `Image` using a Selenide locator string and a name.Image(By)
- Creates an `Image` using a SeleniumBy
locator.Image(By, String)
- Creates an `Image` using a SeleniumBy
locator and a name.Image(SelenideElement)
- Creates an `Image` from aSelenideElement
.Image(SelenideElement, String)
- Creates an `Image` from aSelenideElement
with a name.
Static Factory Methods:
$image(By)
- Creates an `Image` using a SeleniumBy
locator.$image(By, String)
- Creates an `Image` using a SeleniumBy
locator and a name.$image(SelenideElement)
- Creates an `Image` from aSelenideElement
.$image(SelenideElement, String)
- Creates an `Image` from aSelenideElement
with a name.$image(String)
- Creates an `Image` using a Selenide locator string.$image(String, String)
- Creates an `Image` using a Selenide locator string and a name._$image(String)
- Creates an `Image` using an XPath expression.
Usage Example:
// Creating an image using a Selenide locator
Image image = $image("img.icon-class");
// Creating an image using a Selenium locator and a custom name
Image namedImage = $image(By.cssSelector(".image-class"), "Custom Image");
// Asserting the image's source URL
namedImage.assertSrcUrl("https://example.com/image.png");
-
Field Summary
Fields inherited from class allurium.primitives.UIElement
assignNameMethod, description, parent, root, stepsConsoleLoggingEnabled, stepsReportLoggingEnabled, uiElementName, uiElementType
-
Constructor Summary
ConstructorsConstructorDescriptionImage()
Default constructor.Image
(com.codeborne.selenide.SelenideElement selenideElement) Constructor that initializes an `Image` using a Selenide element.Constructor that initializes an `Image` using a Selenide element and a name.Constructor that initializes an `Image` using a Selenide locator string.Constructor that initializes an `Image` using a Selenide locator string and a name.Image
(org.openqa.selenium.By locator) Constructor that initializes an `Image` using a SeleniumBy
locator.Constructor that initializes an `Image` using a SeleniumBy
locator and a name. -
Method Summary
Modifier and TypeMethodDescriptionstatic Image
static Image
$image
(com.codeborne.selenide.SelenideElement selenideElement) static Image
static Image
static Image
static Image
$image
(org.openqa.selenium.By locator) static Image
void
assertSrcUrl
(String srcUrl) Asserts that the image's source URL matches the expected value.getId()
Retrieves the ID of the image.Retrieves the source URL of the image.void
Sets a custom ID for the image using aSupplier
.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, 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
-
Image
public Image()Default constructor. Initializes the element type as "image". -
Image
Constructor that initializes an `Image` using a Selenide locator string.- Parameters:
selenideLocator
- the Selenide locator as a string
-
Image
Constructor that initializes an `Image` using a Selenide locator string and a name.- Parameters:
selenideLocator
- the Selenide locator as a stringname
- the name of the image
-
Image
public Image(org.openqa.selenium.By locator) Constructor that initializes an `Image` using a SeleniumBy
locator.- Parameters:
locator
- the Selenium locator for the image
-
Image
Constructor that initializes an `Image` using a SeleniumBy
locator and a name.- Parameters:
locator
- the Selenium locator for the imagename
- the name of the image
-
Image
public Image(com.codeborne.selenide.SelenideElement selenideElement) Constructor that initializes an `Image` using a Selenide element.- Parameters:
selenideElement
- the Selenide element representing the image
-
Image
Constructor that initializes an `Image` using a Selenide element and a name.- Parameters:
selenideElement
- the Selenide element representing the imagename
- the name of the image
-
-
Method Details
-
$image
-
$image
-
$image
-
$image
-
$image
-
$image
-
_$image
-
setId
Sets a custom ID for the image using aSupplier
.This method allows you to dynamically generate and assign an ID to the image.
- Parameters:
howToMakeId
- a supplier function that provides the custom ID
-
getId
Retrieves the ID of the image.If a custom ID has been set using
setId(Supplier)
, it will be returned. If no custom ID is set, the method falls back to the `url` attribute of the image element.- Specified by:
getId
in interfaceListComponent
- Overrides:
getId
in classUIElement
- Returns:
- the custom ID if set, otherwise the `url` attribute of the image
-
getSrcUrl
Retrieves the source URL of the image.- Returns:
- the `src` attribute of the image
-
assertSrcUrl
Asserts that the image's source URL matches the expected value.- Parameters:
srcUrl
- the expected source URL
-