File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 28
28
29
29
from appium .common .logger import logger
30
30
from appium .options .common .base import AppiumOptions
31
+ from appium .protocols .webdriver .can_find_elements import CanFindElements
31
32
from appium .webdriver .common .appiumby import AppiumBy
32
33
33
34
from .appium_connection import AppiumConnection
@@ -237,6 +238,7 @@ class WebDriver(
237
238
Settings ,
238
239
Sms ,
239
240
SystemBars ,
241
+ CanFindElements ,
240
242
):
241
243
def __init__ (
242
244
self ,
Original file line number Diff line number Diff line change 19
19
from selenium .webdriver .remote .webelement import WebElement as SeleniumWebElement
20
20
from typing_extensions import Self
21
21
22
+ from appium .protocols .webdriver .can_find_elements import CanFindElements
23
+
22
24
from .mobilecommand import MobileCommand as Command
23
25
24
26
25
- class WebElement (SeleniumWebElement ):
27
+ class WebElement (SeleniumWebElement , CanFindElements ):
26
28
_execute : Callable
27
29
_id : str
28
30
You can’t perform that action at this time.
0 commit comments