I'm trying to scrape all CRD# from the search result from this site https://brokercheck.finra.org/search/genericsearch/list
(You'll need to redo the search when you click on the link, just type some random stuff for the Individual
search)
I'm using driver.find_elements_by_xpath
to target all CRD numbers on each result page. However, I've been playing around with the paths for a while but the webdriver still can't pick up the CRDs from the site.
I currently have (in Python)
crds = driver.find_elements_by_xpath("//md-list-item/div/div/div/div/div/bc-bio-geo-section/div/div/div/div/div/span")
But the result is always empty.