mirror of
https://github.com/status-im/desktop-qa-automation.git
synced 2025-02-23 17:48:20 +00:00
chore: add randomisation for password
This commit is contained in:
parent
effd82ec17
commit
d38979e26e
@ -34,10 +34,13 @@ def keys_screen(main_window) -> KeysView:
|
||||
@pytest.mark.parametrize('user_name, password, user_image, zoom, shift', [
|
||||
pytest.param(
|
||||
''.join((random.choice(
|
||||
string.ascii_letters + string.digits + string.whitespace + random.choice('_-'))
|
||||
string.ascii_letters + string.digits + random.choice('_- '))
|
||||
for i in range(5, 21))
|
||||
).strip(' '),
|
||||
''.join((random.choice(
|
||||
string.ascii_letters + string.digits + string.punctuation)
|
||||
for _ in range(10, 28))
|
||||
),
|
||||
'*P@ssw0rd*',
|
||||
'tv_signal.jpeg',
|
||||
5,
|
||||
shift_image(0, 1000, 1000, 0))
|
||||
|
Loading…
x
Reference in New Issue
Block a user