You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
1.0 KiB
27 lines
1.0 KiB
import type { render } from '../../../tests/utils';
|
|
import { fireEvent } from '../../../tests/utils';
|
|
|
|
export function openPicker(wrapper: ReturnType<typeof render>, index = 0) {
|
|
fireEvent.mouseDown(wrapper.container?.querySelectorAll('input')?.[index]!);
|
|
fireEvent.focus(wrapper.container?.querySelectorAll('input')?.[index]!);
|
|
}
|
|
|
|
export function closePicker(wrapper: ReturnType<typeof render>, index = 0) {
|
|
fireEvent.blur(wrapper.container?.querySelectorAll('input')[index]!);
|
|
}
|
|
|
|
export function selectCell(wrapper: ReturnType<typeof render>, text: string | number, index = 0) {
|
|
let matchCell: HTMLTableCellElement | null = null;
|
|
const tds = wrapper.container?.querySelectorAll('table')?.[index]?.querySelectorAll('td');
|
|
tds.forEach((td) => {
|
|
if (td.querySelector('div')?.innerHTML === String(text) && td.className.includes('-in-view')) {
|
|
matchCell = td;
|
|
fireEvent.click(td);
|
|
}
|
|
});
|
|
/* istanbul ignore next */
|
|
if (!matchCell) {
|
|
throw new Error('Cell not match in picker panel.');
|
|
}
|
|
return matchCell;
|
|
}
|
|
|