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'
0
votes
0answers
42 views
Successful click on div fails to perform the function
I have a <div> tag with a class that I use in the locator. The <div> is like a "SAVE" button. There is no other tag inside the <div>. Clicking of this "SAVE" button works manually ...
1
vote
1answer
33 views
How to locate html element <input type=number> in watir?
I cannot find input type number element from http://wiki.openqa.org/display/WTR/HTML+Elements+Supported+by+Watir
Does this mean watir cannot locate such HTML element?
1
vote
2answers
65 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>
...
1
vote
2answers
111 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
vote
1answer
53 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, ...
1
vote
2answers
49 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
23 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
2answers
42 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 ...
1
vote
1answer
34 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 ...
2
votes
2answers
74 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 ...
0
votes
0answers
33 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 ...
7
votes
4answers
570 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 ...
-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|
...
4
votes
1answer
56 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
2answers
61 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
0answers
32 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
21 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 ...
-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
...
2
votes
1answer
50 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 ...
0
votes
1answer
46 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 ...
1
vote
2answers
77 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, ...
0
votes
2answers
48 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 ...
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 ...
-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
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
52 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 ...
0
votes
1answer
71 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 ...
-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
...
3
votes
0answers
115 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
1answer
75 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 ...
3
votes
1answer
52 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
43 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
43 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
48 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 ...
1
vote
1answer
34 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)
...
0
votes
1answer
66 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 ...
1
vote
0answers
26 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... ...
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
101 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
...
1
vote
2answers
137 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
65 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
117 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 ...
2
votes
2answers
69 views
Is there a way to use an element although its not on screen anymore?
After I've found an element ,lets say a span.
Is there a way to save its attributes ,or something of that sort, so that ill be able to "click" the span even if it does not exist on screen anymore ?
...
1
vote
1answer
66 views
Retry testing sites after timeout error in Watir
I am going through a list of sites and going to each one using Watir to look for something in the source code of each page. However, after about 20 or 30 sites, the browser times out when loading a ...
2
votes
2answers
177 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
1answer
92 views
How to click on link element with specific text using watir?
I'm not able to click on text link 'Add' using watir:
PAGE:
<div id="divAdd" style="float: right">
<a onclick="SwitchView('2')" style="color: #1B56A7; cursor: pointer;">Add</a>
...
0
votes
0answers
86 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 ...
0
votes
1answer
55 views
timeout ie.close not working and time out error occurs
ie.link(:id, "ctl00_ContentPlaceHolder1_BtnSearch").click
rescue Timeout::Error
#sleep(5)
puts "timeout"
ie.close
#sleep(9)
retry #open new browser ...
0
votes
1answer
106 views
Watir Webdriver : Entering text in <p> tag within an iframe
I am really stuck now. I have an iframe in which there is a < p> tag where I want to send some text, but I am just not able to do it.
HTML:
<iframe id="edit-field-verdict-0-value_ifr" ...
1
vote
2answers
408 views
No connection could be made because the target machine actively refused it. - connect(2)
require 'watir-webdriver'
begin
url='http://localhost/test/test.php'
ie =Watir::Browser.new:chrome
ie.goto url
rescue Timeout::Error
puts "time out"
ie.close
retry
end
This my php ...





