We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f32df8f commit fa9aa6bCopy full SHA for fa9aa6b
src/main/java/org/jenkinsci/test/acceptance/po/Job.java
@@ -365,7 +365,9 @@ public <T extends Parameter> T addParameter(Class<T> type) {
365
366
control(by.checkbox("This project is parameterized")).check();
367
368
- control(by.xpath("//button[normalize-space(string(.)) = 'Add Parameter' and not(contains(@class, 'hetero-list-add-top'))]"))
+ control(
369
+ by.xpath(
370
+ "//button[normalize-space(string(.)) = 'Add Parameter' and not(contains(@class, 'hetero-list-add-top'))]"))
371
.selectDropdownMenu(type);
372
373
// TODO selectDropdownMenu should not need this sleep - try and remove it
0 commit comments