26 lines
734 B
Python
26 lines
734 B
Python
#!/usr/bin/env python3
|
|
"""Prepare the confirmation argument screenshot."""
|
|
|
|
import time
|
|
|
|
from selenium.webdriver.common.by import By
|
|
from selenium.webdriver.support.ui import WebDriverWait
|
|
|
|
|
|
def _wait_for_body_attr(driver, attr, timeout=15):
|
|
WebDriverWait(driver, timeout).until(
|
|
lambda d: bool(d.find_element(By.TAG_NAME, "body").get_attribute(attr))
|
|
)
|
|
|
|
|
|
def run(driver):
|
|
_wait_for_body_attr(driver, "loaded-dashboard")
|
|
|
|
driver.find_element(By.CSS_SELECTOR, '[title="Delete old backups"]').click()
|
|
_wait_for_body_attr(driver, "loaded-argument-form")
|
|
|
|
WebDriverWait(driver, 15).until(
|
|
lambda d: not d.find_element(By.CSS_SELECTOR, 'button[name="start"]').is_enabled()
|
|
)
|
|
time.sleep(0.2)
|