mirror of
https://github.com/penpot/penpot.git
synced 2025-05-10 00:36:38 +02:00
🐛 Fix arrow key movement on tabs
This commit is contained in:
parent
e65c0d9f48
commit
9a587c91a8
3 changed files with 24 additions and 2 deletions
|
@ -177,3 +177,15 @@ test("Bug 7489 - Workspace-palette items stay hidden when opening with keyboard-
|
|||
),
|
||||
).toBeVisible();
|
||||
});
|
||||
|
||||
test("Bug 8784 - Use keyboard arrow to move inside a text input does not change tabs", async ({
|
||||
page,
|
||||
}) => {
|
||||
const workspacePage = new WorkspacePage(page);
|
||||
await workspacePage.setupEmptyFile();
|
||||
await workspacePage.goToWorkspace();
|
||||
await workspacePage.pageName.click();
|
||||
await page.keyboard.press("ArrowLeft");
|
||||
|
||||
await expect(workspacePage.pageName).toHaveText("Page 1");
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue