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 739e52b commit 1f5a500Copy full SHA for 1f5a500
appium/webdriver/webelement.py
@@ -31,7 +31,7 @@ class WebElement(SeleniumWebElement):
31
def find_element(self, by: str, value: Union[str, Dict, None] = None) -> Self: # type: ignore[override]
32
...
33
34
- def find_elements(self, by: str, value: Union[str, Dict, None] = None) -> Self: # type: ignore[override]
+ def find_elements(self, by: str, value: Union[str, Dict, None] = None) -> List[Self]: # type: ignore[override]
35
36
37
def get_attribute(self, name: str) -> Optional[Union[str, Dict]]: # type: ignore[override]
0 commit comments