I am currently exploring ways to utilize Puppeteer for searching an HTML page for a specific product name.
Just to give you an idea, the HTML code looks something like this:
<a class="example" href = "example_link">PRODUCT NAME</a>
My goal with Puppeteer is to locate the PRODUCT NAME either through relevant keywords or the exact name itself, and then instruct it to click on the text which will in turn redirect the browser to the corresponding href link.
Your assistance with this matter would be highly appreciated!
Thank you so much.