I want to scrape the link for each job role, the HTML source for one of the roles is:
<a id="Job_1" href="https://jobs.ubs.com/TGnewUI/Search/home/HomeWithPreLoad?partnerid=25008&siteid=5012&PageType=JobDetails&jobid=223876" ng-class="oQ.ClassName" class="jobProperty jobtitle" ng-click="handlers.jobClick($event, this)" ng-bind-html="$root.utils.htmlEncode(oQ.Value)">Technology Delivery Lead (IB Technology)</a>
I have tried this:
job_link = driver.find_elements_by_css_selector(".jobProperty.jobtitle ['href']")
for job_link in job_link:
job_link = job_link.text
print(job_link)
But it simply returns nothing, can someone kindly help