import { WebElement } from "selenium-webdriver"; import { ActivityBar, ContextMenu } from "../.."; import { ElementWithContexMenu } from "../ElementWithContextMenu"; /** * Page object representing the global action controls on the bottom of the action bar */ export declare class ActionsControl extends ElementWithContexMenu { constructor(element: WebElement, bar: 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; }