I am working on a web-scraping project and have most of it working but have run into a problem clicking a single button. The problem is that the name and ID of the button in HTML are dynamically created:
<td colspan="1" rowspan="3" valign="middle"><input type="submit" name="11|2328342|429156$Link" value="Select" id="11|2328342|429156_Link" /></td>
and so, I can't use getElementById or getElementByClassName as the Id and name change with each iteration.
Is there any other way to reference and then click this button?