我正在尝试从黄瓜中的三列内联数据表中读取数据。
功能文件:
Then I should see grades,exteriors, interiors and engines available:
|grades |exteriors | engine |
|xdata-id-Elegance |xdata-id-NH-788p | 12345 |
| |xdata-id-NH737M | |
| |xdata-id-NH731P | |
| |xdata-id-R-539P | |
步骤定义:
Then(/^I should see grades,exteriors, interiors and engines available:$/) do |table|
data = table.rows_hash
puts data['exteriors']
end
这给了我只允许 2 行的错误。
有谁知道我可以使用表格对象访问所有三列的另一种方式?