Guest User

Untitled

a guest
Dec 13th, 2018
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. class LoginPage
  2. include Gametel
  3.  
  4. text(:username, :index => 0)
  5. text(:password, :index => 1)
  6.  
  7. def login_successfully
  8. self.username = 'user'
  9. self.password = 'secret'
  10. on(LandingPage).should be_active
  11. end
  12. end
  13.  
  14. Given /^I have logged in successfully$/
  15. on(LoginPage).login_successfully
  16. end
Add Comment
Please, Sign In to add comment