1

我正在尝试使用 Elements 来获取元素数组,但它在这里不起作用。

任何人都可以帮助我吗?十分感谢。

这是我的代码:

<select name="test" id="select">
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
</select>

现在我正在尝试获取所有选项元素:

client.url('www.somesite.com')
  .elements('#select>option').then(function(res){
       console.log(res.length);
    })

但是我得到了 'res.length' 的 'undefined' 结果。

如果我使用 getText 那么我可以获得正确的结果:

 client.url('www.somesite.com')
  .getText('#select>option').then(function(res){
       console.log(res.length);
    })
4

1 回答 1

2

您需要访问该value属性。

console.log(res.value.length);
于 2015-11-05T04:45:01.787 回答