增加;click.for_new_tab();set.upload_files()和click.to_upload()支持Path类型

This commit is contained in:
g1879 2024-02-07 20:28:13 +08:00
parent cfb0a6b8f6
commit 70243a1fd1
4 changed files with 20 additions and 4 deletions

View File

@ -159,7 +159,7 @@ class Clicker(object):
tab = self._ele.page._page if new_tab else self._ele.page
self._ele.click(by_js=by_js)
self.left(by_js=by_js)
return tab.wait.download_begin()
def to_upload(self, file_paths, by_js=False):
@ -169,9 +169,20 @@ class Clicker(object):
:return: None
"""
self._ele.page.set.upload_files(file_paths)
self._ele.click(by_js=by_js)
self.left(by_js=by_js)
self._ele.page.wait.upload_paths_inputted()
def for_new_tab(self, by_js=False):
"""点击后等待新tab出现并返回其对象
:param by_js: 是否使用js点击逻辑与click()一致
:return: 新标签页对象如果没有等到新标签页出现则抛出异常
"""
self.left(by_js=by_js)
tid = self._ele.page._page.wait.new_tab()
if not tid:
raise RuntimeError('没有出现新标签页。')
return self._ele.page._page.get_tab(tid)
def _click(self, client_x, client_y, button='left', count=1):
"""实施点击
:param client_x: 视口中的x坐标

View File

@ -10,6 +10,7 @@ from typing import Union
from .downloader import DownloadMission
from .._elements.chromium_element import ChromiumElement
from .._pages.chromium_tab import WebPageTab, ChromiumTab
class Clicker(object):
@ -39,6 +40,8 @@ class Clicker(object):
new_tab: bool = False,
by_js: bool = False) -> DownloadMission: ...
def to_upload(self, file_paths: Union[str, list, tuple], by_js: bool = False) -> None: ...
def to_upload(self, file_paths: Union[str, Path, list, tuple], by_js: bool = False) -> None: ...
def for_new_tab(self, by_js:bool=False)->Union[ChromiumTab, WebPageTab]:...
def _click(self, client_x: float, client_y: float, button: str = 'left', count: int = 1) -> None: ...

View File

@ -130,6 +130,8 @@ class ChromiumBaseSetter(BasePageSetter):
if isinstance(files, str):
files = files.split('\n')
elif isinstance(files, Path):
files = (files, )
self._page._upload_list = [str(Path(i).absolute()) for i in files]
def headers(self, headers: dict) -> None:

View File

@ -62,7 +62,7 @@ class ChromiumBaseSetter(BasePageSetter):
def auto_handle_alert(self, on_off: bool = True, accept: bool = True) -> None: ...
def upload_files(self, files: Union[str, list, tuple]) -> None: ...
def upload_files(self, files: Union[str, Path, list, tuple]) -> None: ...
def blocked_urls(self, urls: Union[list, tuple, str, None]) -> None: ...