Module appium.webdriver.extensions.search_context.base_search_context
Expand source code
#!/usr/bin/env python
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# pylint: disable=abstract-method
from typing import TYPE_CHECKING, Dict, List, Union
if TYPE_CHECKING:
from appium.webdriver.webelement import WebElement
class BaseSearchContext:
"""Used by each search context. Dummy find_element/s are for preventing pylint error"""
def find_element(self, by: str, value: Union[str, Dict] = None) -> 'WebElement':
raise NotImplementedError
def find_elements(self, by: str, value: Union[str, Dict] = None) -> List['WebElement']:
raise NotImplementedError
Classes
class BaseSearchContext (*args, **kwargs)
-
Used by each search context. Dummy find_element/s are for preventing pylint error
Expand source code
class BaseSearchContext: """Used by each search context. Dummy find_element/s are for preventing pylint error""" def find_element(self, by: str, value: Union[str, Dict] = None) -> 'WebElement': raise NotImplementedError def find_elements(self, by: str, value: Union[str, Dict] = None) -> List['WebElement']: raise NotImplementedError
Subclasses
Methods
def find_element(self, by, value=None)
-
Expand source code
def find_element(self, by: str, value: Union[str, Dict] = None) -> 'WebElement': raise NotImplementedError
def find_elements(self, by, value=None)
-
Expand source code
def find_elements(self, by: str, value: Union[str, Dict] = None) -> List['WebElement']: raise NotImplementedError