Tagged Questions
The firewatir tag has no wiki summary.
12
votes
1answer
2k views
Alternatives to FireWatir working with Firefox 4 or higher
It seems, from what I read, that we will not have a JSSH for Firefox 4, and therefore no FireWatir.
I have several scripts that run well on FireWatir, and of course I would like to update my Firefox ...
7
votes
4answers
2k views
Ruby Watir: Clicking OK on JavaScript Alerts?
Seems none of the code I've tried has any affect. My intention is to close any and all JavaScript prompts that may come up by hitting the "OK" button. Problem is, my script has no affect on the ...
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
2answers
258 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
3answers
1k views
Watir: How to access a table without an ID or NAME
I am trying to write my watir script to grab the following data (the table body headers and the table row data, but I am having trouble trying to figure out how to access the table. (Once I get that, ...
3
votes
1answer
143 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
1answer
81 views
3
votes
1answer
273 views
How do I send keyboard commands like (Control) + (1) to the browser using Ruby and FireWatir?
I am using FireWatir to test a web app and I need to send CTRL + 1 to open up a connection to plugin text "LTN 123456" and send CTRL +2 to close the connection.
3
votes
2answers
165 views
Firewatir: Problems changing selection in select list
I'm new to FireWatir and having some issues changing a selection in a select list. Here's what the HTML looks like:
<div id="softwarelist">
<select name="TDSOFTWARE" ...
3
votes
1answer
180 views
In Firewatir, how can I interact with the Firefox print dialog?
I'm trying to test a page that has the print dialog appear immediately upon accessing it. All I need to do is close the dialog or click Cancel on it so I can interact with the page behind it. I've ...
3
votes
2answers
690 views
Using watir to control multiple firefox instances
I'm using watir in a Windows environment with FireFox 3.6 via FireWatir. I can successfully run a single watir test without issue. I need to be able to either:
a. Create and manage multiple ...
3
votes
3answers
754 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 ...
2
votes
1answer
50 views
Firewatir not working
hi i am currently using firewatir.
But my browser opens but when it comes to the connecting to the site it fails it shows the home page of Firefox which is set by default..
error : Unable to connect ...
2
votes
3answers
194 views
Does anyone have or know where I can find good documentation on Watir-Webdriver?
I am trying to get my automated test scripts switched over to the watir-webdriver.
Unfortunately I have been unable to completely do so, what I am looking for is a way to drive my web browser and ...
2
votes
1answer
101 views
Does Watir-webdriver resolve the difference in indexing bases between Watir and Firewatir?
One of the barriers (that as far as I know was never removed, but perhaps I'm mistaken and this was resolved a while ago?) to being able to have truly cross browser compatible tests with Watir and ...
2
votes
3answers
765 views
Watir-webdriver: Firefox not clicking correct link but IE and Chrome working fine
Question help
Hi I'm new to Ruby and watir-webdriver and I've searched all over and can't find an answer to this.
I have a link that is inside a table, this table has a header on top of the table ...
2
votes
2answers
367 views
Watir :- How to get value of a seconf cell of a table where there is a unique text in firsr cell of the row?
I want to get the value in the second cell of a row of a table, where a unique value is in the first cell , the value of the second cell keeps on changing.
table class="mm-table" cellspacing="0" ...
2
votes
2answers
72 views
How would I access a pop ui button?
I have a pop up button that is triggered by deleting an object. How can I click the button if I can seem to find it.
I have used xpath like so:
$browser.button(:xpath, ...
2
votes
2answers
383 views
Accessing table TH element using WATIR
I need to check if a certain column is displayed in the table.
Each column has a TH header with an unique ID.
What would the best way to check for the existence on a TH element in a table?
Here is an ...
2
votes
2answers
466 views
Passing keycode with keydown and keyup events in Watir & FireWatir
I need to automate interaction with a custom jQuery rich text editor in our web client.
Having talked with our developers I would only need to be able to fire the following events;
keydown, keyup, ...
2
votes
2answers
235 views
watir browser.attach overwrites previous browser object
I need to test login using facebook connect on my site. When clicking on connect using facebook button, a pop is open.
I use ie = Watir::Browser.attach(:title, 'Login | Facebook') to assign this new ...
2
votes
6answers
286 views
How do I check for text inside a <div>?
I am trying to access some text that is located in a DIV.
I need to check to see if the page holds the text so I can return a true or false.
The code I am using is below:
cancel = ...
2
votes
2answers
234 views
In Watir, how can I access the text inside a <dd>?
Here's what the HTML looks like:
<dt> Static text. </dt>
<dd>
<a onclick="bunch of ajax stuff", href="#">
Dynamic Text!
</a>
</dd>
I tried to use ...
2
votes
3answers
829 views
Watir with AutoIT tutorial?
Is there a tutorial for using AutoIT to handle modal windows in Watir or Firewatir?
2
votes
1answer
286 views
Using xpath with Firewatir
I'm just starting out with ruby and firewatir, so I'm trying to find out if it's just me, or if something is broken with firewatir.
I'm trying to select an element using xpath.
This works:
...
2
votes
2answers
111 views
How can I make a variable out of an ID that is made after the item using the ID is created?
The problem I am having is in my testing I create an order which obtains an ID. This ID is different every-time.
Here is a picture of some sample code:
Thanks in advance to any help.
--Curtis
2
votes
2answers
475 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 ...
2
votes
5answers
894 views
Firewatir: firewatir returns undefined method error in eclipse
Thank you for taking your time in reading this. I am just getting started with running Watir in Eclipse. When I try to load the require 'firewatir' statement on the top of the page, I receieve this ...
2
votes
1answer
171 views
Firewatir: Error when installing Firewatir on Windows
I am trying to install Firewatir on my PC (its OS is Windows). I have installed the jssh and test it. It is properly installed.
After that, I tried to install the firewatir gem. So I ran this ...
2
votes
3answers
955 views
How to do Basic Authentication using FireWatir on Ubuntu Linux?
I'm trying to use FireWatir (1.6.5) to access a site using Basic
Authentication and I've been unable to find a solution that works on
Firefox in Linux. Does FireWatir 1.6.5 support Basic ...
2
votes
2answers
1k 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 ...
2
votes
2answers
2k views
getting firewatir to run on mac osx: jssh problems
I am trying to get firewatir to run on Mac OSX Leopard. I have Firefox 3.6rc2 installed but running the most simple script does not work:
require 'rubygems'
require 'firewatir'
...
2
votes
3answers
2k views
firefox not opening - cron, ruby, firewatir
I have written a ruby script which opens up dlink admin page in firefox and does a ADSL connection or disconnection.
I could run this script in the terminal without any problem. But if I put it as ...
1
vote
2answers
99 views
Watir-webdriver issue with options.yml file
I have been using firewatir for quite some time but thinking of switching to watir-webdriver. I was playing with my existing script and getting an error in the IRB when i use watir-webdriver
Here is ...
1
vote
1answer
39 views
Select list not working in firewatir
i am using firewatir on firefox 3.0.10
But when i write the script
@browser.select_list(:id, "edit-profile-ecs-orgtype").set("Training institute")
this code is working but nothing appears on the ...
1
vote
1answer
48 views
How to access this Html element in FireWatir
<
div id="host-a-meeting"/ >
How to access the above in Watir.
1
vote
2answers
458 views
Selecting a Radio Button Using Selenium and Ruby
Ok, I know this sounds like quite a rudimentary question, and I know there are docs explaining how to do this, however I have not had any luck in doing so.
So say I create my driver in Ruby using ...
1
vote
2answers
79 views
Is it possible to click on text that is not a link using watir
i am using watir in the firefox browser
I am looking for a way to click on text that is not a link. I have verified that the text exists on the website using
b.text.include? "Tasks"
I've tried ...
1
vote
1answer
166 views
Watir::Safari js eval equivalent?
I've seen and tried many incantations of js eval in the various Watir's out there. firewatir for ffox, as well as safariwatir. In firefox, I got things working but need Safari as my project is webkit ...
1
vote
2answers
557 views
How do I run Firefox browser headless with my Ruby script?
I need to be able to run my Ruby scripts with my Hudson builds but don't want a browser window attempting to open.
I tried:
batman:ETW cmiller$ ./createAccount.rb -b
but this did not work.
How can ...
1
vote
2answers
100 views
How can I make a text_field that is disabled until typed into enabled using firewatir?
When attempting to setup a Job Title the "add job title" buttons are hidden until text is entered. Using the following code to add a job title the disabled button does not become enabled.
...
1
vote
1answer
301 views
Watir :- click an image button?
I have am using firefox and i have modified its user agent to make it behave like iphone web browser. now when i open google.com using watir and now i want to click on the searh button which is an ...
1
vote
1answer
146 views
How can I select the second cancel button instead of the first?
I want to cancel the second line item instead of the first.
Below is some sample code for the 2 line items:
<div class="screenlet-body">
<form name="updateItemInfo" method="post" ...
1
vote
1answer
281 views
Watir can't locate frame which houses an element in Firefox but works fine in IE
I have a script:
BROWSER.frame( :name, 'FRAME_NAVIGATION' ).span(:text=>'foo').fire_event('onmouseup')
which clicks on elements of a tree view (inside a frame) which works great in IE, but when ...
1
vote
2answers
290 views
FireWatir TextField set : Very Slow
When calling the set method of a text_field in ruby, the text is being entered at a very slow rate in the browser, roughly at 1 character / second.
Environment Information:
Ubuntu 10.10
FireFox ...
1
vote
1answer
219 views
Firewatir: button does not click, no error
On a webpage (which I cannot change) I have a link like this:
<a class="PSHYPERLINK" href="javascript:submitAction_win0(document.win0,'PRCSDETAIL_BTN$0');" tabindex="94" id="PRCSDETAIL_BTN$0" ...
1
vote
1answer
147 views
Watir problem: ECONNABORTED
I happily use Watir (actually, FireWatir) on 3 computers.
Only on one of them I get frequently this issue:
C:/Program ...
1
vote
2answers
189 views
If there are two links with the same element name but are on different forms of a page how to specify one over the other?
What I mean that in the inspection of
my element I found that the two links
have the same name but are on different forms.
I want to click the second link.
How could I specify that in water?
...
1
vote
1answer
107 views
It seems as though firewatir is not being found when trying to run my script?
I am very new at Ruby and am having an issue when trying to run my script using watir.
I am getting this error:
"./watir.rb:4:in require': no such file to load -- firewatir (LoadError)
from ...
1
vote
1answer
208 views
Using Firewatir with Ubuntu for Download Testing
How can I test a download of an XML file using Firewatir? We were previously using a Win32OLE to test it, but that only works under Windows. We are now running under Ubuntu, so need help testing ...