ExtensionEditorView

Lookup
Section titled “Lookup”import { ExtensionEditorView } from 'vscode-extension-tester';...const extensionEditor = new ExtensionEditorView();Get values from opened extension
Section titled “Get values from opened extension”You can get individual values using following functions:
await extensionEditor.getName();
await extensionEditor.getVersion(); // For VS Code 1.96+ it is required to use 'extensionEditorDetailsSection.getVersion()' instead
await extensionEditor.getPublisher();
await extensionEditor.getDescription();
await extensionEditor.getCount();Manage tabs
Section titled “Manage tabs”Tabs section can be managed by this editor as well. For work with ‘Details’ you can use ExtensionEditorDetailsSection.
await extensionEditor.getTabs();
await extensionEditor.switchToTab("tabname");
await extensionEditor.getActiveTab();