1

私はそのようなセルを持つテーブルを持っています:

<td colspan="2">
  <label for="stammdaten_bundesland_id">Bundesland</label>
  Nordrhein-Westfalen
</td>

ラベルを使用して td でそのテキストにアクセスするにはどうすればよいですか?

私は一歩を踏み出したい:

I should see "Nordrhein-Westfalen" within cell with label for "stammdaten_bundesland_id"
4

1 に答える 1

1

私はこれがそれを行うべきだと思います:

Then /^I should see "([^"]*)" within the cell with label for "([^"]*)"$/ do |text, label|
  page.should have_xpath("//td[./label[@for=\"#{label}\"]]", :text => text)
end
于 2012-08-23T12:56:48.200 に答える