js-apis-uitest.md 108.5 KB
Newer Older
1 2
# UiTest

R
ry 已提交
3 4 5 6
UiTest提供模拟UI操作的能力,供开发者在测试场景使用,主要支持如点击、双击、长按、滑动等UI操作能力。

该模块提供以下功能:

7 8 9 10 11 12 13
- [On<sup>9+</sup>](#on9):提供控件特征描述能力,用于控件筛选匹配查找。
- [Component<sup>9+</sup>](#component9):代表UI界面上的指定控件,提供控件属性获取,控件点击,滑动查找,文本注入等能力。
- [Driver<sup>9+</sup>](#driver9):入口类,提供控件匹配/查找,按键注入,坐标点击/滑动,截图等能能力。
- [UiWindow<sup>9+</sup>](#uiwindow9):入口类,提供窗口属性获取,窗口拖动、调整窗口大小等能能力。
- [By](#by):提供控件特征描述能力,用于控件筛选匹配查找。从API version9开始不再维护,建议使用[[On<sup>9+</sup>](#on9)](#Driver9)。
- [UiComponent](#uicomponent):代表UI界面上的指定控件,提供控件属性获取,控件点击,滑动查找,文本注入等能力。从API version9开始不再维护,建议使用[Component<sup>9+</sup>](#component9)
- [UiDriver](#uidriver):入口类,提供控件匹配/查找,按键注入,坐标点击/滑动,截图等能能力。从API version9开始不再维护,建议使用[Driver<sup>9+</sup>](#Driver9)
R
ry 已提交
14

15 16 17 18 19 20 21
>**说明:**
>
>本模块首批接口从API version 8开始支持。后续版本的新增接口,采用上角标单独标记接口的起始版本。


## 导入模块 

22 23
```js
import {UiComponent, UiDriver, Component, Driver, UiWindow, ON, BY, MatchPattern, DisplayRotation, ResizeDirection, WindowMode, PointerMatrix} from '@ohos.uitest'
24 25
```

26
## On<sup>9+</sup>
27

28 29
UiTest框架在API9中,通过On类提供了丰富的控件特征描述API,用于进行控件筛选来匹配/查找出目标控件。<br>
On提供的API能力具有以下几个特点:<br>1、支持单属性匹配和多属性组合匹配,例如同时指定目标控件text和id。<br>2、控件属性支持多种匹配模式。<br>3、支持控件绝对定位,相对定位,可通过[ON.isBefore](#isbefore)[ON.isAfter](#isafter)等API限定邻近控件特征进行辅助定位。<br>On类提供的所有API均为同步接口,建议使用者通过静态构造器ON来链式创建On对象。
30 31

```js
32
ON.text('123').type('button')
33
```
34

35
### text<sup>9+</sup>
36

37
text(txt: string, pattern?: MatchPattern): On
38

39
指定目标控件文本属性,支持多种匹配模式,返回On对象自身。
40 41 42 43 44

**系统能力**:SystemCapability.Test.UiTest

**参数:**

45 46 47 48
| 参数名  | 类型                          | 必填 | 说明                                                |
| ------- | ----------------------------- | ---- | --------------------------------------------------- |
| txt     | string                        | 是   | 指定控件文本,用于匹配目标控件文本。                |
| pattern | [MatchPattern](#matchpattern) | 否   | 指定的文本匹配模式,默认为[EQUALS](#matchpattern)。 |
49 50 51

**返回值:**

52 53 54
| 类型       | 说明                               |
| ---------- | ---------------------------------- |
| [On](#on9) | 返回指定目标控件文本属性的On对象。 |
55 56 57

**示例:**

58
```js
59
let on = ON.text('123') //使用静态构造器ON创建On对象,指定目标控件的text属性。
60 61 62
```


63
### id<sup>9+</sup>
64

65
id(id: string): On
66

67
指定目标控件id属性,返回On对象自身。
68 69 70 71 72

**系统能力**:SystemCapability.Test.UiTest

**参数:**

73 74
| 参数名 | 类型   | 必填 | 说明             |
| ------ | ------ | ---- | ---------------- |
75
| id     | string | 是   | 指定控件的id值。 |
76 77 78

**返回值:**

79 80 81 82
| 类型       | 说明                             |
| ---------- | -------------------------------- |
| [On](#on9) | 返回指定目标控件id属性的On对象。 |

83 84
**示例:**

85
```js
86
let on = ON.id(123) //使用静态构造器ON创建On对象,指定目标控件的id属性。
87 88 89
```


90
### type<sup>9+</sup>
91

92
type(tp: string): On
93

94
指定目标控件的控件类型属性,返回On对象自身。
95 96 97 98 99

**系统能力**:SystemCapability.Test.UiTest

**参数:**

100 101 102
| 参数名 | 类型   | 必填 | 说明           |
| ------ | ------ | ---- | -------------- |
| tp     | string | 是   | 指定控件类型。 |
103 104 105

**返回值:**

106 107 108 109
| 类型       | 说明                                     |
| ---------- | ---------------------------------------- |
| [On](#on9) | 返回指定目标控件的控件类型属性的On对象。 |

110 111
**示例:**

112
```js
113
let on = ON.type('button') //使用静态构造器ON创建On对象,指定目标控件的控件类型属性。
114 115 116
```


117
### clickable<sup>9+</sup>
118

119
clickable(b?: boolean): On
120

121
指定目标控件的可点击状态属性,返回On对象自身。
122 123 124 125 126

**系统能力**:SystemCapability.Test.UiTest

**参数:**

127 128
| 参数名 | 类型    | 必填 | 说明                                                         |
| ------ | ------- | ---- | ------------------------------------------------------------ |
129
| b      | boolean | 否   | 指定控件可点击状态,true:可点击,false:不可点击。默认为true。 |
130 131 132

**返回值:**

133 134 135 136
| 类型       | 说明                                       |
| ---------- | ------------------------------------------ |
| [On](#on9) | 返回指定目标控件的可点击状态属性的On对象。 |

137 138
**示例:**

139
```js
140
let on = ON.clickable(true) //使用静态构造器ON创建On对象,指定目标控件的可点击状态属性。
141
```
142

143
### longClickable<sup>9+</sup>
144

145
longClickable(b?: boolean): On
146

147
指定目标控件的可长按点击状态属性,返回On对象自身。
148 149 150 151 152

**系统能力**:SystemCapability.Test.UiTest

**参数:**

153 154
| 参数名 | 类型    | 必填 | 说明                                                         |
| ------ | ------- | ---- | ------------------------------------------------------------ |
155
| b      | boolean | 否   | 指定控件可长按点击状态,true:可长按点击,false:不可长按点击。默认为true。 |
156 157 158

**返回值:**

159 160 161 162
| 类型       | 说明                                           |
| ---------- | ---------------------------------------------- |
| [On](#on9) | 返回指定目标控件的可长按点击状态属性的On对象。 |

163 164 165
**示例:**

```js
166
let on = ON.longClickable(true) //使用静态构造器ON创建On对象,指定目标控件的可长按点击状态属性。
167 168 169
```


170
### scrollable<sup>9+</sup>
171

172
scrollable(b?: boolean): On
173

174
指定目标控件的可滑动状态属性,返回On对象自身。
175 176 177 178 179

**系统能力**:SystemCapability.Test.UiTest

**参数:**

180 181
| 参数名 | 类型    | 必填 | 说明                                                        |
| ------ | ------- | ---- | ----------------------------------------------------------- |
182
| b      | boolean | 否   | 控件可滑动状态,true:可滑动,false:不可滑动。默认为true。 |
183 184 185

**返回值:**

186 187 188 189
| 类型       | 说明                                       |
| ---------- | ------------------------------------------ |
| [On](#on9) | 返回指定目标控件的可滑动状态属性的On对象。 |

190 191
**示例:**

192
```js
193
let on = ON.scrollable(true) //使用静态构造器ON创建On对象,指定目标控件的可滑动状态属性。
194 195
```

196
### enabled<sup>9+</sup>
197

198
enabled(b?: boolean): On
199

200
指定目标控件的使能状态属性,返回On对象自身。
201 202 203 204 205

**系统能力**:SystemCapability.Test.UiTest

**参数:**

206 207
| 参数名 | 类型    | 必填 | 说明                                                      |
| ------ | ------- | ---- | --------------------------------------------------------- |
208
| b      | boolean | 否   | 指定控件使能状态,true:使能,false:未使能。默认为true。 |
209 210 211

**返回值:**

212 213 214 215
| 类型       | 说明                                     |
| ---------- | ---------------------------------------- |
| [On](#on9) | 返回指定目标控件的使能状态属性的On对象。 |

216 217
**示例:**

218
```js
219
let on = ON.enabled(true) //使用静态构造器ON创建On对象,指定目标控件的使能状态属性。
220 221
```

222
### focused<sup>9+</sup>
223

224
focused(b?: boolean): On
225

226
指定目标控件的获焦状态属性,返回On对象自身。
227 228 229 230 231

**系统能力**:SystemCapability.Test.UiTest

**参数:**

232 233
| 参数名 | 类型    | 必填 | 说明                                                  |
| ------ | ------- | ---- | ----------------------------------------------------- |
234
| b      | boolean | 否   | 控件获焦状态,true:获焦,false:未获焦。默认为true。 |
235 236 237

**返回值:**

238 239 240 241
| 类型       | 说明                                     |
| ---------- | ---------------------------------------- |
| [On](#on9) | 返回指定目标控件的获焦状态属性的On对象。 |

242 243
**示例:**

244
```js
245
let on = ON.focused(true) //使用静态构造器ON创建On对象,指定目标控件的获焦状态属性。
246 247
```

248
### selected<sup>9+</sup>
249

250
selected(b?: boolean): On
251

252
指定目标控件的被选中状态属性,返回On对象自身。
253

254 255 256 257
**系统能力**:SystemCapability.Test.UiTest

**参数:**

258 259
| 参数名 | 类型    | 必填 | 说明                                                         |
| ------ | ------- | ---- | ------------------------------------------------------------ |
260
| b      | boolean | 否   | 指定控件被选中状态,true:被选中,false:未被选中。默认为true。 |
261 262 263

**返回值:**

264 265 266 267
| 类型       | 说明                                       |
| ---------- | ------------------------------------------ |
| [On](#on9) | 返回指定目标控件的被选中状态属性的On对象。 |

268 269 270
**示例:**

```js
271
let on = ON.selected(true) //使用静态构造器ON创建On对象,指定目标控件的被选中状态属性。
272 273
```

274
### checked<sup>9+</sup>
275

276
checked(b?: boolean): On
277

278
指定目标控件的被勾选状态属性,返回On对象自身。
279 280 281 282 283

**系统能力**:SystemCapability.Test.UiTest

**参数:**

284 285
| 参数名 | 类型    | 必填 | 说明                                                         |
| ------ | ------- | ---- | ------------------------------------------------------------ |
286
| b      | boolean | 否   | 指定控件被勾选状态,true:被勾选,false:未被勾选。默认为false。 |
287 288 289

**返回值:**

290 291 292 293
| 类型       | 说明                                       |
| ---------- | ------------------------------------------ |
| [On](#on9) | 返回指定目标控件的被勾选状态属性的On对象。 |

294 295
**示例:**

296
```js
297
let on = ON.checked(true) //使用静态构造器ON创建On对象,指定目标控件的被勾选状态属性
298
```
299

300
### checkable<sup>9+</sup>
301

302
checkable(b?: boolean): On
303

304
指定目标控件能否被勾选状态属性,返回On对象自身。
305 306 307 308 309

**系统能力**:SystemCapability.Test.UiTest

**参数:**

310 311
| 参数名 | 类型    | 必填 | 说明                                                         |
| ------ | ------- | ---- | ------------------------------------------------------------ |
312
| b      | boolean | 否   | 指定控件能否被勾选状态,true:能被勾选,false:不能被勾选。默认为false。 |
313 314 315

**返回值:**

316 317 318 319
| 类型       | 说明                                         |
| ---------- | -------------------------------------------- |
| [On](#on9) | 返回指定目标控件能否被勾选状态属性的On对象。 |

320 321 322
**示例:**

```js
323
let on = ON.checkable(true) //使用静态构造器ON创建On对象,指定目标控件的能否被勾选状态属性。
324 325
```

326
### isBefore<sup>9+</sup>
327

328
isBefore(on: On): On
329

330
指定目标控件位于给出的特征属性控件之前,返回On对象自身。
331 332 333 334 335

**系统能力**:SystemCapability.Test.UiTest

**参数:**

336 337 338
| 参数名 | 类型       | 必填 | 说明                 |
| ------ | ---------- | ---- | -------------------- |
| on     | [On](#on9) | 是   | 特征控件的属性要求。 |
339 340 341

**返回值:**

342 343 344 345
| 类型       | 说明                                                 |
| ---------- | ---------------------------------------------------- |
| [On](#on9) | 返回指定目标控件位于给出的特征属性控件之前的On对象。 |

346 347
**示例:**

348
```js
349
let on = ON.isBefore(ON.text('123')) //使用静态构造器ON创建On对象,指定目标控件位于给出的特征属性控件之前。
350 351
```

352
### isAfter<sup>9+</sup>
353

354
isAfter(on: On): On
355

356
指定目标控件位于给出的特征属性控件之后,返回On对象自身。
357 358 359 360 361

**系统能力**:SystemCapability.Test.UiTest

**参数:**

362 363 364
| 参数名 | 类型       | 必填 | 说明                 |
| ------ | ---------- | ---- | -------------------- |
| on     | [On](#on9) | 是   | 特征控件的属性要求。 |
365 366 367

**返回值:**

368 369 370 371
| 类型       | 说明                                                 |
| ---------- | ---------------------------------------------------- |
| [On](#on9) | 返回指定目标控件位于给出的特征属性控件之后的On对象。 |

372 373
**示例:**

374
```js
375
let on = ON.isAfter(ON.text('123')) //使用静态构造器ON创建On对象,指定目标控件位于给出的特征属性控件之后。
376 377
```

378
## Component<sup>9+</sup>
379

380
UiTest框架在API9中,Component类代表了UI界面上的一个控件,提供控件属性获取,控件点击,滑动查找,文本注入等API。
381 382
该类提供的所有方法都使用Promise方式作为异步方法,需使用await调用。

383
### click<sup>9+</sup>
384

385
click(): Promise\<void>
386

387
控件对象进行点击操作。
388

389
**系统能力**:SystemCapability.Test.UiTest
390

391
**错误码:**
392

393
以下错误码的详细介绍请参见[uitest测试框架错误码](../errorcodes/errorcode-uitest.md)
394

395 396 397 398
| 错误码ID | 错误码信息                               |
| -------- | ---------------------------------------- |
| 17000002 | API does not allow calling concurrently. |
| 17000004 | Component lost/UiWindow lost.            |
399 400 401

**示例:**

402
```js
403
async function demo() {
404 405
    let driver = Driver.create()
    let button = await driver.findComponent(ON.type('button'))
406 407
    await button.click()
}
408 409
```

410
### doubleClick<sup>9+</sup>
411

412
doubleClick(): Promise\<void>
413 414 415 416 417

控件对象进行双击操作。

**系统能力**:SystemCapability.Test.UiTest

418 419 420 421 422 423 424 425 426
**错误码:**

以下错误码的详细介绍请参见[uitest测试框架错误码](../errorcodes/errorcode-uitest.md)

| 错误码ID | 错误码信息                               |
| -------- | ---------------------------------------- |
| 17000002 | API does not allow calling concurrently. |
| 17000004 | Component lost/UiWindow lost.            |

427 428
**示例:**

429
```js
430
async function demo() {
431 432
    let driver = Driver.create()
    let button = await driver.findComponent(ON.type('button'))
433
    await button.doubleClick()
434
}
435 436
```

437
### longClick<sup>9+</sup>
438

439
longClick(): Promise\<void>
440 441 442 443 444

控件对象进行长按操作。

**系统能力**:SystemCapability.Test.UiTest

445 446 447 448 449 450 451 452 453
**错误码:**

以下错误码的详细介绍请参见[uitest测试框架错误码](../errorcodes/errorcode-uitest.md)

| 错误码ID | 错误码信息                               |
| -------- | ---------------------------------------- |
| 17000002 | API does not allow calling concurrently. |
| 17000004 | Component lost/UiWindow lost.            |

454 455
**示例:**

456
```js
457
async function demo() {
458 459
    let driver = Driver.create()
    let button = await driver.findComponent(ON.type('button'))
460 461
    await button.longClick()
}
462 463
```

464
### getId<sup>9+</sup>
465

466
getId(): Promise\<string>
467 468 469 470 471 472 473

获取控件对象的id值。

**系统能力**:SystemCapability.Test.UiTest

**返回值:**

474 475
| 类型             | 说明                            |
| ---------------- | ------------------------------- |
476
| Promise\<string> | 以Promise形式返回的控件的id值。 |
477

478
**错误码:**
479

480
以下错误码的详细介绍请参见[uitest测试框架错误码](../errorcodes/errorcode-uitest.md)
481

482 483 484 485
| 错误码ID | 错误码信息                               |
| -------- | ---------------------------------------- |
| 17000002 | API does not allow calling concurrently. |
| 17000004 | Component lost/UiWindow lost.            |
486 487 488

**示例:**

489
```js
490
async function demo() {
491 492 493
    let driver = Driver.create()
    let button = await driver.findComponent(ON.type('button'))
    let num = await button.getId()
494
}
495 496
```

497
### getText<sup>9+</sup>
498

499
getText(): Promise\<string>
500 501 502 503 504 505 506

获取控件对象的文本信息。

**系统能力**:SystemCapability.Test.UiTest

**返回值:**

507 508 509
| 类型             | 说明                              |
| ---------------- | --------------------------------- |
| Promise\<string> | 以Promise形式返回控件的文本信息。 |
510

511 512 513 514 515 516 517 518 519
**错误码:**

以下错误码的详细介绍请参见[uitest测试框架错误码](../errorcodes/errorcode-uitest.md)

| 错误码ID | 错误码信息                               |
| -------- | ---------------------------------------- |
| 17000002 | API does not allow calling concurrently. |
| 17000004 | Component lost/UiWindow lost.            |

520 521
**示例:**

522
```js
523
async function demo() {
524 525
    let driver = Driver.create()
    let button = await driver.findComponent(ON.type('button'))
526 527
    let text = await button.getText()
}
528 529
```

530
### getType<sup>9+</sup>
531

532
getType(): Promise\<string>
533 534 535 536 537 538 539

获取控件对象的控件类型。

**系统能力**:SystemCapability.Test.UiTest

**返回值:**

540 541 542
| 类型             | 说明                          |
| ---------------- | ----------------------------- |
| Promise\<string> | 以Promise形式返回控件的类型。 |
543

544 545 546 547 548 549 550 551 552
**错误码:**

以下错误码的详细介绍请参见[uitest测试框架错误码](../errorcodes/errorcode-uitest.md)

| 错误码ID | 错误码信息                               |
| -------- | ---------------------------------------- |
| 17000002 | API does not allow calling concurrently. |
| 17000004 | Component lost/UiWindow lost.            |

553 554
**示例:**

555
```js
556
async function demo() {
557 558
    let driver = Driver.create()
    let button = await driver.findComponent(ON.type('button'))
559 560
    let type = await button.getType()
}
561 562
```

563
### getBounds<sup>9+</sup>
564

565
getBounds(): Promise\<Rect>
566 567 568 569 570 571 572

获取控件对象的边框信息。

**系统能力**:SystemCapability.Test.UiTest

**返回值:**

573 574 575
| 类型                     | 说明                                  |
| ------------------------ | ------------------------------------- |
| Promise\<[Rect](#rect9)> | 以Promise形式返回控件对象的边框信息。 |
576

577 578 579 580 581 582 583 584 585
**错误码:**

以下错误码的详细介绍请参见[uitest测试框架错误码](../errorcodes/errorcode-uitest.md)

| 错误码ID | 错误码信息                               |
| -------- | ---------------------------------------- |
| 17000002 | API does not allow calling concurrently. |
| 17000004 | Component lost/UiWindow lost.            |

586 587 588 589
**示例:**

```js
async function demo() {
590 591
    let driver = Driver.create()
    let button = await driver.findComponent(ON.type('button'))
592 593 594 595
    let rect = await button.getBounds()
}
```

596
### getBoundsCenter<sup>9+</sup>
597 598 599 600 601 602 603 604 605

getBoundsCenter(): Promise\<Point>

获取控件对象的中心点信息。

**系统能力**:SystemCapability.Test.UiTest

**返回值:**

606 607 608
| 类型                       | 说明                                    |
| -------------------------- | --------------------------------------- |
| Promise\<[Point](#point9)> | 以Promise形式返回控件对象的中心点信息。 |
609

610 611 612 613 614 615 616 617 618
**错误码:**

以下错误码的详细介绍请参见[uitest测试框架错误码](../errorcodes/errorcode-uitest.md)

| 错误码ID | 错误码信息                               |
| -------- | ---------------------------------------- |
| 17000002 | API does not allow calling concurrently. |
| 17000004 | Component lost/UiWindow lost.            |

619 620 621 622
**示例:**

```js
async function demo() {
623 624
    let driver = Driver.create()
    let button = await driver.findComponent(ON.type('button'))
625 626 627 628
    let point = await button.getBoundsCenter()
}
```

629
### isClickable<sup>9+</sup>
630

R
ry 已提交
631
isClickable(): Promise\<boolean>
632 633 634 635 636 637 638

获取控件对象可点击状态。

**系统能力**:SystemCapability.Test.UiTest

**返回值:**

639 640
| 类型              | 说明                                                         |
| ----------------- | ------------------------------------------------------------ |
641
| Promise\<boolean> | 以Promise形式返回控件对象可点击状态,true:可点击,false:不可点击。 |
642

643 644 645 646 647 648 649 650 651
**错误码:**

以下错误码的详细介绍请参见[uitest测试框架错误码](../errorcodes/errorcode-uitest.md)

| 错误码ID | 错误码信息                               |
| -------- | ---------------------------------------- |
| 17000002 | API does not allow calling concurrently. |
| 17000004 | Component lost/UiWindow lost.            |

652 653
**示例:**

654
```js
655
async function demo() {
656 657
    let driver = Driver.create()
    let button = await driver.findComponent(ON.type('button'))
658 659 660 661 662 663 664
    if(await button.isClickable()) {
        console.info('This button can be Clicked')
    }
    else{
        console.info('This button can not be Clicked')
    }
}
665 666
```

667
### isLongClickable<sup>9+</sup>
668

R
ry 已提交
669
isLongClickable(): Promise\<boolean> 
670

671 672 673 674 675 676
获取控件对象可长按点击状态。

**系统能力**:SystemCapability.Test.UiTest

**返回值:**

677 678
| 类型              | 说明                                                         |
| ----------------- | ------------------------------------------------------------ |
679
| Promise\<boolean> | 以Promise形式返回控件对象能否长按点击状态,true:可长按点击,false:不可长按点击。 |
680

681 682 683 684 685 686 687 688 689
**错误码:**

以下错误码的详细介绍请参见[uitest测试框架错误码](../errorcodes/errorcode-uitest.md)

| 错误码ID | 错误码信息                               |
| -------- | ---------------------------------------- |
| 17000002 | API does not allow calling concurrently. |
| 17000004 | Component lost/UiWindow lost.            |

690 691 692 693
**示例:**

```js
async function demo() {
694 695
    let driver = Driver.create()
    let button = await driver.findComponent(ON.type('button'))
696 697 698 699 700 701 702 703 704
    if(await button.isLongClickable()) {
        console.info('This button can longClick')
    }
    else{
        console.info('This button can not longClick')
    }
}
```

705
### isChecked<sup>9+</sup>
706

R
ry 已提交
707
isChecked(): Promise\<boolean>
708 709 710 711 712 713 714

获取控件对象被勾选状态。

**系统能力**:SystemCapability.Test.UiTest

**返回值:**

715 716
| 类型              | 说明                                                         |
| ----------------- | ------------------------------------------------------------ |
717
| Promise\<boolean> | 以Promise形式返回控件对象被勾选状态,true:被勾选,false:未被勾选。 |
718

719 720 721 722 723 724 725 726 727
**错误码:**

以下错误码的详细介绍请参见[uitest测试框架错误码](../errorcodes/errorcode-uitest.md)

| 错误码ID | 错误码信息                               |
| -------- | ---------------------------------------- |
| 17000002 | API does not allow calling concurrently. |
| 17000004 | Component lost/UiWindow lost.            |

728 729 730 731
**示例:**

```js
async function demo() {
732 733
    let driver = Driver.create()
    let button = await driver.findComponent(ON.type('Checkbox'))
734 735 736 737 738 739 740 741 742
    if(await checkBox.isChecked) {
        console.info('This checkBox is checked')
    }
    else{
        console.info('This checkBox is not checked')
    }
}
```

743
### isCheckable<sup>9+</sup>
744

R
ry 已提交
745
isCheckable(): Promise\<boolean>
746 747

获取控件对象能否被勾选的属性。
748 749 750 751 752

**系统能力**:SystemCapability.Test.UiTest

**返回值:**

753 754
| 错误码ID          | 错误码信息                                                   |
| ----------------- | ------------------------------------------------------------ |
755
| Promise\<boolean> | 以Promise形式返回控件对象能否被勾选的属性,true:可被勾选,false:不可被勾选。 |
756

757 758 759 760 761 762 763 764 765
**错误码:**

以下错误码的详细介绍请参见[uitest测试框架错误码](../errorcodes/errorcode-uitest.md)

| 类型     | 说明                                     |
| -------- | ---------------------------------------- |
| 17000002 | API does not allow calling concurrently. |
| 17000004 | Component lost/UiWindow lost.            |

766 767
**示例:**

768 769
```js
async function demo() {
770 771
    let driver = Driver.create()
    let button = await driver.findComponent(ON.type('Checkbox'))
772 773 774 775 776 777 778
    if(await checkBox.isCheckable) {
        console.info('This checkBox is checkable')
    }
    else{
        console.info('This checkBox is not checkable')
    }
}
779
```
780

781
### isScrollable<sup>9+</sup>
782

R
ry 已提交
783
isScrollable(): Promise\<boolean>
784 785 786 787 788 789 790

获取控件对象可滑动状态。

**系统能力**:SystemCapability.Test.UiTest

**返回值:**

791 792
| 类型              | 说明                                                         |
| ----------------- | ------------------------------------------------------------ |
793
| Promise\<boolean> | 以Promise形式返回控件对象可滑动状态,true:可滑动,false:不可滑动。 |
794

795 796 797 798 799 800 801 802 803
**错误码:**

以下错误码的详细介绍请参见[uitest测试框架错误码](../errorcodes/errorcode-uitest.md)

| 错误码ID | 错误码信息                               |
| -------- | ---------------------------------------- |
| 17000002 | API does not allow calling concurrently. |
| 17000004 | Component lost/UiWindow lost.            |

804 805 806
**示例:**

```js
807
async function demo() {
808 809
    let driver = Driver.create()
    let button = await driver.findComponent(ON.scrollable(true))
810 811 812 813 814 815 816
    if(await scrollBar.isScrollable()) {
        console.info('This scrollBar can be operated')
    }
    else{
        console.info('This scrollBar can not be operated')
    }
}
817 818 819
```


820
### isEnabled<sup>9+</sup>
821

R
ry 已提交
822
isEnabled(): Promise\<boolean>
823 824 825 826 827 828 829

获取控件使能状态。

**系统能力**:SystemCapability.Test.UiTest

**返回值:**

830 831
| 类型              | 说明                                                       |
| ----------------- | ---------------------------------------------------------- |
832
| Promise\<boolean> | 以Promise形式返回控件使能状态,true:使能,false:未使能。 |
833

834 835 836 837 838 839 840 841 842
**错误码:**

以下错误码的详细介绍请参见[uitest测试框架错误码](../errorcodes/errorcode-uitest.md)

| 错误码ID | 错误码信息                               |
| -------- | ---------------------------------------- |
| 17000002 | API does not allow calling concurrently. |
| 17000004 | Component lost/UiWindow lost.            |

843 844
**示例:**

845
```js
846
async function demo() {
847 848
    let driver = Driver.create()
    let button = await driver.findComponent(ON.type('button'))
849 850 851 852 853 854 855 856
    if(await button.isEnabled()) {
        console.info('This button can be operated')
    }
    else{
        console.info('This button can not be operated')
    }
}

857 858
```

859
### isFocused<sup>9+</sup>
860

R
ry 已提交
861
isFocused(): Promise\<boolean>
862 863 864 865 866 867 868

判断控件对象是否获焦。

**系统能力**:SystemCapability.Test.UiTest

**返回值:**

869 870
| 类型              | 说明                                                         |
| ----------------- | ------------------------------------------------------------ |
871
| Promise\<boolean> | 以Promise形式返回控件对象是否获焦,true:获焦,false:未获焦。 |
872

873 874 875 876 877 878 879 880 881
**错误码:**

以下错误码的详细介绍请参见[uitest测试框架错误码](../errorcodes/errorcode-uitest.md)

| 错误码ID | 错误码信息                               |
| -------- | ---------------------------------------- |
| 17000002 | API does not allow calling concurrently. |
| 17000004 | Component lost/UiWindow lost.            |

882 883
**示例:**

884
```js
885
async function demo() {
886 887
    let driver = Driver.create()
    let button = await driver.findComponent(ON.type('button'))
888 889 890 891 892 893 894
    if(await button.isFocused()) {
        console.info('This button is focused')
	}
    else{
        console.info('This button is not focused')
	}
}
895 896
```

897
### isSelected<sup>9+</sup>
898

R
ry 已提交
899
isSelected(): Promise\<boolean>
900 901 902 903 904 905 906

获取控件对象被选中状态。

**系统能力**:SystemCapability.Test.UiTest

**返回值:**

907 908
| 类型              | 说明                                                  |
| ----------------- | ----------------------------------------------------- |
909
| Promise\<boolean> | 控件对象被选中的状态,true:被选中,false:未被选中。 |
910

911 912 913 914 915 916 917 918 919
**错误码:**

以下错误码的详细介绍请参见[uitest测试框架错误码](../errorcodes/errorcode-uitest.md)

| 错误码ID | 错误码信息                               |
| -------- | ---------------------------------------- |
| 17000002 | API does not allow calling concurrently. |
| 17000004 | Component lost/UiWindow lost.            |

920 921
**示例:**

922
```js
923
async function demo() {
924 925
    let driver = Driver.create()
    let button = await driver.findComponent(ON.type('button'))
926 927 928 929 930 931 932
    if(await button.isSelected()) {
        console.info('This button is selected')
	}
    else{
        console.info('This button is not selected')
    }
}
933 934
```

935
### inputText<sup>9+</sup>
936

937
inputText(text: string): Promise\<void>
938 939 940 941 942 943 944

向控件中输入文本(适用于文本框控件)。

**系统能力**:SystemCapability.Test.UiTest

**参数:**

945 946 947
| 参数名 | 类型   | 必填 | 说明             |
| ------ | ------ | ---- | ---------------- |
| text   | string | 是   | 输入的文本信息。 |
948

949 950 951 952 953 954 955 956 957
**错误码:**

以下错误码的详细介绍请参见[uitest测试框架错误码](../errorcodes/errorcode-uitest.md)

| 错误码ID | 错误码信息                               |
| -------- | ---------------------------------------- |
| 17000002 | API does not allow calling concurrently. |
| 17000004 | Component lost/UiWindow lost.            |

958 959
**示例:**

960 961
```js
async function demo() {
962 963
    let driver = Driver.create()
    let button = await driver.findComponent(ON.text('hello world'))
964 965
    await text.inputText('123')
}
966
```
967

968
### clearText<sup>9+</sup>
969

970
clearText(): Promise\<void>
971 972 973 974 975

清除控件的文本信息(适用于文本框控件)。

**系统能力**:SystemCapability.Test.UiTest

976 977 978 979 980 981 982
**错误码:**

| 错误码ID | 错误码信息                               |
| -------- | ---------------------------------------- |
| 17000002 | API does not allow calling concurrently. |
| 17000004 | Component lost/UiWindow lost.            |

983 984 985
**示例:**

```js
986
async function demo() {
987 988
    let driver = Driver.create()
    let button = await driver.findComponent(ON.text('hello world'))
989
    await text.clearText()
990
}
991 992
```

993
### scrollSearch<sup>9+</sup>
994

995
scrollSearch(on: ON): Promise\<Component>
996

997
在控件上滑动查找目标控件(适用于List等支持滑动的控件)。
998 999 1000 1001 1002

**系统能力**:SystemCapability.Test.UiTest

**参数:**

1003 1004 1005
| 参数名 | 类型       | 必填 | 说明                 |
| ------ | ---------- | ---- | -------------------- |
| on     | [On](#on9) | 是   | 目标控件的属性要求。 |
1006 1007 1008

**返回值:**

1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020
| 类型                               | 说明                                  |
| ---------------------------------- | ------------------------------------- |
| Promise\<[Component](#component9)> | 以Promise形式返回找到的目标控件对象。 |

**错误码:**

以下错误码的详细介绍请参见[uitest测试框架错误码](../errorcodes/errorcode-uitest.md)

| 错误码ID | 错误码信息                               |
| -------- | ---------------------------------------- |
| 17000002 | API does not allow calling concurrently. |
| 17000004 | Component lost/UiWindow lost.            |
1021 1022 1023

**示例:**

1024
```js
1025
async function demo() {
1026 1027 1028
    let driver = Driver.create()
    let button = await driver.findComponent(ON.type('Scroll'))
    let button = await scrollBar.scrollSearch(ON.text('next page'))
1029
}
1030 1031
```

1032
### scrollToTop<sup>9+</sup>
1033

1034
scrollToTop(speed?: number): Promise\<void>
1035 1036 1037 1038 1039

在控件上滑动到顶部(适用于List等支持滑动的控件)。

**系统能力**:SystemCapability.Test.UiTest

1040 1041
**参数:**

1042 1043
| 参数名 | 类型   | 必填 | 说明                                                         |
| ------ | ------ | ---- | ------------------------------------------------------------ |
1044 1045 1046 1047 1048 1049 1050 1051 1052 1053
| speed  | number | 否   | 滑动速率,范围:200-15000,不在范围内设为默认值为600,单位:像素点/秒。 |

**错误码:**

以下错误码的详细介绍请参见[uitest测试框架错误码](../errorcodes/errorcode-uitest.md)

| 错误码ID | 错误码信息                               |
| -------- | ---------------------------------------- |
| 17000002 | API does not allow calling concurrently. |
| 17000004 | Component lost/UiWindow lost.            |
1054

1055 1056 1057 1058
**示例:**

```js
async function demo() {
1059 1060
    let driver = Driver.create()
    let button = await driver.findComponent(ON.type('Scroll'))
1061 1062 1063 1064
    await scrollBar.scrollToTop()
}
```

1065
### scrollToBottom<sup>9+</sup>
1066

1067
scrollToBottom(speed?: number): Promise\<void>
1068 1069 1070 1071 1072

在控件上滑动到底部(适用于List等支持滑动的控件)。

**系统能力**:SystemCapability.Test.UiTest

1073 1074
**参数:**

1075 1076
| 参数名 | 类型   | 必填 | 说明                                                         |
| ------ | ------ | ---- | ------------------------------------------------------------ |
1077 1078 1079 1080 1081 1082 1083 1084 1085 1086
| speed  | number | 否   | 滑动速率,范围:200-15000,不在范围内设为默认值为600,单位:像素点/秒。 |

**错误码:**

以下错误码的详细介绍请参见[uitest测试框架错误码](../errorcodes/errorcode-uitest.md)

| 错误码ID | 错误码信息                               |
| -------- | ---------------------------------------- |
| 17000002 | API does not allow calling concurrently. |
| 17000004 | Component lost/UiWindow lost.            |
1087

1088 1089 1090 1091
**示例:**

```js
async function demo() {
1092 1093
    let driver = Driver.create()
    let button = await driver.findComponent(ON.type('Scroll'))
1094 1095 1096 1097
    await scrollBar.scrollToBottom()
}
```

1098
### dragTo<sup>9+</sup>
1099

1100
dragTo(target: Component): Promise\<void>
1101 1102 1103 1104 1105 1106 1107

将控件拖拽至目标控件处。

**系统能力**:SystemCapability.Test.UiTest

**参数:**

1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119
| 参数名 | 类型                     | 必填 | 说明       |
| ------ | ------------------------ | ---- | ---------- |
| target | [Component](#component9) | 是   | 目标控件。 |

**错误码:**

以下错误码的详细介绍请参见[uitest测试框架错误码](../errorcodes/errorcode-uitest.md)

| 错误码ID | 错误码信息                               |
| -------- | ---------------------------------------- |
| 17000002 | API does not allow calling concurrently. |
| 17000004 | Component lost/UiWindow lost.            |
1120 1121 1122 1123 1124

**示例:**

```js
async function demo() {
1125 1126 1127
    let driver = Driver.create()
    let button = await driver.findComponent(ON.type('button'))
    let text = await driver.findComponent(ON.text('hello world'))
1128
    await button.dragTo(text)
1129 1130 1131
    }
```

1132 1133 1134 1135 1136 1137 1138 1139 1140 1141
### pinchOut<sup>9+</sup>

pinchOut(scale: number): Promise\<void>

将控件按指定的比例进行捏合放大。

**系统能力**:SystemCapability.Test.UiTest

**参数:**

1142 1143 1144
| 参数名 | 类型   | 必填 | 说明             |
| ------ | ------ | ---- | ---------------- |
| scale  | number | 是   | 指定放大的比例。 |
1145

1146 1147 1148 1149 1150 1151 1152 1153 1154
**错误码:**

以下错误码的详细介绍请参见[uitest测试框架错误码](../errorcodes/errorcode-uitest.md)

| 错误码ID | 错误码信息                               |
| -------- | ---------------------------------------- |
| 17000002 | API does not allow calling concurrently. |
| 17000004 | Component lost/UiWindow lost.            |

1155 1156 1157 1158
**示例:**

```js
async function demo() {
1159 1160
    let driver = Driver.create()
    let button = await driver.findComponent(ON.type('image'))
1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174
    await image.pinchOut(1.5)
    }
```

### pinchIn<sup>9+</sup>

pinchIn(scale: number): Promise\<void>

将控件按指定的比例进行捏合缩小。

**系统能力**:SystemCapability.Test.UiTest

**参数:**

1175 1176 1177
| 参数名 | 类型   | 必填 | 说明             |
| ------ | ------ | ---- | ---------------- |
| scale  | number | 是   | 指定缩小的比例。 |
1178

1179 1180 1181 1182 1183 1184 1185 1186 1187
**错误码:**

以下错误码的详细介绍请参见[uitest测试框架错误码](../errorcodes/errorcode-uitest.md)

| 错误码ID | 错误码信息                               |
| -------- | ---------------------------------------- |
| 17000002 | API does not allow calling concurrently. |
| 17000004 | Component lost/UiWindow lost.            |

1188 1189 1190 1191
**示例:**

```js
async function demo() {
1192 1193
    let driver = Driver.create()
    let button = await driver.findComponent(ON.type('image'))
1194 1195 1196 1197
    await image.pinchIn(0.5)
    }
```

1198
## Driver<sup>9+</sup>
1199

1200 1201
UiTest框架在API9中,Driver类为uitest测试框架的总入口,提供控件匹配/查找,按键注入,坐标点击/滑动,截图等API。
该类提供的方法除Driver.create()以外的所有方法都使用Promise方式作为异步方法,需使用await调用。
1202

1203
### create<sup>9+</sup>
1204

1205
static create(): Driver
1206

1207
静态方法,构造一个Driver对象,并返回该对象。
1208 1209 1210 1211 1212

**系统能力**:SystemCapability.Test.UiTest

**返回值:**

1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223
| 错误码ID | 错误码信息             |
| -------- | ---------------------- |
| Driver   | 返回构造的Driver对象。 |

**错误码:**

以下错误码的详细介绍请参见[uitest测试框架错误码](../errorcodes/errorcode-uitest.md)

| 类型     | 说明               |
| -------- | ------------------ |
| 17000001 | Initialize failed. |
1224 1225 1226

**示例:**

1227
```js
1228
async function demo() {
1229
    let driver = Driver.create()
1230
}
1231 1232
```

1233
### delayMs<sup>9+</sup>
1234

1235
delayMs(duration: number): Promise\<void>
1236

1237
Driver对象在给定的时间内延时。
1238 1239 1240 1241 1242

**系统能力**:SystemCapability.Test.UiTest

**参数:**

1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253
| 参数名   | 类型   | 必填 | 说明                   |
| -------- | ------ | ---- | ---------------------- |
| duration | number | 是   | 给定的时间,单位:ms。 |

**错误码:**

以下错误码的详细介绍请参见[uitest测试框架错误码](../errorcodes/errorcode-uitest.md)

| 错误码ID | 错误码信息                               |
| -------- | ---------------------------------------- |
| 17000002 | API does not allow calling concurrently. |
1254 1255 1256

**示例:**

1257
```js
1258
async function demo() {
1259
    let driver = Driver.create()
1260 1261
    await driver.delayMs(1000)
}
1262 1263
```

1264
### findComponent<sup>9+</sup>
1265

1266
findComponent(on: On): Promise\<Component>
1267

1268
在Driver对象中,根据给出的目标控件属性要求查找目标控件。
1269 1270 1271 1272 1273

**系统能力**:SystemCapability.Test.UiTest

**参数:**

1274 1275 1276
| 参数名 | 类型       | 必填 | 说明                 |
| ------ | ---------- | ---- | -------------------- |
| on     | [On](#on9) | 是   | 目标控件的属性要求。 |
1277 1278 1279

**返回值:**

1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290
| 类型                               | 说明                              |
| ---------------------------------- | --------------------------------- |
| Promise\<[Component](#Component9)> | 以Promise形式返回找到的控件对象。 |

**错误码:**

以下错误码的详细介绍请参见[uitest测试框架错误码](../errorcodes/errorcode-uitest.md)

| 错误码ID | 错误码信息                               |
| -------- | ---------------------------------------- |
| 17000002 | API does not allow calling concurrently. |
1291 1292 1293

**示例:**

1294
```js
1295
async function demo() {
1296 1297
    let driver = Driver.create()
    let button = await driver.findComponent(ON.text('next page'))
1298
}
1299 1300
```

1301
### findComponents<sup>9+</sup>
1302

1303
findComponents(on: On): Promise\<Array\<Component>>
1304

1305
在Driver对象中,根据给出的目标控件属性要求查找出所有匹配控件,以列表保存。
1306 1307 1308 1309 1310

**系统能力**:SystemCapability.Test.UiTest

**参数:**

1311 1312 1313
| 参数名 | 类型       | 必填 | 说明                 |
| ------ | ---------- | ---- | -------------------- |
| on     | [On](#on9) | 是   | 目标控件的属性要求。 |
1314 1315 1316

**返回值:**

1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327
| 类型                                       | 说明                                    |
| ------------------------------------------ | --------------------------------------- |
| Promise\<Array\<[Component](#Component9)>> | 以Promise形式返回找到的控件对象的列表。 |

**错误码:**

以下错误码的详细介绍请参见[uitest测试框架错误码](../errorcodes/errorcode-uitest.md)

| 错误码ID | 错误码信息                               |
| -------- | ---------------------------------------- |
| 17000002 | API does not allow calling concurrently. |
1328 1329 1330

**示例:**

1331
```js
1332
async function demo() {
1333 1334
    let driver = Driver.create()
    let buttonList = await driver.findComponents(ON.text('next page'))
1335
}
1336 1337
```

1338
### findWindow<sup>9+</sup>
1339 1340 1341 1342 1343 1344 1345 1346 1347

findWindow(filter: WindowFilter): Promise\<UiWindow>

通过指定窗口的属性来查找目标窗口。

**系统能力**:SystemCapability.Test.UiTest

**参数:**

1348 1349 1350
| 参数名 | 类型                           | 必填 | 说明             |
| ------ | ------------------------------ | ---- | ---------------- |
| filter | [WindowFilter](#windowfilter9) | 是   | 目标窗口的属性。 |
1351 1352 1353

**返回值:**

1354 1355 1356
| 类型                             | 说明                                  |
| -------------------------------- | ------------------------------------- |
| Promise\<[UiWindow](#uiwindow9)> | 以Promise形式返回找到的目标窗口对象。 |
1357

1358 1359 1360 1361 1362 1363 1364 1365
**错误码:**

以下错误码的详细介绍请参见[uitest测试框架错误码](../errorcodes/errorcode-uitest.md)

| 错误码ID | 错误码信息                               |
| -------- | ---------------------------------------- |
| 17000002 | API does not allow calling concurrently. |

1366 1367 1368 1369
**示例:**

```js
async function demo() {
1370
    let driver = Driver.create()
1371 1372 1373 1374
    let window = await driver.findWindow({actived: true})
}
```

1375
### waitForComponent<sup>9+</sup>
1376

1377
waitForComponent(on: On, time: number): Promise\<Component>
1378

1379
在Driver对象中,在用户给定的时间内,持续查找满足控件属性要求的目标控件。
1380 1381 1382 1383 1384

**系统能力**:SystemCapability.Test.UiTest

**参数:**

1385 1386 1387 1388
| 参数名 | 类型       | 必填 | 说明                             |
| ------ | ---------- | ---- | -------------------------------- |
| On     | [On](#on9) | 是   | 目标控件的属性要求。             |
| time   | number     | 是   | 查找目标控件的持续时间。单位ms。 |
1389 1390 1391

**返回值:**

1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402
| 类型                              | 说明                              |
| --------------------------------- | --------------------------------- |
| Promise\<[Component](#Component)> | 以Promise形式返回找到的控件对象。 |

**错误码:**

以下错误码的详细介绍请参见[uitest测试框架错误码](../errorcodes/errorcode-uitest.md)

| 错误码ID | 错误码信息                               |
| -------- | ---------------------------------------- |
| 17000002 | API does not allow calling concurrently. |
1403 1404 1405 1406 1407

**示例:**

```js
async function demo() {
1408 1409
    let driver = Driver.create()
    let button = await driver.waitForComponent(ON.text('next page'),500)
1410 1411 1412
}
```

1413
### assertComponentExist<sup>9+</sup>
1414

1415
assertComponentExist(on: On): Promise\<void>
1416

1417
断言API,用于断言当前界面存在满足给出的目标控件属性的控件。
1418 1419 1420 1421 1422

**系统能力**:SystemCapability.Test.UiTest

**参数:**

1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434
| 参数名 | 类型       | 必填 | 说明                 |
| ------ | ---------- | ---- | -------------------- |
| on     | [On](#on9) | 是   | 目标控件的属性要求。 |

**错误码:**

以下错误码的详细介绍请参见[uitest测试框架错误码](../errorcodes/errorcode-uitest.md)

| 错误码ID | 错误码信息                               |
| -------- | ---------------------------------------- |
| 17000002 | API does not allow calling concurrently. |
| 17000003 | Component existence assertion failed.    |
1435 1436 1437

**示例:**

1438
```js
1439
async function demo() {
1440 1441
    let driver = Driver.create()
    await driver.assertComponentExist(ON.text('next page'))
1442
}
1443 1444
```

1445
### pressBack<sup>9+</sup>
1446

1447
pressBack(): Promise\<void>
1448

1449
Driver对象进行点击BACK键的操作。
1450 1451 1452

**系统能力**:SystemCapability.Test.UiTest

1453 1454 1455 1456 1457 1458 1459 1460
**错误码:**

以下错误码的详细介绍请参见[uitest测试框架错误码](../errorcodes/errorcode-uitest.md)

| 错误码ID | 错误码信息                               |
| -------- | ---------------------------------------- |
| 17000002 | API does not allow calling concurrently. |

1461 1462
**示例:**

1463
```js
1464
async function demo() {
1465
    let driver = Driver.create()
1466 1467
    await driver.pressBack()
}
1468 1469
```

1470
### triggerKey<sup>9+</sup>
1471

1472
triggerKey(keyCode: number): Promise\<void>
1473

1474
Driver对象采取如下操作:通过key值找到对应键并点击。
1475 1476 1477 1478 1479

**系统能力**:SystemCapability.Test.UiTest

**参数:**

1480 1481 1482
| 参数名  | 类型   | 必填 | 说明          |
| ------- | ------ | ---- | ------------- |
| keyCode | number | 是   | 指定的key值。 |
1483

1484 1485 1486 1487 1488 1489 1490 1491
**错误码:**

以下错误码的详细介绍请参见[uitest测试框架错误码](../errorcodes/errorcode-uitest.md)

| 错误码ID | 错误码信息                               |
| -------- | ---------------------------------------- |
| 17000002 | API does not allow calling concurrently. |

1492 1493
**示例:**

1494
```js
1495
async function demo() {
1496
    let driver = Driver.create()
1497 1498
    await driver.triggerKey(123)
}
1499 1500
```

1501
### triggerCombineKeys<sup>9+</sup>
1502

1503
triggerCombineKeys(key0: number, key1: number, key2?: number): Promise\<void>
1504

1505
Driver对象通过给定的key值,找到对应组合键并点击。例如,Key值为(2072, 2019)时,Driver对象找到组合键并点击ctrl+c。
1506 1507 1508 1509 1510

**系统能力**:SystemCapability.Test.UiTest

**参数:**

1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523
| 参数名 | 类型   | 必填 | 说明                |
| ------ | ------ | ---- | ------------------- |
| key0   | number | 是   | 指定的第一个key值。 |
| key1   | number | 是   | 指定的第二个key值。 |
| key2   | number | 否   | 指定的第三个key值。 |

**错误码:**

以下错误码的详细介绍请参见[uitest测试框架错误码](../errorcodes/errorcode-uitest.md)

| 错误码ID | 错误码信息                               |
| -------- | ---------------------------------------- |
| 17000002 | API does not allow calling concurrently. |
1524 1525 1526

**示例:**

1527 1528
```js
async function demo() {
1529
    let driver = Driver.create()
1530
    await driver.triggerCombineKeys(2072, 2047, 2035)
1531 1532 1533
}
```

1534

1535
### click<sup>9+</sup>
1536

1537
click(x: number, y: number): Promise\<void>
1538

1539
Driver对象采取如下操作:在目标坐标点单击。
1540 1541 1542 1543 1544

**系统能力**:SystemCapability.Test.UiTest

**参数:**

1545 1546 1547 1548
| 参数名 | 类型   | 必填 | 说明                                   |
| ------ | ------ | ---- | -------------------------------------- |
| x      | number | 是   | 以number的形式传入目标点的横坐标信息。 |
| y      | number | 是   | 以number的形式传入目标点的纵坐标信息。 |
1549

1550 1551 1552 1553 1554 1555 1556 1557
**错误码:**

以下错误码的详细介绍请参见[uitest测试框架错误码](../errorcodes/errorcode-uitest.md)

| 错误码ID | 错误码信息                               |
| -------- | ---------------------------------------- |
| 17000002 | API does not allow calling concurrently. |

1558 1559
**示例:**

1560
```js
1561
async function demo() {
1562
    let driver = Driver.create()
1563 1564
    await driver.click(100,100)
}
1565 1566
```

1567
### doubleClick<sup>9+</sup>
1568

1569
doubleClick(x: number, y: number): Promise\<void>
1570

1571
Driver对象采取如下操作:在目标坐标点双击。
1572 1573 1574 1575 1576

**系统能力**:SystemCapability.Test.UiTest

**参数:**

1577 1578 1579 1580
| 参数名 | 类型   | 必填 | 说明                                   |
| ------ | ------ | ---- | -------------------------------------- |
| x      | number | 是   | 以number的形式传入目标点的横坐标信息。 |
| y      | number | 是   | 以number的形式传入目标点的纵坐标信息。 |
1581

1582 1583 1584 1585 1586 1587 1588 1589
**错误码:**

以下错误码的详细介绍请参见[uitest测试框架错误码](../errorcodes/errorcode-uitest.md)

| 错误码ID | 错误码信息                               |
| -------- | ---------------------------------------- |
| 17000002 | API does not allow calling concurrently. |

1590 1591
**示例:**

1592
```js
1593
async function demo() {
1594
    let driver = Driver.create()
1595 1596
    await driver.doubleClick(100,100)
}
1597 1598
```

1599
### longClick<sup>9+</sup>
1600

1601
longClick(x: number, y: number): Promise\<void>
1602

1603
Driver对象采取如下操作:在目标坐标点长按下。
1604 1605 1606 1607 1608

**系统能力**:SystemCapability.Test.UiTest

**参数:**

1609 1610 1611 1612
| 参数名 | 类型   | 必填 | 说明                                   |
| ------ | ------ | ---- | -------------------------------------- |
| x      | number | 是   | 以number的形式传入目标点的横坐标信息。 |
| y      | number | 是   | 以number的形式传入目标点的纵坐标信息。 |
1613

1614 1615 1616 1617 1618 1619 1620 1621
**错误码:**

以下错误码的详细介绍请参见[uitest测试框架错误码](../errorcodes/errorcode-uitest.md)

| 错误码ID | 错误码信息                               |
| -------- | ---------------------------------------- |
| 17000002 | API does not allow calling concurrently. |

1622 1623
**示例:**

1624
```js
1625
async function demo() {
1626
    let driver = Driver.create()
1627 1628
    await driver.longClick(100,100)
}
1629 1630
```

1631
### swipe<sup>9+</sup>
1632

1633
swipe(startx: number, starty: number, endx: number, endy: number, speed?: number): Promise\<void>
1634

1635
Driver对象采取如下操作:从给出的起始坐标点滑向给出的目的坐标点。
1636 1637 1638 1639 1640

**系统能力**:SystemCapability.Test.UiTest

**参数:**

1641 1642 1643 1644 1645 1646
| 参数名 | 类型   | 必填 | 说明                                                         |
| ------ | ------ | ---- | ------------------------------------------------------------ |
| startx | number | 是   | 以number的形式传入起始点的横坐标信息。                       |
| starty | number | 是   | 以number的形式传入起始点的纵坐标信息。                       |
| endx   | number | 是   | 以number的形式传入目的点的横坐标信息。                       |
| endy   | number | 是   | 以number的形式传入目的点的纵坐标信息。                       |
1647 1648 1649 1650 1651 1652 1653 1654 1655
| speed  | number | 否   | 滑动速率,范围:200-15000,不在范围内设为默认值为600,单位:像素点/秒。 |

**错误码:**

以下错误码的详细介绍请参见[uitest测试框架错误码](../errorcodes/errorcode-uitest.md)

| 错误码ID | 错误码信息                               |
| -------- | ---------------------------------------- |
| 17000002 | API does not allow calling concurrently. |
1656 1657 1658

**示例:**

1659
```js
1660
async function demo() {
1661
    let driver = Driver.create()
1662
    await driver.swipe(100,100,200,200,600)
1663
}
1664 1665
```

1666
### drag<sup>9+</sup>
1667

1668
drag(startx: number, starty: number, endx: number, endy: number, speed?: number): Promise\<void>
1669

1670
Driver对象采取如下操作:从给出的起始坐标点拖拽至给出的目的坐标点。
1671 1672 1673 1674 1675

**系统能力**:SystemCapability.Test.UiTest

**参数:**

1676 1677 1678 1679 1680 1681
| 参数名 | 类型   | 必填 | 说明                                                         |
| ------ | ------ | ---- | ------------------------------------------------------------ |
| startx | number | 是   | 以number的形式传入起始点的横坐标信息。                       |
| starty | number | 是   | 以number的形式传入起始点的纵坐标信息。                       |
| endx   | number | 是   | 以number的形式传入目的点的横坐标信息。                       |
| endy   | number | 是   | 以number的形式传入目的点的纵坐标信息。                       |
1682 1683 1684 1685 1686 1687 1688 1689 1690
| speed  | number | 否   | 滑动速率,范围:200-15000,不在范围内设为默认值为600,单位:像素点/秒。 |

**错误码:**

以下错误码的详细介绍请参见[uitest测试框架错误码](../errorcodes/errorcode-uitest.md)

| 错误码ID | 错误码信息                               |
| -------- | ---------------------------------------- |
| 17000002 | API does not allow calling concurrently. |
1691 1692 1693 1694 1695

**示例:**

```js
async function demo() {
1696
    let driver = Driver.create()
1697
    await driver.drag(100,100,200,200,600)
1698 1699 1700
}
```

1701
### screenCap<sup>9+</sup>
1702

R
ry 已提交
1703
screenCap(savePath: string): Promise\<boolean>
1704

1705
Driver对象采取如下操作:捕获当前屏幕,并保存为PNG格式的图片至给出的保存路径中。
1706 1707 1708 1709 1710

**系统能力**:SystemCapability.Test.UiTest

**参数:**

1711 1712 1713
| 参数名   | 类型   | 必填 | 说明           |
| -------- | ------ | ---- | -------------- |
| savePath | string | 是   | 文件保存路径。 |
1714

1715 1716
**返回值:**

1717 1718
| 类型              | 说明                                   |
| ----------------- | -------------------------------------- |
R
ry 已提交
1719
| Promise\<boolean> | 截图操作是否成功完成。成功完成为true。 |
1720

1721 1722 1723 1724 1725 1726 1727 1728
**错误码:**

以下错误码的详细介绍请参见[uitest测试框架错误码](../errorcodes/errorcode-uitest.md)

| 错误码ID | 错误码信息                               |
| -------- | ---------------------------------------- |
| 17000002 | API does not allow calling concurrently. |

1729 1730
**示例:**

1731
```js
1732
async function demo() {
1733
    let driver = Driver.create()
1734 1735
    await driver.screenCap('/local/tmp/')
}
1736
```
1737

1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751
### setDisplayRotation<sup>9+</sup>

setDisplayRotation(rotation: DisplayRotation): Promise\<void>

将设备的屏幕显示方向设置为指定的显示方向。

**系统能力**:SystemCapability.Test.UiTest

**参数:**

| 参数名   | 类型                                 | 必填 | 说明             |
| -------- | ------------------------------------ | ---- | ---------------- |
| rotation | [DisplayRotation](#displayrotation9) | 是   | 设备的显示方向。 |

1752 1753 1754 1755 1756 1757 1758 1759
**错误码:**

以下错误码的详细介绍请参见[uitest测试框架错误码](../errorcodes/errorcode-uitest.md)

| 错误码ID | 错误码信息                               |
| -------- | ---------------------------------------- |
| 17000002 | API does not allow calling concurrently. |

1760 1761 1762 1763
**示例:**

```js
async function demo() {
1764
    let driver = Driver.create()
1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778
    await driver.setDisplayRotation(DisplayRotation.ROTATION_180)
}
```

### getDisplayRotation<sup>9+</sup>

getDisplayRotation(): Promise\<DisplayRotation>

获取当前设备的屏幕显示方向。

**系统能力**:SystemCapability.Test.UiTest

**返回值:**

1779 1780 1781
| 类型                                           | 说明                                    |
| ---------------------------------------------- | --------------------------------------- |
| Promise\<[DisplayRotation](#displayrotation9)> | 以Promise的形式返回当前设备的显示方向。 |
1782

1783 1784 1785 1786 1787 1788 1789 1790
**错误码:**

以下错误码的详细介绍请参见[uitest测试框架错误码](../errorcodes/errorcode-uitest.md)

| 错误码ID | 错误码信息                               |
| -------- | ---------------------------------------- |
| 17000002 | API does not allow calling concurrently. |

1791 1792 1793 1794
**示例:**

```js
async function demo() {
1795
    let driver = Driver.create()
1796 1797 1798 1799 1800 1801
    let rotation = await driver.getDisplayRotation()
}
```

### setDisplayRotationEnabled<sup>9+</sup>

R
ry 已提交
1802
setDisplayRotationEnabled(enabled: boolean): Promise\<void>
1803 1804 1805 1806 1807 1808 1809

启用/禁用设备旋转屏幕的功能。

**系统能力**:SystemCapability.Test.UiTest

**参数:**

1810 1811
| 参数名  | 类型    | 必填 | 说明                                                    |
| ------- | ------- | ---- | ------------------------------------------------------- |
1812
| enabled | boolean | 是   | 能否旋转屏幕的标识,true:可以旋转,false:不可以旋转。 |
1813

1814 1815 1816 1817 1818 1819 1820 1821
**错误码:**

以下错误码的详细介绍请参见[uitest测试框架错误码](../errorcodes/errorcode-uitest.md)

| 错误码ID | 错误码信息                               |
| -------- | ---------------------------------------- |
| 17000002 | API does not allow calling concurrently. |

1822 1823 1824 1825
**示例:**

```js
async function demo() {
1826
    let driver = Driver.create()
1827 1828 1829 1830 1831 1832
    await driver.setDisplayRotationEnabled(false)
}
```

### getDisplaySize<sup>9+</sup>

1833
getDisplaySize(): Promise\<Point>
1834 1835 1836 1837 1838 1839 1840

获取当前设备的屏幕大小。

**系统能力**:SystemCapability.Test.UiTest

**返回值:**

1841 1842 1843
| 类型                       | 说明                                    |
| -------------------------- | --------------------------------------- |
| Promise\<[Point](#point9)> | 以Promise的形式返回当前设备的屏幕大小。 |
1844

1845 1846 1847 1848 1849 1850 1851 1852
**错误码:**

以下错误码的详细介绍请参见[uitest测试框架错误码](../errorcodes/errorcode-uitest.md)

| 错误码ID | 错误码信息                               |
| -------- | ---------------------------------------- |
| 17000002 | API does not allow calling concurrently. |

1853 1854 1855 1856
**示例:**

```js
async function demo() {
1857
    let driver = Driver.create()
1858 1859 1860 1861 1862 1863
    let size = await driver.getDisplaySize()
}
```

### getDisplayDensity<sup>9+</sup>

1864
getDisplayDensity(): Promise\<Point>
1865 1866 1867 1868 1869 1870 1871

获取当前设备的屏幕的分辨率。

**系统能力**:SystemCapability.Test.UiTest

**返回值:**

1872 1873 1874
| 类型                       | 说明                                        |
| -------------------------- | ------------------------------------------- |
| Promise\<[Point](#point9)> | 以Promise的形式返回当前设备的屏幕的分辨率。 |
1875

1876 1877 1878 1879 1880 1881 1882 1883
**错误码:**

以下错误码的详细介绍请参见[uitest测试框架错误码](../errorcodes/errorcode-uitest.md)

| 错误码ID | 错误码信息                               |
| -------- | ---------------------------------------- |
| 17000002 | API does not allow calling concurrently. |

1884 1885 1886 1887
**示例:**

```js
async function demo() {
1888
    let driver = Driver.create()
1889 1890 1891 1892 1893 1894
    let density = await driver.getDisplayDensity()
}
```

### wakeUpDisplay<sup>9+</sup>

1895
wakeUpDisplay(): Promise\<void>
1896 1897 1898 1899 1900

唤醒当前设备的屏幕。

**系统能力**:SystemCapability.Test.UiTest

1901 1902 1903 1904 1905 1906 1907 1908
**错误码:**

以下错误码的详细介绍请参见[uitest测试框架错误码](../errorcodes/errorcode-uitest.md)

| 错误码ID | 错误码信息                               |
| -------- | ---------------------------------------- |
| 17000002 | API does not allow calling concurrently. |

1909 1910 1911 1912
**示例:**

```js
async function demo() {
1913
    let driver = Driver.create()
1914 1915 1916 1917 1918 1919
    await driver.wakeUpDisplay()
}
```

### pressHome<sup>9+</sup>

1920
pressHome(): Promise\<void>
1921 1922 1923 1924 1925

设备返回到桌面。

**系统能力**:SystemCapability.Test.UiTest

1926 1927 1928 1929 1930 1931 1932 1933
**错误码:**

以下错误码的详细介绍请参见[uitest测试框架错误码](../errorcodes/errorcode-uitest.md)

| 错误码ID | 错误码信息                               |
| -------- | ---------------------------------------- |
| 17000002 | API does not allow calling concurrently. |

1934 1935 1936 1937
**示例:**

```js
async function demo() {
1938
    let driver = Driver.create()
1939 1940 1941 1942 1943 1944
    await driver.pressHome()
}
```

### waitForIdle<sup>9+</sup>

R
ry 已提交
1945
waitForIdle(idleTime: number, timeout: number): Promise\<boolean>
1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959

判断当前界面的所有控件是否已经空闲。

**系统能力**:SystemCapability.Test.UiTest

**参数:**

| 参数名   | 类型   | 必填 | 说明                                                         |
| -------- | ------ | ---- | ------------------------------------------------------------ |
| idleTime | number | 是   | 空闲时间的阈值。在这个时间段控件不发生变化,视为该控件空闲,单位:毫秒。 |
| timeout  | number | 是   | 等待空闲的最大时间,单位:毫秒。                             |

**返回值:**

1960 1961
| 类型              | 说明                                                |
| ----------------- | --------------------------------------------------- |
R
ry 已提交
1962
| Promise\<boolean> | 以Promise的形式返回当前界面的所有控件是否已经空闲。 |
1963

1964 1965 1966 1967 1968 1969 1970 1971
**错误码:**

以下错误码的详细介绍请参见[uitest测试框架错误码](../errorcodes/errorcode-uitest.md)

| 错误码ID | 错误码信息                               |
| -------- | ---------------------------------------- |
| 17000002 | API does not allow calling concurrently. |

1972 1973 1974 1975
**示例:**

```js
async function demo() {
1976
    let driver = Driver.create()
1977 1978 1979 1980 1981 1982
    let idled = await driver.waitForIdle(4000,5000)
}
```

### fling<sup>9+</sup>

1983
fling(from: Point, to: Point, stepLen: number, speed: number): Promise\<void>
1984

1985
模拟手指滑动后脱离屏幕的快速滑动操作。
1986 1987 1988 1989 1990 1991 1992

**系统能力**:SystemCapability.Test.UiTest

**参数:**

| 参数名  | 类型             | 必填 | 说明                                                         |
| ------- | ---------------- | ---- | ------------------------------------------------------------ |
1993
| from    | [Point](#point9) | 是   | 手指接触屏幕的起始点坐标。                                   |
1994
| to      | [Point](#point9) | 是   | 手指离开屏幕时的坐标点。                                     |
1995
| stepLen | number           | 是   | 间隔距离,单位:像素点。                                     |
1996 1997 1998 1999 2000 2001 2002 2003 2004
| speed   | number           | 是   | 滑动速率,范围:200-15000,不在范围内设为默认值为600,单位:像素点/秒。 |

**错误码:**

以下错误码的详细介绍请参见[uitest测试框架错误码](../errorcodes/errorcode-uitest.md)

| 错误码ID | 错误码信息                               |
| -------- | ---------------------------------------- |
| 17000002 | API does not allow calling concurrently. |
2005 2006 2007 2008 2009

**示例:**

```js
async function demo() {
2010
    let driver = Driver.create()
2011 2012 2013 2014 2015 2016
    await driver.fling({X: 500, Y: 480},{X: 450, Y: 480},5,600)
}
```

### injectMultiPointerAction<sup>9+</sup>

R
ry 已提交
2017
injectMultiPointerAction(pointers: PointerMatrix, speed?: number): Promise\<boolean>
2018 2019 2020 2021 2022 2023 2024 2025 2026 2027

向设备注入多指操作。

**系统能力**:SystemCapability.Test.UiTest

**参数:**

| 参数名   | 类型                             | 必填 | 说明                                                         |
| -------- | -------------------------------- | ---- | ------------------------------------------------------------ |
| pointers | [PointerMatrix](#pointermatrix9) | 是   | 起始点的坐标。                                               |
2028
| speed    | number                           | 否   | 滑动速率,范围:200-15000,不在范围内设为默认值为600,单位:像素点/秒。 |
2029 2030 2031

**返回值:**

2032 2033
| 类型              | 说明                                      |
| ----------------- | ----------------------------------------- |
R
ry 已提交
2034
| Promise\<boolean> | 以Promise的形式返回植入操作是否成功完成。 |
2035

2036 2037 2038 2039 2040 2041 2042 2043
**错误码:**

以下错误码的详细介绍请参见[uitest测试框架错误码](../errorcodes/errorcode-uitest.md)

| 错误码ID | 错误码信息                               |
| -------- | ---------------------------------------- |
| 17000002 | API does not allow calling concurrently. |

2044 2045 2046 2047 2048
**示例:**

```js
async function demo() {
    let pointers = PointerMatrix.create(2,3)
R
ry 已提交
2049 2050 2051 2052 2053 2054
    pointers.setPoint(0,0,{X:230,Y:480})
    pointers.setPoint(0,1,{X:250,Y:380})
    pointers.setPoint(0,2,{X:270,Y:280})
    pointers.setPoint(1,0,{X:230,Y:680})
    pointers.setPoint(1,1,{X:240,Y:580})
    pointers.setPoint(1,2,{X:250,Y:480})
2055 2056 2057 2058
    await driver.injectMultiPointerAction(pointers)
}
```

2059
## PointerMatrix<sup>9+</sup>
2060

2061 2062 2063
表示存储多指操作中每根手指每一步动作的坐标点及其行为的二维数组。

### create<sup>9+</sup>
2064

2065
static create(fingers: number, steps: number): PointerMatrix
2066

2067
静态方法,构造一个PointerMatrix对象,并返回该对象。
2068

2069
**系统能力**:SystemCapability.Test.UiTest
2070

2071
**参数:**
2072

2073 2074 2075 2076
| 参数名  | 类型   | 必填 | 说明                                       |
| ------- | ------ | ---- | ------------------------------------------ |
| fingers | number | 是   | 多指操作中注入的手指数,取值范围:[1,10]。 |
| steps   | number | 是   | 每根手指操作的步骤数,取值范围:[1,1000]。 |
2077

2078
**返回值:**
2079

2080 2081 2082
| 类型                             | 说明                          |
| -------------------------------- | ----------------------------- |
| [PointerMatrix](#pointermatrix9) | 返回构造的PointerMatrix对象。 |
2083 2084 2085 2086 2087

**示例:**

```js
async function demo() {
2088
    let pointerMatrix = PointerMatrix.create(2,3)
2089
}
2090 2091
```

2092
### setPoint<sup>9+</sup>
2093

2094
setPoint(finger: number, step: number, point: Point): void
2095

2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164
设置PointerMatrix对象中指定手指和步骤对应动作的坐标点。

**系统能力**:SystemCapability.Test.UiTest

**参数:**

| 参数名 | 类型             | 必填 | 说明             |
| ------ | ---------------- | ---- | ---------------- |
| finger | number           | 是   | 手指的序号。     |
| step   | number           | 是   | 步骤的序号。     |
| point  | [Point](#point9) | 是   | 该行为的坐标点。 |

**示例:**

```js
async function demo() {
    let pointers = PointerMatrix.create(2,3)
    pointers.setPoint(0,0,{X:230,Y:480})
    pointers.setPoint(0,1,{X:250,Y:380})
    pointers.setPoint(0,2,{X:270,Y:280})
    pointers.setPoint(1,0,{X:230,Y:680})
    pointers.setPoint(1,1,{X:240,Y:580})
    pointers.setPoint(1,2,{X:250,Y:480})
}
```

## UiWindow<sup>9+</sup>

UiTest中,UiWindow类代表了UI界面上的一个窗口,提供窗口属性获取,窗口拖动、调整窗口大小等API。
该类提供的所有方法都使用Promise方式作为异步方法,需使用await调用。

### getBundleName<sup>9+</sup>

getBundleName(): Promise\<string>

获取窗口的包名信息。

**系统能力**:SystemCapability.Test.UiTest

**返回值:**

| 类型             | 说明                              |
| ---------------- | --------------------------------- |
| Promise\<string> | 以Promise形式返回窗口的包名信息。 |

**错误码:**

以下错误码的详细介绍请参见[uitest测试框架错误码](../errorcodes/errorcode-uitest.md)

| 错误码ID | 错误码信息                               |
| -------- | ---------------------------------------- |
| 17000002 | API does not allow calling concurrently. |
| 17000004 | Component lost/UiWindow lost.            |

**示例:**

```js
async function demo() {
    let driver = Driver.create()
    let window = await driver.findWindow({actived: true})
    let name = await window.getBundleName()
}
```

### getBounds<sup>9+</sup>

getBounds(): Promise\<Rect>

获取窗口的边框信息。
2165 2166 2167 2168 2169

**系统能力**:SystemCapability.Test.UiTest

**返回值:**

2170 2171 2172
| 类型                     | 说明                              |
| ------------------------ | --------------------------------- |
| Promise\<[Rect](#rect9)> | 以Promise形式返回窗口的边框信息。 |
2173

2174 2175 2176 2177 2178 2179 2180 2181 2182
**错误码:**

以下错误码的详细介绍请参见[uitest测试框架错误码](../errorcodes/errorcode-uitest.md)

| 错误码ID | 错误码信息                               |
| -------- | ---------------------------------------- |
| 17000002 | API does not allow calling concurrently. |
| 17000004 | Component lost/UiWindow lost.            |

2183 2184 2185 2186
**示例:**

```js
async function demo() {
2187
    let driver = Driver.create()
2188 2189 2190 2191 2192
    let window = await driver.findWindow({actived: true})
    let rect = await window.getBounds()
}
```

2193
### getTitle<sup>9+</sup>
2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206

getTitle(): Promise\<string>

获取窗口的标题信息。

**系统能力**:SystemCapability.Test.UiTest

**返回值:**

| 类型             | 说明                              |
| ---------------- | --------------------------------- |
| Promise\<string> | 以Promise形式返回窗口的标题信息。 |

2207 2208 2209 2210 2211 2212 2213 2214 2215
**错误码:**

以下错误码的详细介绍请参见[uitest测试框架错误码](../errorcodes/errorcode-uitest.md)

| 错误码ID | 错误码信息                               |
| -------- | ---------------------------------------- |
| 17000002 | API does not allow calling concurrently. |
| 17000004 | Component lost/UiWindow lost.            |

2216 2217 2218 2219
**示例:**

```js
async function demo() {
2220
    let driver = Driver.create()
2221 2222 2223 2224 2225
    let window = await driver.findWindow({actived: true})
    let rect = await window.getTitle()
}
```

2226
### getWindowMode<sup>9+</sup>
2227 2228 2229 2230 2231 2232 2233 2234 2235

getWindowMode(): Promise\<WindowMode>

获取窗口的窗口模式信息。

**系统能力**:SystemCapability.Test.UiTest

**返回值:**

2236 2237
| 类型                                 | 说明                                  |
| ------------------------------------ | ------------------------------------- |
2238
| Promise\<[WindowMode](#windowmode9)> | 以Promise形式返回窗口的窗口模式信息。 |
2239

2240 2241 2242 2243 2244 2245 2246 2247 2248
**错误码:**

以下错误码的详细介绍请参见[uitest测试框架错误码](../errorcodes/errorcode-uitest.md)

| 错误码ID | 错误码信息                               |
| -------- | ---------------------------------------- |
| 17000002 | API does not allow calling concurrently. |
| 17000004 | Component lost/UiWindow lost.            |

2249 2250 2251 2252
**示例:**

```js
async function demo() {
2253
    let driver = Driver.create()
2254
    let window = await driver.findWindow({actived: true})
2255
    let mode = await window.getWindowMode()
2256 2257 2258
}
```

2259
### isFocused<sup>9+</sup>
2260

R
ry 已提交
2261
isFocused(): Promise\<boolean>
2262 2263 2264 2265 2266 2267 2268

判断窗口是否获焦。

**系统能力**:SystemCapability.Test.UiTest

**返回值:**

2269 2270
| 类型              | 说明                                                         |
| ----------------- | ------------------------------------------------------------ |
2271
| Promise\<boolean> | 以Promise形式返回窗口对象是否获焦,true:获焦,false:未获焦。 |
2272

2273 2274 2275 2276 2277 2278 2279 2280 2281
**错误码:**

以下错误码的详细介绍请参见[uitest测试框架错误码](../errorcodes/errorcode-uitest.md)

| 错误码ID | 错误码信息                               |
| -------- | ---------------------------------------- |
| 17000002 | API does not allow calling concurrently. |
| 17000004 | Component lost/UiWindow lost.            |

2282 2283 2284 2285
**示例:**

```js
async function demo() {
2286
    let driver = Driver.create()
2287 2288 2289 2290 2291
    let window = await driver.findWindow({actived: true})
    let focused = await window.isFocused()
}
```

2292
### isActived<sup>9+</sup>
2293

R
ry 已提交
2294
isActived(): Promise\<boolean>
2295 2296 2297 2298 2299 2300 2301

判断窗口是否为用户交互窗口。

**系统能力**:SystemCapability.Test.UiTest

**返回值:**

2302 2303
| 类型              | 说明                                                         |
| ----------------- | ------------------------------------------------------------ |
2304
| Promise\<boolean> | 以Promise形式返回窗口对象是否为用户交互窗口,true:交互窗口,false:非交互窗口。 |
2305

2306 2307 2308 2309 2310 2311 2312 2313 2314
**错误码:**

以下错误码的详细介绍请参见[uitest测试框架错误码](../errorcodes/errorcode-uitest.md)

| 错误码ID | 错误码信息                               |
| -------- | ---------------------------------------- |
| 17000002 | API does not allow calling concurrently. |
| 17000004 | Component lost/UiWindow lost.            |

2315 2316 2317 2318
**示例:**

```js
async function demo() {
2319
    let driver = Driver.create()
2320 2321 2322 2323 2324
    let window = await driver.findWindow({actived: true})
    let focused = await window.isActived()
}
```

2325
### focus<sup>9+</sup>
2326

2327
focus(): Promise\<void>
2328

2329
让窗口获焦。
2330 2331 2332

**系统能力**:SystemCapability.Test.UiTest

2333
**错误码:**
2334

2335 2336 2337 2338 2339 2340
以下错误码的详细介绍请参见[uitest测试框架错误码](../errorcodes/errorcode-uitest.md)

| 错误码ID | 错误码信息                               |
| -------- | ---------------------------------------- |
| 17000002 | API does not allow calling concurrently. |
| 17000004 | Component lost/UiWindow lost.            |
2341 2342 2343 2344 2345

**示例:**

```js
async function demo() {
2346
    let driver = Driver.create()
2347 2348 2349 2350 2351
    let window = await driver.findWindow({actived: true})
    await window.focus()
}
```

2352
### moveTo<sup>9+</sup>
2353

2354
moveTo(x: number, y: number): Promise\<void>
2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366

将窗口移动到目标点。适用于支持移动的窗口。

**系统能力**:SystemCapability.Test.UiTest

**参数:**

| 参数名 | 类型   | 必填 | 说明                                   |
| ------ | ------ | ---- | -------------------------------------- |
| x      | number | 是   | 以number的形式传入目标点的横坐标信息。 |
| y      | number | 是   | 以number的形式传入目标点的纵坐标信息。 |

2367 2368 2369
**错误码:**

以下错误码的详细介绍请参见[uitest测试框架错误码](../errorcodes/errorcode-uitest.md)
2370

2371 2372 2373 2374 2375
| 错误码ID | 错误码信息                               |
| -------- | ---------------------------------------- |
| 17000002 | API does not allow calling concurrently. |
| 17000004 | Component lost/UiWindow lost.            |
| 17000005 | This operation is not supported.         |
2376 2377 2378 2379 2380

**示例:**

```js
async function demo() {
2381
    let driver = Driver.create()
2382
    let window = await driver.findWindow({actived: true})
2383
    await window.moveTo(100, 100)
2384 2385 2386
}
```

2387
### resize<sup>9+</sup>
2388

2389
resize(wide: number, height: number, direction: ResizeDirection): Promise\<void>
2390 2391 2392 2393 2394 2395 2396

根据传入的宽、高和调整方向来调整窗口的大小。适用于支持大小调整的窗口。

**系统能力**:SystemCapability.Test.UiTest

**参数:**

2397 2398 2399 2400
| 参数名    | 类型                                 | 必填 | 说明                                                         |
| --------- | ------------------------------------ | ---- | ------------------------------------------------------------ |
| wide      | number                               | 是   | 以number的形式传入调整后窗口的宽度。                         |
| height    | number                               | 是   | 以number的形式传入调整后窗口的高度。                         |
2401
| direction | [ResizeDirection](#resizedirection9) | 是   | 以[ResizeDirection](#resizedirection9)的形式传入窗口调整的方向。 |
2402

2403
**错误码:**
2404

2405 2406 2407 2408 2409 2410 2411
以下错误码的详细介绍请参见[uitest测试框架错误码](../errorcodes/errorcode-uitest.md)

| 错误码ID | 错误码信息                               |
| -------- | ---------------------------------------- |
| 17000002 | API does not allow calling concurrently. |
| 17000004 | Component lost/UiWindow lost.            |
| 17000005 | This operation is not supported.         |
2412 2413 2414 2415 2416

**示例:**

```js
async function demo() {
2417
    let driver = Driver.create()
2418
    let window = await driver.findWindow({actived: true})
2419
    await window.resize(100, 100, ResizeDirection.LEFT)
2420 2421 2422
}
```

2423
### split<sup>9+</sup>
2424

2425
split(): Promise\<void>
2426

2427
将窗口模式切换成分屏模式。适用于支持切屏操作的窗口。
2428 2429 2430

**系统能力**:SystemCapability.Test.UiTest

2431 2432 2433
**错误码:**

以下错误码的详细介绍请参见[uitest测试框架错误码](../errorcodes/errorcode-uitest.md)
2434

2435 2436 2437 2438 2439
| 类型     | 说明                                     |
| -------- | ---------------------------------------- |
| 17000002 | API does not allow calling concurrently. |
| 17000004 | Component lost/UiWindow lost.            |
| 17000005 | This operation is not supported.         |
2440 2441 2442 2443 2444

**示例:**

```js
async function demo() {
2445
    let driver = Driver.create()
2446 2447 2448 2449 2450
    let window = await driver.findWindow({actived: true})
    await window.split()
}
```

2451
### maximize<sup>9+</sup>
2452

2453
maximize(): Promise\<void>
2454 2455 2456 2457 2458

将窗口最大化。适用于支持窗口最大化操作的窗口。

**系统能力**:SystemCapability.Test.UiTest

2459
**错误码:**
2460

2461 2462 2463 2464 2465 2466 2467
以下错误码的详细介绍请参见[uitest测试框架错误码](../errorcodes/errorcode-uitest.md)

| 错误码ID | 错误码信息                               |
| -------- | ---------------------------------------- |
| 17000002 | API does not allow calling concurrently. |
| 17000004 | Component lost/UiWindow lost.            |
| 17000005 | This operation is not supported.         |
2468 2469 2470 2471 2472

**示例:**

```js
async function demo() {
2473
    let driver = Driver.create()
2474 2475 2476 2477 2478
    let window = await driver.findWindow({actived: true})
    await window.maximize()
}
```

2479
### minimize<sup>9+</sup>
2480

2481
minimize(): Promise\<void>
2482 2483 2484 2485 2486

将窗口最小化。适用于支持窗口最小化操作的窗口。

**系统能力**:SystemCapability.Test.UiTest

2487 2488 2489
**错误码:**

以下错误码的详细介绍请参见[uitest测试框架错误码](../errorcodes/errorcode-uitest.md)
2490

2491 2492 2493 2494 2495
| 错误码ID | 错误码信息                               |
| -------- | ---------------------------------------- |
| 17000002 | API does not allow calling concurrently. |
| 17000004 | Component lost/UiWindow lost.            |
| 17000005 | This operation is not supported.         |
2496 2497 2498 2499 2500

**示例:**

```js
async function demo() {
2501
    let driver = Driver.create()
2502 2503 2504 2505 2506
    let window = await driver.findWindow({actived: true})
    await window.minimize()
}
```

2507
### resume<sup>9+</sup>
2508

2509
resume(): Promise\<void>
2510 2511 2512 2513 2514

将窗口恢复到之前的窗口模式。

**系统能力**:SystemCapability.Test.UiTest

2515
**错误码:**
2516

2517 2518 2519 2520 2521 2522 2523
以下错误码的详细介绍请参见[uitest测试框架错误码](../errorcodes/errorcode-uitest.md)

| 错误码ID | 错误码信息                               |
| -------- | ---------------------------------------- |
| 17000002 | API does not allow calling concurrently. |
| 17000004 | Component lost/UiWindow lost.            |
| 17000005 | This operation is not supported.         |
2524 2525 2526 2527 2528

**示例:**

```js
async function demo() {
2529
    let driver = Driver.create()
2530 2531 2532 2533 2534
    let window = await driver.findWindow({actived: true})
    await window.resume()
}
```

2535
### close<sup>9+</sup>
2536

2537
close(): Promise\<void>
2538 2539 2540 2541 2542

将窗口关闭。

**系统能力**:SystemCapability.Test.UiTest

2543 2544 2545
**错误码:**

以下错误码的详细介绍请参见[uitest测试框架错误码](../errorcodes/errorcode-uitest.md)
2546

2547 2548 2549 2550 2551
| 错误码ID | 错误码信息                               |
| -------- | ---------------------------------------- |
| 17000002 | API does not allow calling concurrently. |
| 17000004 | Component lost/UiWindow lost.            |
| 17000005 | This operation is not supported.         |
2552 2553 2554 2555 2556

**示例:**

```js
async function demo() {
2557
    let driver = Driver.create()
2558 2559 2560 2561 2562
    let window = await driver.findWindow({actived: true})
    await window.close()
}
```

2563
## MatchPattern
2564 2565 2566

控件属性支持的匹配模式。

2567
**系统能力**:SystemCapability.Test.UiTest
2568 2569 2570 2571 2572 2573 2574

| 名称        | 值   | 说明           |
| ----------- | ---- | -------------- |
| EQUALS      | 0    | 等于给定值。   |
| CONTAINS    | 1    | 包含给定值。   |
| STARTS_WITH | 2    | 从给定值开始。 |
| ENDS_WITH   | 3    | 以给定值结束。 |
2575 2576 2577 2578 2579

## ResizeDirection<sup>9+</sup>

窗口调整大小的方向。

2580
**系统能力**:SystemCapability.Test.UiTest
2581

2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592
| 名称       | 说明     |
| ---------- | -------- |
| LEFT       | 左方。   |
| RIGHT      | 右方。   |
| UP         | 上方。   |
| DOWN       | 下方。   |
| LEFT_UP    | 左上方。 |
| LEFT_DOWN  | 左下方。 |
| RIGHT_UP   | 右上方。 |
| RIGHT_DOWN | 右下方。 |

2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616
## Point<sup>9+</sup>

坐标点信息。

**系统能力**:SystemCapability.Test.UiTest

| 名称 | 参数类型 | 可读 | 可写 | 描述             |
| ---- | -------- | ---- | ---- | ---------------- |
| X    | number   | 是   | 否   | 坐标点的横坐标。 |
| Y    | number   | 是   | 否   | 坐标点的纵坐标。 |

## Rect<sup>9+</sup>

控件的边框信息。

**系统能力**:SystemCapability.Test.UiTest

| 名称    | 参数类型 | 可读 | 可写 | 描述                      |
| ------- | -------- | ---- | ---- | ------------------------- |
| leftX   | number   | 是   | 否   | 控件边框的左上角的X坐标。 |
| topY    | number   | 是   | 否   | 控件边框的左上角的Y坐标。 |
| rightX  | number   | 是   | 否   | 控件边框的右下角的X坐标。 |
| bottomY | number   | 是   | 否   | 控件边框的右下角的Y坐标。 |

2617 2618
## WindowMode<sup>9+</sup>

2619 2620
**系统能力**:SystemCapability.Test.UiTest

2621 2622 2623 2624 2625 2626 2627
窗口的窗口模式。

| 名称       | 说明       |
| ---------- | ---------- |
| FULLSCREEN | 全屏模式。 |
| PRIMARY    | 主窗口。   |
| SECONDARY  | 第二窗口。 |
2628
| FLOATING   | 浮动窗口。 |
2629 2630 2631 2632 2633 2634 2635

## DisplayRotation<sup>9+</sup>

**系统能力**:SystemCapability.Test.UiTest

设备显示器的显示方向。

2636 2637 2638 2639 2640 2641
| 名称         | 说明                                     |
| ------------ | ---------------------------------------- |
| ROTATION_0   | 设备显示器不旋转,初始形态垂直显示。     |
| ROTATION_90  | 设备显示器顺时针旋转90°,水平显示。      |
| ROTATION_180 | 设备显示器顺时针旋转180°,逆向垂直显示。 |
| ROTATION_270 | 设备显示器顺时针旋转270°,逆向水平显示。 |
2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690

## WindowFilter<sup>9+</sup>

窗口的标志属性信息。

**系统能力**:SystemCapability.Test.UiTest

| 名称       | 参数类型 | 必填 | 可读 | 可写 | 描述                       |
| ---------- | -------- | ---- | ---- | ---- | -------------------------- |
| bundleName | string   | 否   | 是   | 否   | 窗口对应的包名。           |
| title      | string   | 否   | 是   | 否   | 窗口的标题。               |
| focused    | boolean  | 否   | 是   | 否   | 窗口是否获焦。             |
| actived    | boolean  | 否   | 是   | 否   | 窗口是否正与用户进行交互。 |

## By<sup>(deprecated)</sup>

UiTest框架通过By类提供了丰富的控件特征描述API,用于进行控件筛选来匹配/查找出目标控件。<br>
By提供的API能力具有以下几个特点:<br>1、支持单属性匹配和多属性组合匹配,例如同时指定目标控件text和id。<br>2、控件属性支持多种匹配模式。<br>3、支持控件绝对定位,相对定位,可通过[By.isBefore](#isbefore)[By.isAfter](#isafter)等API限定邻近控件特征进行辅助定位。<br>By类提供的所有API均为同步接口,建议使用者通过静态构造器BY来链式创建By对象。

从API version9开始不再维护,建议使用[On<sup>9+</sup>](#On9)

```js
BY.text('123').type('button')
```

### text<sup>(deprecated)</sup>

text(txt: string, pattern?: MatchPattern): By

指定目标控件文本属性,支持多种匹配模式,返回By对象自身。

从API version9开始不再维护,建议使用[text<sup>9+</sup>](#text9)

**系统能力**:SystemCapability.Test.UiTest

**参数:**

| 参数名  | 类型                          | 必填 | 说明                                                |
| ------- | ----------------------------- | ---- | --------------------------------------------------- |
| txt     | string                        | 是   | 指定控件文本,用于匹配目标控件文本。                |
| pattern | [MatchPattern](#matchpattern) | 否   | 指定的文本匹配模式,默认为[EQUALS](#matchpattern)。 |

**返回值:**

| 类型      | 说明                               |
| --------- | ---------------------------------- |
| [By](#by) | 返回指定目标控件文本属性的By对象。 |

**示例:**

```js
let by = BY.text('123') //使用静态构造器BY创建by对象,指定目标控件的text属性。
```


### key<sup>(deprecated)</sup>

key(key: string): By

指定目标控件key值属性,返回By对象自身。

从API version9开始不再维护,建议使用[id<sup>9+</sup>](#id9)

**系统能力**:SystemCapability.Test.UiTest

**参数:**

| 参数名 | 类型   | 必填 | 说明              |
| ------ | ------ | ---- | ----------------- |
| key    | string | 是   | 指定控件的Key值。 |

**返回值:**

| 类型      | 说明                                |
| --------- | ----------------------------------- |
| [By](#by) | 返回指定目标控件key值属性的By对象。 |

**示例:**

```js
let by = BY.key('123') //使用静态构造器BY创建by对象,指定目标控件的key值属性。
```


### id<sup>(deprecated)</sup>

id(id: number): By

指定目标控件id属性,返回By对象自身。

从API version9开始不再维护,被废弃。

**系统能力**:SystemCapability.Test.UiTest

**参数:**

| 参数名 | 类型   | 必填 | 说明             |
| ------ | ------ | ---- | ---------------- |
| id     | number | 是   | 指定控件的id值。 |

**返回值:**

| 类型      | 说明                             |
| --------- | -------------------------------- |
| [By](#by) | 返回指定目标控件id属性的By对象。 |

**示例:**

```js
let by = BY.id(123) //使用静态构造器BY创建by对象,指定目标控件的id属性。
```


### type<sup>(deprecated)</sup>

type(tp: string): By

指定目标控件的控件类型属性,返回By对象自身。

从API version9开始不再维护,建议使用[type<sup>9+</sup>](#type9)

**系统能力**:SystemCapability.Test.UiTest

**参数:**

| 参数名 | 类型   | 必填 | 说明           |
| ------ | ------ | ---- | -------------- |
| tp     | string | 是   | 指定控件类型。 |

**返回值:**

| 类型      | 说明                                     |
| --------- | ---------------------------------------- |
| [By](#by) | 返回指定目标控件的控件类型属性的By对象。 |

**示例:**

```js
let by = BY.type('button') //使用静态构造器BY创建by对象,指定目标控件的控件类型属性。
```


### clickable<sup>(deprecated)</sup>

clickable(b?: boolean): By

指定目标控件的可点击状态属性,返回By对象自身。

从API version9开始不再维护,建议使用[clickable<sup>9+</sup>](#clickable9)

**系统能力**:SystemCapability.Test.UiTest

**参数:**

| 参数名 | 类型    | 必填 | 说明                                                         |
| ------ | ------- | ---- | ------------------------------------------------------------ |
| b      | boolean | 否   | 指定控件可点击状态,true:可点击,false:不可点击。默认为true。 |

**返回值:**

| 类型      | 说明                                       |
| --------- | ------------------------------------------ |
| [By](#by) | 返回指定目标控件的可点击状态属性的By对象。 |

**示例:**

```js
let by = BY.clickable(true) //使用静态构造器BY创建by对象,指定目标控件的可点击状态属性。
```


### scrollable<sup>(deprecated)</sup>

scrollable(b?: boolean): By

指定目标控件的可滑动状态属性,返回By对象自身。

从API version9开始不再维护,建议使用[scrollable<sup>9+</sup>](#scrollable9)

**系统能力**:SystemCapability.Test.UiTest

**参数:**

| 参数名 | 类型    | 必填 | 说明                                                        |
| ------ | ------- | ---- | ----------------------------------------------------------- |
| b      | boolean | 否   | 控件可滑动状态,true:可滑动,false:不可滑动。默认为true。 |

**返回值:**

| 类型      | 说明                                       |
| --------- | ------------------------------------------ |
| [By](#by) | 返回指定目标控件的可滑动状态属性的By对象。 |

**示例:**

```js
let by = BY.scrollable(true) //使用静态构造器BY创建by对象,指定目标控件的可滑动状态属性。
```

### enabled<sup>(deprecated)</sup>

enabled(b?: boolean): By

指定目标控件的使能状态属性,返回By对象自身。

从API version9开始不再维护,建议使用[enabled<sup>9+</sup>](#enabled9)

**系统能力**:SystemCapability.Test.UiTest

**参数:**

| 参数名 | 类型    | 必填 | 说明                                                      |
| ------ | ------- | ---- | --------------------------------------------------------- |
| b      | boolean | 否   | 指定控件使能状态,true:使能,false:未使能。默认为true。 |

**返回值:**

| 类型      | 说明                                     |
| --------- | ---------------------------------------- |
| [By](#by) | 返回指定目标控件的使能状态属性的By对象。 |

**示例:**

```js
let by = BY.enabled(true) //使用静态构造器BY创建by对象,指定目标控件的使能状态属性。
```

### focused<sup>(deprecated)</sup>

focused(b?: boolean): By

指定目标控件的获焦状态属性,返回By对象自身。

从API version9开始不再维护,建议使用[focused<sup>9+</sup>](#focused9)

**系统能力**:SystemCapability.Test.UiTest

**参数:**

| 参数名 | 类型    | 必填 | 说明                                                  |
| ------ | ------- | ---- | ----------------------------------------------------- |
| b      | boolean | 否   | 控件获焦状态,true:获焦,false:未获焦。默认为true。 |

**返回值:**

| 类型      | 说明                                     |
| --------- | ---------------------------------------- |
| [By](#by) | 返回指定目标控件的获焦状态属性的By对象。 |

**示例:**

```js
let by = BY.focused(true) //使用静态构造器BY创建by对象,指定目标控件的获焦状态属性。
```

### selected<sup>(deprecated)</sup>

selected(b?: boolean): By

指定目标控件的被选中状态属性,返回By对象自身。

从API version9开始不再维护,建议使用[selected<sup>9+</sup>](#selected9)

**系统能力**:SystemCapability.Test.UiTest

**参数:**

| 参数名 | 类型    | 必填 | 说明                                                         |
| ------ | ------- | ---- | ------------------------------------------------------------ |
| b      | boolean | 否   | 指定控件被选中状态,true:被选中,false:未被选中。默认为true。 |

**返回值:**

| 类型      | 说明                                       |
| --------- | ------------------------------------------ |
| [By](#by) | 返回指定目标控件的被选中状态属性的By对象。 |

**示例:**

```js
let by = BY.selected(true) //使用静态构造器BY创建by对象,指定目标控件的被选中状态属性。
```

### isBefore<sup>(deprecated)</sup>

isBefore(by: By): By

指定目标控件位于给出的特征属性控件之前,返回By对象自身。

从API version9开始不再维护,建议使用[isBefore<sup>9+</sup>](#isBefore9)

**系统能力**:SystemCapability.Test.UiTest

**参数:**

| 参数名 | 类型      | 必填 | 说明             |
| ------ | --------- | ---- | ---------------- |
| by     | [By](#by) | 是   | 特征控件的属性。 |

**返回值:**

| 类型      | 说明                                                 |
| --------- | ---------------------------------------------------- |
| [By](#by) | 返回指定目标控件位于给出的特征属性控件之前的By对象。 |

**示例:**

```js
let by = BY.isBefore(BY.text('123')) //使用静态构造器BY创建by对象,指定目标控件位于给出的特征属性控件之前。
```

### isAfter<sup>(deprecated)</sup>

isAfter(by: By): By

指定目标控件位于给出的特征属性控件之后,返回By对象自身。

从API version9开始不再维护,建议使用[isAfter<sup>9+</sup>](#isAfter9)

**系统能力**:SystemCapability.Test.UiTest

**参数:**

| 参数名 | 类型      | 必填 | 说明             |
| ------ | --------- | ---- | ---------------- |
| by     | [By](#by) | 是   | 特征控件的属性。 |

**返回值:**

| 类型      | 说明                                                 |
| --------- | ---------------------------------------------------- |
| [By](#by) | 返回指定目标控件位于给出的特征属性控件之后的By对象。 |

**示例:**

```js
let by = BY.isAfter(BY.text('123')) //使用静态构造器BY创建by对象,指定目标控件位于给出的特征属性控件之后。
```

## UiComponent<sup>(deprecated)</sup>

UiTest中,UiComponent类代表了UI界面上的一个控件,提供控件属性获取,控件点击,滑动查找,文本注入等API。
该类提供的所有方法都使用Promise方式作为异步方法,需使用await调用。

从API version9开始不再维护,建议使用[Component<sup>9+</sup>](#component9)

### click<sup>(deprecated)</sup>

click(): Promise\<void>

控件对象进行点击操作。

从API version9开始不再维护,建议使用[click<sup>9+</sup>](#click9)

**系统能力**:SystemCapability.Test.UiTest

**示例:**

```js
async function demo() {
    let driver = UiDriver.create()
    let button = await driver.findComponent(BY.type('button'))
    await button.click()
}
```

### doubleClick<sup>(deprecated)</sup>

doubleClick(): Promise\<void>

控件对象进行双击操作。

从API version9开始不再维护,建议使用[doubleClick<sup>9+</sup>](#doubleClick9)

**系统能力**:SystemCapability.Test.UiTest

**示例:**

```js
async function demo() {
    let driver = UiDriver.create()
    let button = await driver.findComponent(BY.type('button'))
    await button.doubleClick()
}
```

### longClick<sup>(deprecated)</sup>

longClick(): Promise\<void>

控件对象进行长按操作。

从API version9开始不再维护,建议使用[longClick<sup>9+</sup>](#longClick9)

**系统能力**:SystemCapability.Test.UiTest

**示例:**

```js
async function demo() {
    let driver = UiDriver.create()
    let button = await driver.findComponent(BY.type('button'))
    await button.longClick()
}
```

### getId<sup>(deprecated)</sup>

getId(): Promise\<number>

获取控件对象的id值。

从API version9开始不再维护,建议使用[getId<sup>9+</sup>](#getId9)

**系统能力**:SystemCapability.Test.UiTest

**返回值:**

| 类型             | 说明                            |
| ---------------- | ------------------------------- |
| Promise\<number> | 以Promise形式返回的控件的id值。 |

**示例:**

```js
async function demo() {
    let driver = UiDriver.create()
    let button = await driver.findComponent(BY.type('button'))
    let num = await button.getId()
}
```

### getKey<sup>(deprecated)</sup>

getKey(): Promise\<string>

获取控件对象的key值。

从API version9开始不再维护,被废弃。

**系统能力**:SystemCapability.Test.UiTest

**返回值:**

| 类型             | 说明                           |
| ---------------- | ------------------------------ |
| Promise\<string> | 以Promise形式返回控件的key值。 |

**示例:**

```js
async function demo() {
    let driver = UiDriver.create()
    let button = await driver.findComponent(BY.type('button'))
    let str_key = await button.getKey()
}
```

### getText<sup>(deprecated)</sup>

getText(): Promise\<string>

获取控件对象的文本信息。

从API version9开始不再维护,建议使用[getText<sup>9+</sup>](#getText9)

**系统能力**:SystemCapability.Test.UiTest

**返回值:**

| 类型             | 说明                              |
| ---------------- | --------------------------------- |
| Promise\<string> | 以Promise形式返回控件的文本信息。 |

**示例:**

```js
async function demo() {
    let driver = UiDriver.create()
    let button = await driver.findComponent(BY.type('button'))
    let text = await button.getText()
}
```

### getType<sup>(deprecated)</sup>

getType(): Promise\<string>

获取控件对象的控件类型。

从API version9开始不再维护,建议使用[getType<sup>9+</sup>](#getType9)

**系统能力**:SystemCapability.Test.UiTest

**返回值:**

| 类型             | 说明                          |
| ---------------- | ----------------------------- |
| Promise\<string> | 以Promise形式返回控件的类型。 |

**示例:**

```js
async function demo() {
    let driver = UiDriver.create()
    let button = await driver.findComponent(BY.type('button'))
    let type = await button.getType()
}
```

### isClickable<sup>(deprecated)</sup>

isClickable(): Promise\<boolean>

获取控件对象可点击状态。

从API version9开始不再维护,建议使用[isClickable<sup>9+</sup>](#isClickable9)

**系统能力**:SystemCapability.Test.UiTest

**返回值:**

| 类型              | 说明                                                         |
| ----------------- | ------------------------------------------------------------ |
| Promise\<boolean> | 以Promise形式返回控件对象可点击状态,true:可点击,false:不可点击。 |

**示例:**

```js
async function demo() {
    let driver = UiDriver.create()
    let button = await driver.findComponent(BY.type('button'))
    if(await button.isClickable()) {
        console.info('This button can be Clicked')
    }
    else{
        console.info('This button can not be Clicked')
    }
}
```

### isScrollable<sup>(deprecated)</sup>

isScrollable(): Promise\<boolean>

获取控件对象可滑动状态。

从API version9开始不再维护,建议使用[isScrollable<sup>9+</sup>](#isScrollable9)

**系统能力**:SystemCapability.Test.UiTest

**返回值:**

| 类型              | 说明                                                         |
| ----------------- | ------------------------------------------------------------ |
| Promise\<boolean> | 以Promise形式返回控件对象可滑动状态,true:可滑动,false:不可滑动。 |

**示例:**

```js
async function demo() {
    let driver = UiDriver.create()
    let scrollBar = await driver.findComponent(BY.scrollable(true))
    if(await scrollBar.isScrollable()) {
        console.info('This scrollBar can be operated')
    }
    else{
        console.info('This scrollBar can not be operated')
    }
}
```


### isEnabled<sup>(deprecated)</sup>

isEnabled(): Promise\<boolean>

获取控件使能状态。

从API version9开始不再维护,建议使用[isEnabled<sup>9+</sup>](#isEnabled9)

**系统能力**:SystemCapability.Test.UiTest

**返回值:**

| 类型              | 说明                                                       |
| ----------------- | ---------------------------------------------------------- |
| Promise\<boolean> | 以Promise形式返回控件使能状态,true:使能,false:未使能。 |

**示例:**

```js
async function demo() {
    let driver = UiDriver.create()
    let button = await driver.findComponent(BY.type('button'))
    if(await button.isEnabled()) {
        console.info('This button can be operated')
    }
    else{
        console.info('This button can not be operated')
    }
}

```

### isFocused<sup>(deprecated)</sup>

isFocused(): Promise\<boolean>

判断控件对象是否获焦。

从API version9开始不再维护,建议使用[isFocused<sup>9+</sup>](#isFocused9)

**系统能力**:SystemCapability.Test.UiTest

**返回值:**

| 类型              | 说明                                                         |
| ----------------- | ------------------------------------------------------------ |
| Promise\<boolean> | 以Promise形式返回控件对象是否获焦,true:获焦,false:未获焦。 |

**示例:**

```js
async function demo() {
    let driver = UiDriver.create()
    let button = await driver.findComponent(BY.type('button'))
    if(await button.isFocused()) {
        console.info('This button is focused')
	}
    else{
        console.info('This button is not focused')
	}
}
```

### isSelected<sup>(deprecated)</sup>

isSelected(): Promise\<boolean>

获取控件对象被选中状态。

从API version9开始不再维护,建议使用[isSelected<sup>9+</sup>](#isSelected9)

**系统能力**:SystemCapability.Test.UiTest

**返回值:**

| 类型              | 说明                                                  |
| ----------------- | ----------------------------------------------------- |
| Promise\<boolean> | 控件对象被选中的状态,true:被选中,false:未被选中。 |

**示例:**

```js
async function demo() {
    let driver = UiDriver.create()
    let button = await driver.findComponent(BY.type('button'))
    if(await button.isSelected()) {
        console.info('This button is selected')
	}
    else{
        console.info('This button is not selected')
    }
}
```

### inputText<sup>(deprecated)</sup>

inputText(text: string): Promise\<void>

向控件中输入文本(适用于文本框控件)。

从API version9开始不再维护,建议使用[inputText<sup>9+</sup>](#inputText9)

**系统能力**:SystemCapability.Test.UiTest

**参数:**

| 参数名 | 类型   | 必填 | 说明             |
| ------ | ------ | ---- | ---------------- |
| text   | string | 是   | 输入的文本信息。 |

**示例:**

```js
async function demo() {
    let driver = UiDriver.create()
    let text = await driver.findComponent(BY.text('hello world'))
    await text.inputText('123')
}
```

### scrollSearch<sup>(deprecated)</sup>

scrollSearch(by: By): Promise\<UiComponent>

在控件上滑动查找目标控件(适用于List等支持滑动的控件)。

从API version9开始不再维护,建议使用[scrollSearch<sup>9+</sup>](#scrollSearch9)

**系统能力**:SystemCapability.Test.UiTest

**参数:**

| 参数名 | 类型      | 必填 | 说明                 |
| ------ | --------- | ---- | -------------------- |
| by     | [By](#by) | 是   | 目标控件的属性要求。 |

**返回值:**

| 类型                                  | 说明                                  |
| ------------------------------------- | ------------------------------------- |
| Promise\<[UiComponent](#uicomponent)> | 以Promise形式返回找到的目标控件对象。 |

**示例:**

```js
async function demo() {
    let driver = UiDriver.create()
    let scrollBar = await driver.findComponent(BY.type('Scroll'))
    let button = await scrollBar.scrollSearch(BY.text('next page'))
}
```

## UiDriver<sup>(deprecated)</sup>

UiDriver类为uitest测试框架的总入口,提供控件匹配/查找,按键注入,坐标点击/滑动,截图等API。
该类提供的方法除UiDriver.create()以外的所有方法都使用Promise方式作为异步方法,需使用await调用。

从API version9开始不再维护,建议使用[Driver<sup>9+</sup>](#Driver9)

### create<sup>(deprecated)</sup>

static create(): UiDriver

静态方法,构造一个UiDriver对象,并返回该对象。

从API version9开始不再维护,建议使用[create<sup>9+</sup>](#create9)

**系统能力**:SystemCapability.Test.UiTest

**返回值:**

| 类型     | 说明                     |
| -------- | ------------------------ |
| UiDriver | 返回构造的UiDriver对象。 |

**示例:**

```js
async function demo() {
    let driver = UiDriver.create()
}
```

### delayMs<sup>(deprecated)</sup>

delayMs(duration: number): Promise\<void>

UiDriver对象在给定的时间内延时。

从API version9开始不再维护,建议使用[delayMs<sup>9+</sup>](#delayMs9)

**系统能力**:SystemCapability.Test.UiTest

**参数:**

| 参数名   | 类型   | 必填 | 说明         |
| -------- | ------ | ---- | ------------ |
| duration | number | 是   | 给定的时间。 |

**示例:**

```js
async function demo() {
    let driver = UiDriver.create()
    await driver.delayMs(1000)
}
```

### findComponent<sup>(deprecated)</sup>

findComponent(by: By): Promise\<UiComponent>

在UiDriver对象中,根据给出的目标控件属性要求查找目标控件。

从API version9开始不再维护,建议使用[findComponent<sup>9+</sup>](#findComponent9)

**系统能力**:SystemCapability.Test.UiTest

**参数:**

| 参数名 | 类型      | 必填 | 说明                 |
| ------ | --------- | ---- | -------------------- |
| by     | [By](#by) | 是   | 目标控件的属性要求。 |

**返回值:**

| 类型                                  | 说明                              |
| ------------------------------------- | --------------------------------- |
| Promise\<[UiComponent](#uicomponent)> | 以Promise形式返回找到的控件对象。 |

**示例:**

```js
async function demo() {
    let driver = UiDriver.create()
    let button = await driver.findComponent(BY.text('next page'))
}
```

### findComponents<sup>(deprecated)</sup>

findComponents(by: By): Promise\<Array\<UiComponent>>

在UiDriver对象中,根据给出的目标控件属性要求查找出所有匹配控件,以列表保存。

从API version9开始不再维护,建议使用[findComponents<sup>9+</sup>](#findComponents9)

**系统能力**:SystemCapability.Test.UiTest

**参数:**

| 参数名 | 类型      | 必填 | 说明                 |
| ------ | --------- | ---- | -------------------- |
| by     | [By](#by) | 是   | 目标控件的属性要求。 |

**返回值:**

| 类型                                          | 说明                                    |
| --------------------------------------------- | --------------------------------------- |
| Promise\<Array\<[UiComponent](#uicomponent)>> | 以Promise形式返回找到的控件对象的列表。 |

**示例:**

```js
async function demo() {
    let driver = UiDriver.create()
    let buttonList = await driver.findComponents(BY.text('next page'))
}
```

### assertComponentExist<sup>(deprecated)</sup>

assertComponentExist(by: By): Promise\<void>

断言API,用于断言当前界面存在满足给出的目标控件属性的控件; 如果控件不存在,该API将抛出JS异常,使当前测试用例失败。

从API version9开始不再维护,建议使用[assertComponentExist<sup>9+</sup>](#assertComponentExist9)

**系统能力**:SystemCapability.Test.UiTest

**参数:**

| 参数名 | 类型      | 必填 | 说明                 |
| ------ | --------- | ---- | -------------------- |
| by     | [By](#by) | 是   | 目标控件的属性要求。 |

**示例:**

```js
async function demo() {
    let driver = UiDriver.create()
    await driver.assertComponentExist(BY.text('next page'))
}
```

### pressBack<sup>(deprecated)</sup>

pressBack(): Promise\<void>

UiDriver对象进行点击BACK键的操作。

从API version9开始不再维护,建议使用[pressBack<sup>9+</sup>](#pressBack9)

**系统能力**:SystemCapability.Test.UiTest

**示例:**

```js
async function demo() {
    let driver = UiDriver.create()
    await driver.pressBack()
}
```

### triggerKey<sup>(deprecated)</sup>

triggerKey(keyCode: number): Promise\<void>

UiDriver对象采取如下操作:通过key值找到对应键并点击。

从API version9开始不再维护,建议使用[triggerKey<sup>9+</sup>](#triggerKey9)

**系统能力**:SystemCapability.Test.UiTest

**参数:**

| 参数名  | 类型   | 必填 | 说明          |
| ------- | ------ | ---- | ------------- |
| keyCode | number | 是   | 指定的key值。 |

**示例:**

```js
async function demo() {
    let driver = UiDriver.create()
    await driver.triggerKey(123)
}
```


### click<sup>(deprecated)</sup>

click(x: number, y: number): Promise\<void>

UiDriver对象采取如下操作:在目标坐标点单击。

从API version9开始不再维护,建议使用[click<sup>9+</sup>](#click9)

**系统能力**:SystemCapability.Test.UiTest

**参数:**

| 参数名 | 类型   | 必填 | 说明                                   |
| ------ | ------ | ---- | -------------------------------------- |
| x      | number | 是   | 以number的形式传入目标点的横坐标信息。 |
| y      | number | 是   | 以number的形式传入目标点的纵坐标信息。 |

**示例:**

```js
async function demo() {
    let driver = UiDriver.create()
    await driver.click(100,100)
}
```

### doubleClick<sup>(deprecated)</sup>

doubleClick(x: number, y: number): Promise\<void>

UiDriver对象采取如下操作:在目标坐标点双击。

从API version9开始不再维护,建议使用[doubleClick<sup>9+</sup>](#doubleClick9)

**系统能力**:SystemCapability.Test.UiTest

**参数:**

| 参数名 | 类型   | 必填 | 说明                                   |
| ------ | ------ | ---- | -------------------------------------- |
| x      | number | 是   | 以number的形式传入目标点的横坐标信息。 |
| y      | number | 是   | 以number的形式传入目标点的纵坐标信息。 |

**示例:**

```js
async function demo() {
    let driver = UiDriver.create()
    await driver.doubleClick(100,100)
}
```

### longClick<sup>(deprecated)</sup>

longClick(x: number, y: number): Promise\<void>

UiDriver对象采取如下操作:在目标坐标点长按下鼠标左键。

从API version9开始不再维护,建议使用[longClick<sup>9+</sup>](#longClick9)

**系统能力**:SystemCapability.Test.UiTest

**参数:**

| 参数名 | 类型   | 必填 | 说明                                   |
| ------ | ------ | ---- | -------------------------------------- |
| x      | number | 是   | 以number的形式传入目标点的横坐标信息。 |
| y      | number | 是   | 以number的形式传入目标点的纵坐标信息。 |

**示例:**

```js
async function demo() {
    let driver = UiDriver.create()
    await driver.longClick(100,100)
}
```

### swipe<sup>(deprecated)</sup>

swipe(startx: number, starty: number, endx: number, endy: number): Promise\<void>

UiDriver对象采取如下操作:从给出的起始坐标点滑向给出的目的坐标点。

从API version9开始不再维护,建议使用[swipe<sup>9+</sup>](#swipe9)

**系统能力**:SystemCapability.Test.UiTest

**参数:**

| 参数名 | 类型   | 必填 | 说明                                   |
| ------ | ------ | ---- | -------------------------------------- |
| startx | number | 是   | 以number的形式传入起始点的横坐标信息。 |
| starty | number | 是   | 以number的形式传入起始点的纵坐标信息。 |
| endx   | number | 是   | 以number的形式传入目的点的横坐标信息。 |
| endy   | number | 是   | 以number的形式传入目的点的纵坐标信息。 |

**示例:**

```js
async function demo() {
    let driver = UiDriver.create()
    await driver.swipe(100,100,200,200)
}
```

### screenCap<sup>(deprecated)</sup>

screenCap(savePath: string): Promise\<boolean>

UiDriver对象采取如下操作:捕获当前屏幕,并保存为PNG格式的图片至给出的保存路径中。

从API version9开始不再维护,建议使用[screenCap<sup>9+</sup>](#screenCap9)

**系统能力**:SystemCapability.Test.UiTest

**参数:**

| 参数名   | 类型   | 必填 | 说明           |
| -------- | ------ | ---- | -------------- |
| savePath | string | 是   | 文件保存路径。 |

**返回值:**

| 类型              | 说明                                   |
| ----------------- | -------------------------------------- |
| Promise\<boolean> | 截图操作是否成功完成。成功完成为true。 |

**示例:**

```js
async function demo() {
    let driver = UiDriver.create()
    await driver.screenCap('/local/tmp/')
}
```