Skip to content

LinkUtils

robo_appian.utils.components.LinkUtils

LinkUtils

Utility class for interacting with link components in Appian UI.

Usage Example:

# Click a link with a specific label
from robo_appian.utils.components.LinkUtils import LinkUtils
LinkUtils.click(wait, "Learn More")

click(wait, label) staticmethod

Clicks a link identified by its label.

Parameters:

Name Type Description Default
wait WebDriverWait

Selenium WebDriverWait instance.

required
label str

The visible text label of the link.

required
Example

LinkUtils.click(wait, "Learn More")