I'm trying to "select" the link from the onclick attribute in the following portion of html
<span onclick="Javascript:document.quickFindForm.action='/blah_blah'"
class="specialLinkType"><img src="blah"></span>
but can't get any further than the following XPath
//span[@class="specialLinkType"]/@onclick
which only returns
Javascript:document.quickFindForm.action
Any ideas on how to pick out that link inside of the quickFindForm.action
with an XPath?