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