列表 Li 应该有 116 个元素,但它有 0 个元素
import requests
from bs4 import BeautifulSoup
url='https://www.profile.nl/zoekresultaten/banden?size_width=205&size_height=60&size_inch=16'
profile= requests.get(url)
if profile.ok:
soup = BeautifulSoup(profile.text,'lxml')
Li= (soup.body).findAll("div", attrs={"class": "row xs-ptb-1"})
print(len(Li))