0
0
Fork 0
mirror of https://github.com/nextcloud/docker.git synced 2025-07-04 07:54:10 +02:00

Adds a full blue angel run

This commit is contained in:
Didi Hoffmann 2024-11-18 20:34:29 +01:00
parent 1bea442d56
commit c1af42c9db
43 changed files with 9129 additions and 157 deletions

View file

@ -5,15 +5,15 @@ from time import time_ns, sleep
from playwright.sync_api import TimeoutError
def login_nextcloud(page, username='Crash', password='Override'):
page.goto("http://nc/login")
def login_nextcloud(page, username='Crash', password='Override', domain='https://ncs'):
page.goto(f"{domain}/login")
page.locator('#user').fill(username)
page.locator('#password').fill(password)
page.locator('#password').press("Enter")
def get_random_text() -> str:
size_in_bytes = 1024
size_in_bytes = 10
characters = string.ascii_letters + string.digits
return ''.join(random.choice(characters) for _ in range(size_in_bytes))