vscode-extension-tester
vscode-extension-tester copied to clipboard
[🚫 Bug] BottomBarPanel().openProblemsView() is not properly working
The method is not correctly working for win/linux The Problems view is not opened and the clipboard contains 'a' in buffer
TimeoutError: Waiting until element is visible
Wait timed out after 5198ms
I came across the same issue and noticed that if you first call TerminalView, for instance, in any other test, then ProblemsView is opened without any issue: const terminalView = await new BottomBarPanel().openTerminalView(); const problemsView = await new BottomBarPanel().openProblemsView(); // now it works.
fixed
closing for now - cannot reproduce