Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
2answers
3k views

Culerity vs Selenium for Javascript Testing in Rails

In our eternal quest to integrate Javascript into our RSpec and Cucumber workflow we're evaluating Culerity and are provisionally very excited about it. Any advice on Culerity in general or ...
2
votes
2answers
314 views

Initializing culerity with capybara

I want to initialize culerity with capybara in ruby 1.9 i followed https://rvm.beginrescueend.com/integration/culerity/ for jruby integration of culerity and added below line to my ...
2
votes
4answers
1k views

“ERROR Errno::EPIPE: Broken pipe” with Culerity

I've recently installed culerity to use on top of cucumber. But when I run my cucumber specs, they turn red (they were all green before). The errors I get have this form: ...
2
votes
1answer
245 views

How to do full stack integration testing of web applications

I'm looking to enhance our current test suites, and continuous integration builds with full stack integration/acceptance testing. I'm looking into tools like Culerity and Selenium that can execute ...
0
votes
0answers
9 views

How can I run an interactive script from a rails app?

I have a JRuby script that navigates through a few webpages to fetch data using Culerity. Unfortunately, one of these pages have a captcha, so I save the image and show it to the user so he can answer ...
0
votes
0answers
14 views

Celerity/Culerity/RVM confusion - Culerity server not starting properly

I have a Rails 2.2.2 app which has a bunch of cucumber tests, which until now have just tested the page contents, ie without javascript. Now, though, i want to test some javascript behaviour in a ...
0
votes
0answers
12 views

Why does culerity requests supply only html as supported format?

When testing rails application using Cucumber with capybara and culerity. The requests sent arrive to the controller with :formats => :html, instead of :formats => [:js, :html], like I would expect ...
0
votes
1answer
495 views

Capybara + Selenium

When I run my tests using Selenium, my one step fails and the page looks like this in the browser: Internal Server Error can't convert nil into String WEBrick/1.3.1 (Ruby/1.9.2/2010-08-18) at ...
0
votes
0answers
87 views

“no page loaded (Culerity::CulerityException)” on click('my_link')

I'm testing an Ajax Rails 2.3.2 application with cucumber / capybara / culerity. My problem is that I can't access current page outside of my .feature file. Here is my scenario : Feature: User ...
0
votes
1answer
402 views

Cucumber, Capybara validating HTML and testing JavaScript together fails

I've recently added html validation to my cucumber features. I'm using the gem be_valid_asset which works really well until Cucumber hits a @javascript flagged feature. This kicks in culerity (I've ...