Tagged Questions
3
votes
1answer
63 views
how to deal with a multiple select list with custom html attributes?
<select class="business_group" multiple="multiple" name="SelectedBusinessGroups">
<option value="Partners">Partners</option>
<option value="Press">Press</option>
...
0
votes
0answers
545 views
irb gives a LoadError: cannot load watir-classic
On my laptop with Windows 7 Ultimate, I'm following the on-line Watir primer at http://watir.github.com/watirbook/chap04.html#installation ....
I've installed ruby, devkit, watir as per instructions ...
1
vote
2answers
171 views
Unable to install any Gems (watir-webdriver, selenium-webdriver)
I install the Ruby: Successful
ruby -v
=> ruby 1.9.3p392 (2013-02-22) [i386-mingw32]
gem -v
=> 1.8.24
gem source
=> *** CURRENT SOURCES ***
=> http://rubygems.org/
When I try to ...
0
votes
1answer
72 views
Undefined method `heade' for DealerDetail:Class (NoMethodError)
I am having trouble when running this, I keep getting error
.rb:45:in <main>': undefined method heade' for DealerDetail:Class (NoMethodError)
What am I doing wrong I have looked around but cant ...
0
votes
1answer
99 views
while loop not stopping
I am trying to populate a text field but my while loop its not working its stuck i the loop. Can you please let me know what I doing wrong? Thanks in advance
mainStatus = ...
0
votes
2answers
510 views
Watir: RubyInstaller DevKit Installation error
Been trying to install the Devkit in WIN XP but can't get past the
following point Can you please help me? --code follows:
C:\devkit>ruby dk.rb init
[INFO] found RubyInstaller v1.9.3 at ...
1
vote
1answer
300 views
Watir: Select an item in checkbox
I am using watir-webdriver, I am trying to select one box from the HTML code below, for example "LC" for the input but I am having some troble to get it work. Anyone have any idea please. thanks
...
2
votes
1answer
443 views
HTTP Path Empty Error when using JRuby Watir
I have installed JRuby 1.6.7.2 (64bit), and the JDK 1.7.x (64-bit) on my Windows 7 machine. Right now I'm just trying to launch a browser (Firefox 13.0) using Watir but I keep getting an HTTP error ...
1
vote
1answer
236 views
How can I use ruby code to check for presence of a color (where color code is in hexadecimal format) on the webpage
How to check presence a color (FFCC00) on a webpage using ruby code?
0
votes
2answers
268 views
unable to select from a second drop down list
Using Rubygems and Watir
I'm unable to select options from a second drop down.
here is the code of the 2 drop downs
<select class="LocalUtility" name="Accounts[0][Local_Utility]" id="">
...
2
votes
2answers
1k 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:
...
0
votes
1answer
339 views
require 'watir-webdriver' error
I am trying to use Watir with Rails, and installed it, and when I use it from irb, it works fine. But when I try to include it in rails application, as
require 'rubygems'
require 'watir-webdriver'
...
0
votes
3answers
656 views
watir install report failed to build gem native extension
I've installed a instantrail2.0. I want to install watir 1.65
First I installed watir-1.6.5.gem it said 302 fetching http://gems.r....
then I downlord a rubygems-update-1.3.7.gem and type
gem ...
2
votes
2answers
860 views
Unable to install Watir on windows
We have being using ruby and Watir for our automation work, however recently we started facing a new issue. We are unable to install Watir on new machines.
We installed ruby 186_27_rc2, then updated ...
0
votes
2answers
2k views
Ruby Watir can't find the assert method outside of the running class?
I have a class that I want to use in many test cases:
require 'rubygems'
require 'test/unit'
require 'watir'
class Tests < Test::Unit::TestCase
def self.Run(browser)
# make sure Summary of ...
1
vote
1answer
133 views
Problem with Firewatir requiring different version of activesupport
I have a script that uses Watir to retrieve information from Web pages. It works fine as a standalone script. Now I would like to create a Padrino Rake task based on it, and attempt to run the script ...
1
vote
1answer
832 views
Not able to install watir gem
I installed ruby186-27_rc2 and i am getting the same error as described in the Ruby: Cannot Install Watir Gem On Windows thread when i try to install watir using gem install watir. Please see the ...
1
vote
2answers
2k views
Failed WATIR installation Server 2003
I had to rebuild my box and I currently am unable to install Watir.
gem install watir
ERROR: Error installing watir:
activesupport requires Ruby version >= 1.8.7.
Which would be ...
3
votes
1answer
297 views
Variable scope with in different ruby file
i am autpmating a web site that have different function page.
i am making differnt modules for each function.
the problem is that i have a login page Login.rb
that has the below code :-
$IE = ...
1
vote
4answers
819 views
how to update watir?
i am getting error while truing to install watir
C:>gem install watir
ERROR: http://rubygems.org/ does not appear to be a repository
ERROR: Could not find a valid gem 'watir' (>= 0) in any ...
5
votes
2answers
2k views
Is there a way to update RubyGems offline?
I am trying to install Ruby + WATIR to a Windows server which is in an isolated environment. Typically I would run the ruby installer followed by these two commands:
1) gem update --system
2) gem ...
