fix(UI自动化): 修复非性能模式下报告截图语言问题
--bug=1014842 --user=刘瑶 【UI测试】非性能模式下-报告中的截图和实际系统(语言)不一致 https://www.tapd.cn/55049933/s/1215172
This commit is contained in:
parent
8c62f19c71
commit
ccfe4daa7f
|
@ -24,6 +24,8 @@ public class RunDefinitionRequest {
|
||||||
|
|
||||||
private boolean runLocal;
|
private boolean runLocal;
|
||||||
|
|
||||||
|
private String browserLanguage;
|
||||||
|
|
||||||
private String requestId;
|
private String requestId;
|
||||||
|
|
||||||
private String name;
|
private String name;
|
||||||
|
|
|
@ -88,6 +88,8 @@ public class ParameterConfig extends MsParameter {
|
||||||
|
|
||||||
private boolean runLocal;
|
private boolean runLocal;
|
||||||
|
|
||||||
|
private String browserLanguage;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 排除生成临界控制器的场景
|
* 排除生成临界控制器的场景
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit 3e34e4f69968987e9d8020421d16e9fb5cdb7075
|
Subproject commit 7f405105bf50af4ae2f1a240059c742f3ac7c729
|
|
@ -21,7 +21,8 @@ export default {
|
||||||
runLocal: Boolean,
|
runLocal: Boolean,
|
||||||
saved: Boolean,
|
saved: Boolean,
|
||||||
environmentType: String,
|
environmentType: String,
|
||||||
environmentGroupId: String
|
environmentGroupId: String,
|
||||||
|
browserLanguage: String
|
||||||
},
|
},
|
||||||
data() {
|
data() {
|
||||||
return {
|
return {
|
||||||
|
@ -80,6 +81,7 @@ export default {
|
||||||
reqObj.variables = this.runData.variables;
|
reqObj.variables = this.runData.variables;
|
||||||
}
|
}
|
||||||
reqObj.runLocal = this.runLocal;
|
reqObj.runLocal = this.runLocal;
|
||||||
|
reqObj.browserLanguage = this.browserLanguage;
|
||||||
reqObj.uiRunMode = this.uiRunMode;
|
reqObj.uiRunMode = this.uiRunMode;
|
||||||
this.$emit('runRefresh', {});
|
this.$emit('runRefresh', {});
|
||||||
|
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
Subproject commit 298d8ad3fa5f305cb8c70dd01bc26aea01d2f099
|
Subproject commit 20b5563776f552ecd1b84bed3bcf50e5cbcaa9b0
|
Loading…
Reference in New Issue