OutputView

Lookup
Section titled “Lookup”import { BottomBarPanel, OutputView } from 'vscode-extension-tester';...const outputView = await new BottomBarPanel().openOutputView();Text Actions
Section titled “Text Actions”// get all textconst text = await outputView.getText();// clear textawait outputView.clearText();Channel Selection
Section titled “Channel Selection”// get names of all available channelsconst names = await outputView.getChannelNames();// select a channel from the drop box by nameawait outputView.selectChannel("Git");