Skip to content

Commit 001e03f

Browse files
authored
Issue 53563: Domain designer lookups don't show newly added entity types after initial load/view (#2770)
- DomainFieldRow helper to get options for sample type lookup
1 parent e89a84a commit 001e03f

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

src/org/labkey/test/components/domain/DomainFieldRow.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1252,6 +1252,12 @@ public DomainFieldRow setSampleType(String sampleTypeName)
12521252
return this;
12531253
}
12541254

1255+
public List<String> getAvailableSampleTypes()
1256+
{
1257+
expand();
1258+
return elementCache().getLookupSampleTypeSelect().getOptions().stream().map(WebElement::getText).collect(Collectors.toList());
1259+
}
1260+
12551261
public DomainFieldRow setAliquotOption(ExpSchema.DerivationDataScopeType option)
12561262
{
12571263
expand();

0 commit comments

Comments
 (0)