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
113 views

how to use wait with watir-webdriver

I am trying to implement wait for page to load in watir-webdriver but none of these work for me: http://watirwebdriver.com/waiting/ I am trying to wait for following element <a> <img ...
1
vote
1answer
161 views

Cant get text of a TD by index

I have the fallowing code : <table id="table1" class="class1"> <thead>...<thead> <tbody> <tr id="1"> <td class>cell1</td> ...
1
vote
1answer
150 views

webdriver click event is slow with firefox

I'm using ruby 1.8.7 and watir-webdriver 0.6.1, and found that following script is very slow when click some link element under windows 2003/2008 server, but the same script is fast under win7 and ...
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
3answers
447 views

Watir-webdriver or Capybara

I currently use Watir-webdriver for all my front end testing, but the development team use Capybara to run their tests on Jenkins CI. We both use the same Cucumber features. Is it worth us doing ...
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| ...
3
votes
3answers
110 views

How to get the html source of a page_object element?

Imagine i have a div like (in Watir language): @browser.div(:id, 'home_slideshow') I need the html code inside to do some "magic regex" :). The way to get the div html code could be: the_div_html ...
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 ...
1
vote
1answer
316 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
160 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 ...
4
votes
0answers
125 views

Cucumber Failed to Load 'yml' Programming Language for File

I'm getting the following error when I attempt to run a Cucumber scenario using watir-webdriver step definitions: Failed to load 'yml' programming language for file .../features/support/config.yml: ...
2
votes
1answer
86 views

How to get the attribute_value of a page_object element?

Imagine i have a image like: the_image = @browser.image(:id, 'image01') The way to get the value of its class could be: image_status = the_image.attribute_value('class') Ok. I'm using ...
3
votes
1answer
129 views

Script fails when oci8 required

I am new to ruby and I have this weird problem. I have installed ruby 1.9.3p125, Oracle11gXE(ver 11.2.0.2.0) on 64-bit Win7. I am able to run without any problems this script: require ...
2
votes
4answers
69 views

Finding an element that has : specific attribute and a child with specific text

For the fallowing sample of code , i need to check if a tr ,with type="a" and that has a td with text "3" as a child ,exists: <table> <tr type="a"> <td>1</td> ...
3
votes
1answer
125 views

Tinymce select text

I am new to ruby and watir-webdriver. I am trying to learn how to test tinymce from the website http://www.tinymce.com/tryit/full.php. I can click the buttons such as "Bold" but I cannot figure out ...
-4
votes
1answer
95 views

best language with watir-webdriver [closed]

What is the best language for watir-webdriver? I was using ruby, but its really not stable, like if you find bug with 1.9.3 you switch back to 1.9.2. Sometimes I cannot find the reason of the bug I ...
0
votes
0answers
566 views

Ruby[]': can't convert Symbol into Integer (TypeError)

I am having trouble running this I keep receiving the error message hon.rb:19:in `[]': can't convert Symbol into Integer (TypeError) from hon.rb:19:in `header' from hon.rb:42:in main I have ...
0
votes
3answers
142 views

Cross browser click in watir-webdriver

I'm using Watir-Webdriver to do automation testing. But it seem not stable for cross browser. For example, it usually work fine in Firefox and Chrome but are not stable in IE. When I get an element ...
1
vote
1answer
105 views

What is the difference between :response_time, :time_to_first_byte, and :time_to_last_byte in watir-webdriver-performance gem?

I've googled, searched through SO, and read through the Navigation Timing page recommended on the host page, but was unable to resolve on my own. What is the difference between :response_time, ...
0
votes
1answer
148 views

Cannot get if, elsif steps to work (watir-webdriver)

I am using watir-webdriver. Here is my step def, can someone correct me what I am doing wrong here. I am trying to sign up using a set of details. If first set of details are already used I want it to ...
0
votes
1answer
72 views

