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' ...

learn more… | top users | synonyms

0
votes
1answer
16 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
0answers
62 views

Problems with Selenium WebDriver executeScript (using watir-webdriver in Ruby)

I am having trouble executing a particular javascript snippet using Watir WebDriver's browser.execute_script command: Here is the Javascript in question: var bodyFrame = ...
2
votes
1answer
48 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 ...
6
votes
5answers
305 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
2answers
58 views

Rspec HTML report with Fail Screenshot

I kept my scripts in the below path: C:\Desktop\RSpec_Folder My code is: require 'rspec' require 'watir-webdriver' require 'rautomation' browser = Watir::Browser.new RSpec.configure do |config| ...
0
votes
2answers
56 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
45 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
1answer
25 views

jruby1.6.7+watir+cucumer1.2.1 on win7 can not open ff14.0.1

I installed jruby1.6.7 on win7 and firefox 14.0.1 and run jruby -v is ok and installed below plugin: jgem install activerecord -v='3.0.5' jgem install activerecord-jdbc-adapter -v='1.1.3' jgem ...
0
votes
1answer
29 views

Watir-webdriver rails integration with minitest

Looking for equivalent of the gem minitest-rails-capybara for watir-webdriver, or in other words having the tests automatically start and stop the rails server. This is for the purposes of a ...
0
votes
2answers
37 views

While launching browser how to handle authentication pop up in Rspec

The website I am testing requires that the user login, and this is handled by the webserver not a HTML form, so it generates an authentication popup in the browser. I've tried doing the following ...
0
votes
1answer
47 views

Opening new tabs in Chrome using Watir causes problems using open tabs

Short version: new tabs in Chrome prevent old tabs from being used, fixing that means that opened tabs with PDFs in them get reused before a human can examine the PDFs. Long version: Originally it ...
2
votes
2answers
58 views

Chrome/Firefox do not retain cookies when invoked via (Watir-)Webdriver?

I am working on a project for a client using Ruby & Watir. He requires that the session is restored when the application is reloaded (so to save his login states). This is the normal behavior of ...
1
vote
1answer
42 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
0answers
44 views

Cucumber not closing IE8 or Chrome on a Windows7 VM

I have a suite of cucumber scripts that execute against our web apps. When I run the scripts against IE8 and Chrome they run fine but when it comes to closing the browser it can't. Here is the ...
0
votes
1answer
57 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
1answer
32 views

Watir-webdriver slowly firefox

i have problem with watir-webdriver and Firefox 3.6, the cucumber is finished 1 scenario (1 passed) 4 steps (4 passed) 0m7.983s rake aborted! Timeout::Error and after 3 minutes load the page when ...
2
votes
2answers
41 views

How to run cucumber, ruby scripts on iPad simulator

I have run cucumber+ruby+watir scripts on windows, now I want to run those on an iPad as well. Is there any way to do this? Please tell the detailed procedure to do this.
0
votes
2answers
47 views

Rspec : Only launching Firefox window. It is not loading the URL

Please help me discover why this is only launching the browser, not loading https://www.outbid.com/users/sign_in require "rubygems" require "rspec" require 'watir-webdriver' @browser = ...
3
votes
0answers
94 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 ...
2
votes
2answers
40 views

How to get image source value

Let's say I have HTML like this: <div class="out-radio"> <div class="in-radio"> <input type="radio" value = "12345"> <label <span ...
1
vote
2answers
57 views

watir-webdriver: how to retrieve entire line from HTML for which I found substring in it?

I've got something like that in HTML coming from server: <html ...> <head ...> .... <link href="http://mydomain.com/Digital_Cameras--~all" rel="canonical" /> <link ...
0
votes
1answer
69 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 ...
2
votes
1answer
40 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
41 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 ...
1
vote
2answers
41 views

Watir webdriver - How to click on dynamically generated last <td> in table?

In my application,I've to select the last td (which is an img) in table.Can anyone help me with this ? HTML <table> <tbody> <tr> <td> <td> <a onclick="return ...
0
votes
1answer
56 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 ...
2
votes
1answer
63 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 ...
0
votes
1answer
88 views

Selenium: Element Not Visible Error when RDC minimized

I'm running WATIR automated tests using Selenium WebDriver on a Windows XP remote desktop, and I noticed that when I minimize the RDC I start getting random Element is not currently visible errors for ...
3
votes
1answer
62 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> ...
1
vote
0answers
127 views

Rake file with Jenkins (Cucumber, watir-webdriver)

I've started with watir and cucumber a while ago and have been trying to run my project with Jenkins. I have a watir Project (watir,cucumber) in C:\project_name. I have rake file in the project also ...
2
votes
2answers
68 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 ? ...
2
votes
2answers
159 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 ...
1
vote
0answers
68 views

MoveTargetOutOfBoundsError when trying to perform drag and drop in iframe

I'm trying to automate some tests for a web application, and many of the tests require drag and drop inside an <iframe>. I am dragging an anchor from one jspContainer to another within the same ...
0
votes
0answers
83 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
72 views

Watir-webdriver with firefox

I'm working on web-application automation using ruby and ruby's framework watir-webdriver with Firefox v20.0.1, when I use file_field function to get the file, it gives the following errors: ...
1
vote
1answer
64 views

How do I write a ruby web crawler which uses chrome?

I have a ruby web crawler that is currently coded to run in firefox. How do I switch it over to Chrome instead? def open_browser() tweaked_profile = Selenium::WebDriver::Firefox::Profile.new ...
0
votes
1answer
91 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
315 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 ...
1
vote
2answers
90 views

how to get class of an element in ruby / watir?

I've got code for a table header: <thead> <tr class="ui-jqgrid-labels ui-sortable" role="rowheader" style=""> <th id="categories_formName" role="columnheader" ...
5
votes
2answers
104 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. ...
3
votes
3answers
66 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
37 views

Unable to display an 'onclick' attribute

I have HTML that looks like this: <html> <head></head> <body> <a class="xyxyxy" href="" onclick="window.open('https://iogossip.com/Disclosure.pdf', ...
1
vote
2answers
72 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, ...
2
votes
2answers
111 views

Watir-webdriver: get same screenshot images for all failed scenarios

I've set screenshots to be taken when a scenario fails, but my html report shows the same screenshot on all failed scenarios. Can anyone help and let me know how I can get unique screenshots taken for ...
1
vote
1answer
46 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 ...
1
vote
1answer
90 views

How to solve errors from running jobs in parallel using Jenkins and watir webdriver?

I'm running tests from Jenkins on Windows and tests which work fine when only one is executing at a time encounter errors when multiple jobs are running on separate build threads at the same time. I ...
0
votes
2answers
168 views

watir webdriver “no such session: title\n”message when doing a Browser.new :chrome

I'm trying to get off the ground with Watir Webdriver and I need it to work with Chrome. I downloaded the chromedriver and added it to my path but when I do this (in irb, using a mac): require ...
1
vote
0answers
222 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
2answers
173 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
0answers
193 views

A child browser window closing itself apparently breaks Watir-webdriver's link to the parent window?

In Chrome, using watir-webdriver, I click a button that opens a child browser window. I do: @browser.window(title: 'Child').use I successfully interact with various items in that child window. ...

1 2 3 4 5 14