/** * 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, UtamBaseRootPageObject as _UtamBaseRootPageObject } from '@utam/core'; import _RadioGroup from 'salesforce-pageobjects/lightning/pageObjects/radioGroup'; import _Helptext from 'salesforce-pageobjects/lightning/pageObjects/helptext'; import _ConditionTypeDropDown from 'salesforce-pageobjects/ui/automation/rules/components/pageObjects/conditionTypeDropDown'; import _ConditionItem from 'salesforce-pageobjects/ui/automation/rules/components/pageObjects/conditionItem'; import _Button from 'salesforce-pageobjects/lightning/pageObjects/button'; /** * Page Object: Global Automated Actions Conditions * Selector: runtime_automated_actions-global-automated-actions-conditions * generated from JSON dist/ui/automation/rules/components/globalAutomatedActionsConditions.utam.json * @version 2026-03-09T13:56:37.102Z * @author Salesforce */ export default class GlobalAutomatedActionsConditions extends _UtamBaseRootPageObject { constructor(driver: _Driver, element?: _Element, locator?: _Locator); getLeadAssignmentSectionTitle(): Promise<(_BaseUtamElement) | null>; getLeadAssignmentSubsectionTitle(): Promise<(_BaseUtamElement) | null>; getConditionScopeRadioGroup(): Promise<_RadioGroup>; getConditionScopeLabel(): Promise<(_BaseUtamElement) | null>; getConditionScopeHelptext(): Promise<_Helptext | null>; getConditionTypeDropDown(): Promise<_ConditionTypeDropDown>; getExpressionInput(): Promise<(_BaseUtamElement)>; getConditionItems(): Promise<_ConditionItem[]>; getAddConditionButton(): Promise<_Button | null>; getConditionValidationError(): Promise<(_BaseUtamElement) | null>; }