/** * Copyright (c) 2025, Salesforce, Inc. * All rights reserved. * For full license text, see the LICENSE file or https://utam.dev/salesforce/license */ import { Driver as _Driver, Element as _Element, Locator as _Locator, BaseUtamElement as _BaseUtamElement, UtamBasePageObject as _UtamBasePageObject, ClickableUtamElement as _ClickableUtamElement, ActionableUtamElement as _ActionableUtamElement } from '@utam/core'; /** * Selector: lightning-formatted-url * Represents the lightning-formatted-url Lightning web component. * Get the URL from the href attribute. * generated from JSON dist/lightning/formattedUrl.utam.json * @version 2026-03-09T13:56:36.095Z * @author Salesforce */ export default class FormattedUrl extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Get link URL by getting value of attribute href on anchor * @return string */ getUrl(): Promise; /** * Check is the URL link element has focus or not * @return boolean */ hasFocus(): Promise; getUrlLink(): Promise<(_BaseUtamElement & _ActionableUtamElement & _ClickableUtamElement)>; }