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

1
vote
0answers
80 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
174 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 ...
0
votes
1answer
53 views

When opening a chrome browser, I am getting 'terms of services' window each time

I installed exe file(chromedriver_win_23.0.1240.0.zip ) from:http://code.google.com/p/chromedriver/downloads/list
0
votes
1answer
99 views

while loop not stopping

I am trying to populate a text field but my while loop its not working its stuck i the loop. Can you please let me know what I doing wrong? Thanks in advance mainStatus = ...
2
votes
2answers
61 views

How to use ARGV in cucumber?

How can i whrite argv. in cucumber-test? I want, that my test run at localhost:3000 and than on productions (live). I want this with argv. to define. ARGV.each do |s| if s == `-d` @text = ...
0
votes
2answers
188 views

How might I simulate a private browsing experience in Watir? (Selenium)

Watir is a Selenium-based black-box testing tool that can automate tasks on the browser. I would like to be able to open up a Watir::Browser.new that is in private browsing mode. Thanks
0
votes
2answers
265 views

How to use rspec-expectations outside cucumber step-definitions

I'm using watir-cucumber for test automation. I wrote following method in a separate .rb, this method is not in step definitions. def has_logged_in? $browser.text.should include("t788") end ...
1
vote
1answer
183 views

Check if link is avaliable in watir-webdriver

I'd like to check if a link is available for clicking , I've tried with my_link.exist? my_link.present but they both return "true" even tho the link is not clickable (grayed) Any idea how can i ...
0
votes
1answer
134 views

looking for element always returns false in Watir-Classic

<div class="wizardPanel box cf" id="wizardPanel"> <p class="validation-msg error visually-hidden" id="error0"><span data-icon="warn"></span>Your departure and arrival cites ...
1
vote
1answer
299 views

Timeout on javascript form only running Cucumber on Jenkins

I'm running Cucumber 1.2.1 with Watir-webdriver 0.6.1 to test a webpage. Locally all the test run ok, but when trying to launch them on a CI machine (Jenkins) i have a timeout when filling a ...
1
vote
1answer
250 views

Dummy UI or how to run sikuli in headless mode

I'm doing test automation when I faced a problem a digest authentication I'm using watir for my automation, watir couldn't access the alert window which demands username and password, watir with its ...
4
votes
2answers
307 views

Best practice to keep common steps of cucumber

I'm using cucumber-watir-webdriver with for automation purposes. I have the following directory structure: |features -|feature1 --|1.feature --|step_definitions ---|1.rb -feature2 --|2.feature ...
0
votes
1answer
543 views

Waiting for new page to come present, when clicking with Selenium webdriver

I'm using Cucumber + WatirWebdriver to do some acceptance testing and I was always thinking, that the underlying webdrivers are waiting for a new page to load, after an element was clicked. I thought ...
3
votes
2answers
164 views

Watir-Classic not clicking on element

<span class="titleBar-link"> <a href="javascript:void(0)" data-click-handler="openBYOTView,omnitureClickHandler" data-omniture-rfrr="ROUNDTRIP"> <span ...
5
votes
1answer
188 views

Watir can't find elements I see in Chrome's DOM Inspector

Here's a study case: <html> ... <embed name="foo"> <embed name="bar"> ... </html> I'm trying to reference the embed element named "bar" using Watir Ruby's API. The element ...
0
votes
2answers
214 views

Watir scripts via launchd

It's possible I can't use launchd for this, I just couldn't find anything saying explicitly NO. So, here's the question... I'd like to run my Watir scripts 10 minutes past the hour, every hour. ...
1
vote
1answer
471 views

finding elements in html pages with dynamic frames

How to find elements, from a vendor developed web page (SAP BusinessObjects InfoView login page) I'm trying to identify then select a drop-down element on a page, but no matter what I try I get ...
1
vote
3answers
121 views

Possible to isElementPresent(:id, “id”) in watir webdriver

