Until Capybara 2, node finders that accept a text option were able to find nodes based on rendered text, even...

Download buttons can be difficult to test, especially with Selenium. Depending on browser, user settings and response headers, one of...

makandra dev

Suggested Workflow Set the ruby version in .ruby-version to 2.3.5, then perform these steps one by one, fixing errors...

makandra Curriculum

When your code does not behave as expected, you can use a debugger statement ("breakpoint") at any point in your...

Accessing pseudo elements via JavaScript or jQuery is often painful/impossible. However, accessing their styles is fairly simple. Using getComputedStyle

relishapp.com

When you are using lambdas in RSpec to assert certain changes of a call, you know this syntax: expect { playlist.destroy...

A JavaScript error in an E2E test with Selenium will not cause your test to fail. This may cause you...

rspec.info

RSpec let's you chain a matcher with .or. The expectation will then pass if at least one matcher matches...

This cucumber step is useful for testing an image (looking at the src of the image). Then(/^I should see...

If you already selected an element and want to get its parent, you can call find(:xpath, '..') on it.

makandra dev

An end-to-end test (E2E test) is a script that remote-controls a web browser with tools like Selenium...

Capybara clears cookies before each scenario, but not other client-side data stores. If your app is using localStorage or...

Webpack is the future. We're using it in our latest Rails applications. For tests, we want to compile assets...

Middleman is a static page generator that brings many of the goodies that Rails developers are used to.

When filling out forms in Selenium tests, Chrome shows the (usual) bubble, asking to store those credentials. While the bubble...

There seems to be a nasty bug in Chrome 56 when testing with Selenium and Capybara: Slashes are not written...

If the application under test makes sound, you probably want to disable this during integration testing. You can use the...

TL;DR Debugging problems with javascript errors in cucumber tests is sometimes easier in the browser. Run the test, stop...

There is no CSS selector for matching elements that contains a given string ¹. Luckily, Capybara offers the :text option to...

At least Selenium cannot find disabled fields. Unless you find them explicitly: find_field 'This is disabled', disabled: true

Spreewald gives you the within meta step that will constrain page inspection to a given scope. Unfortunately, this does not...

Let's say you want to find the element with the text hello in the following DOM tree: hello

makandra dev
github.com

SitePrism gives you a simple, clean and semantic DSL for describing your site using the Page Object Model pattern, for...

Talk with a colleague and find out why we're using building some of our sites using static site...