Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
DCloud
hello-uvue
提交
7c5ef6d0
H
hello-uvue
项目概览
DCloud
/
hello-uvue
通知
351
Star
2
Fork
7
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
H
hello-uvue
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
7c5ef6d0
编写于
1月 31, 2024
作者:
W
wangjinxin613
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
test:优化截图对比测试用例
上级
5c285042
变更
5
显示空白变更内容
内联
并排
Showing
5 changed file
with
100 addition
and
82 deletion
+100
-82
pages/webview-screenshot-comparison/webview-screenshot-comparison.test.js
...reenshot-comparison/webview-screenshot-comparison.test.js
+68
-65
pages/webview-screenshot-comparison/webview-screenshot-comparison.uvue
...-screenshot-comparison/webview-screenshot-comparison.uvue
+6
-7
pages/webview-screenshot/webview-screenshot.test.js
pages/webview-screenshot/webview-screenshot.test.js
+4
-2
pages/webview-screenshot/webview-screenshot.uvue
pages/webview-screenshot/webview-screenshot.uvue
+6
-7
store/index.uts
store/index.uts
+16
-1
未找到文件。
pages/webview-screenshot-comparison/webview-screenshot-comparison.test.js
浏览文件 @
7c5ef6d0
...
...
@@ -157,11 +157,14 @@ describe("shot-compare", () => {
beforeAll
(
async
()
=>
{
page
=
await
program
.
reLaunch
(
PAGE_PATH
);
await
page
.
waitFor
(
500
);
await
page
.
callMethod
(
'
getWindowInfo
'
);
await
page
.
callMethod
(
'
getDeviceInfo
'
);
// set webview-screenshot-comparison page baseSrc
baseSrc
=
process
.
env
.
UNI_WEB_SERVICE_URL
?
`
${
process
.
env
.
UNI_WEB_SERVICE_URL
}
/#/`
:
"
http://test.dcloud.io/unix_h5_build/98_dev_hello-uvue/#/
"
;
page
.
setData
({
baseSrc
,
});
...
...
pages/webview-screenshot-comparison/webview-screenshot-comparison.uvue
浏览文件 @
7c5ef6d0
...
...
@@ -6,6 +6,7 @@
</template>
<script>
import { state, setStatusBarHeight, setDevicePixelRatio } from '@/store/index.uts'
export default {
data() {
return {
...
...
@@ -13,17 +14,15 @@
src: '',
webviewContext: null as WebviewContext | null,
isLoaded: false,
statusBarHeight:
0
,
statusBarHeight:
state.statusBarHeight
,
isCustomNavigationBar: false,
devicePixelRatio:
1
,
devicePixelRatio:
state.devicePixelRatio
,
webviewStyles: {
progress: false
}
}
},
onReady() {
this.getWindowInfo();
this.getDeviceInfo();
this.webviewContext = uni.createWebviewContext('webview-screenshot-comparison', this)
},
methods: {
...
...
@@ -36,12 +35,12 @@
getWindowInfo() {
const res = uni.getWindowInfo();
// 获取状态栏, 供截图对比使用
this.statusBarHeight = res.statusBarHeight
;
setStatusBarHeight(res.statusBarHeight)
;
},
getDeviceInfo: function () {
const res = uni.getDeviceInfo();
// 获取像素比, 供截图对比使用
this.devicePixelRatio = res.devicePixelRatio !== null ? parseFloat(res.devicePixelRatio!) : 1
setDevicePixelRatio(res.devicePixelRatio !== null ? parseFloat(res.devicePixelRatio!) : 1);
}
}
}
...
...
pages/webview-screenshot/webview-screenshot.test.js
浏览文件 @
7c5ef6d0
...
...
@@ -148,6 +148,8 @@ describe("shot-compare", () => {
beforeAll
(
async
()
=>
{
page
=
await
program
.
reLaunch
(
PAGE_PATH
);
await
page
.
waitFor
(
500
);
await
page
.
callMethod
(
'
getWindowInfo
'
);
await
page
.
callMethod
(
'
getDeviceInfo
'
);
// set webview-screenshot page baseSrc
baseSrc
=
...
...
pages/webview-screenshot/webview-screenshot.uvue
浏览文件 @
7c5ef6d0
...
...
@@ -6,6 +6,7 @@
</template>
<script>
import { state, setStatusBarHeight, setDevicePixelRatio } from '@/store/index.uts'
export default {
data() {
return {
...
...
@@ -16,13 +17,11 @@
webviewStyles: {
progress: false
},
headerHeight:
0
,
devicePixelRatio:
1
headerHeight:
state.statusBarHeight
,
devicePixelRatio:
state.devicePixelRatio
}
},
onReady() {
this.getWindowInfo();
this.getDeviceInfo();
this.webviewContext = uni.createWebviewContext('webview-screenshot', this)
},
methods: {
...
...
@@ -35,12 +34,12 @@
getWindowInfo() {
const res = uni.getWindowInfo();
// 获取状态栏, 供截图对比使用
this.headerHeight = res.statusBarHeight
;
setStatusBarHeight(res.statusBarHeight)
;
},
getDeviceInfo: function () {
const res = uni.getDeviceInfo();
// 获取像素比, 供截图对比使用
this.devicePixelRatio = res.devicePixelRatio !== null ? parseFloat(res.devicePixelRatio!) : 1
setDevicePixelRatio(res.devicePixelRatio !== null ? parseFloat(res.devicePixelRatio!) : 1);
}
}
}
...
...
store/index.uts
浏览文件 @
7c5ef6d0
...
...
@@ -2,13 +2,19 @@ export type State = {
lifeCycleNum: number
componentMsg: number,
appLaunchPath: string
appShowPath: string
appShowPath: string,
// 状态栏高度
statusBarHeight : number,
// 设备像素比
devicePixelRatio : number
}
export const state = reactive({
lifeCycleNum: 0,
componentMsg: 0,
appLaunchPath: '',
appShowPath: '',
statusBarHeight: 0,
devicePixelRatio: 1
} as State)
export const setLifeCycleNum = (num: number) => {
...
...
@@ -26,3 +32,12 @@ export const setAppLaunchPath = (path: string) => {
export const setAppShowPath = (path: string) => {
state.appShowPath = path
}
export const setStatusBarHeight = (height : number) => {
state.statusBarHeight = height
}
export const setDevicePixelRatio = (devicePixelRatio : number) => {
state.devicePixelRatio = devicePixelRatio
}
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录