from bs4 import BeautifulSoup
from selenium import webdriver
driver=webdriver.Chrome()
driver.get('https://angel.co/companies?locations[]=2203-Delhi,+IN')
soup= BeautifulSoup(driver.page_source, 'lxml')
for item in soup.select('.name'):
print(item.text)
driver.quit()
我想打印公司名称,但是,为什么不打印任何东西?