2
votes
1answer
508 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 ...
1
vote
2answers
238 views

mobile app testing in watir

I have been trying to locate WATIR/Webdriver gem for automating mobile applications. So far I am successful in finding the resources for Mobile Website testing but could not find Mobile Application ...
1
vote
2answers
61 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"> ...
4
votes
2answers
326 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 ...
2
votes
2answers
198 views

How to determine if a web page has insecure elements programmatically?

I am using watir-webdriver for test automation and need a way to determine if my test page is triggering the insecure content warning in the browser or if it is loading any resources in http instead ...
3
votes
3answers
2k views

How to set WATIR focus on new window

I'm new to WATIR testing (and do I love it!) and have run into a wall on how to refocus my WATIR script to a newly opened window.. Here's my (simplified) script.... #!/usr/bin/ruby require 'rubygems' ...
0
votes
2answers
917 views

Watir-webdriver: Script working on Firefox but failing on Chrome or Opera. why?

I'm testing this on ark.com.. the following code works perfectly for firefox with watir-webdriver but gives me an error for google chrome and opera browsers respectively. heres the code: require ...
0
votes
1answer
177 views

How do you pass method params in Ruby which can be used as the name of existing methods?

Background: I'm using a DSL for automated UI testing in Ruby called Watir-Webdriver. I want to write a very re-usable method that passes or fails when a specific HTML element is present. Here is what ...
1
vote
3answers
871 views

Tips for creating a testing “framework” using Watir?

I'm fairly new to writing test cases and this will be my first major project, but I'm kind of confused on how to design a framework (I know this is not the right word, but I'm not sure that word I'm ...
0
votes
1answer
227 views

Can I create a destructor-like function for a class that runs a browser in watir-webdriver?

I know that in most test frameworks, there is a function to clean up. I have been running some tests from IRB, so I would like to build an automated clean up function (like a destructor). I have tried ...
2
votes
1answer
141 views

How to locate an element without specifying its type in Watir?

How can I locate an element just by specifying the text property, whether its a link or a button or something else. In jquery, we can write: $('*').filter(function(){return $(this).text()=="some ...
5
votes
3answers
2k views

Accessing an element with no attributes in Watir

Using Watir, is there a way to access an element without attributes? For example: <span>Text</span> I'd like to avoid using xpath, but if that's the only way it's cool.
1
vote
1answer
625 views

Need help with Rspec example

Can any one have more descriptive example of Rspec? I used the the example from site https://gist.github.com/1053934 works very fine. But i want to learn more like go to site X (eg. Google) -> enter ...