Sign up for FlowVella
Sign up with FacebookAlready have an account? Sign in now
By registering you are agreeing to our
Terms of Service
Loading Flow
Solution
1. Create basic functions which will support page's functions
2. Create page's functions
When I sign in as admin => YES
When I fill in Username field with igorn => YES
When I fill in username with igorn => NO
tap_on(element)
fill_in(element, value)
def sign_in_as(user_type)
fill_in(username, users[user_type][username])
fill_in(username, users[user_type][password])
tap_on 'login button'
end
Rocket solution