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)

graph LR fill["fill"] setReactInputValue["setReactInputValue"] fill -->|calls| setReactInputValue style fill fill:#dbeafe,stroke:#2563eb,stroke-width:2px click fill "119d6c7da53bca2c.html" click setReactInputValue "924fcd707043186b.html"
TargetType
setReactInputValue calls

No incoming dependencies.