Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Xts Acts
提交
12cb6f90
X
Xts Acts
项目概览
OpenHarmony
/
Xts Acts
1 年多 前同步成功
通知
9
Star
22
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
X
Xts Acts
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
12cb6f90
编写于
10月 12, 2022
作者:
O
openharmony_ci
提交者:
Gitee
10月 12, 2022
浏览文件
操作
浏览文件
下载
差异文件
!5863 uitest测试框架调整,测试用例适配修改
Merge pull request !5863 from 周柯/weekly_20221011
上级
c006a305
20f84bc5
变更
2
显示空白变更内容
内联
并排
Showing
2 changed file
with
1496 addition
and
1161 deletion
+1496
-1161
ability/ability_runtime/actssupportfunction/actsonandoffscreentest/entry/src/main/ets/test/OnAndOffScreenTest.test.ets
...ntest/entry/src/main/ets/test/OnAndOffScreenTest.test.ets
+1
-1
arkXtest/uitest/src/main/ets/test/uitest.test.ets
arkXtest/uitest/src/main/ets/test/uitest.test.ets
+1495
-1160
未找到文件。
ability/ability_runtime/actssupportfunction/actsonandoffscreentest/entry/src/main/ets/test/OnAndOffScreenTest.test.ets
浏览文件 @
12cb6f90
...
...
@@ -54,7 +54,7 @@ export default function OnAndOffScreenTest() {
async
function
slideScreen
(
TAG
)
{
console
.
log
(
TAG
+
"slideScreen start"
);
var
driver
=
UiDriver
.
create
();
await
driver
.
swipe
(
1000
,
3000
,
1000
,
500
,
1200
)
.
then
((
data
)
=>
{
await
driver
.
swipe
(
1000
,
3000
,
1000
,
500
)
.
then
((
data
)
=>
{
console
.
log
(
TAG
+
"swipe : "
+
JSON
.
stringify
(
data
));
})
.
catch
((
error
)
=>
{
console
.
log
(
TAG
+
"swipe error = "
+
JSON
.
stringify
(
error
));
...
...
arkXtest/uitest/src/main/ets/test/uitest.test.ets
浏览文件 @
12cb6f90
...
...
@@ -14,7 +14,7 @@
*/
import
{
describe
,
beforeAll
,
beforeEach
,
afterEach
,
afterAll
,
it
,
expect
}
from
'@ohos/hypium'
import
abilityDelegatorRegistry
from
'@ohos.application.abilityDelegatorRegistry'
;
import
{
Ui
Driver
,
BY
,
ResizeDirection
,
MatchPattern
,
WindowMode
,
DisplayRotation
,
PointerMatrix
}
from
'@ohos.uitest'
import
{
Ui
Component
,
UiDriver
,
BY
,
Component
,
Driver
,
UiWindow
,
ON
,
MatchPattern
,
DisplayRotation
,
ResizeDirection
,
WindowMode
,
PointerMatrix
}
from
'@ohos.uitest'
import
ability_featureAbility
from
'@ohos.ability.featureAbility'
;
const
delegator
=
abilityDelegatorRegistry
.
getAbilityDelegator
();
...
...
@@ -38,10 +38,9 @@ async function stopApplication(bundleName: string) {
}
export
default
function
UiTest
()
{
describe
(
'UiTest'
,
function
()
{
describe
(
'UiTest_API8'
,
function
()
{
/*
* @tc.number: uiTest_0100
* @tc.number: uiTest_8001
* @tc.name: testInputText
* @tc.desc: inject text to the target UiComponent
*/
...
...
@@ -59,89 +58,445 @@ export default function UiTest() {
})
/*
* @tc.number: uiTest_0200
* @tc.number: uiTest_8002
* @tc.name: testMatchPattern
* @tc.desc: specifies the string value match pattern.
*/
it
(
'testMatchPattern'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
UiDriver
.
create
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
Button1
=
await
driver
.
findComponent
(
BY
.
text
(
'next page'
,
MatchPattern
.
EQUALS
))
expect
(
await
Button1
.
getText
()
==
'next page'
)
.
assertTrue
()
let
Button2
=
await
driver
.
findComponent
(
BY
.
text
(
'next'
,
MatchPattern
.
STARTS_WITH
))
expect
(
await
Button2
.
getText
()
==
'next page'
)
.
assertTrue
()
let
Button3
=
await
driver
.
findComponent
(
BY
.
text
(
'page'
,
MatchPattern
.
ENDS_WITH
))
expect
(
await
Button3
.
getText
()
==
'next page'
)
.
assertTrue
()
let
Button4
=
await
driver
.
findComponent
(
BY
.
text
(
'ext'
,
MatchPattern
.
CONTAINS
))
expect
(
await
Button4
.
getText
()
==
'next page'
)
.
assertTrue
()
await
stopApplication
(
'com.uitestScene.acts'
)
})
/*
* @tc.number: uiTest_8003
* @tc.name: testUiComponentClick
* @tc.desc: click this UiComponentClick.
*/
it
(
'testUiComponentClick'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
UiDriver
.
create
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
button
=
await
driver
.
findComponent
(
BY
.
text
(
'next page'
))
await
button
.
click
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
newButton
=
await
driver
.
findComponent
(
BY
.
text
(
'back to index'
))
let
text
=
await
newButton
.
getText
()
expect
(
text
==
'back to index'
)
.
assertTrue
()
await
newButton
.
click
()
await
stopApplication
(
'com.uitestScene.acts'
)
})
/*
* @tc.number: uiTest_8004
* @tc.name: testUiComponentDoubleClick
* @tc.desc: doubleClick this UiComponentClick.
*/
it
(
'testUiComponentDoubleClick'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
UiDriver
.
create
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
button
=
await
driver
.
findComponent
(
BY
.
text
(
'Click twice'
))
await
button
.
doubleClick
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
newButton
=
await
driver
.
findComponent
(
BY
.
text
(
'doubleClick'
))
let
text
=
await
newButton
.
getText
()
expect
(
text
==
'doubleClick'
)
.
assertTrue
()
await
newButton
.
click
()
await
stopApplication
(
'com.uitestScene.acts'
)
})
/*
* @tc.number: uiTest_8005
* @tc.name: testUiComponentLongClick
* @tc.desc: longClick this UiComponentClick.
*/
it
(
'testUiComponentLongClick'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
UiDriver
.
create
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
button
=
await
driver
.
findComponent
(
BY
.
text
(
'next page'
))
await
button
.
longClick
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
newButton
=
await
driver
.
findComponent
(
BY
.
text
(
'longClick'
))
let
text
=
await
newButton
.
getText
()
expect
(
text
==
'longClick'
)
.
assertTrue
()
await
newButton
.
click
()
await
stopApplication
(
'com.uitestScene.acts'
)
})
/*
* @tc.number: uiTest_8006
* @tc.name: testKey
* @tc.desc: find UiComponent by key attribute and get it's key attribute.
*/
it
(
'testKey'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
UiDriver
.
create
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
button
=
await
driver
.
findComponent
(
BY
.
key
(
'my-key'
))
expect
(
await
button
.
getKey
()
==
'my-key'
)
.
assertTrue
()
await
stopApplication
(
'com.uitestScene.acts'
)
})
/*
* @tc.number: uiTest_8007
* @tc.name: testId
* @tc.desc: find UiComponent by id attribute and get it's id attribute.
*/
it
(
'testId'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
UiDriver
.
create
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
button
=
await
driver
.
findComponent
(
BY
.
text
(
'next page'
))
let
id
=
await
button
.
getId
()
let
button2
=
await
driver
.
findComponent
(
BY
.
id
(
id
))
expect
(
await
button2
.
getText
()
==
'next page'
)
.
assertTrue
()
await
stopApplication
(
'com.uitestScene.acts'
)
})
/*
* @tc.number: uiTest_8008
* @tc.name: testType
* @tc.desc: find UiComponent by type attribute and get it's type attribute.
*/
it
(
'testType'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
UiDriver
.
create
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
text
=
await
driver
.
findComponent
(
BY
.
type
(
'Text'
))
let
type
=
await
text
.
getType
()
expect
(
type
==
'Text'
)
.
assertTrue
()
await
stopApplication
(
'com.uitestScene.acts'
)
})
/*
* @tc.number: uiTest_8009
* @tc.name: testClickable
* @tc.desc: find UiComponent by clickable attribute and get it's clickable attribute.
*/
it
(
'testClickable'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
UiDriver
.
create
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
button
=
await
driver
.
findComponent
(
BY
.
text
(
'next page'
)
.
clickable
(
false
))
let
clickable
=
await
button
.
isClickable
()
expect
(
clickable
==
false
)
.
assertTrue
()
await
stopApplication
(
'com.uitestScene.acts'
)
})
/*
* @tc.number: uiTest_8010
* @tc.name: testScrollable
* @tc.desc: find UiComponent by scrollable attribute and get it's scrollable attribute.
*/
it
(
'testScrollable'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
UiDriver
.
create
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
scrollBar
=
await
driver
.
findComponent
(
BY
.
type
(
'Scroll'
)
.
scrollable
(
false
))
let
scrollable
=
await
scrollBar
.
isScrollable
()
expect
(
scrollable
==
false
)
.
assertTrue
()
await
stopApplication
(
'com.uitestScene.acts'
)
})
/*
* @tc.number: uiTest_8011
* @tc.name: testEnabled
* @tc.desc: find UiComponent by enabled attribute and get it's enabled attribute.
*/
it
(
'testEnabled'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
UiDriver
.
create
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
button
=
await
driver
.
findComponent
(
BY
.
text
(
'next page'
)
.
enabled
(
true
))
let
enable
=
await
button
.
isEnabled
()
expect
(
enable
==
true
)
.
assertTrue
()
await
stopApplication
(
'com.uitestScene.acts'
)
})
/*
* @tc.number: uiTest_8012
* @tc.name: testFocused
* @tc.desc: find UiComponent by focused attribute and get it's focused attribute.
*/
it
(
'testFocused'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
UiDriver
.
create
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
button
=
await
driver
.
findComponent
(
BY
.
text
(
'next page'
)
.
focused
(
false
))
let
focused
=
await
button
.
isFocused
()
expect
(
focused
==
false
)
.
assertTrue
()
await
stopApplication
(
'com.uitestScene.acts'
)
})
/*
* @tc.number: uiTest_8013
* @tc.name: testSelected
* @tc.desc: find UiComponent by selected attribute and get it's selected attribute.
*/
it
(
'testSelected'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
UiDriver
.
create
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
button
=
await
driver
.
findComponent
(
BY
.
text
(
'next page'
)
.
selected
(
false
))
let
selected
=
await
button
.
isSelected
()
expect
(
selected
==
false
)
.
assertTrue
()
await
stopApplication
(
'com.uitestScene.acts'
)
})
/*
* @tc.number: uiTest_8014
* @tc.name: testPressBack
* @tc.desc: Press the BACK key.
*/
it
(
'testPressBack'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
UiDriver
.
create
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
button
=
await
driver
.
findComponent
(
BY
.
text
(
'next page'
))
await
button
.
click
()
await
driver
.
delayMs
(
waitUiReadyMs
)
await
driver
.
pressBack
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
button_ori
=
await
driver
.
findComponent
(
BY
.
text
(
'next page'
))
expect
(
await
button_ori
.
getText
()
==
'next page'
)
.
assertTrue
()
await
stopApplication
(
'com.uitestScene.acts'
)
})
/*
* @tc.number: uiTest_8015
* @tc.name: testFindComponents
* @tc.desc: find all the matched UiComponents on current UI
*/
it
(
'testFindComponents'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
UiDriver
.
create
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
buttons
=
await
driver
.
findComponents
(
BY
.
type
(
'Button'
))
expect
(
await
buttons
[
0
]
.
getText
()
!=
null
)
.
assertTrue
()
await
stopApplication
(
'com.uitestScene.acts'
)
})
/*
* @tc.number: uiTest_8016
* @tc.name: testTriggerKey
* @tc.desc: press the specified key.
*/
it
(
'testTriggerKey'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
UiDriver
.
create
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
button
=
await
driver
.
findComponent
(
BY
.
text
(
'next page'
))
await
button
.
click
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
keyBack
=
2
await
driver
.
triggerKey
(
keyBack
)
await
driver
.
delayMs
(
waitUiReadyMs
)
let
button_ori
=
await
driver
.
findComponent
(
BY
.
text
(
'next page'
))
expect
(
await
button_ori
.
getText
()
==
'next page'
)
.
assertTrue
()
await
stopApplication
(
'com.uitestScene.acts'
)
})
/*
* @tc.number: uiTest_8017
* @tc.name: testScreenCap
* @tc.desc: capture current screen.
*/
it
(
'testScreenCap'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
UiDriver
.
create
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
savePath
=
'/data/local/tmp/1.png'
let
success
=
await
driver
.
screenCap
(
savePath
)
expect
(
success
==
true
)
.
assertTrue
()
await
stopApplication
(
'com.uitestScene.acts'
)
})
/*
* @tc.number: uiTest_8018
* @tc.name: testAssertComponentExist
* @tc.desc: Assert whether the matched UiComponent exists on current UI;.
*/
it
(
'testAssertComponentExist'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
UiDriver
.
create
()
await
driver
.
delayMs
(
waitUiReadyMs
)
await
driver
.
assertComponentExist
(
BY
.
text
(
'next page'
))
await
stopApplication
(
'com.uitestScene.acts'
)
})
/*
* @tc.number: uiTest_8019
* @tc.name: testIsBefore
* @tc.desc: find uiComponent which is before another UiComponent that specified by given.
*/
it
(
'testIsBefore'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
UiDriver
.
create
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
button
=
await
driver
.
findComponent
(
BY
.
isBefore
(
BY
.
text
(
'Click twice'
))
.
type
(
'Button'
))
expect
(
await
button
.
getType
()
==
'Button'
)
.
assertTrue
()
await
stopApplication
(
'com.uitestScene.acts'
)
})
/*
* @tc.number: uiTest_8020
* @tc.name: testIsAfter
* @tc.desc: find uiComponent which is after another UiComponent that specified by given.
*/
it
(
'testIsAfter'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
UiDriver
.
create
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
button
=
await
driver
.
findComponent
(
BY
.
isAfter
(
BY
.
text
(
'next page'
))
.
type
(
'Text'
))
expect
(
await
button
.
getText
()
==
'Click twice'
)
.
assertTrue
()
await
stopApplication
(
'com.uitestScene.acts'
)
})
/*
* @tc.number: uiTest_8021
* @tc.name: testSwipe
* @tc.desc: swipe on the screen between the specified points.
*/
it
(
'testSwipe'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
UiDriver
.
create
()
await
driver
.
delayMs
(
waitUiReadyMs
)
await
driver
.
swipe
(
300
,
600
,
300
,
300
)
let
text
=
await
driver
.
findComponent
(
BY
.
text
(
'next page'
))
expect
(
text
==
null
)
.
assertTrue
()
await
stopApplication
(
'com.uitestScene.acts'
)
})
/*
* @tc.number: uiTest_8022
* @tc.name: testScrollSearch
* @tc.desc: scroll on this UiComponent to find matched UiComponent.
*/
it
(
'testScrollSearch'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
UiDriver
.
create
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
scrollBar
=
await
driver
.
findComponent
(
BY
.
type
(
'Scroll'
))
let
button
=
await
scrollBar
.
scrollSearch
(
BY
.
text
(
'next page'
))
expect
(
await
button
.
getText
()
==
'next page'
)
.
assertTrue
()
await
stopApplication
(
'com.uitestScene.acts'
)
})
})
describe
(
'UiTest_API9'
,
function
()
{
/*
* @tc.number: uiTest_9001
* @tc.name: testInputText
* @tc.desc: inject text to the target UiComponent
*/
it
(
'testInputText'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
Driver
.
create
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
input
=
await
driver
.
findComponent
(
ON
.
type
(
'TextInput'
))
await
input
.
inputText
(
'123'
)
await
driver
.
delayMs
(
waitUiReadyMs
)
let
input_new
=
await
driver
.
findComponent
(
ON
.
type
(
'TextInput'
))
let
text
=
await
input_new
.
getText
()
expect
(
text
==
'123'
)
.
assertTrue
()
await
stopApplication
(
'com.uitestScene.acts'
)
})
/*
* @tc.number: uiTest_9002
* @tc.name: testClearText
* @tc.desc: clear text of the target UiComponent
*/
it
(
'testClearText'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
Ui
Driver
.
create
()
let
driver
=
Driver
.
create
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
input1
=
await
driver
.
findComponent
(
BY
.
type
(
'TextInput'
))
let
input1
=
await
driver
.
findComponent
(
ON
.
type
(
'TextInput'
))
await
input1
.
inputText
(
'abc'
)
let
input2
=
await
driver
.
findComponent
(
BY
.
type
(
'TextInput'
))
let
input2
=
await
driver
.
findComponent
(
ON
.
type
(
'TextInput'
))
await
input2
.
clearText
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
input_new
=
await
driver
.
findComponent
(
BY
.
type
(
'TextInput'
))
let
input_new
=
await
driver
.
findComponent
(
ON
.
type
(
'TextInput'
))
let
text
=
await
input_new
.
getText
()
expect
(
text
)
.
assertEqual
(
''
)
await
stopApplication
(
'com.uitestScene.acts'
)
})
/*
* @tc.number: uiTest_0300
* @tc.number: uiTest_9003
* @tc.name: testCheckable
* @tc.desc: find UiComponent by checkable attribute and get it's checkable attribute.
*/
it
(
'testCheckable'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
Ui
Driver
.
create
()
let
driver
=
Driver
.
create
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
button
=
await
driver
.
findComponent
(
BY
.
checkable
(
true
)
.
type
(
'Checkbox'
))
let
button
=
await
driver
.
findComponent
(
ON
.
checkable
(
true
)
.
type
(
'Checkbox'
))
let
checkable
=
await
button
.
isCheckable
()
expect
(
checkable
==
true
)
.
assertTrue
()
await
stopApplication
(
'com.uitestScene.acts'
)
})
/*
* @tc.number: uiTest_0400
* @tc.number: uiTest_9004
* @tc.name: testChecked
* @tc.desc: find UiComponent by checked attribute and get it's checked attribute.
*/
it
(
'testChecked'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
Ui
Driver
.
create
()
let
driver
=
Driver
.
create
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
button
=
await
driver
.
findComponent
(
BY
.
checked
(
false
)
.
type
(
'Checkbox'
))
let
button
=
await
driver
.
findComponent
(
ON
.
checked
(
false
)
.
type
(
'Checkbox'
))
let
checked
=
await
button
.
isChecked
()
expect
(
checked
==
false
)
.
assertTrue
()
await
stopApplication
(
'com.uitestScene.acts'
)
})
/*
* @tc.number: uiTest_0500
* @tc.number: uiTest_9005
* @tc.name: testMatchPattern
* @tc.desc: specifies the string value match pattern.
*/
it
(
'testMatchPattern'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
Ui
Driver
.
create
()
let
driver
=
Driver
.
create
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
Button1
=
await
driver
.
findComponent
(
BY
.
text
(
'next page'
,
MatchPattern
.
EQUALS
))
let
Button1
=
await
driver
.
findComponent
(
ON
.
text
(
'next page'
,
MatchPattern
.
EQUALS
))
expect
(
await
Button1
.
getText
()
==
'next page'
)
.
assertTrue
()
let
Button2
=
await
driver
.
findComponent
(
BY
.
text
(
'next'
,
MatchPattern
.
STARTS_WITH
))
let
Button2
=
await
driver
.
findComponent
(
ON
.
text
(
'next'
,
MatchPattern
.
STARTS_WITH
))
expect
(
await
Button2
.
getText
()
==
'next page'
)
.
assertTrue
()
let
Button3
=
await
driver
.
findComponent
(
BY
.
text
(
'page'
,
MatchPattern
.
ENDS_WITH
))
let
Button3
=
await
driver
.
findComponent
(
ON
.
text
(
'page'
,
MatchPattern
.
ENDS_WITH
))
expect
(
await
Button3
.
getText
()
==
'next page'
)
.
assertTrue
()
let
Button4
=
await
driver
.
findComponent
(
BY
.
text
(
'ext'
,
MatchPattern
.
CONTAINS
))
let
Button4
=
await
driver
.
findComponent
(
ON
.
text
(
'ext'
,
MatchPattern
.
CONTAINS
))
expect
(
await
Button4
.
getText
()
==
'next page'
)
.
assertTrue
()
await
stopApplication
(
'com.uitestScene.acts'
)
})
/*
* @tc.number: uiTest_0600
* @tc.name: test
Click
* @tc.number: uiTest_9006
* @tc.name: testDriver
Click
* @tc.desc: click in the specified location on the screen.
*/
it
(
'test
Click'
,
0
,
async
function
()
{
it
(
'testDriver
Click'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
Ui
Driver
.
create
()
let
driver
=
Driver
.
create
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
Button
=
await
driver
.
findComponent
(
BY
.
text
(
'next page'
))
let
Button
=
await
driver
.
findComponent
(
ON
.
text
(
'next page'
))
let
center
=
await
Button
.
getBoundsCenter
()
await
driver
.
click
(
center
.
X
,
center
.
Y
)
await
driver
.
delayMs
(
waitUiReadyMs
)
let
newButton
=
await
driver
.
findComponent
(
BY
.
text
(
'back to index'
))
let
newButton
=
await
driver
.
findComponent
(
ON
.
text
(
'back to index'
))
let
text
=
await
newButton
.
getText
()
expect
(
text
==
'back to index'
)
.
assertTrue
()
await
newButton
.
click
()
...
...
@@ -149,19 +504,19 @@ export default function UiTest() {
})
/*
* @tc.number: uiTest_0700
* @tc.name: test
DoubleClick
* @tc.number: uiTest_9007
* @tc.name: testDriver
DoubleClick
* @tc.desc: doubleClick in the specified location on the screen.
*/
it
(
'test
DoubleClick'
,
0
,
async
function
()
{
it
(
'testDriver
DoubleClick'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
Ui
Driver
.
create
()
let
driver
=
Driver
.
create
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
Button
=
await
driver
.
findComponent
(
BY
.
text
(
'Click twice'
))
let
Button
=
await
driver
.
findComponent
(
ON
.
text
(
'Click twice'
))
let
center
=
await
Button
.
getBoundsCenter
()
await
driver
.
doubleClick
(
center
.
X
,
center
.
Y
)
await
driver
.
delayMs
(
waitUiReadyMs
)
let
button
=
await
driver
.
findComponent
(
BY
.
text
(
'doubleClick'
))
let
button
=
await
driver
.
findComponent
(
ON
.
text
(
'doubleClick'
))
let
text
=
await
button
.
getText
()
expect
(
text
==
'doubleClick'
)
.
assertTrue
()
await
button
.
click
()
...
...
@@ -169,19 +524,19 @@ export default function UiTest() {
})
/*
* @tc.number: uiTest_0800
* @tc.name: test
LongClick
* @tc.number: uiTest_9008
* @tc.name: testDriver
LongClick
* @tc.desc: longClick in the specified location on the screen.
*/
it
(
'test
LongClick'
,
0
,
async
function
()
{
it
(
'testDriver
LongClick'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
Ui
Driver
.
create
()
let
driver
=
Driver
.
create
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
Button
=
await
driver
.
findComponent
(
BY
.
text
(
'next page'
))
let
Button
=
await
driver
.
findComponent
(
ON
.
text
(
'next page'
))
let
center
=
await
Button
.
getBoundsCenter
()
await
driver
.
longClick
(
center
.
X
,
center
.
Y
)
await
driver
.
delayMs
(
waitUiReadyMs
)
let
newButton
=
await
driver
.
findComponent
(
BY
.
text
(
'longClick'
))
let
newButton
=
await
driver
.
findComponent
(
ON
.
text
(
'longClick'
))
let
text
=
await
newButton
.
getText
()
expect
(
text
==
'longClick'
)
.
assertTrue
()
await
newButton
.
click
()
...
...
@@ -189,18 +544,18 @@ export default function UiTest() {
})
/*
* @tc.number: uiTest_0900
* @tc.number: uiTest_9009
* @tc.name: testUiComponentClick
* @tc.desc: click this UiComponentClick.
*/
it
(
'testUiComponentClick'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
Ui
Driver
.
create
()
let
driver
=
Driver
.
create
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
button
=
await
driver
.
findComponent
(
BY
.
text
(
'next page'
))
let
button
=
await
driver
.
findComponent
(
ON
.
text
(
'next page'
))
await
button
.
click
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
newButton
=
await
driver
.
findComponent
(
BY
.
text
(
'back to index'
))
let
newButton
=
await
driver
.
findComponent
(
ON
.
text
(
'back to index'
))
let
text
=
await
newButton
.
getText
()
expect
(
text
==
'back to index'
)
.
assertTrue
()
await
newButton
.
click
()
...
...
@@ -208,18 +563,18 @@ export default function UiTest() {
})
/*
* @tc.number: uiTest_100
0
* @tc.number: uiTest_901
0
* @tc.name: testUiComponentDoubleClick
* @tc.desc: doubleClick this UiComponentClick.
*/
it
(
'testUiComponentDoubleClick'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
Ui
Driver
.
create
()
let
driver
=
Driver
.
create
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
button
=
await
driver
.
findComponent
(
BY
.
text
(
'Click twice'
))
let
button
=
await
driver
.
findComponent
(
ON
.
text
(
'Click twice'
))
await
button
.
doubleClick
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
newButton
=
await
driver
.
findComponent
(
BY
.
text
(
'doubleClick'
))
let
newButton
=
await
driver
.
findComponent
(
ON
.
text
(
'doubleClick'
))
let
text
=
await
newButton
.
getText
()
expect
(
text
==
'doubleClick'
)
.
assertTrue
()
await
newButton
.
click
()
...
...
@@ -227,18 +582,18 @@ export default function UiTest() {
})
/*
* @tc.number: uiTest_1100
* @tc.number: uiTest_9011
* @tc.name: testUiComponentLongClick
* @tc.desc: longClick this UiComponentClick.
*/
it
(
'testUiComponentLongClick'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
Ui
Driver
.
create
()
let
driver
=
Driver
.
create
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
button
=
await
driver
.
findComponent
(
BY
.
text
(
'next page'
))
let
button
=
await
driver
.
findComponent
(
ON
.
text
(
'next page'
))
await
button
.
longClick
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
newButton
=
await
driver
.
findComponent
(
BY
.
text
(
'longClick'
))
let
newButton
=
await
driver
.
findComponent
(
ON
.
text
(
'longClick'
))
let
text
=
await
newButton
.
getText
()
expect
(
text
==
'longClick'
)
.
assertTrue
()
await
newButton
.
click
()
...
...
@@ -246,203 +601,187 @@ export default function UiTest() {
})
/*
* @tc.number: uiTest_1200
* @tc.number: uiTest_9012
* @tc.name: testKey
* @tc.desc: find UiComponent by key attribute and get it's key attribute.
*/
it
(
'testKey'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
UiDriver
.
create
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
button
=
await
driver
.
findComponent
(
BY
.
key
(
'my-key'
))
expect
(
await
button
.
getKey
()
==
'my-key'
)
.
assertTrue
()
await
stopApplication
(
'com.uitestScene.acts'
)
})
/*
* @tc.number: uiTest_1300
* @tc.name: testId
* @tc.desc: find UiComponent by id attribute and get it's id attribute.
*/
it
(
'testId'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
UiDriver
.
create
()
let
driver
=
Driver
.
create
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
button
=
await
driver
.
findComponent
(
BY
.
text
(
'next page'
))
let
id
=
await
button
.
getId
()
let
button2
=
await
driver
.
findComponent
(
BY
.
id
(
id
))
expect
(
await
button2
.
getText
()
==
'next page'
)
.
assertTrue
()
let
button
=
await
driver
.
findComponent
(
ON
.
id
(
'my-key'
))
expect
(
await
button
.
getId
()
==
'my-key'
)
.
assertTrue
()
await
stopApplication
(
'com.uitestScene.acts'
)
})
/*
* @tc.number: uiTest_1400
* @tc.number: uiTest_9013
* @tc.name: testType
* @tc.desc: find UiComponent by type attribute and get it's type attribute.
*/
it
(
'testType'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
Ui
Driver
.
create
()
let
driver
=
Driver
.
create
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
text
=
await
driver
.
findComponent
(
BY
.
type
(
'Text'
))
let
text
=
await
driver
.
findComponent
(
ON
.
type
(
'Text'
))
let
type
=
await
text
.
getType
()
expect
(
type
==
'Text'
)
.
assertTrue
()
await
stopApplication
(
'com.uitestScene.acts'
)
})
/*
* @tc.number: uiTest_1500
* @tc.number: uiTest_9014
* @tc.name: testClickable
* @tc.desc: find UiComponent by clickable attribute and get it's clickable attribute.
*/
it
(
'testClickable'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
Ui
Driver
.
create
()
let
driver
=
Driver
.
create
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
button
=
await
driver
.
findComponent
(
BY
.
text
(
'next page'
)
.
clickable
(
false
))
let
button
=
await
driver
.
findComponent
(
ON
.
text
(
'next page'
)
.
clickable
(
false
))
let
clickable
=
await
button
.
isClickable
()
expect
(
clickable
==
false
)
.
assertTrue
()
await
stopApplication
(
'com.uitestScene.acts'
)
})
/*
* @tc.number: uiTest_1600
* @tc.number: uiTest_9015
* @tc.name: testLongClickable
* @tc.desc: find UiComponent by longClickable attribute and get it's longClickable attribute.
*/
it
(
'testLongClickable'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
Ui
Driver
.
create
()
let
driver
=
Driver
.
create
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
button
=
await
driver
.
findComponent
(
BY
.
text
(
'next page'
)
.
longClickable
(
false
))
let
button
=
await
driver
.
findComponent
(
ON
.
text
(
'next page'
)
.
longClickable
(
false
))
let
longClickable
=
await
button
.
isLongClickable
()
expect
(
longClickable
==
false
)
.
assertTrue
()
await
stopApplication
(
'com.uitestScene.acts'
)
})
/*
* @tc.number: uiTest_1700
* @tc.number: uiTest_9016
* @tc.name: testScrollable
* @tc.desc: find UiComponent by scrollable attribute and get it's scrollable attribute.
*/
it
(
'testScrollable'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
Ui
Driver
.
create
()
let
driver
=
Driver
.
create
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
scrollBar
=
await
driver
.
findComponent
(
BY
.
type
(
'Scroll'
)
.
scrollable
(
false
))
let
scrollBar
=
await
driver
.
findComponent
(
ON
.
type
(
'Scroll'
)
.
scrollable
(
false
))
let
scrollable
=
await
scrollBar
.
isScrollable
()
expect
(
scrollable
==
false
)
.
assertTrue
()
await
stopApplication
(
'com.uitestScene.acts'
)
})
/*
* @tc.number: uiTest_1800
* @tc.number: uiTest_9017
* @tc.name: testEnabled
* @tc.desc: find UiComponent by enabled attribute and get it's enabled attribute.
*/
it
(
'testEnabled'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
Ui
Driver
.
create
()
let
driver
=
Driver
.
create
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
button
=
await
driver
.
findComponent
(
BY
.
text
(
'next page'
)
.
enabled
(
true
))
let
button
=
await
driver
.
findComponent
(
ON
.
text
(
'next page'
)
.
enabled
(
true
))
let
enable
=
await
button
.
isEnabled
()
expect
(
enable
==
true
)
.
assertTrue
()
await
stopApplication
(
'com.uitestScene.acts'
)
})
/*
* @tc.number: uiTest_1900
* @tc.number: uiTest_9018
* @tc.name: testFocused
* @tc.desc: find UiComponent by focused attribute and get it's focused attribute.
*/
it
(
'testFocused'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
Ui
Driver
.
create
()
let
driver
=
Driver
.
create
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
button
=
await
driver
.
findComponent
(
BY
.
text
(
'next page'
)
.
focused
(
false
))
let
button
=
await
driver
.
findComponent
(
ON
.
text
(
'next page'
)
.
focused
(
false
))
let
focused
=
await
button
.
isFocused
()
expect
(
focused
==
false
)
.
assertTrue
()
await
stopApplication
(
'com.uitestScene.acts'
)
})
/*
* @tc.number: uiTest_2000
* @tc.number: uiTest_9019
* @tc.name: testSelected
* @tc.desc: find UiComponent by selected attribute and get it's selected attribute.
*/
it
(
'testSelected'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
Ui
Driver
.
create
()
let
driver
=
Driver
.
create
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
button
=
await
driver
.
findComponent
(
BY
.
text
(
'next page'
)
.
selected
(
false
))
let
button
=
await
driver
.
findComponent
(
ON
.
text
(
'next page'
)
.
selected
(
false
))
let
selected
=
await
button
.
isSelected
()
expect
(
selected
==
false
)
.
assertTrue
()
await
stopApplication
(
'com.uitestScene.acts'
)
})
/*
* @tc.number: uiTest_210
0
* @tc.number: uiTest_902
0
* @tc.name: testPressBack
* @tc.desc: Press the BACK key.
*/
it
(
'testPressBack'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
Ui
Driver
.
create
()
let
driver
=
Driver
.
create
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
button
=
await
driver
.
findComponent
(
BY
.
text
(
'next page'
))
let
button
=
await
driver
.
findComponent
(
ON
.
text
(
'next page'
))
await
button
.
click
()
await
driver
.
delayMs
(
waitUiReadyMs
)
await
driver
.
pressBack
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
button_ori
=
await
driver
.
findComponent
(
BY
.
text
(
'next page'
))
let
button_ori
=
await
driver
.
findComponent
(
ON
.
text
(
'next page'
))
expect
(
await
button_ori
.
getText
()
==
'next page'
)
.
assertTrue
()
await
stopApplication
(
'com.uitestScene.acts'
)
})
/*
* @tc.number: uiTest_2200
* @tc.number: uiTest_9021
* @tc.name: testFindComponents
* @tc.desc: find all the matched UiComponents on current UI
*/
it
(
'testFindComponents'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
Ui
Driver
.
create
()
let
driver
=
Driver
.
create
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
buttons
=
await
driver
.
findComponents
(
BY
.
type
(
'Button'
))
let
buttons
=
await
driver
.
findComponents
(
ON
.
type
(
'Button'
))
expect
(
await
buttons
[
0
]
.
getText
()
!=
null
)
.
assertTrue
()
await
stopApplication
(
'com.uitestScene.acts'
)
})
/*
* @tc.number: uiTest_2300
* @tc.number: uiTest_9022
* @tc.name: testTriggerKey
* @tc.desc: press the specified key.
*/
it
(
'testTriggerKey'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
Ui
Driver
.
create
()
let
driver
=
Driver
.
create
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
button
=
await
driver
.
findComponent
(
BY
.
text
(
'next page'
))
let
button
=
await
driver
.
findComponent
(
ON
.
text
(
'next page'
))
await
button
.
click
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
keyBack
=
2
await
driver
.
triggerKey
(
keyBack
)
await
driver
.
delayMs
(
waitUiReadyMs
)
let
button_ori
=
await
driver
.
findComponent
(
BY
.
text
(
'next page'
))
let
button_ori
=
await
driver
.
findComponent
(
ON
.
text
(
'next page'
))
expect
(
await
button_ori
.
getText
()
==
'next page'
)
.
assertTrue
()
await
stopApplication
(
'com.uitestScene.acts'
)
})
/*
* @tc.number: uiTest_2400
* @tc.number: uiTest_9023
* @tc.name: testTriggerCombineKeys
* @tc.desc: press two or three key combinations
*/
it
(
'testTriggerCombineKeys'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
Ui
Driver
.
create
()
let
driver
=
Driver
.
create
()
await
driver
.
delayMs
(
2000
)
let
text
=
await
driver
.
findComponent
(
BY
.
type
(
'TextInput'
))
let
text
=
await
driver
.
findComponent
(
ON
.
type
(
'TextInput'
))
let
center
=
await
text
.
getBoundsCenter
()
await
text
.
inputText
(
'123'
)
await
driver
.
click
(
center
.
X
,
center
.
Y
)
...
...
@@ -451,21 +790,21 @@ export default function UiTest() {
await
driver
.
delayMs
(
waitUiReadyMs
)
await
driver
.
triggerCombineKeys
(
2072
,
2019
)
await
driver
.
triggerCombineKeys
(
2072
,
2038
)
let
text2
=
await
driver
.
findComponent
(
BY
.
type
(
'TextInput'
))
let
text2
=
await
driver
.
findComponent
(
ON
.
type
(
'TextInput'
))
expect
(
await
text2
.
getText
()
==
'123123'
)
.
assertTrue
()
await
stopApplication
(
'com.uitestScene.acts'
)
})
/*
* @tc.number: uiTest_2500
* @tc.number: uiTest_9024
* @tc.name: testGetUiComponentBounds
* @tc.desc: get the bounds of this UiComponent.
*/
it
(
'testGetUiComponentBounds'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
Ui
Driver
.
create
()
let
driver
=
Driver
.
create
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
text
=
await
driver
.
findComponent
(
BY
.
text
(
'next page'
))
let
text
=
await
driver
.
findComponent
(
ON
.
text
(
'next page'
))
expect
(
text
!==
null
)
.
assertTrue
()
let
bounds
=
await
text
.
getBounds
();
expect
(
bounds
!==
null
)
.
assertTrue
()
...
...
@@ -475,45 +814,42 @@ export default function UiTest() {
})
/*
* @tc.number: uiTest_2600
* @tc.number: uiTest_9025
* @tc.name: testGetUiComponentBoundsCenter
* @tc.desc: get the boundsCenter of this @link UiComponent.
*/
it
(
'testGetUiComponentBoundsCenter'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
Ui
Driver
.
create
()
let
driver
=
Driver
.
create
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
button
=
await
driver
.
findComponent
(
BY
.
text
(
'next page'
))
let
button
=
await
driver
.
findComponent
(
ON
.
text
(
'next page'
))
let
point
=
await
button
.
getBoundsCenter
()
let
bounds
=
await
button
.
getBounds
()
expect
(
point
!==
null
)
.
assertTrue
()
expect
(
point
.
Y
==
(
bounds
.
bottomY
+
bounds
.
topY
)
/
2
)
.
assertTrue
()
expect
(
point
.
X
==
(
bounds
.
rightX
+
bounds
.
leftX
)
/
2
)
.
assertTrue
()
await
stopApplication
(
'com.uitestScene.acts'
)
})
/*
* @tc.number: uiTest_2700
* @tc.number: uiTest_9026
* @tc.name: testWaitForComponent
* @tc.desc: Find the first matched UiComponent on current UI during the time given.
*/
it
(
'testWaitForComponent'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
Ui
Driver
.
create
()
let
driver
=
Driver
.
create
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
button
=
await
driver
.
waitForComponent
(
BY
.
text
(
'next page'
),
waitUiReadyMs
)
let
button
=
await
driver
.
waitForComponent
(
ON
.
text
(
'next page'
),
waitUiReadyMs
)
expect
(
button
!==
null
)
.
assertTrue
()
await
stopApplication
(
'com.uitestScene.acts'
)
})
/*
* @tc.number: uiTest_2800
* @tc.number: uiTest_9027
* @tc.name: testScreenCap
* @tc.desc: capture current screen.
*/
it
(
'testScreenCap'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
Ui
Driver
.
create
()
let
driver
=
Driver
.
create
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
savePath
=
'/data/local/tmp/1.png'
let
success
=
await
driver
.
screenCap
(
savePath
)
...
...
@@ -522,152 +858,152 @@ export default function UiTest() {
})
/*
* @tc.number: uiTest_2900
* @tc.number: uiTest_9028
* @tc.name: testAssertComponentExist
* @tc.desc: Assert whether the matched UiComponent exists on current UI;.
*/
it
(
'testAssertComponentExist'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
Ui
Driver
.
create
()
let
driver
=
Driver
.
create
()
await
driver
.
delayMs
(
waitUiReadyMs
)
await
driver
.
assertComponentExist
(
BY
.
text
(
'next page'
))
await
driver
.
assertComponentExist
(
ON
.
text
(
'next page'
))
await
stopApplication
(
'com.uitestScene.acts'
)
})
/*
* @tc.number: uiTest_3000
* @tc.number: uiTest_9029
* @tc.name: testIsBefore
* @tc.desc: find uiComponent which is before another UiComponent that specified by given.
*/
it
(
'testIsBefore'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
Ui
Driver
.
create
()
let
driver
=
Driver
.
create
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
button
=
await
driver
.
findComponent
(
BY
.
isBefore
(
BY
.
text
(
'Click twice'
))
.
type
(
'Button'
))
let
button
=
await
driver
.
findComponent
(
ON
.
isBefore
(
ON
.
text
(
'Click twice'
))
.
type
(
'Button'
))
expect
(
await
button
.
getType
()
==
'Button'
)
.
assertTrue
()
await
stopApplication
(
'com.uitestScene.acts'
)
})
/*
* @tc.number: uiTest_310
0
* @tc.number: uiTest_903
0
* @tc.name: testIsAfter
* @tc.desc: find uiComponent which is after another UiComponent that specified by given.
*/
it
(
'testIsAfter'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
Ui
Driver
.
create
()
let
driver
=
Driver
.
create
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
button
=
await
driver
.
findComponent
(
BY
.
isAfter
(
BY
.
text
(
'next page'
))
.
type
(
'Text'
))
let
button
=
await
driver
.
findComponent
(
ON
.
isAfter
(
ON
.
text
(
'next page'
))
.
type
(
'Text'
))
expect
(
await
button
.
getText
()
==
'Click twice'
)
.
assertTrue
()
await
stopApplication
(
'com.uitestScene.acts'
)
})
/*
* @tc.number: uiTest_3200
* @tc.number: uiTest_9031
* @tc.name: testSwipe
* @tc.desc: swipe on the screen between the specified points.
*/
it
(
'testSwipe'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
Ui
Driver
.
create
()
let
driver
=
Driver
.
create
()
await
driver
.
delayMs
(
waitUiReadyMs
)
await
driver
.
swipe
(
300
,
600
,
300
,
300
)
let
text
=
await
driver
.
findComponent
(
BY
.
text
(
'next page'
))
let
text
=
await
driver
.
findComponent
(
ON
.
text
(
'next page'
))
expect
(
text
==
null
)
.
assertTrue
()
let
scrollBar
=
await
driver
.
findComponent
(
BY
.
type
(
'Scroll'
))
let
scrollBar
=
await
driver
.
findComponent
(
ON
.
type
(
'Scroll'
))
await
scrollBar
.
scrollToTop
()
await
stopApplication
(
'com.uitestScene.acts'
)
})
/*
* @tc.number: uiTest_3300
* @tc.number: uiTest_9032
* @tc.name: testFling
* @tc.desc: inject fling on the device display.
*/
it
(
'testFling'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
Ui
Driver
.
create
()
let
driver
=
Driver
.
create
()
await
driver
.
delayMs
(
waitUiReadyMs
)
await
driver
.
fling
({
X
:
300
,
Y
:
600
},{
X
:
300
,
Y
:
300
},
20
,
600
)
let
text
=
await
driver
.
findComponent
(
BY
.
text
(
'next page'
))
let
text
=
await
driver
.
findComponent
(
ON
.
text
(
'next page'
))
expect
(
text
==
null
)
.
assertTrue
()
let
scrollBar
=
await
driver
.
findComponent
(
BY
.
type
(
'Scroll'
))
let
scrollBar
=
await
driver
.
findComponent
(
ON
.
type
(
'Scroll'
))
await
scrollBar
.
scrollToTop
()
await
stopApplication
(
'com.uitestScene.acts'
)
})
/*
* @tc.number: uiTest_3400
* @tc.number: uiTest_9033
* @tc.name: testScrollSearch
* @tc.desc: scroll on this UiComponent to find matched UiComponent.
*/
it
(
'testScrollSearch'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
Ui
Driver
.
create
()
let
driver
=
Driver
.
create
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
scrollBar
=
await
driver
.
findComponent
(
BY
.
type
(
'Scroll'
))
let
button
=
await
scrollBar
.
scrollSearch
(
BY
.
text
(
'next page'
))
let
scrollBar
=
await
driver
.
findComponent
(
ON
.
type
(
'Scroll'
))
let
button
=
await
scrollBar
.
scrollSearch
(
ON
.
text
(
'next page'
))
expect
(
await
button
.
getText
()
==
'next page'
)
.
assertTrue
()
await
stopApplication
(
'com.uitestScene.acts'
)
})
/*
* @tc.number: uiTest_3500
* @tc.number: uiTest_9034
* @tc.name: testScrollToBottom
* @tc.desc: scroll on this UiComponent to the bottom.
*/
it
(
'testScrollToBottom'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
Ui
Driver
.
create
()
let
driver
=
Driver
.
create
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
scrollBar
=
await
driver
.
findComponent
(
BY
.
type
(
'Scroll'
))
let
scrollBar
=
await
driver
.
findComponent
(
ON
.
type
(
'Scroll'
))
expect
(
scrollBar
!=
null
)
.
assertTrue
()
await
scrollBar
.
scrollToBottom
()
let
button
=
await
driver
.
findComponent
(
BY
.
text
(
'bottom'
))
let
button
=
await
driver
.
findComponent
(
ON
.
text
(
'bottom'
))
expect
(
await
button
.
getText
()
==
'bottom'
)
.
assertTrue
()
await
scrollBar
.
scrollToTop
()
await
stopApplication
(
'com.uitestScene.acts'
)
})
/*
* @tc.number: uiTest_3600
* @tc.number: uiTest_9035
* @tc.name: testScrollToTop
* @tc.desc: scroll on this UiComponent to the top.
*/
it
(
'testScrollToTop'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
Ui
Driver
.
create
()
let
driver
=
Driver
.
create
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
scrollBar
=
await
driver
.
findComponent
(
BY
.
type
(
'Scroll'
))
let
scrollBar
=
await
driver
.
findComponent
(
ON
.
type
(
'Scroll'
))
expect
(
scrollBar
!==
null
)
.
assertTrue
()
await
scrollBar
.
scrollToBottom
()
await
scrollBar
.
scrollToTop
()
let
button
=
await
driver
.
findComponent
(
BY
.
text
(
'next page'
))
let
button
=
await
driver
.
findComponent
(
ON
.
text
(
'next page'
))
expect
(
await
button
.
getText
()
==
'next page'
)
.
assertTrue
()
await
stopApplication
(
'com.uitestScene.acts'
)
})
/*
* @tc.number: uiTest_3700
* @tc.number: uiTest_9036
* @tc.name: testPinch
* @tc.desc: pinch enlarge this UiComponent to the target scale.
*/
it
(
'testPinch'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
Ui
Driver
.
create
()
let
driver
=
Driver
.
create
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
button
=
await
driver
.
findComponent
(
BY
.
text
(
'jump'
))
let
button
=
await
driver
.
findComponent
(
ON
.
text
(
'jump'
))
await
button
.
click
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
image1
=
await
driver
.
findComponent
(
BY
.
type
(
'Image'
))
let
image1
=
await
driver
.
findComponent
(
ON
.
type
(
'Image'
))
let
bounds1
=
await
image1
.
getBounds
()
await
image1
.
pinchIn
(
0.5
);
await
driver
.
delayMs
(
waitUiReadyMs
)
let
image2
=
await
driver
.
findComponent
(
BY
.
type
(
'Image'
))
let
image2
=
await
driver
.
findComponent
(
ON
.
type
(
'Image'
))
let
bounds2
=
await
image2
.
getBounds
()
expect
(
bounds2
!=
bounds1
)
.
assertTrue
()
await
image2
.
pinchOut
(
1.2
);
let
image3
=
await
driver
.
findComponent
(
BY
.
type
(
'Image'
))
let
image3
=
await
driver
.
findComponent
(
ON
.
type
(
'Image'
))
let
bounds3
=
await
image3
.
getBounds
()
expect
(
bounds3
!=
bounds2
)
.
assertTrue
()
await
driver
.
pressBack
()
...
...
@@ -675,18 +1011,18 @@ export default function UiTest() {
})
/*
* @tc.number: uiTest_3800
* @tc.number: uiTest_9037
* @tc.name: testInjectMultiPointerAction
* @tc.desc: inject multi-pointer action on the device display.
*/
it
(
'testInjectMultiPointerAction'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
Ui
Driver
.
create
()
let
driver
=
Driver
.
create
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
button
=
await
driver
.
findComponent
(
BY
.
text
(
'jump'
))
let
button
=
await
driver
.
findComponent
(
ON
.
text
(
'jump'
))
await
button
.
click
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
image1
=
await
driver
.
findComponent
(
BY
.
type
(
'Image'
))
let
image1
=
await
driver
.
findComponent
(
ON
.
type
(
'Image'
))
let
bounds1
=
await
image1
.
getBounds
()
let
pointer
=
PointerMatrix
.
create
(
2
,
11
)
await
driver
.
delayMs
(
300
)
...
...
@@ -713,21 +1049,21 @@ export default function UiTest() {
pointer
.
setPoint
(
1
,
9
,{
X
:
460
,
Y
:
480
})
pointer
.
setPoint
(
1
,
10
,{
X
:
455
,
Y
:
480
})
await
driver
.
injectMultiPointerAction
(
pointer
,
600
)
let
image2
=
await
driver
.
findComponent
(
BY
.
type
(
'Image'
))
let
bounds2
=
await
image1
.
getBounds
()
let
image2
=
await
driver
.
findComponent
(
ON
.
type
(
'Image'
))
let
bounds2
=
await
image2
.
getBounds
()
expect
(
bounds2
!=
bounds1
)
.
assertTrue
()
await
driver
.
pressBack
()
await
stopApplication
(
'com.uitestScene.acts'
)
})
/*
* @tc.number: uiTest_3900
* @tc.number: uiTest_9038
* @tc.name: testGetWindowMode
* @tc.desc: get the window mode of this UiWindow.
*/
it
(
'testGetWindowMode'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
Ui
Driver
.
create
()
let
driver
=
Driver
.
create
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
window1
=
await
driver
.
findWindow
({
bundleName
:
'com.uitestScene.acts'
})
let
mode1
=
await
window1
.
getWindowMode
()
...
...
@@ -751,13 +1087,13 @@ export default function UiTest() {
})
/*
* @tc.number: uiTest_4000
* @tc.number: uiTest_9039
* @tc.name: testGetBundleName
* @tc.desc: get the bundleName of this UiWindow.
*/
it
(
'testGetBundleName'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
Ui
Driver
.
create
()
let
driver
=
Driver
.
create
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
window
=
await
driver
.
findWindow
({
bundleName
:
'com.uitestScene.acts'
})
let
name
=
await
window
.
getBundleName
()
...
...
@@ -766,13 +1102,13 @@ export default function UiTest() {
})
/*
* @tc.number: uiTest_410
0
* @tc.number: uiTest_904
0
* @tc.name: testGetTitle
* @tc.desc: get the title of this UiWindow.
*/
it
(
'testGetTitle'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
Ui
Driver
.
create
()
let
driver
=
Driver
.
create
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
window
=
await
driver
.
findWindow
({
bundleName
:
'com.uitestScene.acts'
})
let
title
=
await
window
.
getTitle
()
...
...
@@ -781,13 +1117,13 @@ export default function UiTest() {
})
/*
* @tc.number: uiTest_4200
* @tc.number: uiTest_9041
* @tc.name: testWindowMoveTo
* @tc.desc: move this UiWindow to the specified points.
*/
it
(
'testWindowMoveTo'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
Ui
Driver
.
create
()
let
driver
=
Driver
.
create
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
window
=
await
driver
.
findWindow
({
bundleName
:
'com.uitestScene.acts'
})
try
{
...
...
@@ -812,13 +1148,13 @@ export default function UiTest() {
})
/*
* @tc.number: uiTest_4300
* @tc.number: uiTest_9042
* @tc.name: testWindowResize
* @tc.desc: resize this UiWindow to the specified size for the specified direction.
*/
it
(
'testWindowResizeA'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
Ui
Driver
.
create
()
let
driver
=
Driver
.
create
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
window
=
await
driver
.
findWindow
({
bundleName
:
'com.uitestScene.acts'
})
try
{
...
...
@@ -859,7 +1195,7 @@ export default function UiTest() {
it
(
'testWindowResizeB'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
Ui
Driver
.
create
()
let
driver
=
Driver
.
create
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
window
=
await
driver
.
findWindow
({
bundleName
:
'com.uitestScene.acts'
})
try
{
...
...
@@ -900,13 +1236,13 @@ export default function UiTest() {
})
/*
* @tc.number: uiTest_4400
* @tc.number: uiTest_9043
* @tc.name: testWindowAttr
* @tc.desc: set the focused status of this UiWindow.
*/
it
(
'testWindowAttr'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
Ui
Driver
.
create
()
let
driver
=
Driver
.
create
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
window
=
await
driver
.
findWindow
({
bundleName
:
'com.uitestScene.acts'
,
focused
:
true
,
actived
:
true
,
title
:
''
})
await
window
.
focus
()
...
...
@@ -918,13 +1254,13 @@ export default function UiTest() {
})
/*
* @tc.number: uiTest_4500
* @tc.number: uiTest_9044
* @tc.name: testWindowMaximize
* @tc.desc: maximize this UiWindow.
*/
it
(
'testWindowMaximize'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
Ui
Driver
.
create
()
let
driver
=
Driver
.
create
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
window
=
await
driver
.
findWindow
({
bundleName
:
'com.uitestScene.acts'
})
try
{
...
...
@@ -947,13 +1283,13 @@ export default function UiTest() {
})
/*
* @tc.number: uiTest_4600
* @tc.number: uiTest_9045
* @tc.name: testWindowMinimize
* @tc.desc: minimize this UiWindow.
*/
it
(
'testWindowMinimize'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
Ui
Driver
.
create
()
let
driver
=
Driver
.
create
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
window
=
await
driver
.
findWindow
({
bundleName
:
'com.uitestScene.acts'
})
try
{
...
...
@@ -973,13 +1309,13 @@ export default function UiTest() {
})
/*
* @tc.number: uiTest_4700
* @tc.number: uiTest_9046
* @tc.name: testWindowClose
* @tc.desc: close this UiWindow.
*/
it
(
'testWindowClose'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
Ui
Driver
.
create
()
let
driver
=
Driver
.
create
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
window
=
await
driver
.
findWindow
({
bundleName
:
'com.uitestScene.acts'
})
try
{
...
...
@@ -998,13 +1334,13 @@ export default function UiTest() {
})
/*
* @tc.number: uiTest_4800
* @tc.number: uiTest_9047
* @tc.name: testGetDisplaySize
* @tc.desc: get the size of the device display.
*/
it
(
'testGetDisplaySize'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
Ui
Driver
.
create
()
let
driver
=
Driver
.
create
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
s
=
await
driver
.
getDisplaySize
()
expect
(
s
.
X
!=
0
)
.
assertTrue
()
...
...
@@ -1013,13 +1349,13 @@ export default function UiTest() {
})
/*
* @tc.number: uiTest_4900
* @tc.number: uiTest_9048
* @tc.name: testGetDisplayDensity
* @tc.desc: get the density of the device display.
*/
it
(
'testGetDisplayDensity'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
Ui
Driver
.
create
()
let
driver
=
Driver
.
create
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
s
=
await
driver
.
getDisplayDensity
()
expect
(
s
.
X
!=
0
)
.
assertTrue
()
...
...
@@ -1028,13 +1364,13 @@ export default function UiTest() {
})
/*
* @tc.number: uiTest_5000
* @tc.number: uiTest_9049
* @tc.name: testDisplayRotation
* @tc.desc: get the rotation of the device display and set it.
*/
it
(
'testDisplayRotation'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
Ui
Driver
.
create
()
let
driver
=
Driver
.
create
()
await
driver
.
delayMs
(
waitUiReadyMs
)
await
driver
.
delayMs
(
waitUiReadyMs
)
await
driver
.
setDisplayRotation
(
DisplayRotation
.
ROTATION_90
)
...
...
@@ -1059,17 +1395,16 @@ export default function UiTest() {
})
/*
* @tc.number: uiTest_510
0
* @tc.number: uiTest_905
0
* @tc.name: testSetDisplayRotationEnabled
* @tc.desc: enable/disable the rotation of device display.
*/
it
(
'testSetDisplayRotationEnabled'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
Ui
Driver
.
create
()
let
driver
=
Driver
.
create
()
await
driver
.
setDisplayRotationEnabled
(
false
)
await
driver
.
setDisplayRotation
(
DisplayRotation
.
ROTATION_180
)
await
driver
.
delayMs
(
waitUiReadyMs
)
let
rotation3
=
await
driver
.
getDisplayRotation
()
await
driver
.
setDisplayRotationEnabled
(
true
)
await
driver
.
setDisplayRotation
(
DisplayRotation
.
ROTATION_90
)
let
rotation2
=
await
driver
.
getDisplayRotation
()
...
...
@@ -1079,41 +1414,41 @@ export default function UiTest() {
})
/*
* @tc.number: uiTest_5200
* @tc.number: uiTest_9051
* @tc.name: testWakeUpDisplay
* @tc.desc: wake up the device display.
*/
it
(
'testWakeUpDisplay'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
Ui
Driver
.
create
()
let
driver
=
Driver
.
create
()
await
driver
.
delayMs
(
waitUiReadyMs
)
await
driver
.
wakeUpDisplay
()
await
stopApplication
(
'com.uitestScene.acts'
)
})
/*
* @tc.number: uiTest_5300
* @tc.number: uiTest_9052
* @tc.name: testPressHome
* @tc.desc: press the home key.
*/
it
(
'testPressHome'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
Ui
Driver
.
create
()
let
driver
=
Driver
.
create
()
await
driver
.
delayMs
(
waitUiReadyMs
)
await
driver
.
pressHome
()
let
button
=
await
driver
.
findComponent
(
BY
.
text
(
'next page'
))
let
button
=
await
driver
.
findComponent
(
ON
.
text
(
'next page'
))
expect
(
button
!=
null
)
.
assertTrue
()
await
stopApplication
(
'com.uitestScene.acts'
)
})
/*
* @tc.number: uiTest_5400
* @tc.number: uiTest_9053
* @tc.name: testWaitForIdle
* @tc.desc: wait for the UI become idle.
*/
it
(
'testWaitForIdle'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
Ui
Driver
.
create
()
let
driver
=
Driver
.
create
()
await
driver
.
delayMs
(
2000
)
let
idled
=
await
driver
.
waitForIdle
(
4000
,
5000
)
expect
(
idled
=
true
)
.
assertTrue
()
...
...
@@ -1121,57 +1456,57 @@ export default function UiTest() {
})
/*
* @tc.number: uiTest_5600
* @tc.number: uiTest_9054
* @tc.name: testDrag
* @tc.desc: drag on the screen between the specified points.
*/
it
(
'testDrag'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
Ui
Driver
.
create
()
let
driver
=
Driver
.
create
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
button
=
await
driver
.
findComponent
(
BY
.
text
(
'jump'
))
let
button
=
await
driver
.
findComponent
(
ON
.
text
(
'jump'
))
await
button
.
longClick
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
text1
=
await
driver
.
findComponent
(
BY
.
text
(
'orange'
))
let
text2
=
await
driver
.
findComponent
(
BY
.
text
(
'one'
))
let
text1
=
await
driver
.
findComponent
(
ON
.
text
(
'orange'
))
let
text2
=
await
driver
.
findComponent
(
ON
.
text
(
'one'
))
let
point1
=
await
text1
.
getBoundsCenter
()
let
point2
=
await
text2
.
getBoundsCenter
()
await
driver
.
drag
(
point1
.
X
,
point1
.
Y
,
point2
.
X
,
point2
.
Y
)
await
driver
.
delayMs
(
waitUiReadyMs
)
let
text
=
await
driver
.
findComponent
(
BY
.
text
(
'four'
))
let
text
=
await
driver
.
findComponent
(
ON
.
text
(
'four'
))
expect
(
text
==
null
)
.
assertTrue
()
await
stopApplication
(
'com.uitestScene.acts'
)
})
/*
* @tc.number: uiTest_5700
* @tc.number: uiTest_9055
* @tc.name: testDragTos
* @tc.desc: drag this UiComponent to the bounds rect of target UiComponent.
*/
it
(
'testDragTo'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
Ui
Driver
.
create
()
let
driver
=
Driver
.
create
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
button
=
await
driver
.
findComponent
(
BY
.
text
(
'jump'
))
let
button
=
await
driver
.
findComponent
(
ON
.
text
(
'jump'
))
await
button
.
longClick
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
text1
=
await
driver
.
findComponent
(
BY
.
text
(
'orange'
))
let
text2
=
await
driver
.
findComponent
(
BY
.
text
(
'one'
))
let
text1
=
await
driver
.
findComponent
(
ON
.
text
(
'orange'
))
let
text2
=
await
driver
.
findComponent
(
ON
.
text
(
'one'
))
await
text1
.
dragTo
(
text2
)
await
driver
.
delayMs
(
waitUiReadyMs
)
let
text
=
await
driver
.
findComponent
(
BY
.
text
(
'four'
))
let
text
=
await
driver
.
findComponent
(
ON
.
text
(
'four'
))
expect
(
text
==
null
)
.
assertTrue
()
await
stopApplication
(
'com.uitestScene.acts'
)
})
/*
* @tc.number: uiTest_5800
* @tc.number: uiTest_9056
* @tc.name: testSplit
* @tc.desc: change this UiWindow into split screen mode.
*/
it
(
'testSplit'
,
0
,
async
function
()
{
await
startAbility
(
'com.uitestScene.acts'
,
'com.uitestScene.acts.MainAbility'
)
let
driver
=
Ui
Driver
.
create
()
let
driver
=
Driver
.
create
()
await
driver
.
delayMs
(
waitUiReadyMs
)
let
window1
=
await
driver
.
findWindow
({
bundleName
:
'com.uitestScene.acts'
})
try
{
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录