Class Link

All Implemented Interfaces:
AlluriumElement, ListComponent, WebElementMeta

public class Link extends UIElement
Represents a `Link` element in the UI, extending UIElement.

This class is designed to encapsulate the behavior and attributes of an anchor (``) element, commonly used to navigate between pages or perform actions in a user interface.

Features:

  • Encapsulates behavior and attributes of a `Link` element.
  • Provides utility methods to retrieve and validate the `href` attribute.
  • Supports multiple initialization methods through various constructors and static factory methods.

Purpose:

  • Standardizes the interaction with link elements in the UI.
  • Simplifies the creation and validation of link elements in tests.

Constructors:

Static Factory Methods:

Usage Example:

 
 // Creating a link using a Selenide locator
 Link link = $link("a.link-class");

 // Validating the href attribute
 link.assertHref("https://example.com");
 
 
  • Constructor Details

    • Link

      public Link()
    • Link

      public Link(String selenideLocator)
    • Link

      public Link(com.codeborne.selenide.SelenideElement selenideElement)
    • Link

      public Link(org.openqa.selenium.By locator)
    • Link

      public Link(org.openqa.selenium.By locator, String name)
    • Link

      public Link(com.codeborne.selenide.SelenideElement selenideElement, String name)
    • Link

      public Link(String selenideLocator, String name)
  • Method Details

    • $link

      public static Link $link(org.openqa.selenium.By locator)
    • $link

      public static Link $link(org.openqa.selenium.By locator, String name)
    • $link

      public static Link $link(com.codeborne.selenide.SelenideElement selenideElement)
    • $link

      public static Link $link(com.codeborne.selenide.SelenideElement selenideElement, String name)
    • $link

      public static Link $link(String selenideLocator)
    • $link

      public static Link $link(String selenideLocator, String name)
    • _$link

      public static Link _$link(String xpath)
    • href

      public String href()
      Retrieves the `href` attribute of the link.
      Returns:
      the value of the `href` attribute
    • assertHref

      public void assertHref(String href)
      Asserts that the `href` attribute of the link matches the expected value.

      Step: Processed by Aspect

      Parameters:
      href - the expected `href` value