https://insuretechconnect.com/speakers/
Greetings, I want to extract the speakers' information from the above website and I want to have their Name, Title, Company, img src link, and Description.
However, my code can only extract the Name, title, and the company.
driver = webdriver.Chrome(r'XXX\chromedriver.exe')
driver.get('https://insuretechconnect.com/speakers/')
speakers_info=WebDriverWait(driver,20).until(EC.presence_of_all_elements_located((By.CSS_SELECTOR,'.awsm-personal-info')))
speakers_info_fulllist = []
for e in speakers_info:
speakers_info_fulllist.append(e.text.split('\n'))
Are there any better ways to extract information for all speakers (either Selenium or the Request)?
Thanks in advance.
"Eran Agrios leads the Go To Market strategy..." How can I do that? Thx!
– Arthur Morgan Aug 23 '19 at 16:42