diff --git a/DrissionPage/configs.ini b/DrissionPage/configs.ini index e6e15fd..36a4f56 100644 --- a/DrissionPage/configs.ini +++ b/DrissionPage/configs.ini @@ -1,14 +1,14 @@ [paths] -chromedriver_path = -tmp_path = +chromedriver_path = D:\python\Chrome92\chromedriver.exe +tmp_path = [chrome_options] debugger_address = 127.0.0.1:9222 -binary_location = -arguments = ['--no-sandbox', '--disable-gpu', '--ignore-certificate-errors', '--disable-infobars'] +binary_location = D:\python\Chrome92\chrome.exe +arguments = ['--no-sandbox', '--disable-gpu', '--ignore-certificate-errors', '--disable-infobars', '--user-data-dir=D:\\python\\Chrome62\\userData'] extensions = [] experimental_options = {'prefs': {'profile.default_content_settings.popups': 0, 'profile.default_content_setting_values': {'notifications': 2}, 'plugins.plugins_list': [{'enabled': False, 'name': 'Chrome PDF Viewer'}]}, 'useAutomationExtension': False, 'excludeSwitches': ['enable-automation']} -timeouts = {'implicit': 10, 'pageLoad': 30, 'script': 30} +timeouts = {'implicit': 10.0, 'pageLoad': 30.0, 'script': 30.0} set_window_rect = None page_load_strategy = normal diff --git a/DrissionPage/driver_element.py b/DrissionPage/driver_element.py index e94cc50..a487f57 100644 --- a/DrissionPage/driver_element.py +++ b/DrissionPage/driver_element.py @@ -438,7 +438,7 @@ class DriverElement(DrissionElement): :param vals: 文本值或按键组合 :param clear: 输入前是否清空文本框 :param insure: 确保输入正确,解决文本框有时输入失效的问题,不能用于输入组合键 - :param timeout: 尝试输入的超时时间,不指定则使用父页面的超时时间,只在insure_input为True时生效 + :param timeout: 尝试输入的超时时间,不指定则使用父页面的超时时间,只在insure为True时生效 :return: bool """ if not insure or self.tag != 'input' or self.prop('type') != 'text': # 普通输入 @@ -450,7 +450,7 @@ class DriverElement(DrissionElement): else: # 确保输入正确 if not isinstance(vals, str): - raise TypeError('insure_input参数生效时vals只能接收str数据。') + raise TypeError('insure参数生效时vals只能接收str数据。') enter = '\n' if vals.endswith('\n') else None full_txt = vals if clear else f'{self.attr("value")}{vals}' full_txt = full_txt.rstrip('\n') diff --git a/DrissionPage/shadow_root_element.py b/DrissionPage/shadow_root_element.py index c95f44b..79b39c9 100644 --- a/DrissionPage/shadow_root_element.py +++ b/DrissionPage/shadow_root_element.py @@ -180,49 +180,3 @@ class ShadowRootElement(BaseElement): except Exception: return False - - # ----------------ShadowRootElement独有方法----------------------- - def _find_eles_by_text(self, - text: str, - tag: str = '', - match: str = 'exact', - single: bool = True) -> Union[DriverElement, List[DriverElement]]: - """根据文本获取页面元素 \n - :param text: 文本字符串 - :param tag: tag name - :param match: 'exact' 或 'fuzzy',对应精确或模糊匹配 - :param single: True则返回第一个,False则返回全部 - :return: 返回DriverElement对象或组成的列表 - """ - # 获取所有元素 - eles = self.run_script('return arguments[0].querySelectorAll("*")') - results = [] - - # 遍历所有元素,找到符合条件的 - for ele in eles: - if tag and tag != ele.tag_name: - continue - - txt = self.page.driver.execute_script( - 'if(arguments[0].firstChild!=null){return arguments[0].firstChild.nodeValue}', ele) - txt = txt or '' - - # 匹配没有文本的元素或精确匹配 - if text == '' or match == 'exact': - if text == txt: - - if single: - return DriverElement(ele, self.page) - else: - results.append(DriverElement(ele, self.page)) - - # 模糊匹配 - elif match == 'fuzzy': - if text in txt: - - if single: - return DriverElement(ele, self.page) - else: - results.append(DriverElement(ele, self.page)) - - return None if single else results diff --git a/docs/_sidebar.md b/docs/_sidebar.md index c2a349d..7caa9a1 100644 --- a/docs/_sidebar.md +++ b/docs/_sidebar.md @@ -13,9 +13,9 @@ * 使用方法 * [创建页面对象](使用方法\创建页面对象.md) * [访问网页](使用方法\访问网页.md) - * [获取页面元素](使用方法\获取页面元素.md) + * [查找页面元素](使用方法\查找页面元素.md) * [获取元素信息](使用方法\获取元素信息.md) - * [操作页面元素](使用方法\操作页面元素.md) + * [元素操作](使用方法\元素操作.md) * [获取网页信息](使用方法\获取网页信息.md) * [页面操作](使用方法\页面操作.md) * 启动配置 diff --git a/docs/index.html b/docs/index.html index 1f33ec2..6321ff9 100644 --- a/docs/index.html +++ b/docs/index.html @@ -1,5 +1,5 @@ - +
@@ -8,7 +8,7 @@ - +