跳至主要内容
版本:22.5.0

Locator.fill() 方法

使用提供的 value 填充由定位器标识的输入。输入的类型在运行时确定,并根据类型选择适当的填充方法。支持 contenteditable、selector、input。

签名:

class Locator {
fill<ElementType extends Element>(
this: Locator<ElementType>,
value: string,
options?: Readonly<ActionOptions>
): Promise<void>;
}

参数

参数类型说明
this定位器<ElementType>
value字符串
options只读<ActionOptions>(可选)

返回

Promise<void>