Skip to content

OutputView

output

import { BottomBarPanel, OutputView } from 'vscode-extension-tester';
...
const outputView = await new BottomBarPanel().openOutputView();
// get all text
const text = await outputView.getText();
// clear text
await outputView.clearText();
// get names of all available channels
const names = await outputView.getChannelNames();
// select a channel from the drop box by name
await outputView.selectChannel("Git");