-
Notifications
You must be signed in to change notification settings - Fork 77
TerminalView
Jan Richter edited this page May 2, 2019
·
6 revisions
import { BottomBarPanel, TerminalView } from 'vscode-extension-tester';
...
const terminalView = await new BottomBarPanel().openTerminalView();
// get names of all available terminals
const names = await terminalView.getChannelNames();
// select a terminal from the drop box by name
await terminalView.selectChannel('Git');
await terminalView.executeCommand('git status');
Select all text and copy it to a variable. No formatting provided.
const text = await terminalView.getText();