release for 2.6.8

This commit is contained in:
mikigo 2024-07-24 17:18:55 +08:00
parent 70d555eede
commit e915674b7f
6 changed files with 9 additions and 12 deletions

View File

@ -1,2 +1,2 @@
[current]
tag = 2.6.7
tag = 2.6.8

View File

@ -1,10 +1,11 @@
# 版本更新记录
## 2.6.8dev
## 2.6.82024/07/15
**New 🌟**
- git commit 功能增加显示明细数据。
- 新增在所有属性中查找同名节点的功能。
## 2.6.72024/07/15

View File

@ -1,5 +1,5 @@
{
"version": "2.6.7",
"version": "2.6.8",
"devDependencies": {
"busuanzi.pure.js": "^1.0.3",
"markdown-it-mathjax3": "^4.3.2",

View File

@ -4,7 +4,7 @@ build-backend = "hatchling.build"
[project]
name = "youqu"
version = "2.6.7"
version = "2.6.8"
authors = [
{ name = "mikigo", email = "huangmingqiang@uniontech.com" },
]

View File

@ -2,22 +2,18 @@
# _*_ coding:utf-8 _*_
# SPDX-FileCopyrightText: 2023 UnionTech Software Technology Co., Ltd.
# SPDX-License-Identifier: GPL-2.0-only
# pylint: disable=C0114
from configparser import RawConfigParser # 解决读取log报错
import pathlib
from configparser import RawConfigParser
from enum import Enum
from enum import unique
from getpass import getuser
from os import popen
from os.path import abspath
from os.path import dirname
from os.path import join
from os.path import exists
from os.path import join
from platform import machine
from time import strftime
import pathlib
# pylint: disable=C0116,C0103,C0103,C0115,R0903
class GetCfg:

View File

@ -218,7 +218,7 @@ class DogtailUtils(MouseKey):
def find_element_by_attr_and_right_click(self, expr, index=0):
self.find_element_by_attr(expr, index).click(3)
def find_elements_by_recursive(self, ele_name):
def find_elements_to_the_end(self, ele_name):
"""
递归查找应用界面的元素(适用于查找多个同名称元素)
:param ele_name: 需要查找的元素名称