jarmo / RAutomation

RAutomation
MIT License
100 stars 33 forks source link

multiple windows option #20

Closed rdp closed 13 years ago

rdp commented 13 years ago

feature request: RAutomation::Window.all(:title => /jarmo/) or the like.

jarmo commented 13 years ago

You can achieve the same effect by doing like this: RAutomation::Window.new(:title => /jarmo/).windows

I could also change the current RAutomation::Window.windows method to accept locators too :)

jarmo commented 13 years ago

Done in https://github.com/jarmo/RAutomation/commit/446902e2ec44b693c52415747672400c65927fd6

You can do now something like this: RAutomation::Window.windows(:title => /jarmo/)