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
97 views
Couldn't click on the button using watir-classic
CODE
require 'watir-classic'
browser = Watir::Browser.new
browser.goto("https://example.com/")
browser.a(:class => 'button').Click
browser.text_field(:id => "username").text='****'
...
2
votes
2answers
160 views
How to close browser at the end of watir test suite?
Using ruby's watir to test a web app leaves the browser open at the end. Some advice online is that to make a true unit test you should open and close the browser on every test (in the teardown call), ...
1
vote
1answer
56 views
Finding only the new rows added to a table
I have the following code which is supposed to get me only the new events added to the table from the last time i checked the table.
events=@browser.table( :id =>'table_events').tbody.rows
....
...
1
vote
1answer
248 views
getting (Selenium::WebDriver::Error::WebDriverError)) on trying to load a webpage through watir
getting (Make sure Firefox is installed or set the path manually with
Selenium::WebDriver::Firefox::Binary.path= (Selenium::WebDriver::Error::WebDriverError))
on trying to load a webpage through ...
1
vote
1answer
63 views
Hot to Wait.until not a string in a text_field, with Watir?
I want that Watir waits until the text in a text_field disappear, or be replaced. But, when I try to do like this:
Watir::Wait.until { browser.text_field(:id, "ContentPlaceHolder").value =! ...
1
vote
1answer
207 views
Access button in div popup watir web-driver
I am trying to retrieve, modify, and reinsert some text in a pop up dialog using watir web-driver. All was going swimmingly until I tried to find a way to click the "Save Book Info" button pictured ...
1
vote
1answer
115 views
find a span id with watir
On the website, there's a field that's populated by a user by clicking a Browse button then selecting a file. I can't figure out how get watir to populate it. We ran test cases a couple years ago that ...
0
votes
1answer
431 views
Timeout error when using “exists” watir-webdriver method
As far as searching goes, i was unable to find an up-to-date list of supported browsers for watir.
I've just upgraded firefox to version 18, and while at it, also update the watir-webdriver version ...
3
votes
1answer
109 views
CSRF in automation
Say we have some automation that tests POST requests. Those POST request won't work without being included CSRF-token because of Rails build-in CSRF protection.
What is the best practice for running ...
1
vote
1answer
58 views
How to dowload safari certificate for windows?
I am trying to automate a Safari browser using Watir. I have created an apple account and have validated my account. I am following instructions on this link: http://watirwebdriver.com/safari/
But I ...
2
votes
1answer
75 views
How to change the flash color?
I want to change the flash color when using element.flash method. By default its yellow.
I was able to increase the number of flash times and delay time in elements.rb file. But i dont know how to ...
0
votes
2answers
90 views
when trying to click on a jquery [+} tree via x-path in Watir I get the following error wrong number of arguments(3 for 1) (ArgumentError)
when trying to click on a jquery [+} tree via x-path in Watir I get the following error wrong number of arguments(3 for 1) (ArgumentError)
When /^Go to e-Care and search for the policy created$/ ...
1
vote
1answer
89 views
clicking on a link with specific part of known text- watir webdriver
I want to click on a link with variable text:
@variabletext = 'text' +@timestamp
But the link has a number like 01 # text010120121134. I just know text010120121134. Can someone help me click on ...
0
votes
1answer
257 views
How to improve performance of Watir element.present? method?
I experience IMO high delays with the Ruby script using Watir. Here's the problem description: I am testing AJAX based application and I wanted to avoid using of sleep to make sure page gets loaded:
...
2
votes
1answer
96 views
How to click on an element generated by javascript with Watir?
I'm developing an jsf based application using a library called primefaces.
Primefaces generates a web page containing javascript functions that are generating some buttons. Buttons are not visible in ...
0
votes
2answers
104 views
How to set the checkbox in the first column based on the value in the second column?
I'm automating a task using Ruby and Watir.
I want to set a checkbox (which is in the first column of a table) based on whether the value in the second column matches my input value. For example, in ...
2
votes
3answers
113 views
How to access the sub text having no attributes using Watir
In following html
<p>
<strong>Name:</strong>
12121
</p>
How can I access the "12121" text using Watir?
1
vote
2answers
269 views
Save image in watir-webdriver
I need to save image from recaptcha to localhost disk, i'm getting image dom element using watir-webdriver, but it doesn't support save method, as watir do. So how can i save image to my disk?
Html:
...
1
vote
1answer
99 views
Watir - get image without any property
I have such structure:
<div id="recaptcha_image" style="width: 300px; height: 57px;">
<img style="display:block;" alt="Проверка по слову reCAPTCHA" height="57" width="300" ...
2
votes
1answer
176 views
Watir open multiple browser's or tab's
How can I open more than one browser using my code-watir, for example via a while loop from 0 to 10?
Here is my code:
require 'watir-webdriver'
require 'headless'
class Page
@headless = ...
1
vote
3answers
79 views
Waiting for an element without throwing an exception if timed out
I know of the method Element#wait_until_present(t), but if this method times out it throws a timeOut exception.
Is there a method that just waits for t seconds and then returns true if the element ...
2
votes
1answer
179 views
Watir script timeout problems with Firefox browser
I am new to Watir and I have this weird situation with AJAX based webapp. Application might render a notification window over the page. This notification is a JS based modal window. If I click or ...
1
vote
1answer
117 views
Suppress auto-closing window in Watir
I am using Watir with Chromedriver to automate form submission on some website. I have to login and submit multiple forms. The problem is, when I click the submit button the page the page ...
0
votes
2answers
160 views
Issue with execute_script
I am running watir-classic 3.3.0 with the following configuration:
ruby 1.9.2p290
watir-classic 3.3.0
Windows XP Service Pack 3
IE 8
When I try to execute the following script on one of the pages ...
1
vote
1answer
112 views
A better way of iterating and filling data in HTML table using Watir
I have a table which might contain up to 50 rows and has 9 columns. However the code I am using to fill out data in the table its taking so long.
Is there a faster way of doing it?
Here is my code
...
3
votes
2answers
105 views
Cannot read span elements
Hi since I did gem install watir watir-classic my scripts are not reading anymore the span elements. Can you please help me to fix this problem
here my example
Source
Rented
<SPAN ...
0
votes
1answer
41 views
direct to and simulate web user to fill in search data(Ruby On Rails)
Currently I'm developing a flight ticket search engine(pretty similar to this-http://www.momondo.com/) which will gather all the information of a site. I' m done with the grab the info from the ...
2
votes
2answers
101 views
saving a screen shot in watir
I want to save screenshot in Watir.
filename should be of the format "ddmmyyyy_hhmmss.png"
I am trying following:
@@filename = Time.now
browser.screenshot.save (@@filename.png)
but it saves file ...
1
vote
1answer
225 views
Watir Webdriver Load Chrome Extension
I'm trying to load a chrome extension with Watir, and I'm having issues.
I found this related question: Ability to launch chrome with extensions loaded with watir-webdriver. However, I am still ...
2
votes
1answer
180 views
How to get a text from HTML using Watir?
I am using Watir (watir-webdriver) with Ruby to write an automated testing script.
I am trying to get the text which is random numbers, in this case 103QUL6M, from the HTML. Since the random number ...
1
vote
1answer
173 views
watir headless test runs fine on local linux but errors out on headless linux box
I am using watir headless to run basic login test case on my website. It works well from my machine (normal dev linux machine) but fails with following error on a headless linux server (using ...
1
vote
1answer
174 views
$b.link(:text => “Sign up”).when_present.click not working on yahoo
I am new to Watir WebDriver. I was playing around with this framework and I included the below code but the second line is not working
$b = Watir::Browser.new :ie #browser
$b.goto "www.yahoo.com"
...
0
votes
1answer
87 views
Using xpath vs span to get elements (one works on IE and Firefox but the other one only in IE)
I am new to Watir framework and we have a code like
$browser.link(:xpath, "//a[@href='/servlets/ProcessAction?identifier=createMemberAccountTypes&click1=Accounts_Open']").click
. But this ...
2
votes
1answer
522 views
NoMethodError: undefined method `check_url' for nil:NilClass
I have a module which i have included into my main class:
module GenericPage
def check_url=(page)
puts(page)
end
end
I create a new instance of my class, which I am calling in Cucumber
...
0
votes
3answers
147 views
Capturing a screenshot
I'm unable to figure out how to capture a screenshot when a test fails in watir. Please any help/examples?
Here is an exaample of my code
testName = "Entered 000000 - Invalid Unit Number"
...
2
votes
2answers
480 views
Load Error : no such file to load — watir/testcase after upgrading to watir 4.0.2
I just upgraded to watir 4.0.2 from watir 2.0.4 and i am getting the below error,
C:/Ruby187/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:60:in `gem_original
_require': no such file to load -- ...
1
vote
1answer
55 views
How might I read (parse) html directly from a file using Watir?
I can already do this with Nokogiri of course
doc = Nokogiri::HTML(src)
where src is a text column in my database.
But I really like Watir's search interface for developers over Nokogiri.
There's ...
1
vote
0answers
107 views
Variables in rakefile not visible in test classes
Thanks to help I've received here, I have a test suite of ruby tests that are in a CI server continually verifying or UI (using Watir). However a new requirement came in, which actually highlighted a ...
0
votes
2answers
1k views
NameError: undefined local variable or method `desired_preferences'
I have created a module with a method
module Adding_preferences
def desired_preferences
@preference = %w(motabilitySpecialist newCars bodyshop filter8 filter7).each do |selection| ...
1
vote
1answer
128 views
Watir - file_field.exists? comes up as false even though there is an upload form on the page
I am looking at a web page with an overlay that contains a Choose File/Browse etc button
Below is a snippet from the page
<form name = "form1" method = "post" action = ...
1
vote
0answers
88 views
Watir: how to clone a table cell object?
I'd like to make a deep copy of a Watir::TableCell object.
When I called Marshal.load(Marshal.dump(cell)), there is an error TypeError: singleton can't be dumped.
I used new function ...
4
votes
1answer
126 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 ...
2
votes
1answer
125 views
After finding out which JavaScript events are defined for an element, how do we proceed?
I am new to Watir (and JavaScript as well) and have been following the related questions (and answers as well). I've also gone through the "Firebug" suggestion. I couldn't quite gather what we are ...
1
vote
1answer
317 views
Watir Help: click-no-wait and execute_script not working as expected
Using ruby's Watir gem, I'm trying to click a button that opens a javascript popup, then click 'ok' on the popup and I can't seem to do that. The button is in a frame in a frame. I have searched ...
4
votes
1answer
161 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 ...
1
vote
1answer
106 views
Watir webdriver rows performance
I am trying to zero in on a specific row on a webpage using watir-webdriver. The code I use is pretty straightforward:
b = Watir::Browser.new
frame = b.frames.first
frame.tables[3].rows[2].flash
...
2
votes
1answer
165 views
Watir - Finding parent div of specific child with attribute value
I'm a total newbie with Ruby and Watir. I have the following example html structure:
<div class="class1">
<a class="class2" title="theTestTitle" href="#">
<ul ...
4
votes
3answers
267 views
Create a region-specific IP address for testing
For a project I am working on I need to fake an IP address to appear that I am coming from another country.
Basically if the IP detected is from the UK, show popup A, if the IP detected is from ...
-3
votes
1answer
125 views
What's causing undefined method `form' for nil:NilClass (NoMethodError) when filling in a form with ruby cucumber
I am trying to fill in a number of form forms using ruby cucumber and I am getting undefined method `form' for nil:NilClass (NoMethodError). On the first page it fill out the form correctly but on the ...
0
votes
1answer
64 views
Watir faster way to click link
I'm using the following command in an .rb script to click a link for a web page that I'm developing a test plan. It seems, however, that when this command is executed, there is a 3 second delay ...

