Am trying to get the value from this link : view-source:https://www.otomoto.pl/ajax/misc/contact/multi_phone/6CLxXv/0/
the wanted values is : 42 677 17 00 i entered the scrapy shell then used : response.css('td.line-content::text').extract() and i got [] as a result.
i then tried with xpath : response.xpath('/html/body/table/tbody/tr/td[2]/text()').extract() and i got [] as a result.
why is it am not getting the wanted result , is there something am messing here ?