import { BasePage, IPageDecorator } from '../utils.js'; import { DebugToolbar as DebugToolbarLocators } from '../../locators/1.73.0.js'; export interface DebugToolbar extends IPageDecorator { } /** * Page object for the Debugger Toolbar * * @category Workbench */ export declare class DebugToolbar extends BasePage { /** * @private */ locatorKey: "DebugToolbar"; /** * Wait for the execution to pause at the next breakpoint */ waitForBreakPoint(): Promise; /** * Click Continue */ continue(): Promise; /** * Click Disconnect */ disconnect(): Promise; /** * Click Pause */ pause(): Promise; /** * Click Step Over */ stepOver(): Promise; /** * Click Step Into */ stepInto(): Promise; /** * Click Step Out */ stepOut(): Promise; /** * Click Restart */ restart(): Promise; /** * Click Stop */ stop(): Promise; private getButton; } //# sourceMappingURL=DebugToolbar.d.ts.map