|
45 | 45 | import org.openqa.selenium.interactions.Actions; |
46 | 46 | import org.openqa.selenium.support.ui.ExpectedConditions; |
47 | 47 |
|
48 | | -import java.util.ArrayList; |
49 | | -import java.util.Arrays; |
50 | 48 | import java.util.Iterator; |
51 | 49 | import java.util.List; |
52 | 50 |
|
@@ -320,11 +318,6 @@ public void addColumn(CharSequence fieldKey) |
320 | 318 | addItem(fieldKey, ViewItemType.Columns); |
321 | 319 | } |
322 | 320 |
|
323 | | - public void addColumn(String[] fieldKeyParts) |
324 | | - { |
325 | | - addColumn(StringUtils.join(fieldKeyParts, "/")); |
326 | | - } |
327 | | - |
328 | 321 | public void changeTab(ViewItemType tab) |
329 | 322 | { |
330 | 323 | Locator.tag("ul").child(Locator.tag("li").withClass("labkey-customview-tab").containing(tab.toString())).findElement(this).click(); |
@@ -395,11 +388,6 @@ public void addFilter(CharSequence fieldKey, String filter_type) |
395 | 388 | addFilter(fieldKey, filter_type, ""); |
396 | 389 | } |
397 | 390 |
|
398 | | - public void addFilter(String[] fieldKeyParts, String filter_type, String filter) |
399 | | - { |
400 | | - addFilter(String.join("/", fieldKeyParts), filter_type, filter); |
401 | | - } |
402 | | - |
403 | 391 | public void addFilter(CharSequence fieldKey, String filter_type, String filter) |
404 | 392 | { |
405 | 393 | if (filter.isEmpty()) |
@@ -515,11 +503,6 @@ public void addSort(CharSequence fieldKey, SortDirection order) |
515 | 503 | itemXPath.append("//tr").findElement(this).click(); // Sort direction doesn't stick without this |
516 | 504 | } |
517 | 505 |
|
518 | | - public void addSort(String[] fieldKeyParts, SortDirection order) |
519 | | - { |
520 | | - addSort(String.join("/", fieldKeyParts), order); |
521 | | - } |
522 | | - |
523 | 506 | public void removeColumn(CharSequence fieldKey) |
524 | 507 | { |
525 | 508 | _driver.log("Removing " + fieldKey + " column"); |
|
0 commit comments