Skip to content

Commit ecdef61

Browse files
committed
use inherited method
1 parent e76ea44 commit ecdef61

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

py/selenium/webdriver/chromium/webdriver.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ def execute_cdp_cmd(self, cmd: str, cmd_args: dict):
138138
For example to getResponseBody:
139139
{'base64Encoded': False, 'body': 'response body string'}
140140
"""
141-
return self.execute("executeCdpCommand", {"cmd": cmd, "params": cmd_args})["value"]
141+
return super().execute_cdp_cmd(cmd, cmd_args)
142142

143143
def get_sinks(self) -> list:
144144
""":Returns: A list of sinks available for Cast."""

0 commit comments

Comments
 (0)