Tagged Questions
-1
votes
2answers
18 views
Look for text in a div that has multiple links under it with Watir
I am trying to verify that the text of a link is present in a . The div is not available until a link is clicked. After the link is click more links become available to click. Below is what the html ...
0
votes
0answers
29 views
Set_no_wait not setting a value for a Text field
We just migrated to the latest version of WATIR(4.0.2), and the method set_no_wait does not set a value to the text field.
The text field where I set a value triggers a pop up, and--hence on using ...
0
votes
1answer
66 views
Loading js files in Watir
I want to be able to dynamically load .js libraries like jquery using Watir for some advanced browser automation. This is what I tried:
$browser.execute_script( %{var bootscript = ...
2
votes
1answer
67 views
collect all xpath results into an array in ruby
I have a very poorly coded JSP that I am trying to run automation on. There are a series of checkboxes with names (no IDs) of "delete[x]" where X is the item number of the item populated. I am ...
0
votes
1answer
249 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
205 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
1answer
139 views
Watir, Automation on Windows 7 with IE8
I am trying to run watir scripts on Wndows 7 on IE8 as administrator.
Here is problem description:
Problem was with below statement(popup windows)
popup = Watir::IE.attach(:url, /ContactDetails/)
...
0
votes
2answers
210 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
561 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
360 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
1answer
142 views
Watir for Wireshark
I have written a Java program using JnetPcap library that reads from an offline Pcap file generated from Wireshark and develop statistics for my data(Web traffic) . But I need a way to automate the ...
0
votes
2answers
1k views
Watir: fire_event is not working where as click works fine in IE
browser.link(:id => "tab_buy").fire_event ("onmouseover")
The above code does not work where as
browser.link(:id => "tab_buy").click works well.
This is true with both IE and Firefox. Please let me ...
1
vote
1answer
292 views
how to check text color in watir for drop down boxes attributes
contents = $ie.select_list(:id, "dropdown").getAllContents
puts contents.currentstyle.color
It showing error as
1) Error:
test_01(TC_Login):
NoMethodError: undefined method `currentstyle' for
Can ...
0
votes
3answers
357 views
Watir & Ruby; A couple beginner “how can I do this” questions inside
Programming newbie here, about a month in with Ruby. I'm currently playing around with Watir and have a few questions to streamline the automation process of a simple form fill.
Current Code:
# ...
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
777 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.
0
votes
1answer
100 views
Stripping out results from a website that doesn't have differing URLs
I'm trying to automate the process of searching for alternative telephone numbers using SayNoTo0870 . Every time one searches for an alternate number or name it brings up the '/companysearch.php' ...
2
votes
3answers
457 views
Automating authentication with Watir
I've searched and searched for this, but I can't seem to get this automation to work. Having used all of the basic authentication code on the OpenQA site, I still cannot get the authentication box to ...
1
vote
1answer
250 views
onmouse over with an anchor on watir, not detecting
I am trying to trigger a mouse over drop down window in Watir on ruby.
I have tried it using both of the two scripts below, so far neither have worked.:
$browser.div(:class => ...
-3
votes
1answer
202 views
issue automating with Ruby
I am a beginer with Ruby and I have some issue using Ruby and Watir to automate tests. My problem is I cant reach text field in web page with
‘id= namecolumnbeginswith’ and ...
1
vote
2answers
308 views
Automation of webbrowser using watir and ruby
I have installed watir and ruby 1.9.2 on my windows 7 system. Now i want to automate my web browser. Suppose there are 10 different links which i want my browser to browse after certain amount of ...
3
votes
2answers
827 views
Watir Changing Mozilla Firefox Preferences
I'm running a Ruby script using Watir to automate some things for me. I'm attempting to automatically save some files to a certain directory. So, in my Mozilla settings I set my default download ...
1
vote
2answers
454 views
How do I negotiate alert boxes in Watir?
I am trying to create an automation script for a website using Ruby with
Watir.
I ran into a situation where I have to choose 'Yes' or 'No' in an
alert box. The problem is that I am not able to ...
1
vote
5answers
928 views
In Watir, how can I interact with an element that is initially “hidden?”
I'm trying to test a page containing an element that, when the page is first opened, has its style= attribute set to display: none;. In Firefox, when the test interacts with the page (two text fields, ...
1
vote
4answers
1k views
Finding sibling of a link while using watir-WebDriver
I'm using watir-WebDriver to automate a website test automation. I have to get to the Sibling link.
looks like this
Something > Something 2 > current page title
(link1) (link2) (text1)
...
1
vote
2answers
517 views
What's the best way to programatically perform “stock check” for an Ikea store?
I was thinking of automating it using Watir but haven't tested it yet (the page look Flash-like which does not bode well for this approach)
Is there any way to access Ikea-API (if such a thing ...
2
votes
2answers
779 views
Is there a way to use watir to open a link in a new tab or window in firefox
I have a web application I am automating with watir. The application has a browsing page which shows thumbnails for a set of templates. Each thumbnail is a link to the template. I need to open each ...
1
vote
1answer
512 views
Watir - Logging outside of a method
I'm still fairly new in using Watir for automation testing and I've hit another possibly insanely easy problem that I need to reach out to the community for a little bump in the right direction.
I'm ...
2
votes
1answer
980 views
Free tool for automating GUI testing of a Windows Forms application and a Web application
Is there a way to automate GUI testing of a Windows Forms application and a web application (HTML) using free tools?
For example, Ruby + Rspec + Watir work great for web UI testing.
IronRuby + Rspec ...
1
vote
1answer
513 views
How to explicitly add a cookie in Watir?
I need to set a cookie in IE to execute some specific flow. I tried using the following code
ieb = Watir::IE.new
ieb.document.cookie="rememberme=foobar;Path=/; Domain=sometestdomain.com"
# Bring up ...
0
votes
2answers
1k views
automated testing with Watir (or WatiN or similar): Disambiguating Select Elements
Problem: I am looking for a way to run a test that is able to disambiguate between select controls that have the same value in more than one place.
Example:
I am trying to choose the third "monday" ...