我有一张这样的桌子:
<table data-test='container-component-table'>
<tr data-test='container-component-table-column-names'>
<th>Firstname</th>
<th>Lastname</th>
<th>Age</th>
</tr>
</table>
我试图通过写
来获取container-component-table-column-names
的孩子
expect(wrapper.find('容器组件表列名称').children()。length).toBe(3)
但是它不起作用。它发现零个子元素。有人知道为什么吗?