ViewTitlePart

Lookup
Section titled “Lookup”import { SideBarView } from 'vscode-extension-tester';...const titlePart = new SideBarView().getTitlePart();Get Title
Section titled “Get Title”const title = await titlePart.getTitle();ActionButtons
Section titled “ActionButtons”Some views have action buttons in their title part.
// get action button by titleconst button = await titlePart.getAction("Clear");// get all action buttonsconst buttons = await titlePart.getActions();// click a buttonawait button.click();