summaryrefslogtreecommitdiff
path: root/crocoite/test_devtools.py
diff options
context:
space:
mode:
Diffstat (limited to 'crocoite/test_devtools.py')
-rw-r--r--crocoite/test_devtools.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/crocoite/test_devtools.py b/crocoite/test_devtools.py
index a6eeda2..4ffbbf8 100644
--- a/crocoite/test_devtools.py
+++ b/crocoite/test_devtools.py
@@ -151,3 +151,13 @@ def test_tab_function_hash (tab):
d = {tab.Network.enable: 1, tab.Network.disable: 2, tab.Page: 3, tab.Page.enable: 4}
assert len (d) == 4
+@pytest.mark.asyncio
+async def test_ws_ping(tab):
+ """
+ Chrome does not like websocket pings and closes the connection if it
+ receives one. Not sure why.
+ """
+ with pytest.raises (Crashed):
+ await tab.ws.ping ()
+ await tab.Browser.getVersion ()
+