_ruby
Example 1
Let's start by requiring our requisite libraries (e.g., selenium-webdriver
to drive the browser and rspec/expectations
& RSpec::Matchers
to handle our assertions) and implementing some helper methods (e.g., setup
, teardown
, and run
) to handle our test configuration.
# filename: basic_auth.rb
require 'selenium-webdriver'
require 'rspec/expectations'
include RSpec::Matchers
def setup
@driver = Selenium::WebDriver.for :firefox
end
def teardown
@driver.quit
end
def run
setup
yield
teardown
end
Now let's add our test code to the script.
run do
@driver.get 'http://admin:admin@the-internet.herokuapp.com/basic_auth'
page_message = @driver.find_element(css: '.example p').text
expect(page_message).to eql 'Congratulations! You must have the proper credentials.'
end
In the test we're loading the page by passing in the username and password in the front of the URL (e.g., http://admin:admin@
). Once it loads we grab text from the page to make sure we ended up in the right place.
Example 2
Alternatively, we could have accessed this page as part of the test setup (after creating an instance of Selenium). This would have cached the Basic Auth session in the browser, enabling us to visit the page again without having to specify credentials. This is particularly useful if you have numerous pages behind Basic Auth.
Here's what that script would look like.
# filename: basic_auth_setup.rb
require 'selenium-webdriver'
require 'rspec/expectations'
include RSpec::Matchers
def setup
@driver = Selenium::WebDriver.for :firefox
@driver.get 'http://admin:admin@the-internet.herokuapp.com/basic_auth'
end
def teardown
@driver.quit
end
def run
setup
yield
teardown
end
run do
@driver.get 'http://the-internet.herokuapp.com/basic_auth'
page_message = @driver.find_element(css: '.example p').text
expect(page_message).to eql 'Congratulations! You must have the proper credentials.'
end
NOTE: If your application serves both HTTP and HTTPS pages from behind Basic Auth then you will need to load one of each type before executing your test steps. Otherwise you will get authorization errors when switching between HTTP and HTTPS because the browser can't use Basic Auth credentials interchangeably (e.g. HTTP for HTTPS and vice versa).__
Expected Behavior
When you save the first example and run it (e.g., ruby basic_auth.rb
), here is what will happen:
- Open the browser
- Visit the page using Basic Auth
- Get the page text
- Assert that the text is what we expect
- Close the browser
And when you save the second example and run it (e.g., ruby basic_auth_setup.rb
), here is what will happen:
- Open the browser
- Visit the page using Basic Auth in the setup
- Navigate to the Basic Auth page (without providing credentials)
- Get the page text
- Assert that the text is what we expect
Summary
Hopefully these examples will help save you from getting any setbacks from Basic Auth when you come across it.
Happy Testing!