import { ElementWithContextMenu } from '../utils.js'; import { ActivityBar as ActivityBarLocators } from '../../locators/1.73.0.js'; import type { ContextMenu } from '../menu/ContextMenu.js'; /** * Page object representing the global action controls on the bottom of the action bar. * * ```ts * const workbench = await browser.getWorkbench() * const actionControl = await workbench.getActivityBar().getGlobalActions() * console.log(await Promise.all(actionControl.map(ac => ac.getTitle()))) * // returns: [ 'Accounts', 'Manage' ] * ``` * * @category ActivityBar */ export declare class ActionsControl extends ElementWithContextMenu { /** * @private */ locatorKey: "ActivityBar"; /** * Open the context menu bound to this global action * @returns Promise resolving to ContextMenu object representing the action's menu */ openActionMenu(): Promise; /** * Returns the title of the associated action */ getTitle(): Promise; } //# sourceMappingURL=ActionsControl.d.ts.map