ActionsControl

Look up the ActionsControl by title
Section titled “Look up the ActionsControl by title”Import and find the control through activity bar
import { ActivityBar, ActionsControl } from 'vscode-extension-tester';...// get actions control for 'Manage'const control = (await new ActivityBar().getGlobalAction('Manage')) as ActionsControl;Open action menu
Section titled “Open action menu”Click the action control to open its context menu
const menu = await control.openActionMenu();Get title
Section titled “Get title”Get the control’s title
const title = await control.getTitle();Open context menu
Section titled “Open context menu”Right click on the control to open the context menu (in this case has the same effect as openActionMenu)
const menu = await control.openContextMenu();