-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
undefined local variable or method `wait_until_has_element_name' #2
Comments
@ArtemVarnavskiy Please rename it to |
I rename this function to
|
@hoangtaiki Thank! It works |
@hoangtaiki It would be great if could use Explicit Wait for has_no_element |
Great idea. I will create an issue and implement it. |
@ArtemVarnavskiy I will implement it in this issue |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
class LoginPage < Appom::Page
element :input_login, :xpath, "//XCUIElementTypeTextField"
def authorization(login)
wait_until_has_input_login
input_login.send_keys(login)
end
end
Problem
When i call a method authorization(login), i get error:
undefined local variable or method `wait_until_has_input_login' for #LoginPage:0x00007fa744613788
Did you mean? wait_until_get_not_empty (NameError)
The text was updated successfully, but these errors were encountered: