fix(UI自动化): 修复非性能模式下报告截图语言问题

--bug=1014842 --user=刘瑶 【UI测试】非性能模式下-报告中的截图和实际系统(语言)不一致 https://www.tapd.cn/55049933/s/1215172
This commit is contained in:
nathan.liu 2022-07-29 14:08:49 +08:00 committed by zhangdahai112
parent 8c62f19c71
commit ccfe4daa7f
5 changed files with 9 additions and 3 deletions

View File

@ -24,6 +24,8 @@ public class RunDefinitionRequest {
private boolean runLocal;
private String browserLanguage;
private String requestId;
private String name;

View File

@ -88,6 +88,8 @@ public class ParameterConfig extends MsParameter {
private boolean runLocal;
private String browserLanguage;
/**
* 排除生成临界控制器的场景
*/

@ -1 +1 @@
Subproject commit 3e34e4f69968987e9d8020421d16e9fb5cdb7075
Subproject commit 7f405105bf50af4ae2f1a240059c742f3ac7c729

View File

@ -21,7 +21,8 @@ export default {
runLocal: Boolean,
saved: Boolean,
environmentType: String,
environmentGroupId: String
environmentGroupId: String,
browserLanguage: String
},
data() {
return {
@ -80,6 +81,7 @@ export default {
reqObj.variables = this.runData.variables;
}
reqObj.runLocal = this.runLocal;
reqObj.browserLanguage = this.browserLanguage;
reqObj.uiRunMode = this.uiRunMode;
this.$emit('runRefresh', {});

@ -1 +1 @@
Subproject commit 298d8ad3fa5f305cb8c70dd01bc26aea01d2f099
Subproject commit 20b5563776f552ecd1b84bed3bcf50e5cbcaa9b0