Reputation: 43
I am looking for a way to do web scraping on a web page after typing in its search box. Let me explain better with an example: I am looking for an R function that writes the word "notebook" directly on the amazon home page so that I can subsequently do web scraping of that generated page. Any help? Any suggestions? Maybe I could do it in Python? Thanks everyone for the help.
Upvotes: 1
Views: 63
Reputation: 570
Just scrape the webpage from
https://www.amazon.com/s?k=whatever you want to search
Any sort of website will give you a url with a query when you search. just scrape from that url.
Upvotes: 1