I'm using Excel VBA and Selenium to control and automate data entry into a website. I'm having a problem with any elements on the website that include

href="javascript:__doPostBack.

Example element:

<a id="ucRequoteViewReportTop_lnkRequote" href="javascript:__doPostBack('ucRequoteViewReportTop$lnkRequote','')">Requote</a>

If, for example, I run the following code:

MyChrome.FindElementById("ucRequoteViewReportTop_lnkRequote").Click

I get "NoSuchElementError"

Google extensions such as XPath Helper do not detect the properties of any elements that include href="javascript:__doPostBack.

Any advice to resolve this issue would be very much appreciated, Thanks.