BottomBarPanel

Lookup
Section titled “Lookup”import { BottomBarPanel } from 'vscode-extension-tester';...const bottomBar = new BottomBarPanel();Open/Close the panel
Section titled “Open/Close the panel”// openawait bottomBar.toggle(true);// closeawait bottomBar.toggle(false);// close using the panel's close buttonawait bottomBar.closePanel();Maximize/Restore the panel
Section titled “Maximize/Restore the panel”await bottomBar.maximize();await bottomBar.restore();Open specific view in the bottom panel
Section titled “Open specific view in the bottom panel”const problemsView = await bottomBar.openProblemsView();const outputView = await bottomBar.openOutputView();const debugConsoleView = await bottomBar.openDebugConsoleView();const terminalView = await bottomBar.openTerminalView();Open custom panel
Section titled “Open custom panel”await bottomBar.openTab("name");