mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-08-26 09:55:52 +00:00
Playwright: fixed AUT testCases spec (#17844)
This commit is contained in:
parent
370ee13a24
commit
402e58ef36
@ -63,8 +63,16 @@ test('Table difference test case', async ({ page }) => {
|
|||||||
// The 'networkidle' parameter tells Playwright to wait until there are no network connections
|
// The 'networkidle' parameter tells Playwright to wait until there are no network connections
|
||||||
// for at least 500 ms.
|
// for at least 500 ms.
|
||||||
await page.waitForLoadState('networkidle');
|
await page.waitForLoadState('networkidle');
|
||||||
|
|
||||||
|
await expect(
|
||||||
|
page
|
||||||
|
.getByTitle(table2.entityResponseData?.['fullyQualifiedName'])
|
||||||
|
.locator('div')
|
||||||
|
).toBeVisible();
|
||||||
|
|
||||||
await page
|
await page
|
||||||
.getByTitle(table2.entityResponseData?.['fullyQualifiedName'])
|
.getByTitle(table2.entityResponseData?.['fullyQualifiedName'])
|
||||||
|
.locator('div')
|
||||||
.click();
|
.click();
|
||||||
|
|
||||||
await page.fill(`#tableTestForm_params_keyColumns_0_value`, 'user_id');
|
await page.fill(`#tableTestForm_params_keyColumns_0_value`, 'user_id');
|
||||||
|
Loading…
x
Reference in New Issue
Block a user