discourse/spec/system/page_objects/pages/wizard.rb
Krzysztof Kotlarek e1d9fd479f
FEATURE: after wizard admin is redirected to the guide page (#26696)
After the wizard is completed, the admin should be redirected to the admin guide topic.

Also tooltip from "Getting started" button was removed.
2024-04-23 10:04:15 +10:00

12 lines
192 B
Ruby

# 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