cucumber

How can I test JQuery UI Sortable with Cucumber

I'm tryting to write a cucumber/capybara test to reorder some items and then save them back. Any thoughts on how to best do this? ...

Cucumber stories with external dependencies

The app I'm creating uses git to move repositories around. I'm trying to find a strategy that will let me implement a step like: Then the commit "d786239d8sd" is pushed from "[email protected]:opsb/conference_hub" to "[email protected]:conference_hub_ci.git" Given the command uses git, which interacts with the filesystem, how do I implemen...

Is is possible to run Cucumber in Java out of the box without JRuby/gems?

Heya. I am new to Cucumber, JRuby, Gems and how it works. I like the idea of writing down the test case in plain English, but I am not keen on installing a lot of new tools (I really really like Java), just to get Cucumber up and running. So I have a few questions. 1) Do I need install JRuby/Ruby to use Cucumber in Java? No way to av...

Cucumber and javascript

I am using ajax to bring up a selection. The user has to click one item in the selection. a. Ajax takes some time, do I need a delay in the test, and if so how? b. The selection appears as multiple items and the class in the tag defines it as clickable item. How do I tell cucumber to select an item from the selection? Regards Elan N...

Do the blue dashes in cucumber features output always mean skipped?

I've understood that blue dashes in features output means the step was skipped because something before it failed but in all of my scenario outlines I get blue dashes but also a line that says all passed. Here is my Scenario Outline. Scenario Outline: Attempt to assign a role when not authorized Given a <user_who_can_not_assign_roles...