Read more

Perform HTTP basic authentication in Cucumber (with or without Selenium)

Henning Koch
February 01, 2011Software engineer at makandra GmbH

This card describes a Cucumber step that lets you say:

When I perform basic authentication as "username/password" and I visit the admin area
Illustration UI/UX Design

UI/UX Design by makandra brand

We make sure that your target audience has the best possible experience with your digital product. You get:

  • Design tailored to your audience
  • Proven processes customized to your needs
  • An expert team of experienced designers
Read more Show archive.org snapshot

The path component ("... the admin area") is parsed through your path_to helper in features/support/paths.rb.

Capybara

The step definition is part of Spreewald Show archive.org snapshot . The step has been tested with multiple versions of Capybara, Rack::Test and Selenium.

Webrat (legacy)

This is a simpler version of the step above:

When /^I perform HTTP authentication as "([^\"]*)\/([^\"]*)"$/ do |email, password|
  basic_auth email, password
end
Posted by Henning Koch to makandra dev (2011-02-01 11:15)