Skip to content
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
2 changes: 2 additions & 0 deletions appium/webdriver/webdriver.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@

from appium.common.logger import logger
from appium.options.common.base import AppiumOptions
from appium.protocols.webdriver.can_find_elements import CanFindElements
from appium.webdriver.common.appiumby import AppiumBy

from .appium_connection import AppiumConnection
Expand Down Expand Up @@ -237,6 +238,7 @@ class WebDriver(
Settings,
Sms,
SystemBars,
CanFindElements,
):
def __init__(
self,
Expand Down
4 changes: 3 additions & 1 deletion appium/webdriver/webelement.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,12 @@
from selenium.webdriver.remote.webelement import WebElement as SeleniumWebElement
from typing_extensions import Self

from appium.protocols.webdriver.can_find_elements import CanFindElements

from .mobilecommand import MobileCommand as Command


class WebElement(SeleniumWebElement):
class WebElement(SeleniumWebElement, CanFindElements):
_execute: Callable
_id: str

Expand Down