0
votes
1answer
258 views

Watir Web driver to download file

I'm writing Ruby script to automate Downloading files from a list of files using Watir web driver. Any pointers or approaches on Automating Popping up of Window and Directory Chooser to save the file ...
1
vote
2answers
213 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 ...
0
votes
1answer
64 views

Can we automate functional testcases using WATIR for IE in headless mode?

I want to automate a few work flows of my web application using watir-webdriver. I am using Ubuntu. I want to automate all the workflows on IE. As i am using ubuntu as my platform, need to run it in ...
0
votes
2answers
215 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. ...
3
votes
1answer
574 views

Watir Webdriver how to close child windows

I'm in the process of migrating some of our legacy Watir scripts over to Watir-Webdriver. The migration has gone mostly well except for how they designed Watir-Webdriver to handle popup windows. ...
2
votes
3answers
1k views

Watir Webdriver : Iterating table and storing its content in an array

I am trying to automate a block appearing on the website and comparing its content through CMS table. The issue is I have managed to automate the block appearing on the UI but when I login as admin ...
0
votes
2answers
365 views

How can I increase the performance of watir-webdriver automated scripts

The main problem I'm having is pulling data from tables, but any other general tips would be welcome too. The tables I'm dealing with have roughly 25 columns and varying numbers of rows (anywhere from ...
1
vote
1answer
1k views

Using Watir-webdriver how to check the URL of a page

I am new to watir-webdriver automation, apologies if its a basic question of automation. But the thing is I am automating pagination of a website where the URL of the website changes as the user ...
0
votes
2answers
1k views

Watir: fire_event is not working where as click works fine in IE

The code below does not work: browser.link(:id => "tab_buy").fire_event ("onmouseover") Whereas this code works well: browser.link(:id => "tab_buy").click works well. This is true with both ...
2
votes
1answer
139 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 ...
2
votes
2answers
791 views

Export entire html <table> to a text document using Watir

Basically all I would like to do is export a whole html table to a .txt file (notepad document). So far I have learnt how to instruct the browser to find the html page with the table. require ...
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.