I need to know how to send terminal commands through Ruby to execute another application. I would like to call the SIKULI script at a certain point within my Watir script to handle some steps that Watir can't.
I am not sure how to do it. I read a few of the articles here at Stack Overflow, but can't get it to work.
These are the steps to execute it manually:
jfleck-mbp:~ joe.fleck$ SIKULI_HOME=/Applications/Sikuli-IDE.app/Contents/Resources/Java
jfleck-mbp:~ joe.fleck$ java -jar $SIKULI_HOME/sikuli-script.jar '/Users/joe.fleck/Desktop/Save_File_Button.sikuli'
These are in a Ruby file I am trying to execute:
require 'rubygems'
system('SIKULI_HOME=/Applications/Sikuli-IDE.app/Contents/Resources/Java')
system ("java -jar $SIKULI_HOME/sikuli-script.jar '/Users/joe.fleck/Desktop/Save_File_Button.sikuli'")
The output I get is:
Unable to access jarfile /sikuli-script.jar
which tells me the first line in my script did not execute which allows the access.
Any suggestions would be appreciated.