tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

errors.py (277B)


      1 import pytest
      2 from webdriver.bidi.error import UnknownCommandException
      3 
      4 
      5 @pytest.mark.asyncio
      6 async def test_internal_method(bidi_session, send_blocking_command):
      7    with pytest.raises(UnknownCommandException):
      8        await send_blocking_command("log._applySessionData", {})