/** * 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, UtamBasePageObject as _UtamBasePageObject } from '@utam/core'; /** * Selector: lightning-lookup-address * Represents the lightning-lookup-address Lightning web component. * Get the address lookup component to control the combobox. * generated from JSON dist/lightning/lookupAddress.utam.json * @version 2026-03-09T13:56:36.134Z * @author Salesforce */ export default class LookupAddress extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Sets the text as value to the trigger input * @param text Text to be entered in the trigger input */ setTriggerText(text: string): Promise; /** * Performs click action on the combobox list item based on the index starting from one */ pickItem(indexStartingOne: number): Promise; }