登录后如何从网络表格的单元格中抓取数据?

时间:2019-07-29 16:09:24

标签: python selenium beautifulsoup screen-scraping

我需要在登录提供的网页上的表格中抓取单个单元格的内容。 我使用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)

0 个答案:

没有答案