Guest User

Untitled

a guest
Oct 16th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. @login_page = LoginPage.new # <= dirt
  2. @login_page.login_with "bob", "p4ssword"
  3.  
  4. @account_page = AccountPage.new # <= more dirt
  5. @account_page.username.text.should == "bob"
  6. @account_page.view_account_history.click
  7.  
  8. @account_history_page = AccountHistoryPage.new # <= yet more dirt
  9. @account_history_page.purchased_items.size.should == 4
Add Comment
Please, Sign In to add comment