forked from redhat-developer/vscode-extension-tester
-
Notifications
You must be signed in to change notification settings - Fork 0
ViewContent
github-actions[bot] edited this page Oct 7, 2024
·
1 revision
import { SideBarView } from 'vscode-extension-tester';
...
const contentPart = new SideBarView().getContent();
// get a section by title, case insensitive
const section = await contentPart.getSection("Open Editors");
// get all sections
const sections = await contentPart.getSections();
// look if there is an active progress bar
const hasProgress = await contentPart.hasProgress();