从span标签中读取文本值

时间:2013-07-30 08:05:51

标签: ruby xpath cucumber capybara capybara-webkit

我需要使用capyvara

从所选单选按钮内的span标签中读取文本值

我有一个radio button列表,后跟文字,括号内的数字。

例如:带Thank You(82)的radiobutton 我想要的是读取括号内选定的单选按钮数82。

我使用了以下代码..但它无效

value=page.find(".cardFilterItemSelection[checked='checked'] + span.itemCount").text

尝试使用Xpath但没有得到任何东西

 value=page.find(:xpath,"//input[@class = 'cardFilterItemSelection' and @checked = 'checked']/span[@class = 'itemCount']/text()")

怎么可能?

<label id="thankyou_label" for="thankyou_radio" class="itemName radio">
  <input checked="checked" tagtype="Occasion" value="Thank You" id="thankyou_radio" name="occasionGroup" class="cardFilterItemSelection" type="radio">
  <span class="occasion_display_name">
    Thank You 
  </span>
  <span class="itemCount">
    (82)
  </span>
</label>

<label id="spring_label" class="itemName radio" for="spring_radio">
  <input id="spring_radio" class="cardFilterItemSelection" type="radio" name="occasionGroup" value="Spring" tagtype="Occasion">
  <span class="occasion_display_name">
    Spring 
  </span>
  <span class="itemCount">
    (0)
  </span>
</label>

1 个答案:

答案 0 :(得分:10)

我认为你走在了正确的轨道上。但是你应该查询不是span包含的文本节点,而是查询span本身并使用XPath axes

span = page.find(:xpath,"//input[@class = 'cardFilterItemSelection' and @checked = 'checked']/following-sibling::span[@class = 'itemCount']")
value = span.text

但是我个人觉得css选择器更具可读性(除非你需要进行复杂的查询)

span = page.find(:css, 'input.cardFilterItemSelection[checked=checked] ~ span.itemCount')
value = span.text