[error] Element //div[@id='newslist_config']//button[@type='button'] not found
自動実行を使用してセレン テストを実行するとエラーが発生しましたが、コマンドをクリックして [Execute this command
テストに合格] を選択するとエラーが発生しました。セレンがその要素を見つけられない理由を教えてください。
私のセレンテストは
<tr>
<td>click</td>
<td>//div[@id='newslist_config']//button[@type='button']</td>
<td></td>
</tr>
htmlは
<div id="newslist_config" class="section-box span8">
<div class="accordion-group">
<div class="accordion-heading">
<h3>News-List Configuration</h3>
<a class="btn btn-danger close_newslist_config" data-dismiss="modal" href="#">remove widget</a>
<button class="btn btn-info collapse-btn" type="button" href="#collapse_newslist" data-parent="#newslist_config" data-toggle="collapse">
<span class="edit-btn-txt">
<span class="collapse-btn-txt">
</button>
</div>
<div id="collapse_newslist" class="collapse collapse-box">
</div>
</div>