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'

learn more… | top users | synonyms

0
votes
2answers
37 views

Using Ruby Watir, how can I select a checkbox that has a changing ID?

This is the HTML I'm working with: <div class="pbSubsection"> <table class="detailList" cellspacing="0" cellpadding="0" border="0"> <tbody> <tr> ...
0
votes
1answer
34 views

watir gem install error due to mini_magick file w/ special characters

I have been trying to install the watir gem for ruby 2. I followed the watir books install instructions exactly but once the watir install get to the mini_magick gem it gives this error ERROR: While ...
-1
votes
2answers
32 views

Look for text in a div that has multiple links under it with Watir

I am trying to verify that the text of a link is present in a . The div is not available until a link is clicked. After the link is click more links become available to click. Below is what the html ...
0
votes
2answers
44 views

watir open each link of a page

I need to scrape some info on a website that has a table where each row contains a link. I want watir to click each link in that table, grab some info from the generated page and go back to the ...
0
votes
1answer
35 views

watir-webdriver functions do not execute as a script but works on the interactive ruby shell

I am trying to write automated scripts for a web application using watir. There is a slider in the UI, which has a range from 1 to 11. It is a horizontal div. So, if you press the right arrow key, ...
2
votes
2answers
61 views

Watir-webdriver unable to identify button by value?

As far as I know, using :value as a way to identify a button element should work just fine. There are even multiple examples such as on the watirwebdriver.com site that show this. However when I ...
2
votes
1answer
110 views

Disable chrome download multiple files confirmation

I developed a crawler with ruby watir-webdriver that downloads some files from a page. My problem is that when I click to download the second file, Chrome opens a bar in the top asking for ...
0
votes
0answers
19 views

Why does requiring 'watir-webdriver' in my macruby application in xcode cause this error?

I have installed watir-webdriver via macgem in root and in user, I have required rubygems and included /Library/Frameworks recursively in my framework search path in build settings for this project. ...
0
votes
1answer
66 views

Watir installation error windows

I have not used Watir or Watir-webdriver in about a year. I installed a fresh 32x Windows 7 on image on my computer. Next I installed Ruby with the installation pack version 2.0.0-p0. Then I updated ...
0
votes
2answers
58 views

How do you check for a changing value within a string

I am doing some localization testing and I have to test for strings in both English and Japaneses. The English string might be 'Waiting time is {0} minutes.' while the Japanese string might be ...
0
votes
2answers
47 views

Connection refused error when I try to close a Watir browser?

This thing just seems to give me problem after problem. I posted another question earlier, trying to solve the problem of retaining my session state between closing and opening through Watir. Firefox ...
1
vote
1answer
31 views

How do you view page source using Watir?

I need to be able to go straight to a page's source code using Watir. For example, "view-source:www.amazon.com". However, browser.goto("view-source:www.amazon.com") does not work. I can't just ...
6
votes
5answers
463 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 ...
0
votes
1answer
65 views

Watir loses browser connection after first goto

I am completely new to Watir, trying to work out the basics so we can use it for testing our websites. The problem is, following the 'Watir in 5 minutes' after I do my first browser.goto, I seem to ...
4
votes
1answer
52 views

How to find if a DOM element has an event listener with Ruby

I'm using Watir and Nokogiri to parse web pages and interact with them. I would like to identify whether a DOM element triggers a script when it is clicked. From my research, I understand that this is ...
0
votes
0answers
29 views

after execute Watir::IE.new, no replay, change it to Watir::IE.new_process, ie can open,but got blank for ie.goto(address)

I'm using ruby192 on win7 64bit,IE version is 10, the gem list is like: builder (3.2.0) childprocess (0.3.9) commonwatir (3.0.0) ffi (1.6.0 x86-mingw32) hoe (3.5.2) mini_magick (3.5.0) minitest ...
2
votes
1answer
44 views

Watir Browser.default and Browser.new erroring

