Guest User

Untitled

a guest
Oct 16th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. class App
  2. def home
  3. HomePage.new #returns an instance of the HomePage class
  4. end
  5.  
  6. def login_page
  7. LoginPage.new
  8. end
  9.  
  10. def account_page
  11. AccountPage.new
  12. end
  13.  
  14. def account_history_page
  15. AccountHistoryPage.new
  16. end
  17. end
Add Comment
Please, Sign In to add comment