Using Watir Webdriver, I wanted to have a helper that would check for any element with given id. I may not know what type it is ( button or link or text). Can I just do browser.Element(:id, ...
1
vote
0answers
107 views

watir-webdriver result not same as manual test

... or when is a click not a click..? I'm testing SAP Enterprise Portal using cucumber & watir-webdriver. During manual tests I observe the portal behaving as expected. During the cucumber tests ...
0
votes
1answer
251 views

error navigating to URL with watir-webdriver

Using IE8 and Windows 7 I have the following ruby code: new_browser = Watir::Browser.new :ie my_url = "http://myworkingurl.mydomain.net/mypage.html" new_browser.goto my_url When the Internet ...
0
votes
2answers
173 views

multiple headless firefox instances using watir-webdriver within rails application

I have a simple rails application written for scrapping a web page. The controller calls the scrapper utility in which I am using firefox in headless mode using watir-webdriver. The application works ...
0
votes
1answer
253 views

Watir-Webdriver : take screenshot upon error/exception/fail. How to?

I am new to Watir-Webdriver. I have written a function to take the screenshot and it works fine. My problem is I need to call the method, upon any error/exception or fail happening during my testcase ...
1
vote
2answers
260 views

Watir-webdriver - force firefox to close

I'm the frequent user of watir-webdriver. A fantastic gem, but I have an increasing issue with browsers that newer get closed. I run an ubuntu machine, that processes some background tasks, that fires ...
4
votes
3answers
556 views

How to enter password in a popup using watir?

I'm writing some watir test cases: browser.goto "http://egauge2592.egaug.es/" browser.link(:href,"/settings.html").click browser.text_field(:index,4).set("some text") ...
2
votes
1answer
158 views

watir-webdriver - chrome and IE change input when setting text_field with special characters

I am trying to insert text into text field. It has some special characters. It turns out to be a problem in Chrome and IE. browser = Watir::Browser.new :chrome #or :ie # here are some steps field = ...
0
votes
1answer
145 views

locating visible elements

Is there any way to locate just visible elements with Watir? I want to locate only visible forms (by the index param) so that Watir would return first or second visible text field. How is it ...
0
votes
1answer
108 views

How can I sart at the same time more than one (many) cucumber test(s)?

I want to sart at the same time more than one cucumber test with the help of watir-webdriver. How can I get(start) it? Is it possible?
1
vote
1answer
311 views

launching firefox in silent mode

How is it possible to launch Firefox in silent mode from the code (without running script by dropping -b parameter) ? Or is there any other way to minimize Firefox so that tests can run normally ...
0
votes
1answer
266 views

Watir from Ruby on Rails controller

I have the requirement to run a Watir test code from the Ruby on Rails framework. My ruby on rails hello world works perfectly and so does my Watir test (when i run from the irb and when run as an ...
1
vote
3answers
243 views

watir print/put all visible links

$browser.links.each do |link| puts link.attribute_value("class") end How do I get all the visible/existing links in the put statement?
0
votes
1answer
224 views

Ability to launch chrome with extensions loaded with watir-webdriver

I'm attempting to launch chrome using watir-webdriver but with a specific extension loaded. I haven't been able to figure out how to do this in ruby. When I run the following code @browser = ...
0
votes
0answers
106 views

Is there a watir-webdriver click_no_wait

I have asked this before but it was not answered. Sorry to repeat myself Does anyone no how to get ruby watir-webdriver to do a click_no_wait??? Thanks MM
0
votes
1answer
108 views

watir couldn't find a link with a classname given on a popup (div popup - not new window)

$browser.links.each do |link| puts link.attribute_value("class") if link.attribute_value("class")=='btn btn-success nextStep' link.click end ...
0
votes
1answer
92 views

How can I write the functions in Cucumber?

How can I write the function in cucumber with watir-webdriver? I mean, I have same code and I don't want always to re-write it. I just want to write this function and then use it. This will help me to ...
0
votes
1answer
362 views

Watir webdriver, using Firefox clicking on a link giving error - UnknownError: l is undefined, whereas in chrome its working fine

I have a web page (https://) in to this page whenever I'm trying to click on any link it is giving me weird error. This is giving me error when I'm using firefox browser to automate. If I use chrome ...
0
votes
1answer
243 views

Can't locate button with watir using firefox

Have tried multiple variations. Even used Testwise 3 recorder to see if it came up with something different. For some reason, I can't get watir to click on this OK button. It just keeps saying ...
1
vote
1answer
395 views

watir webdriver - window not found

Another watir issue. This code works until add_task... After login, the auth window closes and goes back to main window with login key. But I get this error: hi there testing add_task ...
0
votes
1answer
95 views

Nomethoderror on watir webdriver ruby

i am new to Watir. When I run this file in terminal, ruby TestJoinChange.rb, I get NoMethodError require 'rubygems' require 'test/unit' require 'watir-webdriver' browser = Watir::Browser.new class ...
2
votes
2answers
703 views

how do I retrieve list of element attributes using watir webdriver

I am trying to write a watir webdriver script which retrieves the attributes of an element and then gets their values. given element <input id="foobar" width="200" height="100" value="zoo" ...
1
vote
2answers
218 views

How to avoid page-object deprecated for checkbox

I use cucumber since one year, and I am adding page-object-gem into it since few weeks. When I execute the test, I get message : DEPRECATION WARNING You are calling a method named checkbox at ...
2
votes
2answers
32 views

The “expected_title” procedure throws wrong error on expected title

I have some issues with "expected_title" procedure from watir-page-helper. It is throwing an error like the current web page has a different title than the expected one, although it is the correct ...
0
votes
1answer
93 views

Functional testing a one page app, with local aliased api calls

I'm trying to do an end-to-end smoke test for a one page app, and stuck with the following: The app just runs as a bunch of HTML pages, and has no server side code (I'm running Apache locally to ...
0
votes
2answers
325 views

watir after form submit

I am new to WATIR+Ruby. I am trying to continue to test after logging into a form like this browser.link(:name, 'login-facebook id=').click browser.text_field(:id,'email').set(usr) ...
0
votes
0answers
45 views

Where must bu an email password?

What must I change in email_steps.rb except example@example.com in line 32? How can this look at my email without a password? I don't understan, must I change hier (in email_steps.rb) something else ...
2
votes
3answers
164 views

How to pass an optional argument into a Ruby method?

I'm working on some Watir-webdriver tests in Ruby and can't seem to get the following code to work. I want to pass an optional validation argument into the log_activity method. def log_activity ...
3
votes
3answers
1k views

Click all links inside 'div' with watir-webdriver

I have the following DOM setup and I'm trying to click each/every link using watir-webdriver. Keep in mind that both 'Random Number X' and 'Random Name X' are random and can not be used to come up ...
4
votes
2answers
181 views

Watir/Selenium2 Nothing happens after clicking on an element inside iframe in Internet Explorer 9

I'm writing autotests with Watir-WebDriver and Ruby 1.9.2 on Ubuntu for the web. I have some iframe with several elements. I need to click on the items and check what happens. The <iframe> looks ...
0
votes
2answers
99 views

How to skip an error in cucumber?

How can cucumber skip (ignore) an error without stopping the test? I mean - if an error appears -> the test must be continued.
2
votes
2answers
499 views

How to change value of css attribute with watir-webdriver after page is loaded?

Example: <div id="xxx" style="width: 76px; height: 302px; z-index: 0; text-align: left;"> I would like watir-wedriver to change z-index: 0 to z-index: -1 automatically, otherwise I have to do ...
4
votes
2answers
396 views

Download a file using HTTP in WebDriver

I am trying to use the WebDriver to navigate through a https site and download a file using WebDriver. When I did it like this, the file download dialog popped up. WebDriver driver = new ...

1 3 4 5 6 7 14