mirror of
https://gh.wpcy.net/https://github.com/discourse/discourse.git
synced 2026-05-27 17:02:55 +08:00
After the wizard is completed, the admin should be redirected to the admin guide topic. Also tooltip from "Getting started" button was removed.
11 lines
192 B
Ruby
Vendored
11 lines
192 B
Ruby
Vendored
# 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
|