Tagged Questions
1
vote
1answer
37 views
Why does browser.text.include? .should == true not work properly? returns incorrect value of false -cucumber -watir webdriver -rspec
Below is my script. As mentioned in the code comments below, when I execute the browser.text.include?(item).should == true from cmd prompt -> irb I correctly get the value true returned when ...
1
vote
1answer
40 views
watir-rspec: watir or watir-webdriver?
Is watir-rspec meant to work with watir or watir-webdriver?
I am currently using watir and rspec.
I am trying to setup watir-rspec so I can use the html-formatter and take screenshots and embed them ...
0
votes
1answer
48 views
Using Watir and uninitialized constant Watir::RSpec::Core
I am trying to create a custom rspec formatter using Watir and got this error while executing the class. I have never used Watir before. Do I need some special gems for it?
Error: uninitialized ...
0
votes
2answers
292 views
How to use rspec-expectations outside cucumber step-definitions
I'm using watir-cucumber for test automation. I wrote following method in a separate .rb, this method is not in step definitions.
def has_logged_in?
$browser.text.should include("t788")
end
...
1
vote
2answers
132 views
How to seed test data for Watir integration tests for Rails application?
I am writing integration tests for a Rails application using Watir and RSpec. What is the best way to set up data in the database that spans each test? For instance, I have the same user I want to use ...
2
votes
1answer
407 views
Sauce labs tests with meaningful names
I am using rspec and cucumber to run watir tests at sauce labs.
I would like that test name (at sauce labs) is the same as the name of rspec describe block or cucumber feature.
So, if I have rspec ...
2
votes
3answers
235 views
Error with watir trying to match copyright statement
Hi I'm using watir with rspec and am running into problems with the following chunk of code:
I cant understand what Im doing wrong. The exact error I get is "syntax error, unexpected $end, expecting ...
3
votes
3answers
220 views
How to unload 'require' in ruby/rspec?
We are currently running rspec tests that check for specific libraries/models to be loaded. Specifically, we want to test that when creating an object, we get the correct Watir object back: ...
0
votes
3answers
289 views
Running selenium/watir inside the context of the rails server
How can I run a watir test in the context of the app that's being tested? I'd like my test to browse the app and then access ActionMailer::Base.deliveries for emails or check models directly. This is ...
1
vote
1answer
435 views
Browser url not returning new url
I am experimenting with using rspec and watir to do some tdd and have come across a problem I can't seem to get past. I want to have watir click a link (target="_blank") and then get the url of the ...
0
votes
2answers
330 views
Unable to use OptionParser and rspec
I have a simple watir (web-driver) script which goes to google. But, I want to use option parser to set an argument in the cmd to select a browser. Below is my script:
require 'optparse'
require ...
0
votes
0answers
226 views
Rspec, xpath and watir need help
I have issue with watir rspec and xpath. As i am using the xpath for locating the elements. But some time watir detects the element and some time it does not. How can i fix that problem. As i have to ...
1
vote
1answer
625 views
Need help with Rspec example
Can any one have more descriptive example of Rspec? I used the the example from site https://gist.github.com/1053934 works very fine. But i want to learn more like go to site X (eg. Google) -> enter ...
3
votes
1answer
330 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 ...
1
vote
4answers
255 views
Abnormal termination running an RSpec/Watir script
I am using Ruby 1.8.6, Watir 1.6.6, and RSpec 1.3.0. When I run the following script, it "terminates" (term given in EclipsePDT IDE) but no error is listed. Same when I run it from the c-prompt on ...
1
vote
1answer
607 views
Running rspec against multiple targets
I've written an rspec test using Watir against a web application and it's running fine. However, I now want to be able to run this test against the web application running on different domain names.
...
