master
 1require_relative "../web_page.rb"
 2
 3class DashboardPage < WebPage
 4  def initialize
 5    super(my_dashboard_path)
 6  end
 7
 8  def logout
 9    within ".nav-pills" do
10      click_link(I18n.t("logout"))
11    end
12  end
13end