update: added 'utils' module

This commit is contained in:
2026-04-22 16:31:53 +08:00
parent 9db80a0401
commit 5c13c1f7f9
7 changed files with 120 additions and 28 deletions

View File

@@ -0,0 +1,67 @@
import random
import string
import typing
from selenium.common.exceptions import StaleElementReferenceException, TimeoutException
from selenium.webdriver.chrome.webdriver import WebDriver
from selenium.webdriver.common.by import By
from selenium.webdriver.support import expected_conditions as EC
from selenium.webdriver.support.wait import WebDriverWait
from selenium.webdriver.remote.webelement import WebElement
def until(driver: WebDriver, condition: typing.Callable[[WebDriver], bool], timeout: float, watch=True):
try:
WebDriverWait(driver, timeout).until(condition)
except (TimeoutException, StaleElementReferenceException):
pass
if watch: WebDriverWait(driver, timeout).until_not(condition)
def sleep(driver: WebDriver, seconds: float):
from common.jsonrpc2.server import connection
assert connection is not None and connection.closed is not None
try: WebDriverWait(driver, seconds, seconds).until(lambda _: False)
except: pass
def locate(driver: WebDriver, selector: str, timeout: float, wait=True, condition=None) -> WebElement:
while True:
try:
locator = (By.CSS_SELECTOR, selector)
if not wait: return driver.find_element(*locator)
presence = EC.presence_of_element_located(locator)
element = WebDriverWait(driver, timeout).until(presence, 'Timeout')
driver.execute_script("arguments[0].scrollIntoView({ block: 'center', inline: 'nearest' });", element)
if condition is not None:
predicate = condition or EC.visibility_of_element_located
element = WebDriverWait(driver, timeout).until(predicate(locator), 'Timeout')
return element
except StaleElementReferenceException:
pass
def click(driver: WebDriver, selector: str|WebElement, attempts: int, interval: int, wait=True, condition=None):
predicate = condition if condition is not None else EC.element_to_be_clickable
identity = ''.join(random.choices(string.ascii_uppercase + string.digits, k=8))
element = locate(selector, wait, predicate) if isinstance(selector, str) else selector
counter = lambda: int(element.get_attribute(identity) or 0)
error = False
value = counter()
driver.execute_script("arguments[0].addEventListener('click', () => arguments[0].setAttribute(arguments[1], arguments[2] + 1));", element, identity, value)
for _ in range(attempts):
try:
if not error: element.click()
else: driver.execute_script("arguments[0].click();", element)
except StaleElementReferenceException:
break
except:
error = True
continue
try:
WebDriverWait(driver, interval).until(lambda _: counter() > value)
break
except TimeoutException: continue
except: break