fix(UI自动化): 修复非性能模式下报告截图语言问题
--bug=1014842 --user=刘瑶 【UI测试】非性能模式下-报告中的截图和实际系统(语言)不一致 https://www.tapd.cn/55049933/s/1215172
This commit is contained in:
parent
ccd0ad9305
commit
1694c61bc4
|
@ -24,6 +24,8 @@ public class RunDefinitionRequest {
|
|||
|
||||
private boolean runLocal;
|
||||
|
||||
private String browserLanguage;
|
||||
|
||||
private String requestId;
|
||||
|
||||
private String name;
|
||||
|
|
|
@ -88,6 +88,8 @@ public class ParameterConfig extends MsParameter {
|
|||
|
||||
private boolean runLocal;
|
||||
|
||||
private String browserLanguage;
|
||||
|
||||
/**
|
||||
* 排除生成临界控制器的场景
|
||||
*/
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit 1965e5d82cd95cc8ceb8ee5a072acd7380849249
|
||||
Subproject commit a15c62585f8e3afe994a8f94817124ad51189b71
|
|
@ -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 311095fddb07b11b034b139152a59810cd5ed7d1
|
||||
Subproject commit 0179ce86590df2cc2f00f46892a3bb08b0ab5204
|
Loading…
Reference in New Issue