I'm playing with watir for the first time, using this site as a guideline. I'm getting an error on a simple program (below) - it fails on the first non-require line as shown. If, instead of running ...
-1
votes
0answers
30 views

How to generate Rspec report with screenshot [duplicate]

My RSpec file is outbid.rb ...................................... require 'rspec' require 'watir-webdriver' require 'rautomation' browser = Watir::Browser.new RSpec.configure do |config| ...
0
votes
0answers
31 views

Set_no_wait not setting a value for a Text field

We just migrated to the latest version of WATIR(4.0.2), and the method set_no_wait does not set a value to the text field. The text field where I set a value triggers a pop up, and--hence on using ...
2
votes
1answer
19 views

save dynamic image from element to disk

Method save not implemented yet in watir-webdriver, but exist in watir-classic. Are there any other methods to preserve the dynamic images? When I`m try download image by url image changing. Is it ...
0
votes
1answer
42 views

Undefined method error when trying to run around hooks

I am trying to run given scenarios as many times per each account type. I found out in other thread that "around hooks" could be the best option to do it the DRY way. Below is my code: require ...
-2
votes
0answers
17 views

How to use variable to rocognize elements in watir

How can I use a variable on recognizing element. operationDate = Time.now.day+1 operationDate.to_s this is calendar object and I want to click next day $browser.span(:text, operationDate).click ...
1
vote
2answers
76 views

Ruby - extracting table values

I'm trying to parse a value from an HTML table (below) using ruby, watir and regular expressions. I want to parse the id info from the anchor tag if the table rows have specified values. For example, ...
1
vote
1answer
969 views

Installing Watir-Web Driver on Fedora Linux

I'm trying to install watir-webdriver by using gem install watir-webdriver on Linux. I have installed ruby 1.8.6, activesupport 2.3.8 as well as firewatir. However, when I try to install ...
0
votes
0answers
15 views

Unable to install watir web driver on RedHat Linux

Gem install is unable to get a gem from the existing repository for the RHEL. http://rubyworks.rubyforge.org/redhat/5/GEMS/x86_64/ is the one currently configured.... Let me know if there are more ...
0
votes
0answers
113 views

Run multiple watir scripts in order from one general script/file

At the moment I am trying to run 3 different scripts from one file like so: How to run multiple watir scripts from one general script Each one picks up where the previous finished in an online app. ...
-1
votes
0answers
27 views

watir : how to write a web driver for some special web browser?

I am using watir-webdriver to do web testing, I would check whether the web page is shown correctly in different browsers, including ie, firefox, and so on but I need to check more web browsers ...
0
votes
1answer
72 views

Watir Webdriver : Can we use watir to test web services with json data format

I am new in testing web services with json data format. I use watir for my automation. So just wanted to know if it can be done with Watir. I am also looking for other options so all suggestions and ...
-1
votes
1answer
66 views

How to validate HTML Reports using Watir

We are trying to validate the HTML reports generated by our application. We have planned the below approach to do this Capture that data related to the report from application Generate the report ...
0
votes
1answer
40 views

Ruby, Watir Classic and IE: Browser stops unless it has focus

After upgrading our test quite from Watir 2 to Wait-classic 3.6 we've discovered that unless IE is on an interactive desktop and has focus our test scripts stop until they timeout or someone gives IE ...
1
vote
1answer
49 views

How to click on a div drop down menu

I am trying to click on a link that's in a drop down menu. First, I will explain how it works. When you mouse over the link called help, the drop down menu appears. From this menu, you can then ...
3
votes
0answers
105 views

Save images from a website

How can i save website images with watir, without reloading them with open-uri or similar? I: The reason why i can't use File.open(file_name, 'wb') do |f| f.write ...
0
votes
3answers
609 views

Can you deploy Watir on Heroku to generate HTML Snapshots? If so, how?

I would like to generate HTML Snapshots using Watir, hosted on Heroku. Google's Full Specification for Making AJAX Applications Crawlable suggests using HTMLUnit... see How do I create an ...
1
vote
2answers
129 views

how to save image in blob field using watir?

<table> <tr> <td>hello</td> <td><img src="xyz.png" width="100" height="100"></td> </tr> </table> i want to save this xyz.png in blob form into ...
3
votes
1answer
50 views

Unable to locate an element by id

Unable to locate a button with :id=>"bld" on my page. Looked at many solutions and even tried to generalize it to element vs button: browser = Watir::IE.new browser.element(:id=>"bld").click ...
2
votes
1answer
41 views

when saving a screenshot with Watir the png is empty or 0kb

I am using cucumber and watir-webdriver and am trying to take a screenshot on failure. With the examples I found, it is technically working but the png files that are created are blank or 0kb in size. ...
0
votes
0answers
42 views

One test suite for functional and performance test

I have been playing around watir-webdriver-performance gem of late and I am quiet interested to test the functionality and performance of the website using single test suite. Thanks to Alister Scott ...
0
votes
1answer
46 views

Watir incompatible character encodings

I am writing this bot with ruby and ran into trouble, that showed up to be more complicated, than i would ever thought it could be. I read many similar articles, but nothing really helped. It might ...
6
votes
1answer
698 views

watir - installation

I have installed Ruby 2, devkit & Watir. I am getting the following error. Can anyone please help me resolve this issue? C:\devkit>irb DL is deprecated, please use Fiddle irb(main):001:0> ...
1
vote
1answer
32 views

Is there a way to highlight element with Watir?

I keep getting errors doing this: puts browser.table(:after? => span(:text => "Asmeniniai duomenys") )[2][2].text basically saying: undefined method `span' for main:Object (NoMethodError) ...
3
votes
4answers
1k views

