You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
github-actions[bot] edited this page May 16, 2024
·
3 revisions
Lookup
import{ActivityBar,SideBarView}from"vscode-extension-tester";// to look up the currently open view (if any is open)constview=newSideBarView();// to open a specific view and look it upconstcontrol=awaitnewActivityBar().getViewControl("Explorer");constview1=awaitcontrol.openView();
Get Individual Parts
// to get the title partconsttitlePart=awaitview.getTitlePart();// to get the content partconstcontent=awaitview.getContent();