Tagged Questions
0
votes
1answer
41 views
watir-webdriver functions do not execute as a script but works on the interactive ruby shell
I am trying to write automated scripts for a web application using watir. There is a slider in the UI, which has a range from 1 to 11. It is a horizontal div. So, if you press the right arrow key, ...
1
vote
1answer
253 views
getting (Selenium::WebDriver::Error::WebDriverError)) on trying to load a webpage through watir
getting (Make sure Firefox is installed or set the path manually with
Selenium::WebDriver::Firefox::Binary.path= (Selenium::WebDriver::Error::WebDriverError))
on trying to load a webpage through ...
0
votes
1answer
438 views
Timeout error when using “exists” watir-webdriver method
As far as searching goes, i was unable to find an up-to-date list of supported browsers for watir.
I've just upgraded firefox to version 18, and while at it, also update the watir-webdriver version ...
0
votes
1answer
323 views
Change the default folder where temporary profile is created by firefox
I am getting Errno::ENOSPC error while trying to run watir tests headlessly on firefox. Actually the cause of this error is that I am logged it from a non-root user and when I run my tests, it tries ...
0
votes
1answer
189 views
cucumber watir firefox not shutting down after test
I've just started using cucumber and watir for some site testing, and it all work fine, but firefox doesn't shut down after the tests. I get this error:
!!! error running onStopped callback: ...
1
vote
2answers
327 views
How can I manage slow textarea speed with Watir-Webdriver in Firefox, linux?
I am using
Ruby 1.8.7, Watir-Webdriver 0.6.1, Arch Linux, Firefox 14
I have read a lot of answers and examples in this topic, but none of them worked for me.
When I want to paste a large piece of ...
0
votes
1answer
443 views
Using default Firefox profile in Watir Webdriver but switching off JavaScript
I would like to use my default profile in firefox when watir-webdriver launches a friefox browser, but then I want to switch off javascript in that browser this way:
browser = Watir::Browser.new :ff, ...
3
votes
1answer
166 views
launcher.rb for selenium-webdriver
We are using watir webdriver to test our applications. Currently I have 20 watir tests kicking off every 1 or 3 minutes on a linux server. Due to the way firefox works, we would constantly have ...
0
votes
1answer
405 views
Watir-webdriver not recognising click event
I'm using Firefox 13 and Watir-webdriver on windows via Ruby 1.9.2 and porting some code that worked previously in Watir in IE over to Watir-webdriver to use with Firefox and I'm having some strange ...
0
votes
2answers
786 views
watir, element not currently visible
I'm trying to interact with a widget on a webpage, enter data into a form element. But I'm getting an error saying the elements isn't currently visible so cannot be interacted with. When manually ...
2
votes
1answer
1k views
Scroll Firefox using Watir Webdriver
I'd like to scrape a website that dynamically generates more content as I scroll down the web browser. I have seen a related post, Auto-Scroll in FireFox, but it doesn't answer my question.
Is it ...
0
votes
2answers
1k views
Running cucumber + watir-webdriver + mac os x over SSH gives “Element cannot be scrolled into view”
I have a cucumber project using watir-webdriver and headless that works just fine on my mac workstation. I have set up a special "jenkins" user on my workstation that owns this project as I intend to ...
2
votes
2answers
482 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 = ...
4
votes
1answer
305 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 ...
1
vote
1answer
324 views
problems running CuCumber scripts with FireFox 8.0.1
Until FireFox 3.6 I had no problems running my cucumber scripts. The recent upgrade to 8.0.1 is giving me problems. When starting the browser a prompt is shown in the top asking me if I want to share ...
1
vote
1answer
603 views
watir-webdriver with firefox 6.0 see following error Errno::ECONNREFUSED
Currently run 150 plus scenarios nightly approximately 5000 steps. I see the following error occur around 10 times in the 5000 steps. Not a lot, nor on the same step, however don't know what to do ...
0
votes
1answer
228 views
Javascript fails to execute in headless Firefox [closed]
I've setup a Ubuntu Server install with Firefox 3.6.22 and installed a headless test environment using the headless and watir-webdriver Ruby gems. When testing in desktop browser all seems to work but ...
2
votes
1answer
2k views
why must I sleep or wait using watir-webdriver and firefox?
Well i wanted to comment on this topic but since i have 1 rep I cannot.
I'm upgrading my watir scripts to watir-webdriver and the first test i ran on Firefox yielded:
...
0
votes
2answers
288 views
how do I dump an html page as XML with watir & JavaScript?
I have been trying to create a simple script in FireWatir that will convert the entire current document DOM's (including javascript generated code) to XML representation .
following leads on the web ...
0
votes
1answer
392 views
Selenium “.check” Function Not Recognized
I have created an object using Selenium:
driver = Selenium::WebDriver.for :firefox, :profile => profile
I am attempting to make use of the "check" function for a radio button like so:
...
1
vote
0answers
432 views
Saving File Dialog / Prompt with Watir in Ruby
I'm using Watir to perform some actions on a website and eventually provide me with a prompt to save some file. What I would like to do is to follow the prompt automatically and have the file saved ...
2
votes
4answers
2k 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 ...
0
votes
1answer
199 views
Watir Checkbox marking slow with Firefox on Linux
I am running Watir on a Linux machine for testing with Firefox 3.6. I have observed that marking multiple checkboxes is quite slow. I have implemented the fix for a related problem with text boxes, ...
1
vote
1answer
728 views
Using watir-webdriver, how can I fire an event without waiting for the page to load?
The code
for i in 0..10
$browser.link(:id => "send_link").fire_event("onclick")
puts "Click #" + i.to_s
end
only displays "Click #0" to the console before crashing with an unable to locate ...
-3
votes
2answers
549 views
How do I prevent Watir from auto closing firefox?
I am automating test cases using Ruby and Watir. One of my methods opens the web browser, but as soon as my script leaves the "open browser" method and goes to the next method (filling out forms ...
6
votes
2answers
1k 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.
...
2
votes
2answers
1k views
Adding security exceptions in Firefox
I have a script running watir-webdriver(using Firefox 4.0) that needs to access a web page that Firefox thinks has an invalid certificate.
The problem is that after I accept the certificate, Firefox ...
3
votes
1answer
460 views
Radio buttons (with uppercase 'type' in the HTML) in Watir Firefox Webdriver
I use Firefox 4 with Watir Webdriver.
I have a web page with the following:
<input id="RadioM" type="RADIO" value="M" name="Field_SEX">Male
<input id="RadioF" type="RADIO" value="F" ...
4
votes
2answers
2k 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"] = ...
0
votes
3answers
3k views
Watir with webdriver, proxy, Firefox
I am able to use watir-webdriver with IE, but I would prefer to use Firefox.
Problem: I need a proxy.
By googling around, I found some code snippets, but I am not able to put all them together.
This ...
12
votes
1answer
3k 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 ...
-3
votes
1answer
126 views
ruby stops after first loop [closed]
for e in 1..43 do
browser.link(:xpath,".//*[@id='buttonPrint']").click
sleep 3
puts browser.link(:xpath,".//*[@id='cmdNext']").click
end
browser.goto ...
-1
votes
5answers
204 views
Ruby Loop question [closed]
I have the following:
browser = Watir::Browser.start "http://www.cramster.com/solution/solution/913513"
browser.link(:xpath,".//*[@id='buttonPrint']").click
sleep 5
...
1
vote
3answers
117 views
Printing with Ruby in Firefox
hi i have a question about using watir
i am very new to ruby so i may ask stupid questions
my question is how do i print a webpage with watir/ruby?
is there a way to print the current webpage that i ...
2
votes
2answers
443 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 ...
3
votes
1answer
315 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 ...
2
votes
3answers
1k views
Clearing session in Firefox for every request made (Watir issue)
I'm developing a screen scraping robot that uses Watir (ruby) to crawl specific web searches.
Watir is used as the search results are delivered in pages, only available via AJAX requests.
My issue ...
3
votes
2answers
1k 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 ...
2
votes
2answers
3k views
Alert box in Waitr Webdriver
I had a look here: http://wiki.openqa.org/display/WTR/JavaScript+Pop+Ups
Every solution is for IE on Windows. I am using Firefox on Mac. Is there a way to click on OK of a JavaScript alert box?
1
vote
1answer
1k views
Is it possible to open a new tab in watir-webdriver?
The only thing that looks a bit like what I'm trying to achieve is this, but this works only for IE... for firefox I found that information, so is it not possible to open tabs, just new windows?
And ...
1
vote
1answer
227 views
Watir magic escape sequence?
I am currently using Watir with Firefox and it seems that when I try to set a field with the following text:
!@#$QWER7890uiop
The command I am using is the following:
text_field(:name, ...
1
vote
2answers
272 views
Trouble find elements with fireWatir on a JQuery created page
I am having a problem identifying a label on a jQuery generated page.
This is the code of the page (as seen in firebug).
I am trying to find it using this statement,
assert(browser.label(:id, ...
1
vote
2answers
840 views
Automating Web Access and Watir
I'm building a Ruby program that uses several other programs, and while most of them are programs I can download and run on this computer, one has to be accessed and run through a web browser.
I ...
0
votes
2answers
450 views
Setting up a Proxy to record Firefox requests
I'm using Ruby+Watir to request pages through Firefox.
I would like to record the headers and content of every http request made through the browser.
Would it be possible to configure a proxy ...
1
vote
2answers
1k views
Firefox: Disabling exit alert boxes?
Is it possible to completely disable the JavaScript exit alert boxes that spring up when I try to leave the page?
I'm running Firewatir on Ubuntu.
1
vote
2answers
1k views
Firefox JSSH Connection or very detailed compile steps on Ubuntu 64?
I'm having a hard time getting jssh and firefox to play nice on an Ubuntu Jaunty 64-bit machine. Anyone know the specific steps needed to make this work? (or, if you're using something else to get ...


