跳至主要内容
版本:22.5.0

Frame.select() 方法

选择与selector匹配的第一个<select>元素上的值集。

签名:

class Frame {
select(selector: string, ...values: string[]): Promise<string[]>;
}

参数

参数类型描述
选择器字符串要查询的选择器。
字符串[]要选择的值数组。如果<select>具有multiple属性,则所有值都会被考虑,否则只考虑第一个值。

返回值

Promise<string[]>

成功选择的价值列表。

异常

如果不存在与selector匹配的<select>,则抛出异常。

示例

frame.select('select#colors', 'blue'); // single selection
frame.select('select#colors', 'red', 'green', 'blue'); // multiple selections