Tagged Questions
Watir, pronounced water, stands for Web Application Testing in Ruby. Watir is an open-source (BSD) family of Ruby libraries for automating web browsers. It is distributed as a Ruby GEM named 'Watir'
77
votes
14answers
27k views
Watir vs Selenium vs Sahi [closed]
Out of these 3, which have you or has your company chosen to work with?
Pros & Cons please.
I'll be comparing them myself as well, but I'd like to hear what others have to say.
Also, please state ...
12
votes
1answer
2k views
Alternatives to FireWatir working with Firefox 4 or higher
It seems, from what I read, that we will not have a JSSH for Firefox 4, and therefore no FireWatir.
I have several scripts that run well on FireWatir, and of course I would like to update my Firefox ...
9
votes
3answers
2k views
How to find out which JavaScript events fired?
I have a select list:
<select id="filter">
<option value="Open" selected="selected">Open</option>
<option value="Closed">Closed</option>
</select>
When I ...
7
votes
4answers
2k views
Ruby Watir: Clicking OK on JavaScript Alerts?
Seems none of the code I've tried has any affect. My intention is to close any and all JavaScript prompts that may come up by hitting the "OK" button. Problem is, my script has no affect on the ...
6
votes
2answers
603 views
How do I get watir-webdriver to start Firefox 4 with Firebug?
Any ideas? I've tried setting webdriver.firefox.useExisting=true as described in the link below hoping to reuse an existing window with firebug enabled, but no such luck.
...
6
votes
3answers
760 views
How to handle tinyMCE when automating with watir-webdriver?
I'm evaluating Watir-webdriver, to decide if i can switch to using it for my browser tests (from Watir mostly) and one of the key things would be the ability to interact with TinyMCE WYSIWYG editors, ...
6
votes
1answer
2k views
How do I use Watir::Waiter::wait_until to force Chrome to wait?
I'm trying to tell my watir script to wait for an ajax-injected login box to open up. I am using watir-webdriver, and testing in Chrome. I cannot get wait_until to work, as commented in the below ...
6
votes
3answers
2k views
How to upload a file with watir and IE?
I am writing a watir script to test an upload form.
But the script does not automatically choose the file that is to be uploaded from my harddrive.
Instead IE stops with the file chooser dialog ...
5
votes
1answer
1k views
no such file to load — ffi_c (LoadError)
This problem is bugging me for a couple of days now... Whenever I'm using the .bring_to_front method
require "rubygems"
require "watir"
browser = Watir::Browser::new
browser.bring_to_front
I get ...
5
votes
2answers
154 views
How can I get Browser.text.include? to be case insensitive?
It's as simple as that:
How can I get Browser.text.include?, or Ruby in general, to be case insensitive for that specified command?
5
votes
1answer
453 views
Testing if a new window opens with Watir-Webdriver
I'm using Watir-webdriver and I was wondering if there was a good way to check if a new window opens. I've googled around a bit and couldn't find anything though it feels like there should be an easy ...
5
votes
1answer
287 views
How can I get watir-webdriver and safariwatir working together?
Good morning,
I am setting up watirgrid and I have been partly successful, however I am having problems getting all the providers to work with my ruby script.
On my Mac I have setup a provider from ...
5
votes
4answers
4k views
watir-webdriver wait for page load
using watir-webdriver [ http://github.com/jarib/watir-webdriver ]
how do i wait for a page to load after i click a link?
at the moment i am doing
sleep n
but this is not ideal as the page ...
5
votes
3answers
391 views
Integration Testing an Entire *Existing* Application (w/ automatic execution of test suite)
I have just joined a team working on an existing Java web app. I have been tasked with creating an automated integration test suite that should run when developers commit to our continuous integration ...
5
votes
2answers
1k views
Is there a way to update RubyGems offline?
I am trying to install Ruby + WATIR to a Windows server which is in an isolated environment. Typically I would run the ruby installer followed by these two commands:
1) gem update --system
2) gem ...
4
votes
1answer
104 views
Watir-webdriver can't see an input tag inside a popup
I keep getting Element is not currently visible and cannot be interacted with after a javascript successfully pops up a dialogue div that contains some tags.
I can locate the input tags whichever ...
4
votes
3answers
266 views
Ruby - require 'watir-webdriver' - generates a LoadError no such file… Why?
I am new to Ruby and would really appreciate some help understanding what is going on here.
Summary:
Gem install watir-webdriver
Installs fine
start irb
require "watir-webdriver"
... LoadError: no ...
4
votes
2answers
260 views
How to determine browser type (IE, FF, Chrome, etc.)
I'm in the process of switching my Watir / FireWatir scripts over to use watir-webdriver and need a means in watir-webdriver to determine which type of browser the test is currently being executed ...
4
votes
1answer
109 views
How to determine what type of a HTML element is selected in Watir
This is a follow-up to the Counting the number of HTML elements having same attribute in Watir question.
So, suppose I have a HTML element as follows
<input type="password" class="foo" />
...
4
votes
1answer
157 views
Filling a textform - String too small?
I currently have to do a job where I have to copy the code of a website into a textfield.
I'm using watir to do the browser handling. As far as I know, I can only fill the field using the set ...
4
votes
3answers
1k views
Watir: How to access a table without an ID or NAME
I am trying to write my watir script to grab the following data (the table body headers and the table row data, but I am having trouble trying to figure out how to access the table. (Once I get that, ...
4
votes
3answers
223 views
Set text field value instantly (without emulated typing)
I'm using the below command to set a text input value to "some value" however the value isn't set instantly, instead it's set as if it were typed by a user. That's ok for small values, but I'm using ...
4
votes
3answers
740 views
If I start anew, should I start with Watir-WebDriver?
My team has an automation solution that uses watir. In fact, we have 2 versions of it, one for one release of our software and another for another release. I find that changing versions of watir used ...
4
votes
5answers
2k 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 ...
3
votes
4answers
159 views
Multiple concurrent browser tests with watir-webdriver through different browsers
so I'm working on a website here and I would like to run multiple browser tests at one time. What I mean by this is it should perform my smoke tests on ie, firefox and chrome at the same time and ...
3
votes
3answers
808 views
watir on ubuntu 11.10
I've just updated my system from ubuntu 11.04 to 11.10 and...surprise!
Now if I try to use watir, doing
require 'rubygems'
require 'watir-webdriver'
I obtain this error
require 'watir-webdriver'
...
3
votes
0answers
147 views
Can watir-webdriver capture console errors?
I am wondering if watir-webdriver as the ability to log the output of any console errors?
This would be equivalent to manually opening the console in a browser and watching for JS errors as a page ...
3
votes
2answers
374 views
Problem with jenkins headless browser test
We are testing some Watir tests and cucumber using Jenkins but we have run into a problem with inconsistent results. Our build failed because apparently the watir attach popup browser was ...
3
votes
3answers
124 views
how to recursively search for a text field with WATIR
I am trying to automate a web page using IE and Watir.
When I load the page with chrome and use development tools I can identify the field I need to fill, complete with its id and name.
Watir, ...
3
votes
2answers
108 views
Force the browser to end the current step
Need:
Using Cucumber 1.0.1 and Watir 1.9.2, I need to execute javascript code in order for a proprietary portal to do some navigation.
Issue:
I am able to execute JS code with the following:
def ...
3
votes
1answer
149 views
Can Watir interact with Firefox Extensions?
I know that with watir-WebDriver, I can make use of RubyBindings to have the browser load specific profiles or Firefox add-ons when I create a new browser instance. However, can I use Watir to ...
3
votes
1answer
459 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 ...
3
votes
1answer
179 views
Locating element in same paragraph of another element in watir-webdriver
Given the following HTML code snippet; after finding the link by ID, how would you select the checkbox in the same paragraph?
For example if I wanted to select the checkbox associated with the link ...
3
votes
3answers
267 views
Search underlined link in watir
I am trying to search/select a link in a page that is underlined, while others are not. The source is something like this:
<a href="someurl1">
<b>
<u>Some ulined text</u>
...
3
votes
2answers
489 views
How to find textbox in Watir
I am trying to access a site with watir-webdriver, but I can't seem to find a textbox in watir that I can see in Firefox+Firebug.
My code is
require 'rubygems'
require 'irb/completion'
require ...
3
votes
2answers
533 views
Watir-Webdriver: How to run headless, and in grid
I'm upgrading my script from Watir to Watir-Webdriver and I'm wondering how to take advantage of headless-browser testing and grid testing. I've done some research into it but my sources don't seem ...
3
votes
2answers
878 views
Setting browser window size in Watir-webdriver
How can you specify the size of the browser window opened when you call the following with watir-webdriver?
browser = Watir::Browser.new(:firefox)
3
votes
1answer
81 views
3
votes
1answer
110 views
How can I continuously open websites using Watir?
I have an array of url strings (i.e. "http://www.cnn.com") which I want to iterate through and open in Safari using watir.
urlArray.each do |url|
browser.goto(url)
end
will open the first page, but ...
3
votes
1answer
623 views
watir-webdriver checking table size rows and columns count
I am starting the process of converting my WATIR scripts to use WATIR webdriver.
There a couple of table methods I was using in my WATIR scripts to check the size (rows and columns) of a HTML table.
...
3
votes
3answers
760 views
Locating a LI element using :text using watir-webdriver
I am trying to locate and click on a jQuery menu element, the menu is defined as multiple UL elements containing a number of LI elements.
Using Firefox 3.6.17 on Mac 10.5, in standard WATIR I've ...
3
votes
1answer
277 views
How do I send keyboard commands like (Control) + (1) to the browser using Ruby and FireWatir?
I am using FireWatir to test a web app and I need to send CTRL + 1 to open up a connection to plugin text "LTN 123456" and send CTRL +2 to close the connection.
3
votes
3answers
830 views
Is there an alternative to watir::ie.attach for watir-webdriver since attach is not supported on webdriver
I have a website which is only rendered in Webkit enabled browser (Google Chrome, Safari). I am using Google Chrome since I am on Windows 7.
I am using Watir-WebDriver to automate the same.
Issue: ...
3
votes
3answers
577 views
Using Watir to check for bad links
I have an unordered list of links that I save off to the side, and I want to click each link and make sure it goes to a real page and doesnt 404, 500, etc.
The issue is that I do not know how to do ...
3
votes
1answer
334 views
Radio buttons (with uppercase 'type' in the HTML) in Watir Firefox Webdriver
I use Firefox 4 with Watir Webdriver.
I have a web page with the following:
<input id="RadioM" type="RADIO" value="M" name="Field_SEX">Male
<input id="RadioF" type="RADIO" value="F" ...
3
votes
2answers
862 views
Firefox 4 with watir webdriver: Need help using helperApps.neverAsk to save CSV without prompting
I learned how to use Firefox 4 with watir and webdriver (on Win7 x64), setting profile items. Example:
profile = Selenium::WebDriver::Firefox::Profile.new
profile["browser.download.useDownloadDir"] = ...
3
votes
2answers
167 views
Firewatir: Problems changing selection in select list
I'm new to FireWatir and having some issues changing a selection in a select list. Here's what the HTML looks like:
<div id="softwarelist">
<select name="TDSOFTWARE" ...
3
votes
2answers
519 views
Watir - working with CSS elements
Hopefully someone can help me, either by telling me it cant be done or pointing me in the right direction.
I am trying to use Watir Ruby written tests to check a CSS element is being applied to my ...
3
votes
1answer
180 views
In Firewatir, how can I interact with the Firefox print dialog?
I'm trying to test a page that has the print dialog appear immediately upon accessing it. All I need to do is close the dialog or click Cancel on it so I can interact with the page behind it. I've ...
3
votes
2answers
175 views
Problem connecting to localhost with watir
I have a set of cucumber tests that normally run fine against our site. But if I make any changes and want to run the tests locally, the tests fail immediately, even before the initial page is ...