実行中のさまざまなサービスの「アクティブ」列から値を取得しようとしているタブ付きのテーブルがあります。
Services
Service Active
SERVICE1 YES
SERVICE2 NO
SERVICE3 YES
私はテーブルからこのようなものを使用したいと思っていました。しかし、これは私にはうまくいかないようです。目標は、サービスの 1 つを選択し、それがアクティブな YES または NO かどうかを調べ、それを変数に入れることです。皆さんは以前の回答で私を大いに助けてくれました。あなたの助けと意見に本当に感謝しています.
browser.td(:text => "SERVICE1").parent.td(:index => 1).flash
上記のコードを使用しようとすると、このようなエラーが発生します
/home/bill/.rvm/gems/ruby-1.9.2-p320@vts_automated/gems/watir-webdriver-0.6.4/lib/watir-webdriver/elements/element.rb:490:in `assert_exists': unable to locate element, using {:id=>"services", :tag_name=>"td"} (Watir::Exception::UnknownObjectException)
私のhtmlコードは次のようになります
<table class="tabbed_table" cellspacing="5">
<tbody>
<tr>
<td>
<h2>Appliance</h2>
<dl class="table-display">
<dt class="wide">Product version: </dt>
<dd class="wide">xxxxx</dd>
<dt class="wide">Serial number:</dt>
<dd class="wide">xxxxxx</dd>
<dt class="wide">System Time:</dt>
<dd class="wide">Wednesday, October 30, 2013 02:02PM CDT</dd>
</dl>
</td>
<td>
<h2>Services</h2>
<table id="services">
<tbody>
<tr>
<th>Service</th>
<th>Active</th>
</tr>
<tr class="alt">
<td class="no_bg">SERVICE1</td>
<td class="no_bg">YES</td>
</tr>
<tr class="normal">
<td class="no_bg"> SERVICE2 </td>
<td class="no_bg">NO</td>
</tr>
<tr class="alt">
<td class="no_bg"> SERVICE3 </td>
<td class="no_bg">YES</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>