Я использую библиотеку реагирования для тестирования компонентов. Опции выбора пользовательского интерфейса отображаются в всплывающем окне. отладка не перечисляет параметры. Как событие on click вызывается в случае выбора параметров.
Ниже приводится мой выбор компонента.
import TextField from '@material-ui/core/TextField';
import { MenuItem } from '@material-ui/core';
<TextField
select
id="fruit"
inputProps={{ id: "fruit" }}
SelectProps={{
SelectDisplayProps: {
'data-testid': "fruit"
}
}}
fullWidth
variant="outlined"
{...errors}
>
{options.map(option => (
<MenuItem key={option[valueFieldName]} value={option[valueFieldName]}>
{option[labelFieldName]}
</MenuItem>
))}
</TextField>
Какие селекторы запросов следует использовать для события onclick.
Вот как это поле регистрируется с помощью debug ()
<div class="MuiFormControl-root MuiTextField-root MuiFormControl-fullWidth">
<label
class="MuiFormLabel-root MuiInputLabel-root MuiInputLabel-formControl MuiInputLabel-animated MuiInputLabel-outlined"
data-shrink="false"
for="fruit"
id="fruit-label"
>
Action on failure
</label>
<div class="MuiInputBase-root MuiOutlinedInput-root MuiInputBase-fullWidth MuiInputBase-formControl">
<div
aria-haspopup="listbox"
aria-labelledby="fruit-label fruit"
class="MuiSelect-root MuiSelect-select MuiSelect-selectMenu MuiSelect-outlined MuiInputBase-input MuiOutlinedInput-input"
data-testid="fruit"
id="fruit"
role="button"
tabindex="0"
>
<span></span>
</div>
<input name="fruit" type="hidden" value="" />
<svg
aria-hidden="true"
class="MuiSvgIcon-root MuiSelect-icon MuiSelect-iconOutlined"
focusable="false"
role="presentation"
viewBox="0 0 24 24"
>
<path d="M7 10l5 5 5-5z" />
</svg>
<fieldset
aria-hidden="true"
class="PrivateNotchedOutline-root-242 MuiOutlinedInput-notchedOutline"
style="padding-left: 8px;"
>
<legend
class="PrivateNotchedOutline-legend-243"
style="width: 0.01px;"
>
<span></span>
</legend>
</fieldset>
</div>
</div>
У меня есть другое поле в той же форме, которое отображается в зависимости от значения этого поля выбора.
Я хотел бы проверить что-то вроде этого:
const selectField = screen.getByTestId('fruit');
fireEvent.change(selectField, {
target: { value: 'APPLE' }
});
expect(selectField.value).toBe('APPLE');
expect(anotherField).toBeInTheDocument();
Сбой при втором ожидании. Как правильно тестировать такие формы?