Skip to content

refactor: fix typos #1133

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 2, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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'.
"""
Expand Down
2 changes: 1 addition & 1 deletion appium/webdriver/extensions/android/nativekey.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion appium/webdriver/extensions/execute_driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion appium/webdriver/webelement.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down