diff --git a/appium/options/android/common/adb/logcat_filter_specs_option.py b/appium/options/android/common/adb/logcat_filter_specs_option.py index 057d5921..8a464d35 100644 --- a/appium/options/android/common/adb/logcat_filter_specs_option.py +++ b/appium/options/android/common/adb/logcat_filter_specs_option.py @@ -35,7 +35,7 @@ def logcat_filter_specs(self, value: str) -> None: """ Series of tag[:priority] where tag is a log component tag (or * for all) and priority is: V Verbose, D Debug, I Info, W Warn, E Error, F Fatal, - S Silent (supress all output). '' means ':d' and tag by itself means tag:v. + S Silent (suppress all output). '' means ':d' and tag by itself means tag:v. If not specified on the commandline, filterspec is set from ANDROID_LOG_TAGS. If no filterspec is found, filter defaults to '*:I'. """ diff --git a/appium/webdriver/extensions/android/nativekey.py b/appium/webdriver/extensions/android/nativekey.py index 5934d257..05b55879 100644 --- a/appium/webdriver/extensions/android/nativekey.py +++ b/appium/webdriver/extensions/android/nativekey.py @@ -867,7 +867,7 @@ class AndroidKey: TV_SATELLITE_SERVICE = 240 # Key code constant: Toggle Network key. - # Toggles selecting broacast services. + # Toggles selecting broadcast services. TV_NETWORK = 241 # Key code constant: Antenna/Cable key. diff --git a/appium/webdriver/extensions/execute_driver.py b/appium/webdriver/extensions/execute_driver.py index c1625522..698c0218 100644 --- a/appium/webdriver/extensions/execute_driver.py +++ b/appium/webdriver/extensions/execute_driver.py @@ -41,7 +41,7 @@ def execute_driver(self, script: str, script_type: str = 'webdriverio', timeout_ ExecuteDriver.Result: The result of the script. It has 'result' and 'logs' keys. Raises: - WebDriverException: If something error happenes in the script. The message has the original error message. + WebDriverException: If something error happens in the script. The message has the original error message. """ class Result: diff --git a/appium/webdriver/webelement.py b/appium/webdriver/webelement.py index 14a9c9db..52ea4e94 100644 --- a/appium/webdriver/webelement.py +++ b/appium/webdriver/webelement.py @@ -88,7 +88,7 @@ def clear(self) -> Self: """ # NOTE: this method is overridden because the selenium client returned None instead of self. - # Appium python cleint would like to allow users to chain methods. + # Appium python client would like to allow users to chain methods. data = {'id': self.id} self._execute(Command.CLEAR, data) return self