2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

ChromeディベロッパーツールでWebSocketを切断する方法

Posted at

はじめに

WebSocketが途中で切れても、問題ないように再接続の処理を加えることはよくあると思いますが、ChromeでWebSocketを手動で切断する方法が分からなかったので調べました。

切断方法

コンソールを開いて、以下を入力します。

queryObjects(WebSocket)

そうすると、WebSocketのオブジェクトが返ってきます。
image.png

このWebSocketとオブジェクトを右クリックすると、以下のようなモーダルが出るので、Store as global variable を選択します。

image.png

そうするとtemp1 のような変数にWebSocketオブジェクトが格納されます。(もしかしたら他の環境だと違う変数名なのかもしれませんが、多分同じかなと思います)

image.png

あとは、このオブジェクトをtemp1.close()でcloseすればWebSocketが切断されます。

参考文献

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?