From 33439b38407d97e8eade6c6c3ad2ee095858a265 Mon Sep 17 00:00:00 2001 From: Bijin A B Date: Thu, 25 Dec 2025 14:47:56 +0530 Subject: [PATCH] chore: playwright fix --- tests/request/copy-request/copy-folder.spec.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/request/copy-request/copy-folder.spec.ts b/tests/request/copy-request/copy-folder.spec.ts index 228c303c3..7f1f10d25 100644 --- a/tests/request/copy-request/copy-folder.spec.ts +++ b/tests/request/copy-request/copy-folder.spec.ts @@ -11,7 +11,7 @@ test.describe('Copy and Paste Folders', () => { const collection = page.locator('.collection-name').filter({ hasText: 'test-collection' }); // Create a new folder with a request inside - await collection.locator('.collection-actions').hover(); + await collection.hover(); await collection.locator('.collection-actions .icon').click(); await page.locator('.dropdown-item').filter({ hasText: 'New Folder' }).click(); await page.locator('#folder-name').fill('folder-to-copy'); @@ -65,7 +65,7 @@ test.describe('Copy and Paste Folders', () => { const folderToCopy = page.locator('.collection-item-name').filter({ hasText: 'folder-to-copy' }).first(); // Create a target folder - await collection.locator('.collection-actions').hover(); + await collection.hover(); await collection.locator('.collection-actions .icon').click(); await page.locator('.dropdown-item').filter({ hasText: 'New Folder' }).click(); await page.locator('#folder-name').fill('target-folder');