What I want to do is parse the URL from a "Visit Website" link on
https://www.truelocal.com.au/business/index-partners/canberra
Source reads as follows:
<span class="text-frame" ng-class="(vm.getHaveSecondaryWebsites()==true) ? 'with-aditional-item':''">
<span ng-click="vm.openLink(vm.getReadableUrl(vm.getPrimaryWebsite()),'_blank')" role="button" tabindex="0">Visit website</span>
</span>
(I think that is Angular??)
When the link is clicked the new tab opens the URL
I can't see the URL in the source to parse it (using Python and Selenium)
Is there a way to retrieve the URL using Python & Selenium? ,