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 164497a commit 9938f15Copy full SHA for 9938f15
py/test/unit/selenium/webdriver/common/common_options_tests.py
@@ -92,6 +92,6 @@ def test_enable_bidi():
92
93
def test_set_socket_url():
94
options = ArgOptions()
95
- options.web_socket_url = 'socket_url'
+ options.web_socket_url = "socket_url"
96
assert options.enable_bidi is True
97
- assert options.web_socket_url is 'socket_url'
+ assert options.web_socket_url == "socket_url"
0 commit comments