discourse/spec/system/page_objects/pages/base.rb
Martin Brennan 2ed75dbaf6
DEV: DRY up PageObject::Topic and PageObject::Components::Composer (#19841)
The latter can be called directly from the Topic page object,
so we can remove some duplication between the two. There are
levels of page objects (e.g. entire page, component, complete flow)
and its perfectly valid to call one from another.
2023-01-12 13:54:26 +10:00

10 lines
126 B
Ruby

# frozen_string_literal: true
module PageObjects
module Pages
class Base
include Capybara::DSL
end
end
end