我想获得id='seo_h1_tag'
下的Facebook粉丝页面的名称,
但结果是Could not find element
。
我尝试将seo_h1_tag
替换为facebook
,这是HTML中的第一个ID并且有效,输出为Element exist
。代码有什么问题?
#! python3
import requests,os,bs4
url='https://www.facebook.com/pg/BANDMAIDTW/photos/?tab=album&album_id=1520840718217296'
#Download the page
print('Downloading page %s...' + url)
res = requests.get(url)
res.raise_for_status()
soup=bs4.BeautifulSoup(res.text, "html.parser")
element =soup.select('#seo_h1_tag')
if element==[]:
print('Could not find element.')
else:
print('Element exist')