fill method infrastructure ✓ 100.0%
Last updated: 2026-03-04T23:21:38.379Z
Metrics
LOC: 11
Complexity: 2
Params: 2
Coverage: 100.0% (5/5 lines, 3x executed)
Signature
fill(wrapper: HTMLElement, value: string): : boolean
Source Code
fill(wrapper: HTMLElement, value: string): boolean {
const input = wrapper.querySelector<HTMLInputElement>(
".ant-select-selection-search-input",
);
if (!input) return false;
input.focus();
setReactInputValue(input, value);
return true;
},
Dependencies (Outgoing)
| Target | Type |
|---|---|
| setReactInputValue | calls |
No incoming dependencies.