SideBarView

Lookup
Section titled “Lookup”import { ActivityBar, SideBarView } from "vscode-extension-tester";// to look up the currently open view (if any is open)const view = new SideBarView();// to open a specific view and look it upconst control = await new ActivityBar().getViewControl("Explorer");const view1 = await control.openView();Get Individual Parts
Section titled “Get Individual Parts”// to get the title partconst titlePart = await view.getTitlePart();// to get the content partconst content = await view.getContent();