I've been trying to scrape kith.com search results but I get skeleton sample code. Tried to use scrapy, requests-html and selenium but I haven't managed to make them work.
Right now my code is:
from requests_html import HTMLSession
session = HTMLSession()
r = session.get("https://kith.com/pages/search-results-page?q=nike&tab=products&sort_by=created")
r.html.render()
print(r)
From what I've seen, render() should get the html code as it's seen in a browser but I still get the same "raw" code.
PD: kith.com is a shopify shop