我想将href
找到的每个beautifulsoup
分配给变量。例如
link1, link2, link3 ...
。
我的功能现在看起来像这样
def board_list():
html = driver.page_source
soup=BeautifulSoup(html, "html.parser")
for link in soup.findAll('a', {'class': 'board-tile'}):
href = driver.current_url+link.get('href')
title = link.string
print(title)
print(href)