assert_select 第一个和第二个 html table 单元格内容 rails

assert_select first and second html table cell contents in rails

我有以下 html table:

<table class="list user_permission">
  <tr>
    <th>Name</th>
    <th>Permission</th>
  </tr>
  <tr id="permission_1">
    <td>
      test user01
    </td>
    <td>
      Reading permission
    </td>
  </tr>
</table>

我想在我的测试中断言第一个和第二个 table 单元格的内容。我尝试了以下方式:

assert_select "tr#permission_1 td", "test user01"
assert_select "tr#permission_1 td", "Reading permission"

但是没用,找不到这样的条目。

你可以这样测试:

assert_select 'table' do
  assert_select 'tr#permission_1' do
    assert_select 'td:nth-child(1)', 'test user01'
    assert_select 'td:nth-child(2)', 'Reading permission'
  end
end

如果这不起作用,您也可以尝试使用如下正则表达式:

assert_select 'td:nth-child(1)', /test user01/