You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -160,7 +172,7 @@ public Params sequenceLength(Integer sequenceLength) {
160
172
this.sequenceLength = sequenceLength;
161
173
returnthis;
162
174
}
163
-
175
+
164
176
/**
165
177
* Indicate the suspicious Strings that TESTAR should look for in the interface
166
178
* @return suspiciousTitles
@@ -179,21 +191,21 @@ public Params suspiciousTitles(String suspiciousTitles) {
179
191
this.suspiciousTitles = suspiciousTitles;
180
192
returnthis;
181
193
}
182
-
194
+
183
195
/**
184
196
* Regular expression to filter non desired widgets
185
197
* @return ClickFilter
186
198
*/
187
199
@ApiModelProperty(example = ".*[cC]lose.*|.*[sS]alir.*|.*[eE]xit.*|.*[mM]inimizar.*|.*[mM]inimi[zs]e.*", value = "Regular expression to filter non desired widgets")
188
-
200
+
189
201
publicStringgetClickFilter() {
190
202
returnclickFilter;
191
203
}
192
204
193
205
publicvoidsetClickFilter(StringclickFilter) {
194
206
this.clickFilter = clickFilter;
195
207
}
196
-
208
+
197
209
publicParamsclickFilter(StringclickFilter) {
198
210
this.clickFilter = clickFilter;
199
211
returnthis;
@@ -219,24 +231,104 @@ public Params sequenceFileName(String sequenceFileName) {
219
231
}
220
232
221
233
/**
222
-
* Name of the testcase to be inserted in internal TESTAR logs for further analysis
223
-
* @return testCaseName
234
+
* Name of the application run that we are executing
235
+
* @return applicationName
224
236
**/
225
-
/*@ApiModelProperty(example = "test-case-name", required = true, value = "Name of the testcase to be inserted in internal TESTAR logs for further analysis")
237
+
@ApiModelProperty(example = "Notepad", value = "Name of the application run that we are executing")
226
238
@NotNull
227
239
228
-
public String getTestCaseName() {
229
-
return testCaseName;
240
+
publicStringgetApplicationName() {
241
+
returnapplicationName;
230
242
}
231
243
232
-
public void setTestCaseName(String testCaseName) {
0 commit comments