how to get value with id of strong tag in xpath in scrapy code example
Example 1: scrapy xpath href contains text
'//a[contains(@href,"/Best-Sellers-Health-Personal-Care")]'
Example 2: scrapy get inside attribute value
#Given
# to get the attribute value datetime:
getData = response.css('time::attr(datetime)').get()
# output
'2020-09-01T11:48:24-03:00'