Undefined method `heade' for DealerDetail:Class (NoMethodError)

I am having trouble when running this, I keep getting error .rb:45:in <main>': undefined method heade' for DealerDetail:Class (NoMethodError) What am I doing wrong I have looked around but cant ...
2
votes
1answer
136 views

how to detect the jquery UI Dialog box element by using WATIR?

I am very new to using WATIR. I am writing some small scripts to test and its very cool. I have a Jquery UI Dialog box for the User Sign Up. So, the Dialog box has Username text-box, password text-box ...
-4
votes
2answers
195 views

How do I run Internet Explorer using ruby mine on a mac [closed]

How can i run/debug cucumber tests in IE browser on Mac? What are the different ways to run the tests on IE on Mac OS.
1
vote
1answer
815 views

Cannot get past Modal dialog present (Selenium::WebDriver::Error::UnhandledAlertError)

I'm using watir-webdriver and i'm having trouble with a confirmation popup. I click on a 'Sell' button and a confirmation popup appears. I can't seem to figure out how to come up with the step to ...
1
vote
1answer
111 views

Unable to get utf8 characters from SQL server in ruby cucumber automation

I'm using Ruby cucumber to automate my application. I'm using DSN ODBC driver and "dbi" to connect to my sql server 2012 DB. It is connected successfully and I can get the records. But when I'm trying ...
3
votes
1answer
361 views

how to scroll a web page using watir

I am trying to scroll a web page to find and click on a content that is lazily loaded when the page is scrolled. I am using following command require 'watir-webdriver' @browser = Watir::new :firefox ...
3
votes
2answers
112 views

How to trigger ng-dblclick with Watir

Our development department is using AngularJS to build web applications. And I'm looking into automated testing because it will save us a lot of time. I found Watir to be very useful while testing... ...
0
votes
2answers
98 views

Runtime error on Firefox (automated testing)

I'm using watir-webdriver for testing. I seem to be having a rather odd issue where one of my tests passes with google chrome but fails on firefox, I just get a runtime error, doesn't seem to be any ...
1
vote
1answer
201 views

Xvfb error on windows when using watir with headless

I am trying to use headless with watir on windows 7. env.rb if ENV['HEADLESS'] headless = Headless.new headless.start at_exit do headless.destroy end end When I run a test I am ...
2
votes
1answer
521 views

Watir-webdriver timing out when asked if element is present?

Ruby 1.9.3p327 watir-webdriver 0.6.1 On a fresh Ruby install, with a fresh webdriver install, I am unable to use wait or present? with nonpresent elements without causing non-Watir Timeout errors. ...
1
vote
2answers
302 views

watir-webdriver “wait_until” not working properly

Ruby 1.9.3p327 watir-webdriver 0.6.1 I have some code which works on one computer but doesn't work on another, and I can't work out why: require 'watir-webdriver' b = Watir::Browser.new timey = ...
0
votes
1answer
316 views

How to customize cucumber report template?

I am using cucumber with watir and want to customize html output report template and content. For example, I want to change the default heading, display pass/fail summary using different fonts etc. ...
2
votes
1answer
109 views

inspect element within flash object

I just want to click an element in the flash object. For that i tried to inspect element using firebug. But i cant find any option to inspect using firebug. im new to watir. Please suggest some ...
2
votes
1answer
340 views

Cucumber headless xvfb ubuntu

I'm trying to setup a Jenkins build server on Amazon EC2. I'm planning on running my cucumber test suite in headless mode. I was successfully able to run headless in IRB require 'watir-webdriver' ...
2
votes
1answer
149 views

watir webdriver get src of embeded file

hier is the html of embed swf file and src is always unknown (not the same) <html> <body> <iframe id='main'><!-- first iframe --> <iframe ><!--second iframe --> ...
1
vote
1answer
411 views

watir-webdriver phantomjs and ghostdriver

I currently have a rails app that uses rspec and watir-webdriver for my integration tests. I want to run my integration tests in a headless browser (for speed purposes). Since my development is done ...
1
vote
2answers
57 views

Retrieve text using Watir

I've an html div like <div class="main-div font-color page-padding"> <div> <table> <tbody> <tr> <td style="vertical-align:middle"> ...
1
vote
1answer
56 views

How can I click the button with same id?

I have two buttons with the same id's (everything is identically). If I click it, it choose automaticly the first button, but I need to click the second oder third. @b.link(:id => "commit").click ...
1
vote
1answer
167 views

What is wrong with my installation of Ruby Watir::WebDriver?

I'm trying to run Watir for Ruby on Ubuntu 10.04. I've installed Chrome and ChromeDriver on my (displayless) server, and installed the selenium-webdriver Gem. But when I try to create a browser in ...
1
vote
3answers
189 views

How to call a page-object from a class.rb at Support folder

I am using the page-object gem. Suppose i have a page-object on features/bussines/pages/booking_page.rb for a page like: class Booking include PageObject span(:txtFirstName, :id => ...
-1
votes
2answers
93 views

watir ruby follow final url in the new window

I want to follow the new window url on click like I have have link somesite .com/osijejf so watir clicks on it and new window opens like next code <a href="some url" target="blank"> So I want ...
0
votes
2answers
181 views

watir ruby Follow link redirection and get final url

Hello I see there is way to handle redirect with ruby, but I was thinking aybe there is the way to do it with watir and then it will be same browser and coockie etc. So if anyon can give me example ...
0
votes
1answer
329 views

watir webdriver get into iframe and get src of elements and click on link

watir webdriver, I want to go to iframe and get the link in the iframe hier is html <iframe id="top_right" src="otherwebsite.com/need content src"> <a href="need this"> <img src="need ...
1
vote
2answers
78 views

Parsing class name in html of span class

I'm checking results of values to verify that they are correct. Using watir-webdriver. In this case javascript generates a color class: eg: <span class="storyEdit limeGreen"> x ...
0
votes
3answers
71 views

Check element for css values?

example: Can I just if a div tag has the css of div{background-color: #444444} and return true/false depending on the result? I'm using watir webdriver to run testing scripts, I need to check ...
1
vote
1answer
170 views

Ruby: Getting nth element from each sub array in a 2d Array

As part of our test suite in Watir we are verifying a table of data. One of the requirements is that a particular column must be empty (unless a particular radio button is selected) So in my script, I ...
1
vote
2answers
206 views

How to encapsulate Watir browser instance in a GUI using Ruby?

Basically, I'm programming a testing application for multiple sites using Watir. However, there are end-users (who can be assumed to be the typical user unfamiliar with the command line, using ...
4
votes
1answer
331 views

Does Watir-Webdriver support clicking on links where the destination is a javascript?

I am new to Ruby and Watir-Webdriver. I have a suite of automation for our site written in VBScript and I want to convert it to Ruby/Watir because I now have to support Firefox. I've found I really ...
1
vote
0answers
79 views

inconsistency while running watir scripts in regression

I used watir webdriver to automate a GUI page. Sometimes all my scripts will pass in a single regression run. Sometimes one or two scripts will fail due to below errors. Im facing inconsitent result ...
1
vote
1answer
170 views

Auto Download files in watir

How to auto download the excel files from the browser in one click on the link, without going through the "save as" and other windows in watir. I am trying to keep it OS independent, so would not be ...

1 2 3 4 5 14