The goal
I'm using Frank with Cucumber to test an app and my goal is to have it as automated as I can possibly get it. Part of that is turning back on the Accessibility Inspector after I reset the simulator.
Details
To reset the simulator I use the step from the core_frank_steps.rb file (lines 258-260):
When /^I reset the simulator/ do
simulator_reset_data
end
The Accessibility Inspector can be found in Settings > General > Accessibility, and is the only switch on that page in the simulator
The question
Basically, is there a script or something I could write to have the Accessibility Inspector turned back on right after I reset the simulator? I'd prefer ruby, as all my other steps are written in ruby
Thank you
I am not sure what purpose can Accessibility Inspector have in your automation but here is my answer.
Ruby cannot manipulate "iPhone Simulator" directly, every action (e.g. "Reset") is performed using Apple Script. Apple Script simulates user clicks on the menus.
For some examples, go to Frank HostScripting module source
Modifying the menu indices in
should give you the required result (the
delay
and the 2ndclick
line can be removed, they handle the "reset" confimation dialog).