It's my first time using Scrapy after watching a couple of tutroials, i'm trying to scrape this url
https://www.hackster.io/arduino/members
I want to get the links to every user profile. I ran my scrapy shell as follows
print(response.css("#main > div > div > div > div:nth-child(2) > div.hckui__layout__container > div.hckui__layout__wrapper1170 hckui__layout__fullScreenHeight > div > div.common-overlay__parent__1A_nT > div.grid__gridBasic__fjt5B grid__grid__1QeD6 grid__guttersH__2MYvz grid__guttersV__3M28R > div:nth-child(1) > div.undefined hckui__layout__flexCenterItems > div.user_card__content__1YVc5 > a.hckui__typography__bodyM hckui__typography__link hckui__typography__bold::attr(href)").extract())
but i get only [] as an output
I want to get the link as specified in the photo attached, can anyone please have a look and tell me if there is something wrong with my command?
when i used google's chorme inspect option and copied the selector right away i got the same output
#main > div > div > div > div:nth-child(2) > div > div > div > div.common-overlay__parent__1A_nT > div > div:nth-child(1) > div > div > a
or even using
#main > div > div > div > div:nth-child(2) > div > div > div > div.common-overlay__parent__1A_nT > div