File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2828
2929from appium .common .logger import logger
3030from appium .options .common .base import AppiumOptions
31+ from appium .protocols .webdriver .can_find_elements import CanFindElements
3132from appium .webdriver .common .appiumby import AppiumBy
3233
3334from .appium_connection import AppiumConnection
@@ -237,6 +238,7 @@ class WebDriver(
237238 Settings ,
238239 Sms ,
239240 SystemBars ,
241+ CanFindElements ,
240242):
241243 def __init__ (
242244 self ,
Original file line number Diff line number Diff line change 1919from selenium .webdriver .remote .webelement import WebElement as SeleniumWebElement
2020from typing_extensions import Self
2121
22+ from appium .protocols .webdriver .can_find_elements import CanFindElements
23+
2224from .mobilecommand import MobileCommand as Command
2325
2426
25- class WebElement (SeleniumWebElement ):
27+ class WebElement (SeleniumWebElement , CanFindElements ):
2628 _execute : Callable
2729 _id : str
2830
You can’t perform that action at this time.
0 commit comments