以下是 DOM 详细信息:
<div id: "abc_440"
<table class = "listtable" >
<tbody>
<tr>
<td id = "someid" >
<td class = 'someclass_item"> This is Text </td>
<td class = 'someclass_button">
< a > Add </a>
</td>
</tr>
</tbody>
</table>
</div>
我需要在“这是文本”中单击“添加”以获取特定文本。我必须使用 ID 为 (abc_440) 的 div 来定位相应的表,因为可能存在具有相同 dom 布局的 div。但 div ID 处的索引(例如 440)不断更改为随机数。我一般如何处理它?
请帮忙。