I want to click the test product on this page: https://biscuit-bird.myshopify.com/collections/all
I am trying to go fully request based and not use a headless browser like puppeteer or zombie as I have already done that.
Please let me know how to do this by sending a request.
I assume you're using this lib? https://github.com/request/request
If so, inside a callback function that provides
body
of the page, you can use some lib to parse HTML content, find your link to a test product with CSS selector, and then open the URL stored inhref
.This snipped worked for me: