2015-10-08 82 views
2

在我的應用程序中,我已檢查任何一個複選框並單擊保存按鈕。我與表用於如下選擇的選項,但它不工作:選中表格中的複選框

# with in table, set 
within_table('countryTable') do 
    find(:xpath, "//tbody/tr/td[1]/checkbox").set(true) 
end 

click_button('Save') 

,但它不工作.....

這個老闆

選擇國家
           <tr> 
                <td class='first'> 
                 <input type='checkbox' id='CheckboxAU' name='AU' value='AU' /> 
                </td> 
                <td> 
                 Australia 
                </td> 
               </tr> 

               <tr> 
                <td class='first'> 
                 <input type='checkbox' id='CheckboxCA' name='CA' value='CA' /> 
                </td> 
                <td> 
                 Canada 
                </td> 
               </tr> 

               <tr> 
                <td class='first'> 
                 <input type='checkbox' id='CheckboxFR' name='FR' value='FR' /> 
                </td> 
                <td> 
                 France 
                </td> 
               </tr> 

               <tr> 
                <td class='first'> 
                 <input type='checkbox' id='CheckboxGG' name='GG' value='GG' /> 
                </td> 
                <td> 
                 Guernsey 
                </td> 
               </tr> 

               <tr> 
                <td class='first'> 
                 <input type='checkbox' id='CheckboxJP' name='JP' value='JP' /> 
                </td> 
                <td> 
                 Japan 
                </td> 
               </tr> 

               <tr> 
                <td class='first'> 
                 <input type='checkbox' id='CheckboxNZ' name='NZ' value='NZ' /> 
                </td> 
                <td> 
                 New Zealand 
                </td> 
               </tr> 

               <tr> 
                <td class='first'> 
                 <input type='checkbox' id='CheckboxZA' name='ZA' value='ZA' /> 
                </td> 
                <td> 
                 South Africa 
                </td> 
               </tr> 

               <tr> 
                <td class='first'> 
                 <input type='checkbox' id='CheckboxCH' name='CH' value='CH' /> 
                </td> 
                <td> 
                 Switzerland 
                </td> 
               </tr> 

               <tr> 
                <td class='first'> 
                 <input type='checkbox' id='CheckboxAE' name='AE' value='AE' /> 
                </td> 
                <td> 
                 United Arab Emirates 
                </td> 
               </tr> 

               <tr> 
                <td class='first'> 
                 <input type='checkbox' id='CheckboxGB' name='GB' value='GB' /> 
                </td> 
                <td> 
                 United Kingdom 
                </td> 
               </tr> 

               <tr> 
                <td class='first'> 
                 <input type='checkbox' id='CheckboxUS' name='US' value='US' /> 
                </td> 
                <td> 
                 United States 
                </td> 
               </tr> 

              </tbody> 
             </table> 
            </div> 
           </td> 
          </tr> 
         </table> 

回答

2

您可以通過我到達複選框d,css或xpath。

# to check the FR with xpath 
find(:xpath, "//input[@name='FR']").click() 

# to check the FR with id 
find(:id, "CheckboxFR").click() 

# to check the FR with css 
find(:css, "#CheckboxFR").click() 

,如果你想使用within_table其範圍縮小:

within_table(find(:id, "table_id")) do 
    find(:id, "id_of_option").click() 
end 
+0

謝謝你需要幫助。如果我卡在我的代碼中,我會保持發佈。 –

+0

無論出於何種原因,檢查方法和您的示例都不起作用。我不知道爲什麼,因爲唯一的ID確實存在,並且沒有重複。 – chaostheory

+0

@chaostheory你運行Ramesh案件,並沒有通過?任何錯誤請給它? –