Tagged Questions
0
votes
1answer
124 views
Unable to automate (AutoIT) in Ruby because of Watir error
I've tried a few times now to run a Watir browser and then use the AutoIt ruby library (au3) to access a right click context menu but it wasn't working, turns out the au3 library is disappearing for ...
0
votes
2answers
98 views
How can I search for images on the screen with Ruby and move my mouse to that location [closed]
I need a ruby program that can search for images on your windows screen and move the mouse pointer to the location of that image.
I've used AutoIt image search in the past, what is the best way to ...
0
votes
2answers
239 views
Unattended install of AutoIt 3.3.6.1: need 32-bit version but can only get 64-bit version
I want to do an automatic/unattended installation of AutoIt, then be able to drive AutoItX from a Ruby script.
When I'm done, I should be able to run this rudimentary code and have it succeed:
...
0
votes
1answer
333 views
invoke an autoit exe file in Selenium Ruby Webdriver
Please help guide me how to run an .exe file generated by AutoIT tool in a Selenium Ruby Webdriver script ?
My scenario is that I need to upload a file by clicking a Flash button, then select a file ...
0
votes
1answer
441 views
I am using windows7 but for ruby version 1.93 autoit call not working
$ie.link(:text,"Revoke").click_no_wait
$autoit.WinWaitActive("[Class:#32770]")
result =$autoit.ControlClick("[Class:#32770]","","Button1")
I am using above code to click on OK on confimration popup
...
1
vote
1answer
639 views
Handling javascript popup in watir
I am using autoit to handle javas script popup code as
autoit.WinWaitActive("[Class:#32770]")
result =autoit.ControlClick("[Class:#32770]","","Button1")
But when I click on the button to open the ...
1
vote
1answer
529 views
click_no_wait does not work the second time when autoIt is used to handle the file download box
I am facing the problem where I call the method click_no_wait on a
control which displays a "File Download" box. It works fine for the
1st time. i use Auto It to handle the file download box and ...
4
votes
1answer
2k views
Automatically Save File Dialog with Ruby / AutoIt / Watir
Ok, I am trying to use Watir/Ruby/AutoIt to automatically download a file. So say the dialog below pops up, my goal is to automatically click Save File, and then hit Ok. If someone could provide an ...
0
votes
1answer
547 views
Using AutoIt to Manipulate Save Dialogs
I'm attempting to use AutoIt in a Ruby script I am writing to automatically download files. The script successfully gets to the save file prompt so I just need a way to actually download the file.
...
0
votes
0answers
540 views
Handling javascript popups in watir using an event driven mechanism
I have a scenario where I am trying to automate a data entry/retrieval into/from a form. The form consists of buttons which support the general add/edit/delete operations on data. Well, now the ...
0
votes
2answers
596 views
Automation of pivot chart in excel 2007
Could you please help me in order to automate a pivot chart, below is the code which I had written. I'm currently stuck creating a chart
require "rubygems"
# require "watir" # Commented out by ...
0
votes
1answer
788 views
Unable to handle Basic Authentication windows
Iam working on Popup windows i.e. handling Basic Authentication windows.Please find the below code which I am trying to run the test with
{
require 'watir/ie'
require 'win32ole'
require ...
0
votes
2answers
755 views
Access autoit UDF from Ruby
I am trying to use Autoit with Ruby. There are some user defined functions in Autoit which I need for my Gui automation like the window tab access etc. The problem is that unlike normal autoit APIs I ...
4
votes
2answers
2k views
Can AutoIt scripts run as a scheduled task while not logged in?
I am using Ruby/WATIR/AutoIt to automate a task via Task Scheduler which runs fine as long as I am logged in, but as soon as my account is locked (mandated 10 minute screen lock) or I logout the ...
0
votes
2answers
2k views
Get COM object for embedded IE browser with ruby win32api
Alright this is a pretty complicated problem but it looks like the hard work has been done already by the autoit IE.au3 project. So now it just takes someone experienced with ruby and win32api, and ...