Tagged Questions
3
votes
1answer
84 views
Ruby way of handling shell command that evokes a MacOS securityd window
I have a simple problem that I'd like to see if people here can help me with. Currently, I'm writing some test automation to handle a simple in house command line tool that dumps the contents of a ...
0
votes
1answer
31 views
How can I use rb-appscript to drive Mac OS Finder's “Connect To Server” menu item
The end goal is to write an automated test in Ruby/Cucumber for connecting to a WebDAV server and testing authentication, CRUD and load/performance in Mac OS X.
I'm trying to simulate user behavior ...
0
votes
0answers
48 views
Scripting Interarchy 10 with rb-appscript
I have a simple Ruby/appscript program (see below) that I use to drive the 'mirrorupload' function of the file transfer utility Interarchy, by Nolobe.
The program works well with Interarchy 9. ...
0
votes
1answer
312 views
Apple Event Handler Failure (Ruby/AppScript) while trying to growl
I'm trying to growl from Ruby/Appscript, based on this sample Applescript code:
tell application "GrowlHelperApp"
set the enabledNotificationsList to {"Mail Notification"}
register as ...
0
votes
1answer
421 views
How to read the background color of a cell through a (ruby) script from Microsoft Excel on Mac Osx?
I want to get the background color of a cell of an Excel worksheet. I have already tried the following:
begin; require 'rubygems'; rescue LoadError; end
require 'appscript'
f = ...