I am trying to scrape data from the chart at https://www.transfermarkt.com/neymar/marktwertverlauf/spieler/68290. I tried accessing the data using the respective xpath of the data in the boxes, but it doesn't seem to work.
I tried using Scrapy:
date = response.xpath('//*[@id="highcharts-0"]/div/span/b[1]').get()
market_value = response.xpath('//*[@id="highcharts-0"]/div/span/b[1]').get()
club = response.xpath('//*[@id="highcharts-0"]/div/span/b[3]').get()
age = response.xpath('//*[@id="highcharts-0"]/div/span/b[4]').get()
How can I scrape all the data from the chart using Scrapy or Selenium?