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'
1
vote
2answers
397 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 ...
3
votes
1answer
49 views
how to get data from td in watir which looks like “ status”
<td align="Left">
<font color="navy">
<b>Status
: </b>
</font>
<font ...
5
votes
2answers
106 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.
...
0
votes
1answer
138 views
Syntax for using regex in ruby / watir webdriver
I am able to find an element I'm looking for using an exact match on the text, as shown below, but when I try to extend this to using a regex it doesn't work. What am I doing wrong?
>> ...
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 ...
1
vote
2answers
73 views
Using Watir's .click inside of Bootstrap's popover
In Watir I am attempting to access an a element that appears inside of a popover supplied by Bootstrap.
Just calling a(:class, 'my_link').click didn't want to play ball, so I added the line a(:class, ...
3
votes
1answer
79 views
how to get src attribute of <img> tag using ruby watir
<table>
<tr>
<td>hello</td>
<td><img src="xyz.png" width="100" height="100"></td>
</tr>
</table>
tabledata.rows.each do |row|
...
1
vote
1answer
47 views
Watir-Webdriver not running with Jruby 1.7.2
I am trying to run my watir-webdriver scripts with jruby 1.7.2.
We have a windows8 VM running jenkins and executing our scripts. I have a suite of them that won't run when I build them through ...
0
votes
0answers
81 views
Watir + gwt application
I am writting automatic test for GWT application. And I try to double click on table element. I am using this code fo click:
browser.element(:xpath, ...
0
votes
2answers
73 views
How to check the following things while using WATIR 1] Internet Connection failure while processing 2] website page is not accessible
How to check the following things while using WATIR
1] Internet Connection failure while processing
2] website page is not accessible
1
vote
0answers
254 views
Selenium::WebDriver::Error::StaleElementReferenceError Element does not exist in cache
It's not my actual code but the scenario is exactly the same.
mysite.com is something like this:
<iframe name:something1>
<form id:something2>
<ul>
<li>
...
2
votes
3answers
97 views
Concatenating strings with variables with Ruby
I am writing a test script that opens a file with a list of URLs without the "www" and "com".
I am trying to read each line and put the line into the URL. I then check to see if it redirects or even ...
2
votes
2answers
95 views
Access global variable in ruby unit tests
I'm having problems using a global variable defined in the my test class, which then is referenced in the libraries file. I'm using Ruby 1.9.3p392 and test-unit 2.5.4.
This is the code that runs the ...
2
votes
2answers
184 views
install ruby watir on win7 64b
I have installed Ruby 2, devkit & Watir.
enviroment: OS win7(64b)
installation files:
rubyinstaller-2.0.0-p0-x64.exe
DevKit-mingw64-64-4.7.2-20130224-1432-sfx.exe
part of gem ...
2
votes
1answer
393 views
Watir webdriver mouse over (hover) - differences between Firefox Chrome IE
I'm trying to fire a mouse over on a public website with method .hover, but it seems to work only on Chrome. Other browsers generate errors or don't display any information.
I tried alternatives ...
2
votes
1answer
492 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
1answer
115 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 ...
-1
votes
1answer
42 views
watir webdriver contains_text replacement?
I found in another forum that the contains_text method has been deprecated in watir webdriver. I will be darned if I can find documentation showing precisely what methods webdriver supports. You might ...
1
vote
1answer
119 views
How to run ruby test with watir on jenkins slave?
I have installed jenkins master node and testLink on a windows 7 machine, called machineA.
I have installed, Ruby 1.8.7, watir 1.7.1, ci_reporter 1.8.4, test unit 2.5.4, rake 10.0.3, jenkins slave ...
1
vote
1answer
34 views
How to make an automated browser to specific web site in server mode ? what about WATIR?
I need to make a server which is listening for clients requests and use a connection to a website to make searches and return results to its clients.
The website is specific and need full web browser ...
2
votes
1answer
100 views
Interacting with Chrome extension using watir-webdriver
I am able to launch Chrome browser with extension in the browser. But I am not able to interact with the extension.
When I launch Chrome browser manually, I go to chrome://extensions and configure ...
2
votes
2answers
89 views
how to find the text from the multiple same attribute in watir?
I want to find and click the Line Lo value from the following value. The following li had more than 100 records has same class name. How to find the Line Lo and click that value.
<div ...
1
vote
1answer
216 views
Native Events error trying to double-click element using watir-webdriver
I am writting automatic test for GWT application. And I try to double click on table element. I am using this code fo click:
browser.element(:xpath, ...
0
votes
2answers
145 views
Loading chrome with extension using watir-webdriver gives Timeout error
I have HTML Tidy extension installed in chrome.
When I do:
b = Watir::Browser.new :chrome
The Chrome browser opens up but without extension.
So I used following:
b = Watir::Browser.new (:chrome, ...
0
votes
1answer
80 views
Not able to select a dropdown option with Watir (Ruby)
I am unable to get Watir to select the correct option from a dropdown. I'm trying to select from this:
<select id="j_id0:theForm:ruleTypeSelector" onkeypress="return suppressEnter(event);" ...
1
vote
2answers
122 views
Watir/Selenium giving error “Element is not currently interactable”
I'm trying to test, using watir, a web app that we are developing and am running into a confusing error.
The HTML in question is
<td>
<div class="filter-container">
<input ...
1
vote
3answers
189 views
Selecting Options one by one Using watir-webdriver-
b.select_list(:id, "MainContent_drpVehicleType").when_present.options.each do |option|
option.select
b.select_list(:id, "MainContent_drpMake").when_present.options.each do |option|
...
0
votes
1answer
53 views
How I can click on img (DevExpress controll)?
How I can click on :
<td class="dxgvCommandColumn_Aqua dxgv" align="center">
<img title="Delete User" class="dxgvCommandColumnItem_Aqua dxgv__cci" ...
1
vote
1answer
121 views
How do you launch IE in IE compatibility mode when using watir-webdriver?
I know it is possible to change the default download directory, etc. by passing in a hash of options to Google or Firefox or, here, Internet Explorer.
Is there a way to launch IE in compatibility ...
0
votes
1answer
85 views
Finding a fieldset using page-object
I'm trying to find a set of checkboxes, but I need to locate them in a fieldset.
The html is like this (it's a gwt app, so tons of stuff is generated:
<div id="UpdateUserView-RolesColumn">
...
3
votes
1answer
65 views
Firewatir on ubuntu
I'm trying to use the firewatir on ubuntu and I'm getting the following error:
irb(main):003:0> require 'firewatir'
LoadError: cannot load such file -- watir/exceptions
from ...
-2
votes
2answers
165 views
How to get certain div array elements containing a specific string in the subclass
How to get each div element ID in an array and containing specific string I need in it containing in the elements subclass theText.
<div id="corporaContainer" class="fullList">
<div ...
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 ...
1
vote
1answer
99 views
Watir-webdriver is progressing through script before Nokogiri finishes scraping
There are three forms on the page. All forms default to "today" for their date ranges. Each form is iteratively submitted with a date from a range (1/1/2013 - 1/3/2013, for example) and the resulting ...
1
vote
2answers
129 views
Getting started with Ruby, Watir and Ruby Mine?
I want to automate testing of an e-commerce website. I installed Ruby, Watir, Gems and Ruby Mine.
Though I played around with RubyMine I could not figure how to start writing a simple script:
How ...
1
vote
1answer
98 views
Watir webdriver: uploading files isn't working in SAFARI browser?
I am trying to attach file to upload with form in safari browser. Element is searchable but file is not attached.
<input type="file" id="file" name="file" maxlength="255" onchange="copyfile();" ...
2
votes
1answer
69 views
How to find the data-id in watir?
I am new to watir testing. Would somebody help me to find the following element.
<div class="location_picker_type_level" data-loc-type="1">
<table></table>
</div>
I like ...
1
vote
0answers
59 views
Watir - getting Watir::Heading (TypeError) while using :after selector
I'm trying to get a particular link that is inside an unordered list. The ul element is located on the page below a h2 header with the text "Application help"
I have a watir step that has this:
...
0
votes
1answer
67 views
Loading js files in Watir
I want to be able to dynamically load .js libraries like jquery using Watir for some advanced browser automation. This is what I tried:
$browser.execute_script( %{var bootscript = ...
0
votes
0answers
245 views
Using watir-webdriver on windows
I have been using watir for a long time with Internet Explorer. I am just now trying to get watir-webdriver to work. I have installed IEDriverServer.exe in my path.
I have a website running on my ...
0
votes
1answer
166 views
Retrieve text from span element in watir webdriver
I have the following:
<ul class="a">
<li class="b">
<a class="c">
<span class="d">
<strong>text</strong>
</span>
</a>
...
-2
votes
1answer
64 views
Ruby watir nokogiri browser integration.
So I've created a parser using ruby and gems such as watir and nokigiri. I've created it on a Debian box. It works amazing, but I don't know what to do next. I want it to work within a browser and on ...
0
votes
1answer
184 views
Scraping Table with Nokogiri and need JSON output
So, I have a table with multiple rows and columns.
<table>
<tr>
<th>Employee Name</th>
<th>Reg Hours</th>
<th>OT Hours</th>
</tr>
...
2
votes
1answer
71 views
Nokogiri is not loading browser from Watir
I have this so far:
require 'watir-webdriver'
require 'date'
require 'nokogiri'
browser = Watir::Browser.start 'https://example/ViewReport.aspx'
browser.link(:text, 'Combined Employee Performance ...
0
votes
1answer
42 views
How to be certain when the page load is complete to measure load time
I need to measure load time on a page navigation. Here is my situation:
When I navigate, the page laod is taking variable time as the ajax elements load. How to be certain that the page is fully ...
0
votes
1answer
43 views
Watir Measure Page Performance
Ive found this gem : http://watirwebdriver.com/page-performance/
But i cant seem to understand what this measures
browser.performance.summary[:response_time]/1000
Does it start measuring from the ...
0
votes
1answer
66 views
how get the value of a script tag
In my page code, there is this script tag:
<script>
var oid = "182384";
document.getElementById('container').innerHTML = oGrid;
oGrid.setShowSid(false);
oGrid.calcSize();
...
0
votes
1answer
90 views
ruby / watir webdriver - url encoding for spaces, etc
I'm trying to follow with Watir links with spaces and "http://"-s in them. Doing it manually I'm able to copy-paste something like that:
...
0
votes
0answers
69 views
I cannot click on an element using Watir
I have this HTML code, and I can't click on the header of this grid that has a span tag using watir.
Any ideas?
My block of HTML:
<span title="" class="aw-item-template aw-templates-imagetext ...
3
votes
1answer
61 views
Watir Webdriver : How can I disable loading ads using watir
I am trying to automate a website, but what is happening is that the ads are taking very long to load thus the complete suite is taking a long time to complete.
Is there a way I can disable loading ...


