I failed to extract the first column "Name" from the website. Is there anyone who can help? Website Screenshot The website address is: https://www.wilsonship.no/our-fleet/fleetlist Many thanks
from scrapy import Selector
import requests
url = 'https://www.wilsonship.no/our-fleet/fleetlist'
html = requests.get(url).content
sel = Selector(text = html)
shipname = sel.xpath('//tr/td[1]/a/text()').extract()
shipname