We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 631a456 commit 09f4fa4Copy full SHA for 09f4fa4
py/selenium/webdriver/remote/command.py
@@ -26,6 +26,11 @@ class Command:
26
https://w3c.github.io/webdriver/
27
"""
28
29
+ ADD_INTERCEPT: str = "network.addIntercept"
30
+ REMOVE_INTERCEPT: str = "network.removeIntercept"
31
+ CONTINUE_RESPONSE: str = "network.continueResponse"
32
+ CONTINUE_REQUEST: str = "network.continueRequest"
33
+ CONTINUE_WITH_AUTH: str = "network.continueWithAuth"
34
NEW_SESSION: str = "newSession"
35
DELETE_SESSION: str = "deleteSession"
36
NEW_WINDOW: str = "newWindow"
0 commit comments