Fix(windows-test):display folder/request name properly and disable secondary sidebar - #155
Open
guru-sharan-bruno wants to merge 1 commit into
Open
guru-sharan-bruno wants to merge 1 commit into
guru-sharan-bruno wants to merge 1 commit into
Conversation
…le secondary sidebar while executing automation script
morsh-bruno
reviewed
Sep 9, 2026
| return longPath.replace(/^([A-Za-z]):/, (_match, drive: string) => `${drive.toLowerCase()}:`); | ||
| } | ||
|
|
||
| async function ensureSecondarySidebarClosed(page: Page): Promise<void> { |
There was a problem hiding this comment.
Check if this is necessary and does affect the E2E meaningfully
morsh-bruno
suggested changes
Sep 9, 2026
| if (!isVisible) return; | ||
|
|
||
| await page.keyboard.press('F1'); | ||
| await page.waitForSelector('.quick-input-widget').catch(() => {}); |
| const isVisible = await auxiliaryBar.isVisible().catch(() => false); | ||
| if (!isVisible) return; | ||
|
|
||
| await page.keyboard.press('F1'); |
There was a problem hiding this comment.
use the 'runCommand' @ tests/e2e/utils/page/actions.ts for the interaction
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Description
JIRA: VSCODE-158
This fix address the folder/request name displayed in the Windows and disables the secondary sidebar while an automation script is being executed in the VS Code extension.
Problem
Folder/request names were incorrectly displayed as (..) instead of showing the actual name.
The secondary sidebar remained visible while executing automation scripts.
Fix
Updated the folder/request name handling to display the correct name instead of (..).
Disabled the secondary sidebar during automation script execution in the VS Code extension.