-
Notifications
You must be signed in to change notification settings - Fork 72
OutputView
github-actions[bot] edited this page May 16, 2024
·
3 revisions
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");