Reputation: 625
I was trying to figure out a way to use the search bar of a web site without opening the webpage.
To be more precise, let us say we talk about stackoverflow.com. Using some GET operation it is possible to get the HTML content of it, and after looking it up to figure out that it has a search menu.
Is there a nice way to pass a value to the search menu, using some request!? My goal is to read the result of the search, again by asking for the HTML code.
I would prefer an idea in Python or JavaScript.
Upvotes: 0
Views: 299
Reputation: 6663
There is not a general solution. Two things:
Upvotes: 2