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
PAGE OBJECT
class LoginPage
def open_logout
driver.open("http://www.google.com.ua")
end
def sign_in_as(user)
driver.find("username").send(user.name)
driver.find("password").send(user.password)
driver.find("login_button").click
end
end