Browser.wsEndpoint() 方法
¥Browser.wsEndpoint() method
获取用于连接到此 browser 的 WebSocket URL。
¥Gets the WebSocket URL to connect to this browser.
这通常与 Puppeteer.connect() 一起使用。
¥This is usually used with Puppeteer.connect().
你可以从 http://HOST:PORT/json/version
找到调试器 URL (webSocketDebuggerUrl
)。
¥You can find the debugger URL (webSocketDebuggerUrl
) from http://HOST:PORT/json/version
.
请参阅 浏览器端点 了解更多信息。
¥See browser endpoint for more information.
签名
¥Signature
class Browser {
abstract wsEndpoint(): string;
}
Returns:
string
备注
¥Remarks
格式始终为 ws://HOST:PORT/devtools/browser/<id>
。
¥The format is always ws://HOST:PORT/devtools/browser/<id>
.