mirror of
https://gitee.com/g1879/DrissionPage.git
synced 2024-12-10 04:00:23 +08:00
3.2.23元素对象增加focus();ChromiumPage增加find_tabs();可选择无法点击时抛出异常
This commit is contained in:
parent
b291aa0c26
commit
fc1e39cd3c
@ -15,7 +15,7 @@ from .commons.keys import keys_to_typing, keyDescriptionForString, keyDefinition
|
||||
from .commons.locator import get_loc
|
||||
from .commons.web import make_absolute_link, get_ele_txt, format_html, is_js_func, location_in_viewport, offset_scroll
|
||||
from .errors import ContextLossError, ElementLossError, JavaScriptError, NoRectError, ElementNotFoundError, \
|
||||
CallMethodError, NoResourceError
|
||||
CallMethodError, NoResourceError, CanNotClickError
|
||||
from .session_element import make_session_ele
|
||||
|
||||
|
||||
@ -531,7 +531,7 @@ class ChromiumElement(DrissionElement):
|
||||
if clear and vals not in ('\n', '\ue007'):
|
||||
self.clear(by_js=False)
|
||||
else:
|
||||
self._focus()
|
||||
self._input_focus()
|
||||
|
||||
# ------------处理字符-------------
|
||||
if not isinstance(vals, (tuple, list)):
|
||||
@ -558,10 +558,17 @@ class ChromiumElement(DrissionElement):
|
||||
self.run_js("this.value='';")
|
||||
|
||||
else:
|
||||
self._focus()
|
||||
self._input_focus()
|
||||
self.input(('\ue009', 'a', '\ue017'), clear=False)
|
||||
|
||||
def _focus(self):
|
||||
def _input_focus(self):
|
||||
"""输入前使元素获取焦点"""
|
||||
try:
|
||||
self.page.run_cdp('DOM.focus', backendNodeId=self._backend_id)
|
||||
except Exception:
|
||||
self.click(by_js=None)
|
||||
|
||||
def focus(self):
|
||||
"""使元素获取焦点"""
|
||||
try:
|
||||
self.page.run_cdp('DOM.focus', backendNodeId=self._backend_id)
|
||||
@ -1769,6 +1776,8 @@ class Click(object):
|
||||
self._ele.run_js('this.click();')
|
||||
return True
|
||||
|
||||
if Settings.raise_click_failed:
|
||||
raise CanNotClickError
|
||||
return False
|
||||
|
||||
def right(self):
|
||||
|
@ -189,7 +189,9 @@ class ChromiumElement(DrissionElement):
|
||||
|
||||
def clear(self, by_js: bool = False) -> None: ...
|
||||
|
||||
def _focus(self) -> None: ...
|
||||
def _input_focus(self) -> None: ...
|
||||
|
||||
def focus(self) -> None: ...
|
||||
|
||||
def hover(self, offset_x: int = None, offset_y: int = None) -> None: ...
|
||||
|
||||
@ -445,13 +447,13 @@ class Click(object):
|
||||
def __init__(self, ele: ChromiumElement):
|
||||
self._ele: ChromiumElement = ...
|
||||
|
||||
def __call__(self, by_js: bool = False, timeout: float = 1) -> bool: ...
|
||||
def __call__(self, by_js: Union[None, bool] = False, timeout: float = 1) -> bool: ...
|
||||
|
||||
def left(self, by_js: bool = False, timeout: float = 1) -> bool: ...
|
||||
def left(self, by_js: Union[None, bool] = False, timeout: float = 1) -> bool: ...
|
||||
|
||||
def right(self): ...
|
||||
def right(self) -> None: ...
|
||||
|
||||
def middle(self): ...
|
||||
def middle(self) -> None: ...
|
||||
|
||||
def at(self, offset_x: int = None, offset_y: int = None, button='left') -> None: ...
|
||||
|
||||
|
@ -194,6 +194,20 @@ class ChromiumPage(ChromiumBase):
|
||||
tab_id = tab_id or self.tab_id
|
||||
return ChromiumTab(self, tab_id)
|
||||
|
||||
def find_tabs(self, text, by_title=True, by_url=None):
|
||||
"""查找符合条件的tab,返回它们的id组成的列表
|
||||
:param text: 查询条件
|
||||
:param by_title: 是否匹配title
|
||||
:param by_url: 是否匹配url
|
||||
:return: tab id组成的列表
|
||||
"""
|
||||
if not (by_title or by_url):
|
||||
return self.tabs
|
||||
|
||||
tabs = self._control_session.get(f'http://{self.address}/json').json() # 不要改用cdp
|
||||
return [i['id'] for i in tabs if i['type'] == 'page' and ((by_url and text in i['url']) or
|
||||
(by_title and text in i['title']))]
|
||||
|
||||
def new_tab(self, url=None, switch_to=True):
|
||||
"""新建一个标签页,该标签页在最后面
|
||||
:param url: 新标签页跳转到的网址
|
||||
|
@ -81,6 +81,8 @@ class ChromiumPage(ChromiumBase):
|
||||
|
||||
def get_tab(self, tab_id: str = None) -> ChromiumTab: ...
|
||||
|
||||
def find_tabs(self, text: str, by_title: bool = True, by_url: bool = None) -> List[str]: ...
|
||||
|
||||
def new_tab(self, url: str = None, switch_to: bool = True) -> str: ...
|
||||
|
||||
def to_main_tab(self) -> None: ...
|
||||
|
@ -11,3 +11,4 @@ from .session_element import make_session_ele
|
||||
from .action_chains import ActionChains
|
||||
from .commons.keys import Keys
|
||||
from .commons.by import By
|
||||
from .commons.constants import Settings
|
||||
|
@ -12,6 +12,7 @@ ERROR = 'error'
|
||||
|
||||
class Settings(object):
|
||||
raise_ele_not_found = False
|
||||
raise_click_failed = False
|
||||
|
||||
|
||||
class NoneElement(object):
|
||||
|
@ -50,3 +50,7 @@ class BrowserConnectError(BaseError):
|
||||
|
||||
class NoResourceError(BaseError):
|
||||
_info = '该元素无可保存的内容或保存失败。'
|
||||
|
||||
|
||||
class CanNotClickError(BaseError):
|
||||
_info = '该元素无法滚动到视口或被遮挡,无法点击。'
|
||||
|
3
setup.py
3
setup.py
@ -6,7 +6,7 @@ with open("README.md", "r", encoding='utf-8') as fh:
|
||||
|
||||
setup(
|
||||
name="DrissionPage",
|
||||
version="3.2.21",
|
||||
version="3.2.23",
|
||||
author="g1879",
|
||||
author_email="g1879@qq.com",
|
||||
description="Python based web automation tool. It can control the browser and send and receive data packets.",
|
||||
@ -21,6 +21,7 @@ setup(
|
||||
install_requires=[
|
||||
'lxml',
|
||||
'requests',
|
||||
'cssselect',
|
||||
'DownloadKit>=0.5.3',
|
||||
'FlowViewer',
|
||||
'websocket-client',
|
||||
|
Loading…
x
Reference in New Issue
Block a user