strongqa/howitzer

View on GitHub
lib/howitzer/web/blank_page.rb

Summary

Maintainability
A
0 mins
Test Coverage
require 'howitzer/web/page'

module Howitzer
  module Web
    # This class represents standard blank page in browser
    class BlankPage < Page
      site ''
      path 'about:blank'
      validate :url, /^about:blank$/
    end
  end
end