我想单击名为 的按钮Envoi,但找不到使用 来引用它的 id getElementById("Envoi").click。还有其他方法可以做到这一点吗?
网站名称为:http://famille-frappier.fr/
,按钮名称为Envoi。
相关的 html 是:
<input type="button" value="Envoi">
在下面的HTML代码,我在一个包含4列的列:read,create,edit和delete(两次为城市和项目).
我想做的是检查项目中是否检查了读取按钮.我是水豚的新手,我尝试了find('citites')然后我不知道如何提及它的孩子来检查是否检查了创建.非常感谢您的帮助.
<tr>
<th class="labelCol" scope="row">Cities</th>
<td class="dataCol col02">
<table class="crudTable">
<tbody>
<tr class="crudTable">
<td class="crudCol">
<img src="/img/checkbox_checked.gif" alt="Checked" width="21" height="16" class="checkImg" id="crudRead___01Ib0000000118kEAA" title="Checked">
</td>
<td class="crudCol">
<img src="/img/checkbox_unchecked.gif" alt="Not Checked" width="21" height="16" class="checkImg" id="crudCreate___01Ib0000000118kEAA" title="Not Checked">
</td>
<td class="crudCol">
<img src="/img/checkbox_unchecked.gif" alt="Not Checked" width="21" height="16" class="checkImg" id="crudUpdate___01Ib0000000118kEAA" title="Not Checked">
</td>
<td class="crudCol">
<img src="/img/checkbox_unchecked.gif" alt="Not Checked" width="21" height="16" class="checkImg" id="crudDelete___01Ib0000000118kEAA" title="Not Checked">
</td>
<td class="marvarCol">
<img src="/img/checkbox_unchecked.gif" alt="Not Checked" …Run Code Online (Sandbox Code Playgroud)