Skip to content

BottomBarPanel

bottomBar

import { BottomBarPanel } from 'vscode-extension-tester';
...
const bottomBar = new BottomBarPanel();
// open
await bottomBar.toggle(true);
// close
await bottomBar.toggle(false);
// close using the panel's close button
await bottomBar.closePanel();
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");