/** * 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, ActionableUtamElement as _ActionableUtamElement, ClickableUtamElement as _ClickableUtamElement, UtamBasePageObject as _UtamBasePageObject } from '@utam/core'; import _Icon from 'salesforce-pageobjects/lightning/pageObjects/icon'; /** * A component that displays a popover with a message and allows interaction with a close button. It also supports drag-and-drop functionality for adding ingredients to a soup. * Selector: src-soup * generated from JSON dist/devops/center/notificationPopover.utam.json * @version 2026-03-09T13:56:35.217Z * @author Salesforce */ declare class NotificationPopover extends _UtamBasePageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); /** * Simulate a click on the close button of the popover */ clickCloseButton(): Promise; /** * Check if the popover is visible * @return boolean */ isPopoverVisible(): Promise; /** * Get the title text from the popover * @return string */ getPopoverTitle(): Promise; /** * Get the body text from the popover * @return string */ getPopoverBody(): Promise; /** * Returns true if element "closePopoverButton" present on the page * @return boolean */ verifyClosePopoverButtonPresence(): Promise; /** * Returns true if element "popoverTitle" present on the page * @return boolean */ verifyPopoverTitlePresence(): Promise; /** * Returns true if element "popoverBody" present on the page * @return boolean */ verifyPopoverBodyPresence(): Promise; /** * Represents the icon displayed in the popover header. */ getPopoverIcon(): Promise<_Icon | null>; } export = NotificationPopover;