- 
                Notifications
    You must be signed in to change notification settings 
- Fork 77
BottomBarPanel
        github-actions[bot] edited this page Jan 9, 2025 
        ·
        3 revisions
      
    
import { BottomBarPanel } from 'vscode-extension-tester';
...
const bottomBar = new BottomBarPanel();// open
await bottomBar.toggle(true);
// close
await bottomBar.toggle(false);await bottomBar.maximize();
await bottomBar.restore();const problemsView = await bottomBar.openProblemsView();
const outputView = await bottomBar.openOutputView();
const debugConsoleView = await bottomBar.openDebugConsoleView();
const terminalView = await bottomBar.openTerminalView();await bottomBar.openTab("name");