DebugConsoleView
Page object needs extending, currently minimal support.
Lookup
Section titled “Lookup”import { BottomBarPanel, DebugConsoleView } from 'vscode-extension-tester';...const debugView = await new BottomBarPanel().openDebugConsoleView();Text Handling
Section titled “Text Handling”Note: unlike OutputView.getText(), this reads the rendered DOM text directly (no clipboard involved).
// get all text as stringconst text = await debugView.getText();// clear the textawait debugView.clearText();Expressions
Section titled “Expressions”// type an expressionawait debugView.setExpression("expression");// evaluate an existing expressionawait debugView.evaluateExpression();// type and evaluate an expressionawait debugView.evaluateExpression("expression");// get a handle for content assistconst assist = await debugView.getContentAssist();