使用Selenium和BeutifulSoup报废数据

时间:2017-11-10 07:29:11

标签: python-3.x web-scraping

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()

我想打印公司名称,但是,为什么不打印任何东西?

0 个答案:

没有答案