Celerity is a JRuby wrapper around HtmlUnit – a headless Java browser with JavaScript support. It provides a simple API for programmatic navigation through web applications. Celerity aims at being API compatible with Watir.
4
votes
3answers
681 views
Has anyone figured out a way to run the same cucumber scenario on multiple browsers/web drivers?
I'm using cucumber + capybara for some web automation testing. I'd love to be able to wire up my own tag (something like @all_browsers before the scenario) and have it run against a list of web ...
2
votes
2answers
356 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
1answer
536 views
using celerity to login to saleforce.com on linux (w/ no gui), JS & VB errors
thanks in advance for the help!
BACKGROUND:
the script below logs into my salesforce.com account and tries to click a bunch of "download" links and save the resulting .zip export files locally.
i'm ...
1
vote
1answer
341 views
Celerity cannot follow a Devise redirect, because Celerity doesn't send an accept header and Devise responds with plain text
We've got a Rails application just upgraded to Rails3 using Devise's Rails3 gem for authentication. We've been using Capybara with Celerity backend to test some of the pages.
When accessing the ...
1
vote
3answers
313 views
Using Celerity to download a file
I'm using Celerity in JRuby to automate the download of some .csv files from certain websites. For one of the websites (LinkShare), I've gotten very close but cannot figure out the last step.
The ...
1
vote
2answers
679 views
Running integration tests with Cucumber/capybara/celerity on a Jruby on Rails application using mysql
I've got an application I've been working on with ruby 1.9.1. I'd like to test the javascript in my UI and the default selenium driver for capybara doesn't support the events I need to test.
So I'm ...
1
vote
0answers
154 views
celerity submit form by pressing enter
I'm trying to use celerity to submit a form. This form has a generated link that is called when the user hits the enter button. How do I trigger this?
I know you can submit by finding the link / ...
1
vote
1answer
603 views
Selenium vs Celerity?
Isn't Selenium better than Celerity when it comes to testing web sites cause real browsers like Firefox, Safari, Chrome and Internet Explorer could be used so that we know our website is compatible ...
0
votes
0answers
24 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
31 views
Figuring out if some text has bold element surrounding it
EDIT:
After some more testing/researching, I found out that Celerity does not support the bold element, but strong does, so I solved the cases which have strong, and changed the site so it simply does ...
0
votes
0answers
67 views
Not able to select option from select list which is generated by ajax call after selecting other select list
I am facing a problem while executing cucumber test cases .
I have a form in which there are two drop down list.IF we select one option from one first drop down list, it shows associated option in ...
0
votes
0answers
31 views
Can't click a certain button in Celerity + Jruby
Oh masters of screen scraping. I'm using jruby and Celerity (both newest versions), and I CANNOT figure out how to click this button. Here is the HTML code:
<div class="chart-toolbar noprint" ...
0
votes
1answer
40 views
click button in jruby + celerity
I'm trying to do some screen scraping, and I've gotten down to this last step. I'm trying to download a file, which is accessed via a button from the following html:
<button class="pdf ui-button ...
0
votes
1answer
108 views
Save IO object to a file on Ruby
Im scraping a website using Celerity gem and I want to save an image but I dont know how to do it XD
With the next Celerity command I get an IO object
irb(main):260:0* image = @browser.image(:xpath, ...
0
votes
1answer
126 views
How to download a pdf with Celerity when the download link is a javascript function?
link looks like this:
<a onclick="SmartScroller_GetCoords(); ...
0
votes
0answers
51 views
cucumber celerity tests and spurious failures
On my current project we're using Cucumber for ATs. My problem is that I get spurious failures, where 'spurious' means that on different runs of the scenarios different tests fail each time. Sometimes ...
0
votes
0answers
130 views
devise rails sign_out returns empty content_type
I'm trying to run cucumber tests against my application and I'm using the Devise gem for user authentication. When I follow the "logoff" link, which maps to the devise sign_out service I get an error ...
0
votes
0answers
152 views
Error/Exception Handling In Jruby/Celerity Screen Scraping Routine
I have written a Celerity (jruby) screen scraping script. A typical scraping session would start at 9:30am and last until 4:00pm - an extended period time. Once I start the script my hope is to walk ...
0
votes
0answers
88 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
153 views
Celerity - Help with popup_browser select list that updates div text on main browser
I'm screen scraping a page that includes a link that spawns a popup window that is comprised of a select list and a button to execute your selection. The objective is to click the link on the main ...
0
votes
1answer
119 views
Using Include? in Celerity Screen Scraping Script
I am using to Celerity to screen scrape a web page and I'm attempting to scrape all of the text elements within a particular div class. The following line of code I'm using is throwing the following ...
0
votes
1answer
62 views
Missing record in Rails Testing
I'm trying to test Rails' Javascript with Cucumber/celerity and factorygirl. The stack itself works, but database is going crazy.
I'm running mongrel on 3001 port (tried in both cucumber and test ...