How do you save IRB inputs to a .rb file?

Might sound like a newbie question (and it is since I am new to Ruby and IRB) but is there a way to save the commands you did in IRB to file? I am playing with WATIR and would love to save all my ...
1
vote
0answers
23 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
116 views

ChromeDriver Ruby disable images

Is there a way to disable images in Chromedriver with ruby? There is a similar question but it deals with C# and I am not exactly sure how to port it over to ruby. Disable images in Selenium ...
2
votes
1answer
100 views

How to access a new browser tab

Watir noob here. I'm attempting to connect to and manipulate a newly spawned browser tab, but am a little confused about how to recognize the new tab. Here's what I have: Windows 7 (32 bit) IE 10 ...
2
votes
1answer
64 views

how to quickly reset all the checkboxes on the webpage?

I have a div with checkboxes, and everytime before checking any of them I want to make sure they are cleared first. Any input on how I can do it? The HTML code for the div consisting of checkboxes is ...
2
votes
1answer
458 views

Silencing ChromeDriver.exe logging

I am running ruby unit tests against Chrome using watir-webdriver. Whenever a test is run and chromedriver.exe is launched output similar to below appears: Started ChromeDriver port=9515 ...
2
votes
2answers
166 views

Ruby, Watir, Cannot click button in Frame loaded by Java Script

because my B593 router is sometimes stuck in a state where it produces around 50% packet loss i am trying to write a program to let it automatically reboot if lets say out of the last 100 pings 30 ...
0
votes
0answers
85 views

Need to implement Watirgrid,

I want to implement watirgrid, but I'm not able to do that, every time I'm getting errors related with controller and provider starting process, Also all the example over internet, none of them are ...
3
votes
1answer
63 views

how to deal with a multiple select list with custom html attributes?

<select class="business_group" multiple="multiple" name="SelectedBusinessGroups"> <option value="Partners">Partners</option> <option value="Press">Press</option> ...
2
votes
1answer
116 views

Error installing Watir on Windows 8

Hi I'm trying to install watir. I've installed Ruby and updated the RubyGem manager. When I try and install watir (Windows 8 64bit) I get the following: C:\devkit>gem install watir Temporarily ...

1 2 3 4 5 22