pythonasyncioapiasyncfastapiframeworkjsonjson-schemaopenapiopenapi3pydanticpython-typespython3redocreststarletteswaggerswagger-uiuvicornweb
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
873 B
30 lines
873 B
import subprocess
|
|
|
|
from playwright.sync_api import Playwright, sync_playwright
|
|
|
|
|
|
def run(playwright: Playwright) -> None:
|
|
browser = playwright.chromium.launch(headless=False)
|
|
context = browser.new_context(viewport={"width": 960, "height": 1080})
|
|
page = context.new_page()
|
|
page.goto("http://localhost:8000/docs")
|
|
page.get_by_text("GET/items/Read Items").click()
|
|
page.get_by_role("button", name="Try it out").click()
|
|
page.get_by_role("button", name="Execute").click()
|
|
page.screenshot(
|
|
path="docs/en/docs/img/tutorial/separate-openapi-schemas/image02.png"
|
|
)
|
|
|
|
# ---------------------
|
|
context.close()
|
|
browser.close()
|
|
|
|
|
|
process = subprocess.Popen(
|
|
["uvicorn", "docs_src.separate_openapi_schemas.tutorial001:app"]
|
|
)
|
|
try:
|
|
with sync_playwright() as playwright:
|
|
run(playwright)
|
|
finally:
|
|
process.terminate()
|
|
|