-
Notifications
You must be signed in to change notification settings - Fork 233
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
UIASecureTextField is not supported in PageYAML #327
Comments
@sillpa-polasani Can |
@sillpa-polasani It doesn't what matter the securePasswordUIAElement:
locators:
US: "//UIASecureTextField[contains(@name,'Passw')]" Doing this, the code generator will create the following in your page object class; // member variable
private UIAElement securePassword;
// method
public UIAElement getSecurePasword() As long as the class/type class UIASecureTextField extends UIAElement { ... } and add the missing functionality. If you have to take this path, you can then add the type securePasswordUIASecureTextField:
locators:
US: "//UIASecureTextField[contains(@name,'Passw')]" Also, if you do end up creating a new Cheers! |
got it Doug. |
@sillpa-polasani did one of the suggested work-arounds work for your use case? |
SeLion Version
All
Component
Expected Behavior
In the yaml file UIASecureTextField - for iOS is not supported by selion.
Password fields are of type UIASecureTextField.
Actual Behavior
Steps to Reproduce
The text was updated successfully, but these errors were encountered: