-
Notifications
You must be signed in to change notification settings - Fork 72
ViewTitlePart
github-actions[bot] edited this page May 16, 2024
·
3 revisions
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.getActionButton("Clear");
// get all action buttons
const buttons = await titlePart.getActionButtons();
// click a button
await button.click();