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, ...
1
vote
1answer
64 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 =! ...
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 ...
0
votes
1answer
42 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 ...
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| ...
2
votes
1answer
137 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 ...
1
vote
1answer
251 views

How to get value of a hidden element? (Watir)

just wondering, how can I get the value of a hidden element using watir? This is the element: <input type="hidden" value="randomstringhere" id="elementid" name="elementname" /> And this is my ...
0
votes
1answer
267 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
2answers
127 views

How to seed test data for Watir integration tests for Rails application?

I am writing integration tests for a Rails application using Watir and RSpec. What is the best way to set up data in the database that spans each test? For instance, I have the same user I want to use ...
1
vote
2answers
191 views

Watir::Exception::NoValueFoundException: No option with :text, :label or :value in this select element

Watir Automation testing: I'm trying to select an option from a select box , but since the options in the select box are set dynamically I am not able to do it correctly. Html looks like : ...
1
vote
1answer
535 views

Watir : Can't move focus to the control because it is invisible, not enabled, or of a type that does not accept the focus

I'm new to watir and currently using it for automating an application , however I'm stuck at one error when I try click a button. Watir code looks like this : ...
1
vote
1answer
276 views

Watir - using proxy in Firefox with authentication

I want to set up a proxy in Firefox with Watir. The proxy requires authentication - username and password. I get error when I want to do the following thing: profile = ...
7
votes
6answers
852 views

cucumber & watir stopped working

I have been using cucumber all day and I did not change any files and cucumber just stopped working. It gives me an error that reads: Unable to either launch or connect to Chrome. Please check ...
0
votes
2answers
75 views

require to execute a script in between a test case

I have a scenario where, I have a RoR application, mysql, and there is a workflow, where end user will follow that workflow, and register her software software is local to end user, running on her ...
1
vote
2answers
811 views

Clicking on a button in a file download popup Window using watir-webdriver

Folks, I am having an interesting problem. I have some javascript on the webpage which opens a popup window when clicked. I am trying to find the title of the window so that I can click on that, the ...
-1
votes
2answers
207 views

Need to run 3 different ruby files from one single file

I saw the answer in another post but didn't work for me.Below is the error message. C:\watir\OVE>ruby driver.rb C:/Ruby193/lib/ruby/site_ruby/1.9.1/rubygems/custom_require.rb:36:in `require': ...
0
votes
3answers
279 views

Running selenium/watir inside the context of the rails server

How can I run a watir test in the context of the app that's being tested? I'd like my test to browse the app and then access ActionMailer::Base.deliveries for emails or check models directly. This is ...
2
votes
2answers
800 views

Timeout::Error in Rails application using Watir

I am using Watir to browse pages and take screenshots of some pages in my application. However, getting a page from my server takes a while, and I get Timeout::Error. To fix this, I used a wait in ...
2
votes
1answer
331 views

Testing a pirobox (lightbox like) modal with Watir

I'm writing tests for www.offdesk.com and when "sign up" anchor is clicked, it opens a pirobox modal window, at this point my irb works fine but I can't set text into the inputtexts inside it. I ...
3
votes
2answers
1k views

Save screenshot with Watir

I am using Watir with Ruby on Rails. I need to save screenshots of couple of pages using Watir. I have managed to get the page that I want to open to show in a browser, but cannot save the screenshot ...
0
votes
1answer
341 views

require 'watir-webdriver' error

I am trying to use Watir with Rails, and installed it, and when I use it from irb, it works fine. But when I try to include it in rails application, as require 'rubygems' require 'watir-webdriver' ...
1
vote
1answer
309 views

Iterating through website links and clicking them

@editLinks = $ie.link(:text => "Edit", :class =>"edit" ).links @editLinks.each do |l| l.click end I have the above code which iterates through a set of links which are called "Edit". When ...
1
vote
1answer
75 views

How to access this Html element in FireWatir

< div id="host-a-meeting"/ > How to access the above in Watir.
2
votes
1answer
464 views

How to run multiple watir scripts from one general script

I have 3 different watir scripts testing different functionality of a website. I want to be able to run one single script which brings these different scripts together and runs them one after another. ...
0
votes
1answer
244 views

Rails testing with Watir. How do I load my test db with the fixtures from /test/fixtures

I'm trying to test my Rails App with test fixtures using Watir. The watir tests work but I can't seem to load my test db with the fixtures from /test/fixtures. I tried using rake tasks with ...
1
vote
2answers
120 views

Triggering FireWatir actions from different ruby scripts on the same browser window

I am writing an application that uses FireWatir to do a bunch of different actions. The problem is that I want to trigger these actions from many separate ruby files. So for example, one ruby script ...
0
votes
1answer
174 views

Rails App using Selenium but NOT for Testing — How to organize?

I am creating a rails app that is meant to be run locally and automate some of my web based tasks. The reason for rails is that I will import data in, select a number of tasks to be completed, then ...
3
votes
2answers
3k views

Mouse movement / mouseover and JavaScript evaluation in watir

I have a JavaScript-heavy Rails app which I am testing in watir. I have two specific testing requirements: I need to be able to simulate moving the mouse to a specific area of the screen (or at ...
3
votes
3answers
853 views

FireWatir and jQuery

after using this excellent peace of software called FireWatir, I wonder if there is a way to integrate jQuery-selector-magic to my test. My first attempt is to use firewatir's js_eval() method like ...