Watir (Web Application Testing in Ruby) implementation built on WebDriver's Ruby bindings. Used for web browser automation, this tool allows you to code in Ruby using the friendly Watir API but get the cross browser support of Webdriver to automate Chrome, Firefox, IE, Opera or a 'headless' ...
11
votes
1answer
6k 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 ...
10
votes
1answer
568 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 ...
9
votes
1answer
9k views
Modal dialog present (Selenium::WebDriver::Error::UnhandledAlertError) after dismissing confirm popup
I have a page with something like this:
<input type="button" onclick="confirm('confirm popup');" value="click" />
When I go to the page and click the link:
require "watir-webdriver"
browser ...
8
votes
2answers
230 views
Check if “Please enter an email address” message appears
Given a simple page:
<form>
<input type="email">
<button>click</button>
</form>
If I enter anything in text field that is not e-mail and click the button, Please ...
7
votes
2answers
1k 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?
7
votes
3answers
2k views
Is drag-and-drop possible in watir-webdriver?
I would like to drag-and-drop one element to the position of another, triggered from within a watir-webdriver script.
By "drag-and-drop" I mean picking up a draggable element and releasing it on ...
7
votes
4answers
505 views
You are using an old or stdlib version of json gem
I've seen the following issue mentioned in another thread a few days ago amongst other problems, but the solution for this issue (to me) didn't seem to be addressed.
I recently ran a test on my Ruby ...
6
votes
3answers
2k 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 ...
6
votes
5answers
8k views
watir-webdriver wait for page load
Using 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 response varies so much.
Is there a method to ...
6
votes
2answers
1k 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
1k 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
2answers
1k views
Make headless browser stop loading page
I am using the watir-webdriver ruby gem. It starts the browser (Chrome) and begins to load a page. The page is loading too slowly, and watir-webdriver raises a timeout error. How can I make the ...
6
votes
1answer
2k views
Dismiss “Confirm Navigation” popup with Watir
I am trying to dismiss "Confirm Navigation" popup. This is how it looks like in Chrome.
To see the popup:
require "watir-webdriver"
browser = Watir::Browser.new
browser.goto ...
5
votes
3answers
2k views
Accessing an element with no attributes in Watir
Using Watir, is there a way to access an element without attributes?
For example:
<span>Text</span>
I'd like to avoid using xpath, but if that's the only way it's cool.
5
votes
3answers
3k 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 ...
5
votes
3answers
3k 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)
5
votes
2answers
2k 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 ...
5
votes
2answers
105 views
Can not use variable in IRB after var = Watir::Browser.start 'url'
1.9.3-p327 :001 > require 'watir-webdriver'
=> true
1.9.3-p327 :002 > b = Watir::Browser.new
Then firefox starts and I can do nothing. My IRB does not allow me to enter new commands.
...
5
votes
2answers
861 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 ...
5
votes
1answer
2k 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
1k views
Using Watir-webdriver : Getting the text of h1 tag
I am working on Watir webdriver and I want to get text of the h1 tag of the page
<body class="not-front not-logged-in page-node node-type-first-drive one-sidebar sidebar-right col-2 bp col-2 ...
5
votes
1answer
188 views
Watir can't find elements I see in Chrome's DOM Inspector
Here's a study case:
<html>
...
<embed name="foo">
<embed name="bar">
...
</html>
I'm trying to reference the embed element named "bar" using Watir Ruby's API. The element ...
5
votes
2answers
458 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
3answers
544 views
Watir-Webdriver Wait for Download to Complete
I am using Watir-Webdriver with Firefox and the method recommended on the watirwebdriver.com site to automate file downloads. This involves setting FireFox about:config parameters to disable the ...
5
votes
3answers
774 views
A way around Element cannot be scrolled into view - Watir-webdriver with Ruby
So, we have the following code in our page:
<div class="toggle-wrapper">
<input id="HasRegistration_true" class="registration_required toggle" type="radio" value="True" ...
4
votes
2answers
395 views
Download a file using HTTP in WebDriver
I am trying to use the WebDriver to navigate through a https site and download a file using WebDriver. When I did it like this, the file download dialog popped up.
WebDriver driver = new ...
4
votes
2answers
2k 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"] = ...
4
votes
4answers
366 views
How can I find an <acronym> tag with watir-webdriver without taking a huge performance hit?
I am using watir-webdriver (0.5.3) in a Cucumber (1.1.9) test. I am attempting to verify the text value of an <acronym> tag. The code is legacy, and there are plans to change it to a ...
4
votes
1answer
2k views
How do I change the page load Timeouts in Watir-Webdriver (timeout in .click method)
I have the following code
browser.link(:text => 'Generate Report').click
browser.radio(:value => 'byTotalValue').wait_until_present(180)
which requests that a report be generated and ...
4
votes
1answer
2k views
Element not found in the cache - perhaps the page has changed since it was looked up (Selenium::WebDriver::Error::StaleElementReferenceError)
I am trying to click all links on stackoveflow horizontal menu (Questions, Tags, Users, Badges, Unanswered). I have this code but this clicks on first link (this link is Questions), then prints 1, and ...
4
votes
3answers
1k views
How to simulate CTRL+Click with watir-webdriver?
I want to simulate ctrl keydown and ctrl keyup.
My use-case is the following:
The user can select from a list (build with a table) multiple elements by pressing CTRL key and clicking on the desired ...
4
votes
3answers
2k 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: ...
4
votes
1answer
749 views
What are mechanize limitations? and differences between mechanize vs watir
I am using mechanize to scrap some web pages.
I need to know what are mechanize limitations? What mechanize can not do?
Can it execute javascripts embedded in the web page?
Can I use it to call ...
4
votes
2answers
1k views
Clicking a button with WATIR WebDriver
I have been struggling with this all morning and was hoping to get some assistance.
I have this button on a webpage that pulls up a control panel that lets the user select which widgets to display. ...
4
votes
1answer
3k views
Handling a javascript popup occurring on a keyup event
I have a text-field on a HTML page which checks whether you have entered a value between 1 to 365. If the user enters an invalid value like a non-numeric character or a value which does not fall ...
4
votes
1answer
127 views
Drag and Drop an object with pause before the drop
I'm using watir for automated testing, essentially this project is a task manager.
tasks drop in to a day of the week but it requires a short pause for the task to be hovered over that specific day ...
4
votes
1answer
334 views
Does Watir-Webdriver support clicking on links where the destination is a javascript?
I am new to Ruby and Watir-Webdriver. I have a suite of automation for our site written in VBScript and I want to convert it to Ruby/Watir because I now have to support Firefox. I've found I really ...
4
votes
1answer
220 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
164 views
Watir-webdriver in conjunction with java
Is it possible to use watir-webdriver in conjunction with java in jUnit test cases?
I have to execute some java methods for dealing with data in DB in order to simulate different situations and test ...
4
votes
2answers
307 views
Best practice to keep common steps of cucumber
I'm using cucumber-watir-webdriver with for automation purposes. I have the following directory structure:
|features
-|feature1
--|1.feature
--|step_definitions
---|1.rb
-feature2
--|2.feature
...
4
votes
3answers
556 views
How to enter password in a popup using watir?
I'm writing some watir test cases:
browser.goto "http://egauge2592.egaug.es/"
browser.link(:href,"/settings.html").click
browser.text_field(:index,4).set("some text")
...
4
votes
1answer
305 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
2answers
181 views
Watir/Selenium2 Nothing happens after clicking on an element inside iframe in Internet Explorer 9
I'm writing autotests with Watir-WebDriver and Ruby 1.9.2 on Ubuntu for the web. I have some iframe with several elements. I need to click on the items and check what happens. The <iframe> looks ...
4
votes
0answers
127 views
Cucumber Failed to Load 'yml' Programming Language for File
I'm getting the following error when I attempt to run a Cucumber scenario using watir-webdriver step definitions:
Failed to load 'yml' programming language for file .../features/support/config.yml:
...
4
votes
1answer
629 views
Timeout Errors when running tests Cucumber/Watir
I was hoping someone could help me with a problem I am encountering when running my cucumber tests.
I receive the following error:
Timeout::Error (Timeout::Error)
...
3
votes
3answers
110 views
How to get the html source of a page_object element?
Imagine i have a div like (in Watir language):
@browser.div(:id, 'home_slideshow')
I need the html code inside to do some "magic regex" :). The way to get the div html code could be:
the_div_html ...
3
votes
3answers
67 views
How to click a link in only a single class
I have elements that can be in one of two state class="icon" or class="icon active".
I thought that $browser.element(:class => /^icon$/).click would click the first button that isn't active but it ...
3
votes
3answers
2k views
How to set WATIR focus on new window
I'm new to WATIR testing (and do I love it!) and have run into a wall on how to refocus my WATIR script to a newly opened window.. Here's my (simplified) script....
#!/usr/bin/ruby
require 'rubygems'
...
3
votes
3answers
378 views
performance issue of watir table object processing. How to make Nokogiri html table into array?
The following works but is always very slow, seemingly halting my scraping program and its Firefox or Chrome browser for even whole minutes per page:
pp recArray = ...
3
votes
1answer
2k views
How to get the number of elements having same attribute in HTML in Watir?
I have a HTML document which contains elements having the same class name. I could just do an iteration over all the elements in a page and store with elements with a class name in a list. Is there a ...

