I want to scrape text data from a windows application to do additional processing using existing ruby code. Would it be possible to scrape the data as it is updated in the windows application using Ruby and where do I start?
I want to scrape text data from a windows application to do additional processing
Share
If the text is in a standard windows control you can get at it with AutoIt. It’s a scripting laguage of it’s own and you can interact with it’s functions in Ruby, like this:
This opens an instance of “Calc” and displays the content of the text control every second.