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.

403 B

测试 WebSockets

你可以使用同一个 TestClient 来测试 WebSockets。

为此,在 with 语句中使用 TestClient 连接到 WebSocket:

{* ../../docs_src/app_testing/tutorial002_py310.py hl[27:31] *}

/// note | 注意

更多细节请查看 Starlette 的文档:测试 WebSockets

///