Questions tagged [rautomation]

rautomation is one of the rubygems for automating windows and their controls with Ruby

RAutomation is a small and easy to use library for helping out to automate windows and their controls for automated testing. RAutomation provides:

  • Easy to use and user-friendly API (inspired by Watir http://www.watir.com)
  • Cross-platform compatibility
  • Easy extensibility - with small scripting effort it's possible to add support for not yet supported platforms or technologies

For details:

19 questions
2
votes
4 answers

Unable to find buttons of system popup using rautomation

I'm writing tests using Selenium WebDriver and rautomation to handle system popup. I tried it on irb like following: require 'selenium-webdriver' require 'rautomation' driver = Selenium::WebDriver.for :firefox driver.get…
Alpha
  • 13,320
  • 27
  • 96
  • 163
1
vote
2 answers

Masked Text Box issue

i m using the rad masked control for phone field. telerik:RadMaskedTextBox ID="txtPhone1" runat="server" EnableAjaxSkinRendering="False" Mask="(###) ###-####" Skin="Hay" ZeroPadNumericRanges="False" MaxLength="20" TabIndex="30"…
1
vote
1 answer

winWait(autoit) alternative in watir 1.9 using rautomation

In our watir automation, there are several parts when we were wating pop ups with code like this: win_exists = Watir.autoit.winWait('Message from webpage',5) A few day ago, we were trying the new version of watir 1.9, that tries to replace the…
Gareve
  • 3,372
  • 2
  • 21
  • 23
1
vote
0 answers

Ruby - SeleniumGrid - how to handle windows popup (File-> browse) in selenium grid

Meta - OS: Windows 7 Selenium Version: 2.52.0, IDE, etc Selenium Grid Extras 3.0.1 Browser: Chrome Browser Version: 54.0.2840.99 (64-bit) Expected Behavior - Below code which clicks on "Browse File" and open windows popup to browse file and submit…
testerBDD
  • 255
  • 3
  • 18
1
vote
1 answer

Ruby Automation Testing for Web Control on .NET Form

I'm trying use Ruby Automation to test a web application that is being displayed through a web control on a .NET form instead of your typical browser (like Internet Explorer, Firefox, etc...) and I'm not having much luck. I am able to use the Watir…
0
votes
2 answers

Print a file from Watir

I'm looking at Watir-Webdriver to manipulate a browser. In particular, I'd like to open a local file and print it to a PDF file. Yes, wkhtmltopdf would be a good thing, but it's not working for me on debian squeeze, for reasons that are difficult…
dfrankow
  • 20,191
  • 41
  • 152
  • 214
0
votes
1 answer

rautomation - in RubyMine with jRuby - getting error

I was looking for automating windows applications and was asked to explore with rautomation, which I just started using it. Now, after going thru' documentation on github and Jarmo's few blogs, I am posting a very simple problem here and I am sure I…
Parva Thakkar
  • 637
  • 1
  • 8
  • 25
0
votes
2 answers

Ocra "Watir::Safari was not loadable"

I get this error but my script does not use safariwatir at all... My script completes and I get given the "test run options:" but I dont know how to get at the executable file, where is it left? How can I resolve this error? Test run options: --seed…
Benjamin
  • 551
  • 5
  • 25
0
votes
1 answer

RAutomation Drag Mouse and Select Text

I am using the Ruby gem Rautomation to test a windows based application. The application is running behind a remote Citrix server and therefore I am not able to interact with the app in the usual way. I cannot access any elements on the app using a…
Austin L
  • 336
  • 1
  • 17
0
votes
2 answers

How to send "ALT"+"S" in Rautomation?

How can I send "ALT"+"s" keys to a window using RAutomation? No info in Google at all.
Nodir Nasirov
  • 1,488
  • 3
  • 26
  • 44
0
votes
0 answers

Get back the control to browser pop-up in watir-webdriver using Rautomation and autoit adaptor

I am working on a modal dialog which helps me upload external files to a web-application. So far I am able to add an external file to the upload popup of the application. But, I am struggling to get back the control from Modal dialog to the upload…
exl
  • 11
  • 1
0
votes
2 answers

Handling Chrome client certificates in Watir tests

I have an application with client-certificate based authentication which I have been trying to automate. By selecting different certificates the user can get different application rights. The idea is to use watir-webdriver based script and…
0
votes
1 answer

How to automate a splitButton using Rautomation ( adapter msuia)

I am trying to automate IE11 notification bar ( while downloading file) using Rautomation. Using MSUIA adapter I am able to catch the the save button. But I want to use Save As to supply the file location and name. But I cannot do that. When seeing…
0
votes
1 answer

Automated web interface testing and locked screens

I'm using my desktop to automate getting files from a site using RAutomation and Watir. I couldn't find anything on how RAutomation works with a locked screen if at all. There might be better ways to do this but I'm now more interested in knowing…
zigloo99
  • 134
  • 1
  • 10
0
votes
1 answer

Unable to set adapter as ffi

In automation, I'm trying to handle windows popup using rautomation. I've following gems installed: ffi (1.9.0 x86-mingw32, 1.8.1 x86-mingw32) rautomation (0.9.2) I tried following: require 'rautomation' window = RAutomation::Window.new :title =>…
Alpha
  • 13,320
  • 27
  • 96
  • 163
1
2