For those who don’t know what Watir-WebDriver is, it’s basically a nice Watir (ruby) implementation on WebDriver, so it gives you five browsers (four real, one headless) using one neat API, out of the box. The Watir API uses an object model that parallels the HTML element model and the browser ...
6
votes
2answers
636 views
How do I get watir-webdriver to start Firefox 4 with Firebug?
Any ideas? I've tried setting webdriver.firefox.useExisting=true as described in the link below hoping to reuse an existing window with firebug enabled, but no such luck.
...
6
votes
3answers
806 views
How to handle tinyMCE when automating with watir-webdriver?
I'm evaluating Watir-webdriver, to decide if i can switch to using it for my browser tests (from Watir mostly) and one of the key things would be the ability to interact with TinyMCE WYSIWYG editors, ...
6
votes
1answer
2k views
How do I use Watir::Waiter::wait_until to force Chrome to wait?
I'm trying to tell my watir script to wait for an ajax-injected login box to open up. I am using watir-webdriver, and testing in Chrome. I cannot get wait_until to work, as commented in the below ...
5
votes
2answers
178 views
How can I get Browser.text.include? to be case insensitive?
It's as simple as that:
How can I get Browser.text.include?, or Ruby in general, to be case insensitive for that specified command?
5
votes
1answer
510 views
Testing if a new window opens with Watir-Webdriver
I'm using Watir-webdriver and I was wondering if there was a good way to check if a new window opens. I've googled around a bit and couldn't find anything though it feels like there should be an easy ...
5
votes
1answer
296 views
How can I get watir-webdriver and safariwatir working together?
Good morning,
I am setting up watirgrid and I have been partly successful, however I am having problems getting all the providers to work with my ruby script.
On my Mac I have setup a provider from ...
5
votes
4answers
4k views
watir-webdriver wait for page load
using watir-webdriver [ http://github.com/jarib/watir-webdriver ]
how do i wait for a page to load after i click a link?
at the moment i am doing
sleep n
but this is not ideal as the page ...
4
votes
1answer
128 views
Watir-webdriver can't see an input tag inside a popup
I keep getting Element is not currently visible and cannot be interacted with after a javascript successfully pops up a dialogue div that contains some tags.
I can locate the input tags whichever ...
4
votes
3answers
349 views
Ruby - require 'watir-webdriver' - generates a LoadError no such file… Why?
I am new to Ruby and would really appreciate some help understanding what is going on here.
Summary:
Gem install watir-webdriver
Installs fine
start irb
require "watir-webdriver"
... LoadError: no ...
4
votes
2answers
276 views
How to determine browser type (IE, FF, Chrome, etc.)
I'm in the process of switching my Watir / FireWatir scripts over to use watir-webdriver and need a means in watir-webdriver to determine which type of browser the test is currently being executed ...
4
votes
1answer
113 views
How to determine what type of a HTML element is selected in Watir
This is a follow-up to the Counting the number of HTML elements having same attribute in Watir question.
So, suppose I have a HTML element as follows
<input type="password" class="foo" />
...
4
votes
2answers
625 views
Watir-Webdriver: How to run headless, and in grid
I'm upgrading my script from Watir to Watir-Webdriver and I'm wondering how to take advantage of headless-browser testing and grid testing. I've done some research into it but my sources don't seem ...
3
votes
1answer
54 views
handle words with accents
I'm trying to access a field by the display name that is a link, something like this:
<a class="node" href="javascript: MCMenu(7);">MÓVEL</a>
and trying to access the item by doing this:
...
3
votes
4answers
203 views
Multiple concurrent browser tests with watir-webdriver through different browsers
so I'm working on a website here and I would like to run multiple browser tests at one time. What I mean by this is it should perform my smoke tests on ie, firefox and chrome at the same time and ...
3
votes
3answers
889 views
watir on ubuntu 11.10
I've just updated my system from ubuntu 11.04 to 11.10 and...surprise!
Now if I try to use watir, doing
require 'rubygems'
require 'watir-webdriver'
I obtain this error
require 'watir-webdriver'
...
3
votes
0answers
161 views
Can watir-webdriver capture console errors?
I am wondering if watir-webdriver as the ability to log the output of any console errors?
This would be equivalent to manually opening the console in a browser and watching for JS errors as a page ...
3
votes
1answer
179 views
Can Watir interact with Firefox Extensions?
I know that with watir-WebDriver, I can make use of RubyBindings to have the browser load specific profiles or Firefox add-ons when I create a new browser instance. However, can I use Watir to ...
3
votes
2answers
420 views
Is drag-and-drop possible in watir-webdriver?
I would like to drag-and-drop one element to the position of another, triggered from within a watir-webdriver script.
By "drag-and-drop" I mean picking up a draggable element and releasing it on ...
3
votes
1answer
192 views
Locating element in same paragraph of another element in watir-webdriver
Given the following HTML code snippet; after finding the link by ID, how would you select the checkbox in the same paragraph?
For example if I wanted to select the checkbox associated with the link ...
3
votes
3answers
284 views
Search underlined link in watir
I am trying to search/select a link in a page that is underlined, while others are not. The source is something like this:
<a href="someurl1">
<b>
<u>Some ulined text</u>
...
3
votes
2answers
538 views
How to find textbox in Watir
I am trying to access a site with watir-webdriver, but I can't seem to find a textbox in watir that I can see in Firefox+Firebug.
My code is
require 'rubygems'
require 'irb/completion'
require ...
3
votes
2answers
973 views
Setting browser window size in Watir-webdriver
How can you specify the size of the browser window opened when you call the following with watir-webdriver?
browser = Watir::Browser.new(:firefox)
3
votes
1answer
83 views
3
votes
1answer
688 views
watir-webdriver checking table size rows and columns count
I am starting the process of converting my WATIR scripts to use WATIR webdriver.
There a couple of table methods I was using in my WATIR scripts to check the size (rows and columns) of a HTML table.
...
3
votes
3answers
864 views
Locating a LI element using :text using watir-webdriver
I am trying to locate and click on a jQuery menu element, the menu is defined as multiple UL elements containing a number of LI elements.
Using Firefox 3.6.17 on Mac 10.5, in standard WATIR I've ...
3
votes
3answers
924 views
Is there an alternative to watir::ie.attach for watir-webdriver since attach is not supported on webdriver
I have a website which is only rendered in Webkit enabled browser (Google Chrome, Safari). I am using Google Chrome since I am on Windows 7.
I am using Watir-WebDriver to automate the same.
Issue: ...
3
votes
2answers
899 views
Firefox 4 with watir webdriver: Need help using helperApps.neverAsk to save CSV without prompting
I learned how to use Firefox 4 with watir and webdriver (on Win7 x64), setting profile items. Example:
profile = Selenium::WebDriver::Firefox::Profile.new
profile["browser.download.useDownloadDir"] = ...
2
votes
1answer
115 views
Modal dialog present (Selenium::WebDriver::Error::UnhandledAlertError) after dismissing confirm popup
I have a page with something like this:
<input type="button" onclick="confirm('confirm popup');" value="click" />
When I go to the page and click the link:
require "watir-webdriver"
browser ...
2
votes
1answer
55 views
ruby watir to get html of a page
I have looked through the examples on these pages
http://watir.com/examples/
http://wiki.openqa.org/display/WTR/Examples
I still don't see a simple example of getting html of a page.
browser = ...
2
votes
1answer
56 views
watir-webdriver can't create “full-page” screenshots in opera 11.50, 11.60 etc
I try to take screenshots in opera. But it gives me only screenshot of visible part of page.
How can i make opera giving me "full-page" screenshots?
P.S. In FF,chrome, ie 6(!!!) it seems to be OK
2
votes
1answer
116 views
Watir/Selenium - Why can I not connect to any browser?
I'm trying for the first time to use Watir for automated browser-based testing. For all browsers I'm interested in testing with (Firefox, Chrome), I encounter timeout errors trying to connect.
Here's ...
2
votes
4answers
179 views
Can a watir browser object be re-used in a later Ruby process?
So let's say pretty often a script runs that opens a browser and does web things:
require 'watir-webdriver'
$browser = Watir::Browser.new(:firefox, :profile => "botmode")
=> ...
2
votes
2answers
169 views
watir-webdriver change proxy while keeping browser open
I am using the Watir-Webdriver library in Ruby to check some pages. I know I can connect through a proxy using
profile = Selenium::WebDriver::Firefox::Profile.new#create a new profile
profile.proxy = ...
2
votes
1answer
82 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
216 views
Installing Opera driver with watir-webdriver: Invalid file path
Managed to get everthing else configured using Mac 10.6.8 to use watir-webdriver, any suggestions on how to resolve Invalid file path?
$ irb
>> require "watir-webdriver"
=> true
>> ...
2
votes
2answers
201 views
HTML xpath tree dump? using Ruby Watir
Help! In carefully stepping through irb to control a browser (Firefox and Chrome) using the Watir library, it seems the xpath addresses are too shifty to rely on. Eg. one moment, the xpath for one's ...
2
votes
2answers
271 views
Watir will not install with XP x86 or Win 7 x64. Getting error building native extension for the FFI gem
I am currently trying to install watir on my PC but currently hitting the errors below and I cannot think why this is happening?
I am following the steps below to install:
Download ruby 1.9.2:
...
2
votes
1answer
109 views
watir unable to locate element with type = “File”
the html on the page contains:
<input type="File" name="File" size="70" value="" class="inputfield_en">
I'm trying to set the value using ruby (1.9.2) and watir-webdriver (0.3.5)
...
2
votes
1answer
198 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 ...
2
votes
0answers
180 views
watir-webdriver is very slow locating an element by regexp on a heavy page
I found watir-webdriver to be extremely slow locating an element by regexp on a very big page, this is at least true in FF 8.0.1 for me. Example on a flight search results page (containing about 50 ...
2
votes
2answers
166 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 ...
2
votes
3answers
200 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.
2
votes
1answer
157 views
Easier way to click button in nested divs with Watir?
I'm new to Watir and I'm trying to click the following login button:
<div class="container login" style="display: table;">
<div class="left">
<div class="right">
...
2
votes
2answers
177 views
Using gem install (for watir-webdriver) on Ubuntu
I'm trying to get started with ruby and Watir-webdriver for some test automation.
sudo apt-get install ruby rubygems
sudo gem install watir-webdriver
Whenever I gem install I'm getting these ...
2
votes
3answers
153 views
Retrieve <TD> text using WATIR
I am using WATIR for automated testing, and I need to copy in a variable the value of a rate. In the example below (from webpage source code), I need that variable myrate has value 2.595. I know how ...
2
votes
1answer
276 views
Handling a javascript popup occurring on a keyup event
I have a text-field on a HTML page which checks whether you have entered a value between 1 to 365. If the user enters an invalid value like a non-numeric character or a value which does not fall ...
2
votes
1answer
99 views
How do I select a JS tab in watir-webdriver?
I have a webpage which has tab list, the HTML looks like this for this piece:
<div id="content">
<div class="col span-6">
<div class="section first no-border">
<h2>New ...
2
votes
1answer
131 views
Watir-Webdriver: Puts statement not getting printed to hudson console in real time
I am running few tests using watir-webdriver[ruby], and in those tests I have added few puts statements which will print to the console. When running in terminal/command prompt, the messages are ...
2
votes
1answer
119 views
How to get Text value of <legend> tag using xpath in ruby watir.(using IE)
I have following code in my ie web page. I want text value of tag (means "ABCD:"). I am using ruby watir for that.
<fieldset>
<legend class="fieldset">ABCD:</legend>
...
2
votes
1answer
87 views
Using Watir, how can I select a radio control using both name and value?
I receive in my function the name and the status (value) and with that i want to set one of the radio button.
I'm trying do do something like this but is not accepting
r = $browser.input(:name => ...