Skip to content

ViewTitlePart

titlePart

import { SideBarView } from 'vscode-extension-tester';
...
const titlePart = new SideBarView().getTitlePart();
const title = await titlePart.getTitle();

Some views have action buttons in their title part.

// get action button by title
const button = await titlePart.getAction("Clear");
// get all action buttons
const buttons = await titlePart.getActions();
// click a button
await button.click();