ohif-viewer/tests/utils/getSvgPath.ts

12 lines
296 B
TypeScript
Raw Normal View History

import { ViewportPageObject } from '../pages/ViewportPageObject';
const getSvgPath = async (viewportPageObject: ViewportPageObject, viewportId = 'default') => {
return viewportPageObject
.getById(viewportId)
.svg('path')
.first()
.getAttribute('d');
};
export { getSvgPath };