We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f27b53 commit 95c21d4Copy full SHA for 95c21d4
src/org/labkey/test/components/ui/grids/GridFilterModal.java
@@ -53,6 +53,18 @@ public GridFilterModal selectField(CharSequence fieldIdentifier)
53
return this;
54
}
55
56
+ /**
57
+ * Sets the 'All [sample type] samples` (used by workflow task filter)
58
+ * @param checked whether or not to check the box
59
+ * @return this component
60
+ */
61
+ public GridFilterModal checkAllDataCheckbox(boolean checked)
62
+ {
63
+ Checkbox noDataBox = Checkbox.Checkbox(Locator.input("field-value-allvalues-check"))
64
+ .waitFor(elementCache().fieldsSelectionPanel);
65
+ noDataBox.set(checked);
66
+ return this;
67
+ }
68
/**
69
* Sets the 'Find Samples without [selected assay] results
70
* @param checked whether or not to check the box
0 commit comments