ohif-viewer/tests/SEGHydrationFrom3DFourUp.spec.ts

52 lines
1.3 KiB
TypeScript

import {
attemptAction,
checkForScreenshot,
reduce3DViewportSize,
screenShotPaths,
test,
visitStudy,
} from './utils';
test.beforeEach(async ({ page }) => {
const studyInstanceUID = '1.3.6.1.4.1.14519.5.2.1.1706.8374.643249677828306008300337414785';
const mode = 'viewer';
await visitStudy(page, studyInstanceUID, mode, 2000);
});
test.describe('3D four up SEG hydration', async () => {
test('should properly hydrate SEG from 3D four up layout', async ({
page,
mainToolbarPageObject,
}) => {
await mainToolbarPageObject.layoutSelection.threeDFourUp.click();
await attemptAction(() => reduce3DViewportSize(page), 10, 100);
await page.waitForTimeout(5000);
await checkForScreenshot(
page,
page,
screenShotPaths.segHydrationFrom3DFourUp.threeDFourUpBeforeSEG
);
await page.getByTestId('study-browser-thumbnail-no-image').dblclick();
await page.waitForTimeout(5000);
await checkForScreenshot(
page,
page,
screenShotPaths.segHydrationFrom3DFourUp.threeDFourUpAfterSEG
);
await page.getByTestId('yes-hydrate-btn').click();
await page.waitForTimeout(5000);
await checkForScreenshot(
page,
page,
screenShotPaths.segHydrationFrom3DFourUp.threeDFourUpAfterSegHydrated
);
});
});