我无法抓取视频说明中的所有内容

I can't scrape all the contents inside of a video description

我正在尝试抓取此视频的说明:https://www.namasha.com/v/mtlBhvAZ 我可以使用 Scrapy 获取描述中的所有内容,除了 Telegram link 这是我的代码:

meta_description = Selector(text=response.text).css(
            '#video-desc::text').extract()

编辑:

telegram_link = response.xpath('//p[@id="video-desc"]/a/@href').get()