When you need to see the content of a page (i.e. not all the HTML but the relevant text body...
Using this step definition you can check if any form field (text field, checkbox, etc) or button is disabled:
RSpec 1, RSpec 2 To test whether two arrays have the same elements regardless of order, RSpec 1 and 2...
Gallery of fonts you can use without much hassle in LaTeX. The license of the fonts vary, but are all...
When a has_many association basically serves to store a list of associated strings (tags, categories, ...), it can be convenient...
When you just went through a long debug-fest and infested your code with dozens of debug messages, it can...
This step tests whether a given select option comes preselected in the HTML. There is another step to test that...
For clarity and traceability, your commit messages should include the ID and title of the Pivotal Tracker story you're...
If a controller action responds to other formats than HTML (XML, PDF, Excel, JSON, ...), you can reach that code in...
In rare cases you might need something like form_for (for using form builder methods on the resulting block element...
Take care when trying to set attributes to nil in a blueprint. Given the following master blueprint: Story.blueprint do
Lately, we’ve been exploring ways to offer web apps that perform like native apps on mobile devices. For this...
Sometimes the order in which strings appear on a page matters to you. Spreewald gives you steps like these:
Note: We are talking about Machinist 1 here, Machinist 2 may have solved this or might require a different approach...
Capybara's has_css? matcher has a couple of options you might find useful. Check that a selector appears a...
Inside before :each blocks you can refer to variables that you introduce via let later on. They do not need...
So this is the simulation that I use in my Agile Testing class, as well as in other contexts where...
RSpec's context (which is basically an alias for describe) takes over your whole application. No object may have its...
We use RTeX for PDF exports. While converting LaTeX to PDF, RTeX opens a temporary file which has problematic permissions...
Because they are vector, it would make sense if we could do things that other vector programs (e.g. Adobe Illustrator...
This will not work (it always passes): Then the "Title" field should contain "" The value is turned into a regular...
To only run a single describe/context block in a long spec, you can say spec spec/models/note_spec.rb:545 ... where the describe...
The CSS Emoticons plugin is a simple jQuery plugin (and stylesheet) that allows you to turn any text emoticons on...
You can use the whatlanguage gem to detect the language of a Ruby string. Note that it also has not...