Thanks. I will be happy with either way - clicks automation or "retrieve-html/parse/extract/download/repeat"; I just want to find the most convenient way (e.g. quick and simple). I do not have any experience with html parsing; maybe you could point at some relevant examples / tutorial? Peter Uhnák <i.uhnak@gmail.com> пиÑал(а) в ÑвоÑм пиÑÑме Wed, 04 May 2016 14:11:01 +0300:
As far as I know:
Pharo has event recorder that helps automate within image⦠however the bigger problem here is interaction with the environment, which is a big
problem cross-platform.
This is all assuming that you _must_ click on it and you can't just retrieve-html/parse/extract/download/repeat which is doable in Pharo with Zinc >and some non-validating parser.
If you don't find anything, you can take a look at PyAutoGUI https://pyautogui.readthedocs.io/en/latest/ (or xdotool on linux).
I believe Kilon worked on some python bindings from Pharo? It would be interesting to ask him what was that exactly⦠maybe it could be
connected to this lib.
Peter
On Wed, May 4, 2016 at 1:04 PM, Grigory Hatsevich <g.hatsevich@gmail.com> wrote:
Suppose I have a web page with 50 small photos; when I click on a photo, appears a window where I can further click on a link to open a full >>profile of the person on a photo. I need to open a full profile for every person in that page, each in a separate browser tab. How can I automate >>this clicking, so that I would not need to click at every link manually? Does Pharo have tools for such tasks?