Skip to content

Commit

Permalink
fix:modify vfolder name to use params
Browse files Browse the repository at this point in the history
  • Loading branch information
gee05053 committed Dec 18, 2023
1 parent cb750c7 commit e063020
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests-examples/DataStoragePage.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ export async function createVfolder(page: Page, vfolderName: string) {
await page.locator('#data').click();
await page.getByRole('button', { name: 'add' }).click();
await page.locator('#add-folder-name label').click();
await page.getByRole('textbox', { name: 'Folder name*' }).fill('testvfolder');
await page.getByRole('textbox', { name: 'Folder name*' }).fill(vfolderName);
await page.getByRole('button', { name: 'Create', exact: true }).click();
await expect(page.getByText('testvfolder')).toBeVisible();
await expect(page.getByText(vfolderName)).toBeVisible();
}

0 comments on commit e063020

Please sign in to comment.