mirror of
https://github.com/status-im/status-desktop.git
synced 2025-02-07 20:25:36 +00:00
- Added new test case `tst_passwordStrength` in `suite_onboarding` that uses squish screenshot validation. - Added verification points (mac OS) for some password strength validations, using pixel comparison and some minor percentage of failure / color precision allowed. Closes #7003
7 lines
235 B
Python
7 lines
235 B
Python
from screens.StatusWelcomeScreen import StatusWelcomeScreen
|
|
|
|
_welcomeScreen = StatusWelcomeScreen()
|
|
|
|
@Then("the password strength indicator is |any|")
|
|
def step(context, strength):
|
|
_welcomeScreen.validate_password_strength(strength) |