Function setValueByXPath

  • Changes the value of a form element by XPath.

    Parameters

    • ctx: Context

      Context object.

    • selector: string

      Element Xpath selector.

    • value: any

      New value.

    Returns Promise<void>

    Remarks

    Keep in mind that using the helper "setValueByXPath" on form fields will not trigger change events, and the website will not see the change. In this case, one almost always want to use "fillByXPath" or "typeByXPath" instead.

    Example

    await setValueByXPath(ctx, '//input[@id="id-number"]', '23d79d99S');
    

Generated using TypeDoc