Tagged Questions
1
vote
0answers
21 views
when trying to install the watir or watir-webdriver gem on Windows 7 via cygwin, getting long C stack trace with mentions of “W32 socket” issues [migrated]
When running:
$ gem install watir
on Windows 7 (cygwin), I get this
ERROR: Error installing watir:
ERROR: Failed to build gem native extension.
/usr/bin/ruby.exe extconf.rb
checking for ffi.h... ...
1
vote
1answer
139 views
Watir, Automation on Windows 7 with IE8
I am trying to run watir scripts on Wndows 7 on IE8 as administrator.
Here is problem description:
Problem was with below statement(popup windows)
popup = Watir::IE.attach(:url, /ContactDetails/)
...
0
votes
1answer
48 views
Error when trying to run Watir test through Fitnesse
I've recently been trying to run the following tutorial:
http://raveendran.wordpress.com/2010/10/20/watir-integration-with-fitnesse/
However I when I attempt to run the test in Fitnesse, it just ...
0
votes
4answers
307 views
why send_keys can't work after right click in chrome and ie, but firefox is fine?
i want to copy a image in the page with right click and alt+y,and follow code is work well in the firefox,but chrome and ie. so i can't get the image from the clipboard.
require 'watir-webdriver'
b = ...
2
votes
1answer
1k views
Parallel Cucumber/Watir scenarios in *Windows*
Any thoughts on what I can do/use to run cucumber scenarios in parallel on Windows? So far, I've tried (with the follow findings):
WatirGrid
Have to use Ruby threads to actually run in "parallel".
...
3
votes
2answers
1k views
`marshal data too short` error message while installing watir-webdriver on Windows XP
I have a clean installation of Windows XP (Professional, Version 2002, Service Pack 3) in VMware Fusion virtual machine (3.1.2 332101). (Host machine is MacBook Pro, Mac OS 10.6.7.) XP installation ...
1
vote
0answers
287 views
Uploading using Watir in IE waits for input
I've tried to set up a script to upload a file using Watir, based on this page
It just hasn't worked. It's still waiting for my input. It does go to the correct directory (folder) in Windows, but ...
1
vote
6answers
2k views
Any open source browser GUI automation tool that will support clicking specific icons wherever they may be on the page? [closed]
On either the Windows or Linux platform, is there a GUI automation tool that will open up a browser page (any browser, I don't care) and then click on every instance of a specific icon image, wherever ...
3
votes
5answers
2k views
Which Ruby Version for Watir on Windows?
What version of Ruby should I be using on a windows environment?
I'm trying to use Watir on 1.9 and it does not work. Will work on 1.8.6.
Any recomendations on which version to use and reasons why ...
4
votes
3answers
3k views
Watir::IE.attach(:title,/x/) not working correctly on Win 7 IE8
System:
Window 7
Internet Explorer 8
Ruby 1.8
Watir 1.6.5
If I manually open a browser window and then visit a site that causes a second browser window to open and then use the Watir::IE.attach ...
1
vote
1answer
1k views
How to Instantiate/Run a Ruby program (uses Watir) using Linux?
Scenario :
I mapped a network drive on a Win XP machine and I double click a .bat file to execute this Ruby script. The .rb and .bat file reside on this networked drive.
The batch file is as follows ...
2
votes
1answer
1k views
Ruby:Watir cannot connect to IE running under non-Admin account on 'default' desktop
Some Background on architecture of the app is needed:
Windows 2003/Apache-v2.2/IE7/Watir-v1.6.2/Ruby-v1.8.5
Apache running under 'localsystem' account.
Request to run a Watir script comes in.
...