1# Test Subsystem ChangeLog
2
3## cl.testfwk_arkxtest.1 Change to the WindowFilter Attribute Names
4
5**Access Level**
6
7Public
8
9**Reason for Change**
10
11This change is a compatible change.
12
13**Change Impact**
14
15This change affects the **WindowFilter** API provided by **@ohos.uitest**. If you have used the **WindowFilter** API of **@ohos.uitest-api9** during test case development, adaptation is required so that the compilation can be successful in the SDK environment of the new version.
16
17**Change Since**
18
19OpenHarmony SDK 4.1.5.3
20
21**Key API/Component Changes**
22
23WindowFilter<sup>9+</sup>
24
25Before change
26
27| Name      | Type   | Readable| Writable| Description                      |
28| ---------- | ------- | ---- | ---- | -------------------------- |
29| bundleName | string  | Yes  | No  | Bundle name of the application to which the window belongs.      |
30| title      | string  | Yes  | No  | Title of the window.          |
31| focused    | boolean | Yes  | No  | Whether the window is in focused state.    |
32| actived    | boolean | Yes  | No  | Whether the window is interacting with the user.|
33
34After change
35
36| Name      | Type   | Readable| Writable| Description                      |
37| ---------- | ------- | ---- | ---- | -------------------------- |
38| bundleName | string  | Yes  | No  | Bundle name of the application to which the window belongs.      |
39| title      | string  | Yes  | No  | Title of the window.          |
40| focused    | boolean | Yes  | No  | Whether the window is in focused state.    |
41| active     | boolean | Yes  | No  | Whether the window is interacting with the user.|
42
43**Adaptation Guide**
44
45Replace **actived** with **active**.
46
47## cl.testfwk_arkxtest.2 Deprecation of the UiWindow.isActived API
48
49**Access Level**
50
51Public
52
53**Reason for Change**
54
55The API capability is enhanced.
56
57**Change Impact**
58
59This change affects the **UiWindow.isActived** API provided by **@ohos.uitest**. If you have used the **UiWindow.isActived** API of **@ohos.uitest-api9** during test case development, adaptation is required so that the compilation can be successful in the SDK environment of the new version.
60
61**Deprecated Since**
62
63OpenHarmony SDK 4.1.5.3
64
65**Deprecated APIs/Components**
66
67|            API           |               Description              |           Substitute           |
68| :----------------------------: | :----------------------------------: | :---------------------------: |
69| isActived(): Promise\<boolean>; | Replaced by **isActive()**.| isActive(): Promise\<boolean>; |
70
71**Adaptation Guide**
72
73Replace **isActived()** with **isActive()**.
74