0

我有这个黄瓜任务:

Then I should see following posting modes
        | row | day  | hour | minute | location | category |
        | 1   | 1    | 7    | 0      | 29       | 6        |
        | 2   | 2    | 8    | 5      | 27       | 7        |
        | 3   | 3    | 9    | 10     | 28       | 18       |
        | 4   | 4    | 15   | 15     | 29       | 18       |
        | 5   | 5    | 17   | 20     | 27       | 7        |
        | 6   | 6    | 20   | 30     | 28       | 6        |
        | 6   | 0    | 22   | 50     | 29       | 7        |

在它的后面有这样的描述:

Then /^I should see following posting modes$/ do |table|
  table.hashes.each do |posting|
      within("#itemPosting .attributeContainer table tbody tr:eq(#{posting[:row]})") do
            find("#item_posting_day").value.should == posting[:day]
            find("#item_posting_hour").value.should == posting[:hour]
            find("#item_posting_minute").value.should == posting[:minute]
            find("#item_posting_location").value.should == posting[:location]
            find("#item_posting_category").value.should == posting[:category]
      end
  end  
end

所以这部分:

tr:eq(#{posting[:row]})

不起作用(它进入下一步,然后给出一个错误,即找不到#item_posting_day。)

但如果我这样做:

tr:eq(4)

它可以工作(找到#item_posting_day 字段,获取它的值,然后给出一个错误,指出值不是预期的值,但没关系)。

所以我不明白使用这种语法有什么问题:

tr:eq(#{posting[:row]})
4

1 回答 1

1

似乎hashes将列标题转换为字符串,而不是符号。尝试使用'row'而不是:row

于 2013-01-31T07:04:51.600 回答