import { AbstractElement } from "../AbstractElement"; /** * Page object for the Debugger Toolbar */ export declare class DebugToolbar extends AbstractElement { constructor(); /** * Wait for the debug toolbar to appear and instantiate it. * Assumes that debug session is already starting and it is just * a matter of waiting for the toolbar to appear. * * @param timeout max time to wait in milliseconds, default 5000 */ static create(timeout?: number): Promise; /** * Wait for the execution to pause at the next breakpoint */ waitForBreakPoint(timeout?: undefined): 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; }