mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-07-19 15:31:59 +00:00
Fix flaky e2e tests (#19038)
* fix lineage flaky tests * fix glossary flakiness
This commit is contained in:
parent
7d962d91eb
commit
9a76b07025
@ -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(
|
||||
|
@ -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();
|
||||
};
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user