Y
Hacker News
new
|
ask
|
show
|
jobs
Ask HN: Is python powerful enough to automate events in web browser?
1 points
by
bluedog
4373 days ago
Let's say i need to choose an option using radio button in web page and then click a button which would download a particular file. Is it possible to automate this process using python?
Are there some solution available in any other platform?
2 comments
matthewbauer
4373 days ago
If I understand you correctly, I think that you are looking for something like "mechanize":
http://stockrt.github.io/p/emulating-a-browser-in-python-wit...
link
bluedog
4373 days ago
Hey, I have used mechanize earlier. But my requirement is a tool which can behave as if a real user is using keyboard and mouse on web browser pages.
link
dalke
4373 days ago
Perhaps Selenuim?
http://docs.seleniumhq.org/
and
http://en.wikipedia.org/wiki/Selenium_%28software%29
.
link