I am working to create a connector app between a client database and an external web system. This will prevent daily double entry of notes to the web page. The external system is an old asp site. I do not have acces to their code. They do not offer an API.
I have all of the connecter app working with the exception of clicking the link associated with the "Notes" that need updating.
Basically, if you picture an HTML table that looks like this:
[3/3/2017][category][ Notes ]
[2/5/2015][category][ correspondence ]
[1/5/2013][category][ records ]
The HTML link is on the date, not on the word "Notes" nor "correspondence", or "records". Some tables have up to 8 rows. The notes row isn't always on top. There is no way to sort it to the top. Since the
I want to click the date link that corresponds to the word "Notes"
I have tried countless regex queries on the underlying HTML code with no luck. Anyone have any suggestions on how I can get this done?
Here is the HTML as requested:
<a href="weblink.com">10/26/2016</a>
</td>
<td height="20" align="center" nowrap> Open</td>
<td height="20" align="center" nowrap>10/26/2016</td>
<td height="20" align="center" nowrap></td>
<td height="20" width="331">Notes<br>
</td>
</tr>
<tr >
<a href="weblink.com">1/13/2017</a>
<td height="20" align="center" nowrap> Open</td>
<td height="20" align="center" nowrap>10/26/2016</td>
<td height="20" align="center" nowrap></td>
<td height="20" width="331">Correspondence<br>
</td>
</tr>