Skip to content

Commit

Permalink
🔖 version:3.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
defnngj committed Dec 18, 2024
1 parent 18d6e3c commit 89fff51
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 2 deletions.
10 changes: 10 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
### 3.11.0

* 功能:平台化用例执行,`seldom.main()`支持加载`confrun.py`中的 `start_run()/end_run()`
* 功能:平台化用例解析,识别用例标签`label`
* HTTP测试:通过`confrun.py`支持`proxies()`配置全局的请求代理。
* App测试:
* appium_lab 增加 `drag_from_to()`方法,支持坐标位滑动。感谢@guweifan
* appium_lab 增加`AppiumService`类,支持启动appium server。感谢@guweifan
* 优化:`jsonpath.py`的代码。

### 3.10.0

* 重要:所有app/web元素定位支持`selector`模式,详细查看文档。
Expand Down
10 changes: 10 additions & 0 deletions docs/vpdocs/version/CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@

### seldom 3.x <Badge type="tip" text="v3" vertical="top" />

__3.11.0(2024-12-19)__

* 功能:平台化用例执行,`seldom.main()`支持加载`confrun.py`中的 `start_run()/end_run()`
* 功能:平台化用例解析,识别用例标签`label`
* HTTP测试:通过`confrun.py`支持`proxies()`配置全局的请求代理。
* App测试:
* appium_lab 增加 `drag_from_to()`方法,支持坐标位滑动。感谢@guweifan
* appium_lab 增加`AppiumService`类,支持启动appium server。感谢@guweifan
* 优化:`jsonpath.py`的代码。

__3.10.0(2024-11-11)__

* 重要:所有app/web元素定位支持`selector`模式,详细查看文档。
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "seldom"
version = "3.10.0"
version = "3.11.0"
description = "Seldom automation testing framework based on unittest."
authors = ["bugmaster <[email protected]>"]
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion seldom/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@

__author__ = "bugmaster"

__version__ = "3.10.0"
__version__ = "3.11.0"

__description__ = "Seldom is an automation testing framework based on unittest."

0 comments on commit 89fff51

Please sign in to comment.