Fix flaky e2e tests (#19038)

* fix lineage flaky tests

* fix glossary flakiness
This commit is contained in:
Karan Hotchandani 2024-12-19 23:05:55 +05:30 committed by GitHub
parent 7d962d91eb
commit 9a76b07025
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 4 deletions

View File

@ -1071,7 +1071,9 @@ export const approveTagsTask = async (
await taskResolve;
await redirectToHomePage(page);
const glossaryTermsResponse = page.waitForResponse('/api/v1/glossaryTerms*');
await sidebarClick(page, SidebarItem.GLOSSARY);
await glossaryTermsResponse;
await selectActiveGlossary(page, entity.data.displayName);
const tagVisibility = await page.isVisible(

View File

@ -133,10 +133,9 @@ export const dragAndDropNode = async (
await page.hover(originSelector);
await page.mouse.down();
const box = (await destinationElement.boundingBox())!;
const x = (box.x + box.width / 2) * 0.25; // 0.25 as zoom factor
const y = (box.y + box.height / 2) * 0.25; // 0.25 as zoom factor
await page.mouse.move(x, y);
await destinationElement.hover();
const x = box.x + 250;
const y = box.y + box.height / 2;
await page.mouse.move(x, y, { steps: 20 });
await page.mouse.up();
};