When trying to scrape a web page, this table has no The site inspector that I\'m trying to scrape
If you want the text from every table-row you can do this: tags, and is all
import bs4
import requests
res = requests.get('https://www.nascar.com/results/race_center/2018/monster-energy-nascar-cup-series/auto-club-400/stn/race/')
soup = bs4.BeautifulSoup(res.text, 'lxml')
tds = soup.find_all('div', class_='table-row')
for td in tds:
print(td.text)