no message

This commit is contained in:
2025-12-06 16:58:24 +03:00
parent b8d4e0ddd1
commit ce12f23426
38 changed files with 920 additions and 133 deletions

9
tests/site/auth.py Normal file
View File

@@ -0,0 +1,9 @@
from requests_html import HTMLSession
print(1)
session = HTMLSession()
response = session.get("https://zapchastiya.ru/")
print(2)
response.html.render(wait=2) # Ждем выполнения JS, 2 секунды например
print(3)
print(response.html.html) # Выводим страницу после выполнения JS