discourse/spec/system/page_objects/pages/wizard.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
192 B
Ruby
Raw Normal View History

# frozen_string_literal: true
module PageObjects
module Pages
class Wizard < PageObjects::Pages::Base
def click_jump_in
find(".jump-in").click
end
end
end
end