mangoautomation 1.0.59__py3-none-any.whl → 1.0.60__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of mangoautomation might be problematic. Click here for more details.

@@ -19,7 +19,7 @@ ERROR_MSG_0012 = (4012, '操作失败,请检查输入的值是否有空字符
19
19
  ERROR_MSG_0013 = (
20
20
  313, '打开url时超时,分为2个问题:1.启用的浏览器过多,应当减少浏览器并发个数;2.自行查看为啥60秒还未打开:{}')
21
21
  ERROR_MSG_0014 = (4014, '')
22
- ERROR_MSG_0015 = (4015, '没有操作的类型,请联系管理员进行排查问题')
22
+ ERROR_MSG_0015 = (4015, '的类型错误,请联系管理员进行排查问题')
23
23
  ERROR_MSG_0016 = (4016, '')
24
24
  ERROR_MSG_0017 = (4017, '断言失败: {}')
25
25
  ERROR_MSG_0018 = (4018, '')
@@ -227,7 +227,7 @@ class AsyncElement(AsyncWebDevice, AndroidDriver):
227
227
  if callable(getattr(AsyncWebAssertion, self.element_model.ope_key, None)):
228
228
  i.v = loc
229
229
  elif callable(getattr(MangoAssertion(), self.element_model.ope_key, None)):
230
- i.v = self.element_result_model.element_text
230
+ i.v = element_text
231
231
  else:
232
232
  i.v = loc
233
233
  elif self.element_data:
@@ -227,7 +227,7 @@ class SyncElement(SyncWebDevice, AndroidDriver):
227
227
  if callable(getattr(SyncWebAssertion, self.element_model.ope_key, None)):
228
228
  i.v = loc
229
229
  elif callable(getattr(MangoAssertion(), self.element_model.ope_key, None)):
230
- i.v = self.element_result_model.element_text
230
+ i.v = element_text
231
231
  else:
232
232
  i.v = loc
233
233
  elif self.element_data:
@@ -0,0 +1,42 @@
1
+ Metadata-Version: 2.4
2
+ Name: mangoautomation
3
+ Version: 1.0.60
4
+ Summary: 测试工具
5
+ Home-page: https://gitee.com/mao-peng/testkit
6
+ Author: 毛鹏
7
+ Author-email: 729164035@qq.com
8
+ Classifier: Programming Language :: Python :: 3.10
9
+ Classifier: Programming Language :: Python :: 3.11
10
+ Classifier: Programming Language :: Python :: 3.12
11
+ Classifier: Programming Language :: Python :: 3.13
12
+ License-File: LICENSE
13
+ Requires-Dist: setuptools>=68.2.0
14
+ Requires-Dist: pydantic>=2.9.2
15
+ Requires-Dist: playwright==1.43.0
16
+ Requires-Dist: uiautomation>=2.0.20
17
+ Requires-Dist: uiautomator2>=3.2.5
18
+ Requires-Dist: mangotools>=1.1.42
19
+ Requires-Dist: adbutils~=2.8.9
20
+ Requires-Dist: uiautodev>=0.9.0
21
+ Dynamic: author
22
+ Dynamic: author-email
23
+ Dynamic: classifier
24
+ Dynamic: description
25
+ Dynamic: home-page
26
+ Dynamic: license-file
27
+ Dynamic: requires-dist
28
+ Dynamic: summary
29
+
30
+ # testkit
31
+
32
+ #### 介绍
33
+
34
+ 测试工具
35
+
36
+ #### 安装教程
37
+
38
+ 1. pip install mangokit
39
+
40
+ #### 使用说明
41
+
42
+ 1.
@@ -3,7 +3,7 @@ mangoautomation/enums/__init__.py,sha256=TZnjNeYQRysRolki82U0_s8BQamQ2EjlWFJ-RDD
3
3
  mangoautomation/enums/_base_enum.py,sha256=dpaXsdhWY08BhIzi1B1ksh_p18ZTmhWvTYhbd3n_ONQ,1176
4
4
  mangoautomation/enums/_ui_enum.py,sha256=rdkejsyc4ogZbyNfZcp1q0V0bDPo14vg0A6or6ShaXA,4494
5
5
  mangoautomation/exceptions/__init__.py,sha256=4CmTPcSFypENe3zXzsBUjA5MxXLugnP14dlakmItVjs,227
6
- mangoautomation/exceptions/_error_msg.py,sha256=S51nDyUr0Jr4hE3i6D24JoGij_d_eeVNsUe2MTuRdJo,5341
6
+ mangoautomation/exceptions/_error_msg.py,sha256=wnyHrBPE4ZGcWhvz8bD2K-8rMRRwcUIVVYIHWdhYM2U,5335
7
7
  mangoautomation/exceptions/_exceptions.py,sha256=BiyST1QPivpfIOuKn1gKhpXOyBv6gfip_KvlQuu8ctw,385
8
8
  mangoautomation/exceptions/error_msg.py,sha256=S51nDyUr0Jr4hE3i6D24JoGij_d_eeVNsUe2MTuRdJo,5341
9
9
  mangoautomation/models/__init__.py,sha256=25zmLzbB4gObJ6nqN7jPYP9LcdlixDKBGVoc7JrwggI,323
@@ -12,10 +12,10 @@ mangoautomation/tools/__init__.py,sha256=J-uPfaTZMMo7CL2PY6_5qCO24iIBTtUJTuFXDJz
12
12
  mangoautomation/tools/_mate.py,sha256=9lk_EJnAX_OyXbe5WacyHkkcEr2ScBgasl6eUnlklWA,405
13
13
  mangoautomation/tools/_uiautodev.py,sha256=RMOQMXse744xwUDb1_l7qDv9mUiqZt1Gm5sbB-nlgDk,1388
14
14
  mangoautomation/uidrive/__init__.py,sha256=3xD94fw5QQvBPMPDq2o-SiJI_zt0AdJuB_X0eAFth8g,430
15
- mangoautomation/uidrive/_async_element.py,sha256=n7WtGCseUPYqLkJD10mGJpcVH2HT6EbP8WVrmhipyAA,13885
15
+ mangoautomation/uidrive/_async_element.py,sha256=ZaEu-nesNW8gaJs0pp6cGttUqfz1DHV3FoBJFhVbhtA,13859
16
16
  mangoautomation/uidrive/_base_data.py,sha256=xDjgBJ6CDFajUy18ft-NKe-7vKe7WtgMC9zV6gRrmPY,3946
17
17
  mangoautomation/uidrive/_driver_object.py,sha256=7RGiAIPHU_bQtwVPEprnXt-HOzoKuKn_Bu2RZxjSAVs,2055
18
- mangoautomation/uidrive/_sync_element.py,sha256=RO-6NWhjqGo2Q5zF14wlmuv2Z2ASgQg7X9Es0eRhaws,13738
18
+ mangoautomation/uidrive/_sync_element.py,sha256=B2f8d0ZLlEmzWodxzeFzcZAIYXjlQ-P85Rk_M8fWqRY,13712
19
19
  mangoautomation/uidrive/android/__init__.py,sha256=HBYY1L-g7OASchquaUXH7NcpxXpuJVx6Zuw0JbNgq-Y,5524
20
20
  mangoautomation/uidrive/android/_application.py,sha256=ic9RbiOAft3wWi6QH6PgcRVN8kiahe3wMyErxsHp3FU,2854
21
21
  mangoautomation/uidrive/android/_assertion.py,sha256=ps6uBP4KxcBGJkrlG7m-Caq1rz4UfJhKUNU2YBetu-c,4349
@@ -48,12 +48,12 @@ mangoautomation/uidrive/web/sync_web/_element.py,sha256=QIwgQ0cdMc9-oa5TwRTKxxwn
48
48
  mangoautomation/uidrive/web/sync_web/_input_device.py,sha256=zPFd8xFuLeem9Io0ZBkiaJlFoPSHea-A87_vnYHEg80,3287
49
49
  mangoautomation/uidrive/web/sync_web/_new_browser.py,sha256=APGUFhOVAW68x-6y9tQLZJkn2utfR-PrpjgP8WE38SE,6149
50
50
  mangoautomation/uidrive/web/sync_web/_page.py,sha256=LC7FWr6Exv-KSiSU0y2Zxjd39_QLohe_UD5nvA8htUM,2045
51
+ mangoautomation-1.0.60.dist-info/licenses/LICENSE,sha256=03WP-mgFmo8ofRYDe1HVDQUEUKQZ2q6P6Q-2A4c-46A,1085
51
52
  tests/__init__.py,sha256=fdlqghHH7eXneovXweQjn6gVb8jwm6wprtPw5ksV_IA,350
52
53
  tests/get_ope.py,sha256=LhATAdHROfUKTmndNitFth4b845P7jDN9DugEwq8vAU,383
53
54
  tests/test_ui_and.py,sha256=A_0pqG6s5Ts02He7P3NwuDSK3g9Q3VP1Sb_P8wq6g0Q,125
54
55
  tests/test_ui_web.py,sha256=MFaUN8O5qKOMMgyk2eelhKZsYcSJm0Do6pCgsdBZEH4,2765
55
- mangoautomation-1.0.59.dist-info/LICENSE,sha256=03WP-mgFmo8ofRYDe1HVDQUEUKQZ2q6P6Q-2A4c-46A,1085
56
- mangoautomation-1.0.59.dist-info/METADATA,sha256=EzQOW-l_WBm7rXM8cy2nxm1-mm9GFcVb8KTTiTs26vQ,816
57
- mangoautomation-1.0.59.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
58
- mangoautomation-1.0.59.dist-info/top_level.txt,sha256=g-uCmjvEODG8WFbmwbGM0-G0zHntHv8ZsS0PQRaMGtE,22
59
- mangoautomation-1.0.59.dist-info/RECORD,,
56
+ mangoautomation-1.0.60.dist-info/METADATA,sha256=Db8_o0u0j81MpOqi-khhcV9BYyYSI321Seqwa6UXzxM,976
57
+ mangoautomation-1.0.60.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
58
+ mangoautomation-1.0.60.dist-info/top_level.txt,sha256=g-uCmjvEODG8WFbmwbGM0-G0zHntHv8ZsS0PQRaMGtE,22
59
+ mangoautomation-1.0.60.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: bdist_wheel (0.41.2)
2
+ Generator: setuptools (80.9.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5
 
@@ -1,34 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: mangoautomation
3
- Version: 1.0.59
4
- Summary: 测试工具
5
- Home-page: https://gitee.com/mao-peng/testkit
6
- Author: 毛鹏
7
- Author-email: 729164035@qq.com
8
- Classifier: Programming Language :: Python :: 3.10
9
- Classifier: Programming Language :: Python :: 3.11
10
- Classifier: Programming Language :: Python :: 3.12
11
- Classifier: Programming Language :: Python :: 3.13
12
- License-File: LICENSE
13
- Requires-Dist: setuptools >=68.2.0
14
- Requires-Dist: pydantic >=2.9.2
15
- Requires-Dist: playwright ==1.43.0
16
- Requires-Dist: uiautomation >=2.0.20
17
- Requires-Dist: uiautomator2 >=3.2.5
18
- Requires-Dist: mangotools >=1.1.42
19
- Requires-Dist: adbutils ~=2.8.9
20
- Requires-Dist: uiautodev >=0.9.0
21
-
22
- # testkit
23
-
24
- #### 介绍
25
-
26
- 测试工具
27
-
28
- #### 安装教程
29
-
30
- 1. pip install mangokit
31
-
32
- #### 使用说明
33
-
34
- 1.