我需要在登录提供的网页上的表格中抓取单个单元格的内容。 我使用selenium模拟了网页中的登录,并且可以正常工作,但是现在我不知道如何从表中提取所需的单个信息。
我用于通过BS提取信息的代码不起作用。 请原谅愚蠢的错误,我是Python的新手!
这是我的代码:
#Scraping of single cell information
import urllib.request
from bs4 import BeautifulSoup
from urllib.request import urlopen
page = urllib.request.urlopen('https://services.7pixel.it/Invoices/Index')
soup = BeautifulSoup(page.read())
Fattura = soup.find('td:nth-child(3)') #I use the "copy selector" option in the chrome dev console
print(Fattura)