mirror of
https://github.com/discourse/discourse.git
synced 2024-11-29 23:46:21 +08:00
e1d9fd479f
After the wizard is completed, the admin should be redirected to the admin guide topic. Also tooltip from "Getting started" button was removed.
12 lines
192 B
Ruby
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
|