Files
2025-04-13 15:00:22 +02:00

20 строки
279 B
Ruby

# frozen_string_literal: true
class BasePage
include Capybara::DSL
attr_reader :path
def initialize(path:)
@path = path
end
def load
visit(path)
end
def lookup_editor(editor_container:)
@editor = Shared::QuillEditor.new(editor_container)
end
end