mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 09:17:30 +08:00
2ed75dbaf6
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.
10 lines
126 B
Ruby
10 lines
126 B
Ruby
# frozen_string_literal: true
|
|
|
|
module PageObjects
|
|
module Pages
|
|
class Base
|
|
include Capybara::DSL
|
|
end
|
|
end
|
|
end
|