Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
OpenHarmony
Xts Acts
提交
d26f29c2
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看板
体验新版 GitCode,发现更多精彩内容 >>
未验证
提交
d26f29c2
编写于
2月 17, 2023
作者:
O
openharmony_ci
提交者:
Gitee
2月 17, 2023
浏览文件
操作
浏览文件
下载
差异文件
!7620 test:modify common.ets and signature file
Merge pull request !7620 from 李伟明/common
上级
f36042a2
e26b2b34
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
21 addition
and
89 deletion
+21
-89
arkui/ace_ets_layout_test/entry/src/main/ets/MainAbility/common/Common.ets
...out_test/entry/src/main/ets/MainAbility/common/Common.ets
+21
-89
arkui/ace_ets_layout_test/signature/openharmony_sx.p7b
arkui/ace_ets_layout_test/signature/openharmony_sx.p7b
+0
-0
未找到文件。
arkui/ace_ets_layout_test/entry/src/main/ets/MainAbility/common/Common.ets
浏览文件 @
d26f29c2
...
...
@@ -19,99 +19,31 @@ export default class CommonFunc {
static rect_right;
static rect_bottom;
static rect_value;
static sleep(time)
{
return new Promise((resolve, reject) =>
{
setTimeout(() =>
{
resolve(
)
},
time)
}).then(() =>
{
console.info(`sleep ${time} over...`)
})
static sleep(time){
return new Promise((resolve,reject)=>
{
setTimeout(()=>
{
resolve("ok"
)
},
time)
}).then(()=>
{
console.info(`sleep ${time} over...`)
})
}
static getComponentRect(key) {
static getComponentRect(key) {
let strJson = getInspectorByKey(key);
let obj = JSON.parse(strJson);
console.info("[getInspectorByKey] current component obj is: " + JSON.stringify(obj));
let rectInfo = JSON.parse('[' + obj.$rect + ']')
console.info("[getInspectorByKey] rectInfo is: " + rectInfo);
this.rect_left = JSON.parse('[' + rectInfo[0] + ']')[0]
this.rect_top = JSON.parse('[' + rectInfo[0] + ']')[1]
this.rect_right = JSON.parse('[' + rectInfo[1] + ']')[0]
this.rect_bottom = JSON.parse('[' + rectInfo[1] + ']')[1]
return this.rect_value = {
"left": this.rect_left, "top": this.rect_top, "right": this.rect_right, "bottom": this.rect_bottom
}
}
static async swipe(downX, downY, upX, upY, steps) {
console.info('start to swipe')
this.drags(downX, downY, upX, upY, steps, false)
}
static async drag(downX, downY, upX, upY, steps) {
console.info('start to drag')
this.drags(downX, downY, upX, upY, steps, true)
}
static async drags(downX, downY, upX, upY, steps, drag) {
var xStep;
var yStep;
var swipeSteps;
var ret;
xStep = 0;
yStep = 0;
ret = false;
swipeSteps = steps;
if (swipeSteps == 0) {
swipeSteps = 1;
}
xStep = (upX - downX) / swipeSteps;
yStep = (upY - downY) / swipeSteps;
console.info('move step is: ' + 'xStep: ' + xStep + ' yStep: ' + yStep)
var downPonit: TouchObject = {
id: 1,
x: downX,
y: downY,
type: TouchType.Down,
}
console.info('down touch started: ' + JSON.stringify(downPonit))
sendTouchEvent(downPonit);
console.info('start to move')
if (drag) {
await this.sleep(500)
}
for (var i = 1;i <= swipeSteps; i++) {
var movePoint: TouchObject = {
id: 1,
x: downX + (xStep * i),
y: downY + (yStep * i),
type: TouchType.Move
}
console.info('move touch started: ' + JSON.stringify(movePoint))
ret = sendTouchEvent(movePoint)
if (ret == false) {
break;
}
await this.sleep(5)
}
console.info('start to up')
if (drag) {
await this.sleep(100)
}
var upPoint: TouchObject = {
id: 1,
x: upX,
y: upY,
type: TouchType.Up,
}
console.info('up touch started: ' + JSON.stringify(upPoint))
sendTouchEvent(upPoint)
await this.sleep(500)
let rectInfo = JSON.parse('[' + obj.$rect + ']');
this.rect_left = JSON.parse('[' + rectInfo[0] + ']')[0];
this.rect_top = JSON.parse('[' + rectInfo[0] + ']')[1];
this.rect_right = JSON.parse('[' + rectInfo[1] + ']')[0];
this.rect_bottom = JSON.parse('[' + rectInfo[1] + ']')[1];
this.rect_value = {
"left": this.rect_left, "top": this.rect_top, "right": this.rect_right, "bottom": this.rect_bottom
};
console.info(JSON.stringify(this.rect_value));
return this.rect_value;
}
}
arkui/ace_ets_layout_test/signature/openharmony_sx.p7b
浏览文件 @
d26f29c2
无法预览此类型文件
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录