We are running our test cases with iOS simulator and ruby . While running we see multiple time out issues. Is it possible to make quit_simulator method public? This will help us to close the simulator after running one test case and launch for next one.
This is the way I changed in direct_client.rb and it seems to work fine for us.
def quit_simulator
simulator = SimLauncher::Simulator.new
simulator.quit_simulator
end
Please let me know if you have a work around for this