mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2026-01-06 04:26:57 +00:00
Fix the flakiness in Service Ingestion spec (#23360)
This commit is contained in:
parent
1f379a8697
commit
b97185b0a2
@ -560,9 +560,21 @@ class ServiceBaseClass {
|
||||
|
||||
// update description
|
||||
await page.click('[data-testid="edit-description"]');
|
||||
await page.click(descriptionBox);
|
||||
await page.fill(descriptionBox, '');
|
||||
await page.fill(descriptionBox, description);
|
||||
await page.waitForSelector(
|
||||
`.description-markdown-editor:visible ${descriptionBox}`,
|
||||
{
|
||||
state: 'visible',
|
||||
}
|
||||
);
|
||||
await page.click(`.description-markdown-editor:visible ${descriptionBox}`);
|
||||
await page.fill(
|
||||
`.description-markdown-editor:visible ${descriptionBox}`,
|
||||
''
|
||||
);
|
||||
await page.fill(
|
||||
`.description-markdown-editor:visible ${descriptionBox}`,
|
||||
description
|
||||
);
|
||||
|
||||
await page.click('[data-testid="save"]');
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user