mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-08-25 17:37:57 +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
|
||||
// for at least 500 ms.
|
||||
await page.waitForLoadState('networkidle');
|
||||
|
||||
await expect(
|
||||
page
|
||||
.getByTitle(table2.entityResponseData?.['fullyQualifiedName'])
|
||||
.locator('div')
|
||||
).toBeVisible();
|
||||
|
||||
await page
|
||||
.getByTitle(table2.entityResponseData?.['fullyQualifiedName'])
|
||||
.locator('div')
|
||||
.click();
|
||||
|
||||
await page.fill(`#tableTestForm_params_keyColumns_0_value`, 'user_id');
|
||||
|
Loading…
x
Reference in New Issue
Block a user